From 15c3f2da30179a60c111065d947edb2ae6d5c33d Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Wed, 12 Apr 2023 12:17:27 +0200 Subject: [PATCH] fix(runtime): add commentstring for C# ftplugin 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*/'