diff options
Diffstat (limited to 'indent/eruby.vim')
-rw-r--r-- | indent/eruby.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indent/eruby.vim b/indent/eruby.vim index 7d3966cb..c6cbb3d8 100644 --- a/indent/eruby.vim +++ b/indent/eruby.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 indent file " Language: eRuby " Maintainer: Tim Pope <vimNOSPAM@tpope.org> @@ -112,3 +109,4 @@ let &cpo = s:cpo_sav unlet! s:cpo_sav " vim:set sw=2 sts=2 ts=8 noet: +endif |