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