neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit f5231d61a5413e3ea45a060dd31e4537634f3d87
parent e23c6ebed7a6dcc878a64690bbd7252c18591d54
Author: Christian Clason <c.clason@uni-graz.at>
Date:   Wed, 12 Apr 2023 13:59:11 +0200

fix(runtime): add commentstring for C# ftplugin (#23039)

Problem: No commentstring is set for C# buffers after removing the
default C-style commentstring

Solution: Add `ftplugin/cs.lua` with C-style commentstring
Diffstat:
Aruntime/ftplugin/cs.lua | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/runtime/ftplugin/cs.lua b/runtime/ftplugin/cs.lua @@ -0,0 +1 @@ +vim.bo.commentstring = '/*%s*/'