Browse Source

Fixed nested comments

Comments can now be nested.
master
zelaven 2 years ago
parent
commit
d55c85f0f8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      acs.vim

+ 1
- 1
acs.vim View File

@ -21,7 +21,7 @@ hi def link TODO Todo
" @Spell means spell checking if I understand correctly.
syn region line_comment start="//" end="$" contains=TODO,@Spell
hi def link line_comment Comment
syn region block_comment start="/\*" end="\*/" contains=TODO,@Spell
syn region block_comment start="/\*" end="\*/" contains=TODO,@Spell,line_comment,block_comment
hi def link block_comment Comment
syn region string start=+"+ end=+"+

Loading…
Cancel
Save