diff options
Diffstat (limited to 'ftplugin/ion.vim')
-rw-r--r-- | ftplugin/ion.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ftplugin/ion.vim b/ftplugin/ion.vim index 7cb349b9..1a056112 100644 --- a/ftplugin/ion.vim +++ b/ftplugin/ion.vim @@ -1,9 +1,7 @@ -if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'ion') != -1 - finish -endif - +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ion') == -1 if exists("b:did_ftplugin") | finish | endif let b:did_ftplugin = 1 setlocal commentstring=#%s +endif |