From 4cb6970d9d96d0adca78212f5f9b584499e37bb0 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Fri, 30 Nov 2018 16:40:35 -0800 Subject: 4807 Stop highlighting capitalized words in metadata as global variables. --- subx/subx.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'subx/subx.vim') 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 -- cgit 1.4.1-2-gfad0