aboutsummaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
Diffstat (limited to 'misc')
-rw-r--r--misc/cff.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/cff.vim b/misc/cff.vim
index 3e0b3b8..49ab137 100644
--- a/misc/cff.vim
+++ b/misc/cff.vim
@@ -31,6 +31,6 @@ syn match cFloat display contained "\d\+\.\d*\%(f\|f32\|f64\)\?\>"
syn region String start=+"+ skip=+\\\\\|\\"+ end=+"+ extend
syn region Character start=+'+ skip=+\\\\\|\\'+ end=+'+ extend
syn region Comment start="//" end="$"
-syn region mComment start="#!{" end="}" contains=mComment,mCommentBraces,String,Character
-syn region mCommentBraces contained start=+[^'"!]{+ end="}" contains=mCommentBraces,String
+syn region mComment start="#{" end="}" contains=mComment,mCommentBraces,String,Character
+syn region mCommentBraces contained start=+[^'"#]{+ end="}" contains=mCommentBraces,String
hi link mComment Comment