From 3387dc4a463c80a01702cdd069dde3d505a4e805 Mon Sep 17 00:00:00 2001 From: ricardaxel <46921637+ricardaxel@users.noreply.github.com> Date: Tue, 26 Sep 2023 00:13:58 +0200 Subject: fix(runtime): add commentstring for D ftplugin (#25362) Problem: No commentstring is set for D buffers after removing the default C-style commentstring Same solution than neovim#23039 Co-authored-by: Axel Ricard --- runtime/ftplugin/d.lua | 1 + 1 file changed, 1 insertion(+) create mode 100644 runtime/ftplugin/d.lua (limited to 'runtime/ftplugin/d.lua') diff --git a/runtime/ftplugin/d.lua b/runtime/ftplugin/d.lua new file mode 100644 index 0000000000..b4e68148f5 --- /dev/null +++ b/runtime/ftplugin/d.lua @@ -0,0 +1 @@ +vim.bo.commentstring = '/*%s*/' -- cgit