From f5231d61a5413e3ea45a060dd31e4537634f3d87 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Wed, 12 Apr 2023 13:59:11 +0200 Subject: [PATCH] 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 --- runtime/ftplugin/cs.lua | 1 + 1 file changed, 1 insertion(+) create mode 100644 runtime/ftplugin/cs.lua diff --git a/runtime/ftplugin/cs.lua b/runtime/ftplugin/cs.lua new file mode 100644 index 0000000000..b4e68148f5 --- /dev/null +++ b/runtime/ftplugin/cs.lua @@ -0,0 +1 @@ +vim.bo.commentstring = '/*%s*/'