diff options
Diffstat (limited to '')
-rw-r--r-- | compiler/rspec.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/compiler/rspec.vim b/compiler/rspec.vim index f7102fda..8c9c020f 100644 --- a/compiler/rspec.vim +++ b/compiler/rspec.vim @@ -1,7 +1,4 @@ -if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'ruby') != -1 - finish -endif - +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ruby') == -1 " Vim compiler file " Language: RSpec " Maintainer: Tim Pope <vimNOSPAM@tpope.org> @@ -37,3 +34,4 @@ let &cpo = s:cpo_save unlet s:cpo_save " vim: nowrap sw=2 sts=2 ts=8: +endif |