Merge pull request #3 from cumuru/master
FIX: Block comments have to be the first non-space on their line
This commit is contained in:
commit
a35598c0a0
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ endif
|
|||
setlocal isident=@,48-57,-,.,_,192-255
|
||||
|
||||
" Top level elements
|
||||
syntax region tsComment keepend start="\/\*" end="\*\/"
|
||||
syntax region tsComment keepend start="^\s*\/\*" end="^\s*\*\/.*$"
|
||||
syntax region tsComment keepend start="^\s*#" end="$"
|
||||
syntax region tsComment keepend start="\v^\s*\/\/" end="$"
|
||||
syntax region tsInclude keepend start="\v^\s*\<" end="\v\>\s*$"
|
||||
|
|
Loading…
Reference in a new issue