neovim

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

commit 7e450aa3839fb815f1f000a503bb3210022ce67a
parent 577f9fa1becf3b870cdd54bc0cb49c4fd9aa8239
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Sun, 17 Aug 2025 09:26:37 +0800

vim-patch:b405c79: runtime(vim): set 'comments' based on script type (legacy/Vim9) (#35359)

fixes: vim/vim#18000

https://github.com/vim/vim/commit/b405c790046fc6758bf4a90feb6a67c2411685a0

Co-authored-by: Christian Brabandt <cb@256bit.org>
Diffstat:
Mruntime/ftplugin/vim.vim | 9+++++----
1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/runtime/ftplugin/vim.vim b/runtime/ftplugin/vim.vim @@ -6,6 +6,7 @@ " Contributors: Riley Bruins <ribru17@gmail.com> ('commentstring'), " @Konfekt " @tpope (s:Help()) +" 2025 Aug 16 by Vim Project set com depending on Vim9 or legacy script " Only do this when not done yet for this buffer if exists("b:did_ftplugin") @@ -102,14 +103,14 @@ setlocal keywordprg=:VimKeywordPrg " Comments starts with # in Vim9 script. We have to guess which one to use. if "\n" .. getline(1, 32)->join("\n") =~# '\n\s*vim9\%[script]\>' setlocal commentstring=#\ %s + " Set 'comments' to format dashed lists in comments, for Vim9 script. + setlocal com=sO:#\ -,mO:#\ \ ,eO:##,:#\\\ ,:# else setlocal commentstring=\"%s + " Set 'comments' to format dashed lists in comments, for legacy Vim script. + setlocal com=sO:\"\ -,mO:\"\ \ ,eO:\"\",:\"\\\ ,:\" endif -" Set 'comments' to format dashed lists in comments, both in Vim9 and legacy -" script. -setlocal com=sO:#\ -,mO:#\ \ ,eO:##,:#\\\ ,:#,sO:\"\ -,mO:\"\ \ ,eO:\"\",:\"\\\ ,:\" - " Format comments to be up to 78 characters long if &tw == 0