1
0
Fork 0
vim/runtime/syntax/testdir/input/vim9_ex_comment_strings.vim
Daniel Baumann 0985b09abd
Adding upstream version 2:9.1.1230.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 11:09:31 +02:00

22 lines
287 B
VimL

vim9script
# Vim comment strings
# VIM_TEST_SETUP let g:vimsyn_comment_strings = v:true
# pre "string" post
function Foo()
" pre "string" post
endfunction
def Bar()
# pre "string" post
enddef
command Foo {
# pre "string" post
}
autocmd BufNewFile * {
# pre "string" post
}