about summary refs log tree commit diff stats
path: root/cpp
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-22 17:12:48 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-22 17:12:48 -0700
commite89eaad3410cf513c5235ff45db60bf994fbb104 (patch)
treea01a681a2e6c639cb552a0f8f24f54af2db6890e /cpp
parent9e608a7704e79834d7a5a314cec6fe3a5f153711 (diff)
downloadmu-e89eaad3410cf513c5235ff45db60bf994fbb104.tar.gz
1135
Diffstat (limited to 'cpp')
-rw-r--r--cpp/vimrc.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/vimrc.vim b/cpp/vimrc.vim
index 2b79fbec..eae812c9 100644
--- a/cpp/vimrc.vim
+++ b/cpp/vimrc.vim
@@ -17,7 +17,7 @@ function! HighlightTangledFile()
   highlight traceAbsent ctermfg=darkred
   " 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 /# .*$/ | highlight link muComment Comment
   syntax match muSalientComment /##.*$/ | highlight link muSalientComment SalientComment
   syntax match muCommentedCode /#? .*$/ | highlight link muCommentedCode CommentedCode
   " Tangled comments only make sense in the sources and are stripped out of
href='#n140'>140 141