From 076c115f48be5efaee9503d787320d2d115273fa Mon Sep 17 00:00:00 2001 From: Will Woods Date: Wed, 14 Sep 2011 17:33:53 -0400 Subject: ltmpl: fix removefrom and hilight --allbut --- syntax/ltmpl.vim | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/syntax/ltmpl.vim b/syntax/ltmpl.vim index 2fb172c..edccd5e 100644 --- a/syntax/ltmpl.vim +++ b/syntax/ltmpl.vim @@ -59,7 +59,7 @@ syn keyword loraxKey gconfset nextgroup=loraxArgs " removefrom GLOB [--allbut] GLOB... syn keyword loraxKey removefrom nextgroup=loraxRemoveFrom -syn region loraxRemoveFrom contained start=// end=/$/ contains=loraxArgsGlob,loraxRemoveFromArgs +syn region loraxRemoveFrom contained start=// end=/$/ contains=@loraxArgClust,loraxGlobSyms,loraxRemoveFromArgs syn match loraxRemoveFromArgs contained /--allbut\>/ " log MESSAGE @@ -88,6 +88,7 @@ hi def link loraxQuote String hi def link loraxError Error hi def link loraxInt Constant -hi def link loraxLog String +hi def link loraxRemoveFromArgs Special +hi def link loraxLog String let b:current_syntax = "ltmpl" -- cgit