about summary refs log tree commit diff stats
path: root/vimrc.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vimrc.vim')
-rw-r--r--vimrc.vim4
1 files changed, 3 insertions, 1 deletions
diff --git a/vimrc.vim b/vimrc.vim
index 83cc29b8..5587637e 100644
--- a/vimrc.vim
+++ b/vimrc.vim
@@ -19,7 +19,9 @@ function! HighlightTangledFile()
 
   " Our C++ files can have Mu code in scenarios, so highlight Mu comments like
   " regular comments.
-  syntax match muComment /# .*$/ | highlight link muComment Comment
+  syntax match muComment /# .*$/
+  syntax match muComment /#: .*$/
+  highlight link muComment Comment
   syntax match muSalientComment /##.*$/ | highlight link muSalientComment SalientComment
   syntax match muCommentedCode /#? .*$/ | highlight link muCommentedCode CommentedCode
   set comments+=n:#