diff options
Diffstat (limited to 'syntax/cucumber.vim')
| -rw-r--r-- | syntax/cucumber.vim | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/syntax/cucumber.vim b/syntax/cucumber.vim index 328d3912..496db9c7 100644 --- a/syntax/cucumber.vim +++ b/syntax/cucumber.vim @@ -1,5 +1,7 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'cucumber') == -1 -   +if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'cucumber') != -1 +  finish +endif +  " Vim syntax file  " Language:     Cucumber  " Maintainer:   Tim Pope <vimNOSPAM@tpope.org> @@ -142,5 +144,3 @@ let &cpo = s:keepcpo  unlet s:keepcpo  " vim:set sts=2 sw=2: - -endif | 
