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