summaryrefslogtreecommitdiffstats
path: root/syntax
diff options
context:
space:
mode:
authorWill Woods <wwoods@redhat.com>2011-09-14 17:33:53 -0400
committerWill Woods <wwoods@redhat.com>2011-09-14 17:34:02 -0400
commit076c115f48be5efaee9503d787320d2d115273fa (patch)
treecae4429aef4113363b01b35c066f988f91109b91 /syntax
parenteebf642ba483a81df5ecdaeee258787563cb0398 (diff)
downloadvim-scripts-076c115f48be5efaee9503d787320d2d115273fa.tar.gz
vim-scripts-076c115f48be5efaee9503d787320d2d115273fa.tar.xz
vim-scripts-076c115f48be5efaee9503d787320d2d115273fa.zip
ltmpl: fix removefrom and hilight --allbut
Diffstat (limited to 'syntax')
-rw-r--r--syntax/ltmpl.vim5
1 files 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"