diff options
Diffstat (limited to 'indent/ruby.vim')
-rw-r--r-- | indent/ruby.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indent/ruby.vim b/indent/ruby.vim index 56c1aa12..dad86a8c 100644 --- a/indent/ruby.vim +++ b/indent/ruby.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: Ruby " Maintainer: Andrew Radev <andrey.radev@gmail.com> @@ -954,3 +951,4 @@ let &cpo = s:cpo_save unlet s:cpo_save " vim:set sw=2 sts=2 ts=8 et: +endif |