about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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