runtime(vim): Update base-syntax, match continued strings and tail comments
Continued strings are currently only matched after operators, in parenthesised expressions and in function call argument lists. closes: #14975 Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
c5cb6b2ee4
commit
c29b533cf1
@ -40,10 +40,17 @@ augroup! \|\"
|
||||
augroup \"\| | autocmd! | augroup END
|
||||
augroup! \"\|
|
||||
|
||||
" FIXME: required comment prefix
|
||||
augroup foo"comment " start bad fold
|
||||
|
||||
augroup foo"comment
|
||||
au!
|
||||
au BufRead * echo "Foo"
|
||||
augroup END"comment
|
||||
|
||||
augroup foo|echo "Foo"
|
||||
augroup END " terminate bad fold
|
||||
au!
|
||||
au BufRead * echo "Foo"
|
||||
augroup END|echo "Foo"
|
||||
|
||||
augroup! foo"comment
|
||||
augroup! foo|echo "Foo"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user