diff options
Diffstat (limited to '')
-rw-r--r-- | syntax/ocaml.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/syntax/ocaml.vim b/syntax/ocaml.vim index 80f2551f..5e6f9359 100644 --- a/syntax/ocaml.vim +++ b/syntax/ocaml.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 " Vim syntax file " Language: OCaml " Filenames: *.ml *.mli *.mll *.mly @@ -393,3 +390,4 @@ endif let b:current_syntax = "ocaml" " vim: ts=8 +endif |