0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00
vim/runtime/syntax/testdir/input/vim9_comment_strings.vim
Doug Kearns cced80dcbb
runtime(vim): Cleanup syntax tests
Improve formatting and naming consistency of the syntax tests.

closes: #17850

Signed-off-by: Doug Kearns <dougkearns@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
2025-07-25 20:00:46 +02:00

28 lines
316 B
VimL

vim9script
# Vim9 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
}
{
# pre "string" post
}