diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-04-12 13:59:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-12 13:59:11 +0200 |
commit | f5231d61a5413e3ea45a060dd31e4537634f3d87 (patch) | |
tree | 6fd367ad7db6ecb24c280b91580c6fbfaabe8ba6 | |
parent | e23c6ebed7a6dcc878a64690bbd7252c18591d54 (diff) | |
download | rneovim-f5231d61a5413e3ea45a060dd31e4537634f3d87.tar.gz rneovim-f5231d61a5413e3ea45a060dd31e4537634f3d87.tar.bz2 rneovim-f5231d61a5413e3ea45a060dd31e4537634f3d87.zip |
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
-rw-r--r-- | runtime/ftplugin/cs.lua | 1 |
1 files changed, 1 insertions, 0 deletions
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*/' |