neovim

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

commit 3387dc4a463c80a01702cdd069dde3d505a4e805
parent 3a784bdc8996ee74e0421c345f1afaaf4c4e4da0
Author: ricardaxel <46921637+ricardaxel@users.noreply.github.com>
Date:   Tue, 26 Sep 2023 00:13:58 +0200

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 <axel.ricard@allegrodvt.com>
Diffstat:
Aruntime/ftplugin/d.lua | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

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