diff options
Diffstat (limited to 'indent/pony.vim')
-rw-r--r-- | indent/pony.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indent/pony.vim b/indent/pony.vim index 5db42cae..67ce483b 100644 --- a/indent/pony.vim +++ b/indent/pony.vim @@ -1,7 +1,4 @@ -if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'pony') != -1 - finish -endif - +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'pony') == -1 " Vim indent file " Language: Pony " Maintainer: Jak Wings @@ -39,3 +36,4 @@ let &cpo = s:cpo_save unlet s:cpo_save let b:did_indent = 1 +endif |