diff options
Diffstat (limited to 'subx/subx.vim')
-rw-r--r-- | subx/subx.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/subx/subx.vim b/subx/subx.vim index 89d06049..0bdeba80 100644 --- a/subx/subx.vim +++ b/subx/subx.vim @@ -27,4 +27,7 @@ let b:cmt_head = "#? " " comment token syntax match subxDelimiter / \. / | highlight link subxDelimiter Delimiter +syntax match subxString %"[^"]*"% | highlight link subxString Constant +syntax match subxGlobal %\<[A-Z][a-z-]*\>% | highlight link subxGlobal SpecialChar + let &cpo = s:save_cpo |