summaryrefslogtreecommitdiffstats
path: root/indent/moon.vim
diff options
context:
space:
mode:
Diffstat (limited to 'indent/moon.vim')
-rw-r--r--indent/moon.vim6
1 files changed, 2 insertions, 4 deletions
diff --git a/indent/moon.vim b/indent/moon.vim
index b758b0e8..7fe985d3 100644
--- a/indent/moon.vim
+++ b/indent/moon.vim
@@ -1,7 +1,4 @@
-if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'moonscript') != -1
- finish
-endif
-
+if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'moonscript') == -1
" Language: MoonScript
" Maintainer: leafo <leafot@gmail.com>
" Based On: CoffeeScript by Mick Koch <kchmck@gmail.com>
@@ -325,3 +322,4 @@ function! GetMoonIndent(curlinenum)
return indent
endfunction
+endif