mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 03:18:16 +00:00
vim-patch:b405c79: runtime(vim): set 'comments' based on script type (legacy/Vim9) (#35359)
fixes: vim/vim#18000
b405c79004
Co-authored-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
@@ -6,6 +6,7 @@
|
|||||||
" Contributors: Riley Bruins <ribru17@gmail.com> ('commentstring'),
|
" Contributors: Riley Bruins <ribru17@gmail.com> ('commentstring'),
|
||||||
" @Konfekt
|
" @Konfekt
|
||||||
" @tpope (s:Help())
|
" @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
|
" Only do this when not done yet for this buffer
|
||||||
if exists("b:did_ftplugin")
|
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.
|
" 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]\>'
|
if "\n" .. getline(1, 32)->join("\n") =~# '\n\s*vim9\%[script]\>'
|
||||||
setlocal commentstring=#\ %s
|
setlocal commentstring=#\ %s
|
||||||
|
" Set 'comments' to format dashed lists in comments, for Vim9 script.
|
||||||
|
setlocal com=sO:#\ -,mO:#\ \ ,eO:##,:#\\\ ,:#
|
||||||
else
|
else
|
||||||
setlocal commentstring=\"%s
|
setlocal commentstring=\"%s
|
||||||
|
" Set 'comments' to format dashed lists in comments, for legacy Vim script.
|
||||||
|
setlocal com=sO:\"\ -,mO:\"\ \ ,eO:\"\",:\"\\\ ,:\"
|
||||||
endif
|
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
|
" Format comments to be up to 78 characters long
|
||||||
if &tw == 0
|
if &tw == 0
|
||||||
|
Reference in New Issue
Block a user