summaryrefslogtreecommitdiffstats
path: root/syntax/vcl.vim
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--syntax/vcl.vim6
1 files changed, 2 insertions, 4 deletions
diff --git a/syntax/vcl.vim b/syntax/vcl.vim
index 66772576..476e4dda 100644
--- a/syntax/vcl.vim
+++ b/syntax/vcl.vim
@@ -1,7 +1,4 @@
-if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'vcl') != -1
- finish
-endif
-
+if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vcl') == -1
" Vim syntax file
" Filename: vcl.vim
" Language: Varnish configuation Language, http://www.varnish-cache.org/wiki/VCL
@@ -108,3 +105,4 @@ hi link vclModes Operator
hi link vclOption Identifier
hi link vclNumber Number
hi link vclNumberTime Number
+endif