diff options
Diffstat (limited to 'ftplugin/crystal.vim')
-rw-r--r-- | ftplugin/crystal.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ftplugin/crystal.vim b/ftplugin/crystal.vim index 58ce5251..8ebdaed8 100644 --- a/ftplugin/crystal.vim +++ b/ftplugin/crystal.vim @@ -1,5 +1,7 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'crystal') == -1 - +if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'crystal') != -1 + finish +endif + if exists('b:did_ftplugin') finish endif @@ -80,5 +82,3 @@ let &cpo = s:save_cpo unlet s:save_cpo " vim: nowrap sw=2 sts=2 ts=8: - -endif |