about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--subx/subx.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/subx/subx.vim b/subx/subx.vim
index 342db05e..41026cea 100644
--- a/subx/subx.vim
+++ b/subx/subx.vim
@@ -15,7 +15,7 @@ set cpo&vim
 setlocal formatoptions-=t  " allow long lines
 setlocal formatoptions+=c  " but comments should still wrap
 
-syntax match subxComment /# .*$/  | highlight link subxComment Comment
+syntax match subxComment /#.*$/  | highlight link subxComment Comment
 syntax match subxSalientComment /##.*$/  | highlight link subxSalientComment SalientComment
 set comments+=n:#
 syntax match subxCommentedCode "#? .*"  | highlight link subxCommentedCode CommentedCode