summaryrefslogtreecommitdiffstats
path: root/runtime/syntax/testdir/input/vim_ex_no_comment_strings.vim
blob: d9b53b3a3096c426c2c9760d9d873b48a9df6fba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
" Vim comment strings
" VIM_TEST_SETUP let g:vimsyn_comment_strings = v:false

" 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
}