diff options
Diffstat (limited to 'compiler/rake.vim')
-rw-r--r-- | compiler/rake.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/compiler/rake.vim b/compiler/rake.vim index 2d9d703f..28a0e7d1 100644 --- a/compiler/rake.vim +++ b/compiler/rake.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: Rake " Maintainer: Tim Pope <vimNOSPAM@tpope.org> @@ -41,3 +38,4 @@ let &cpo = s:cpo_save unlet s:cpo_save " vim: nowrap sw=2 sts=2 ts=8: +endif |