summaryrefslogtreecommitdiffstats
path: root/runtime/syntax/testdir/input/vim9_ex_comment_strings.vim
blob: fd02c1a60a1aba63a0d23a26abe11e472ef03093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
}