diff options
Diffstat (limited to '')
-rw-r--r-- | compiler/rubyunit.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/compiler/rubyunit.vim b/compiler/rubyunit.vim index b99c73bf..884d05ac 100644 --- a/compiler/rubyunit.vim +++ b/compiler/rubyunit.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: Test::Unit - Ruby Unit Testing Framework " Maintainer: Doug Kearns <dougkearns@gmail.com> @@ -37,3 +34,4 @@ let &cpo = s:cpo_save unlet s:cpo_save " vim: nowrap sw=2 sts=2 ts=8: +endif |