diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-06-30 21:59:55 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-06-30 21:59:55 -0700 |
commit | da5968f71e35f308d86f910b80a8715fcf684ffa (patch) | |
tree | 0cb3fd0bff50a3fa358ba0f8aaff8cb38a198820 /subx | |
parent | b085378e948fed8a77b6e42c1a76673f888decb6 (diff) | |
download | mu-da5968f71e35f308d86f910b80a8715fcf684ffa.tar.gz |
4295
Diffstat (limited to 'subx')
-rw-r--r-- | subx/subx.vim | 2 |
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 |