about summary refs log tree commit diff stats
path: root/mu.vim
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-10-07 22:00:38 -0700
committerKartik Agaram <vc@akkartik.com>2020-10-08 20:32:44 -0700
commitd906d5fd3845caa9d2d61d91442473b38ca7f3ac (patch)
tree77bd3c19742c66ef904febae041bab13bf6c33e4 /mu.vim
parente9957c78da008b77b260c4d965dd12a1f6d15f3b (diff)
downloadmu-d906d5fd3845caa9d2d61d91442473b38ca7f3ac.tar.gz
6973
Diffstat (limited to 'mu.vim')
-rw-r--r--mu.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/mu.vim b/mu.vim
index 674c0712..8f866c7a 100644
--- a/mu.vim
+++ b/mu.vim
@@ -28,7 +28,7 @@ setlocal formatoptions-=t  " Mu programs have long lines
 setlocal formatoptions+=c  " but comments should still wrap
 
 syntax match muSalientComment /##.*$/  | highlight link muSalientComment SalientComment
-syntax match muComment /#\( \.\| - \|? \)\@!.*/ | highlight link muComment Comment
+syntax match muComment /#\( \.\|? \)\@!.*/ | highlight link muComment Comment
 syntax match muS1Comment /# \..*/ | highlight link muS1Comment Comment
 syntax match muS2Comment /# \. \..*/ | highlight link muS2Comment Comment