syntastic/syntax_checkers/locaml.vim
Martin Grenfell 10e6fe51f0 add locaml checker and make it alias ocaml
Move the locaml->lcaml alias function out of the ocaml checker as this
code wont be loaded for locaml files - only syntax checkers for filetype
that are in use get sourced
2012-01-13 12:16:31 +00:00

27 lines
1001 B
VimL

"============================================================================
"File: locaml.vim
"Description: Syntax checking plugin for syntastic.vim
"Maintainer: Török Edwin <edwintorok at gmail dot com>
"License: This program is free software. It comes without any warranty,
" to the extent permitted by applicable law. You can redistribute
" it and/or modify it under the terms of the Do What The Fuck You
" Want To Public License, Version 2, as published by Sam Hocevar.
" See http://sam.zoy.org/wtfpl/COPYING for more details.
"
"============================================================================
if exists("loaded_locaml_syntax_checker")
finish
endif
let loaded_locaml_syntax_checker = 1
"bail if the user doesnt have camlp4o installed
if !executable("camlp4o")
finish
endif
runtime syntax_checkers/ocaml.vim
function! SyntaxCheckers_locaml_GetLocList()
return SyntaxCheckers_ocaml_GetLocList()
endfunction