mirror of
https://github.com/vim/vim.git
synced 2025-07-04 23:07:33 -04:00
23 lines
287 B
VimL
23 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
|
||
|
}
|