diff options
Diffstat (limited to 'ftplugin/sexplib.vim')
-rw-r--r-- | ftplugin/sexplib.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ftplugin/sexplib.vim b/ftplugin/sexplib.vim index 373eef3a..23b689db 100644 --- a/ftplugin/sexplib.vim +++ b/ftplugin/sexplib.vim @@ -1,7 +1,4 @@ -if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'ocaml') != -1 - finish -endif - +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ocaml') == -1 " Language: Sexplib " Maintainer: Markus Mottl <markus.mottl@gmail.com> " URL: http://www.ocaml.info/vim/ftplugin/sexplib.vim @@ -16,3 +13,4 @@ let b:did_ftplugin=1 " Comment string setl commentstring=;\ %s setl comments=:; +endif |