about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--subx/subx.vim3
1 files changed, 2 insertions, 1 deletions
diff --git a/subx/subx.vim b/subx/subx.vim
index e3c6a04f..f150718d 100644
--- a/subx/subx.vim
+++ b/subx/subx.vim
@@ -34,7 +34,8 @@ syntax match subxDelimiter / \. /  | highlight link subxDelimiter CommentedCode
 
 syntax match subxString %"[^"]*"% | highlight link subxString Constant
 " match globals but not registers like 'EAX'
-syntax match subxGlobal %\<[A-Z][a-z0-9_-]*\>% | highlight link subxGlobal SpecialChar
+syntax match subxGlobal %[^/]\<[A-Z][a-z0-9_-]*\>\|^[A-Z][a-z0-9_-]*\>% | highlight link subxGlobal SpecialChar
+"? syntax match subxGlobal %\/\@!\<[A-Z][a-z0-9_-]*\>% | highlight link subxGlobal SpecialChar
 " tweak the red color from the colorscheme just a tad to improve contrast
 highlight SpecialChar ctermfg=196