about summary refs log tree commit diff stats
path: root/subx/subx.vim
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-06-30 21:59:55 -0700
committerKartik Agaram <vc@akkartik.com>2018-06-30 21:59:55 -0700
commitda5968f71e35f308d86f910b80a8715fcf684ffa (patch)
tree0cb3fd0bff50a3fa358ba0f8aaff8cb38a198820 /subx/subx.vim
parentb085378e948fed8a77b6e42c1a76673f888decb6 (diff)
downloadmu-da5968f71e35f308d86f910b80a8715fcf684ffa.tar.gz
4295
Diffstat (limited to 'subx/subx.vim')
-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