diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-11-24 20:54:56 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-11-24 22:42:02 -0800 |
commit | a8f47b4a640375af3c949b0347edadf12a8ff579 (patch) | |
tree | 108f85884450925374219aaa386506bbcfcc69b0 /subx | |
parent | 3c46d5a221542195aca58f8f7061f59cda479927 (diff) | |
download | mu-a8f47b4a640375af3c949b0347edadf12a8ff579.tar.gz |
4772
Diffstat (limited to 'subx')
-rw-r--r-- | subx/subx.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/subx/subx.vim b/subx/subx.vim index 0bdeba80..0ba55cd9 100644 --- a/subx/subx.vim +++ b/subx/subx.vim @@ -28,6 +28,7 @@ let b:cmt_head = "#? " 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 +" match globals but not registers like 'EAX' +syntax match subxGlobal %\<[A-Z][a-z0-9_-]*\>% | highlight link subxGlobal SpecialChar let &cpo = s:save_cpo |