diff options
Diffstat (limited to 'after/indent/objc.vim')
-rw-r--r-- | after/indent/objc.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/after/indent/objc.vim b/after/indent/objc.vim index 64c7e79c..1bcc217a 100644 --- a/after/indent/objc.vim +++ b/after/indent/objc.vim @@ -1,5 +1,7 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'objc') == -1 - +if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'objc') != -1 + finish +endif + " Vim indent file " Language: Objective-C " Maintainer: Bjorn Winckler <bjorn.winckler@gmail.com> @@ -93,5 +95,3 @@ endfunction " Restore 'cpo' options let &cpo = s:save_cpo unlet s:save_cpo - -endif |