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