2012-01-13 07:00:53 -05:00
|
|
|
"============================================================================
|
|
|
|
"File: ocaml.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.
|
|
|
|
"
|
|
|
|
"============================================================================
|
2012-01-13 08:48:25 -05:00
|
|
|
"
|
2012-08-23 12:13:30 -04:00
|
|
|
" The more reliable way to check for a single .ml file is to use ocamlc.
|
|
|
|
" You can do that setting this in your .vimrc:
|
|
|
|
"
|
|
|
|
" let g:syntastic_ocaml_use_ocamlc = 1
|
|
|
|
" It's possible to use ocamlc in conjuction with Jane Street's Core. In order
|
|
|
|
" to do that, you have to specify this in your .vimrc:
|
|
|
|
"
|
|
|
|
" let g:syntastic_ocaml_use_janestreet_core = 1
|
|
|
|
" let g:syntastic_ocaml_janestreet_core_dir = <path>
|
|
|
|
"
|
|
|
|
" Where path is the path to your core installation (usually a collection of
|
|
|
|
" .cmx and .cmxa files).
|
|
|
|
"
|
|
|
|
"
|
2012-01-13 08:48:25 -05:00
|
|
|
" By default the camlp4o preprocessor is used to check the syntax of .ml, and .mli files,
|
|
|
|
" ocamllex is used to check .mll files and menhir is used to check .mly files.
|
|
|
|
" The output is all redirected to /dev/null, nothing is written to the disk.
|
|
|
|
"
|
|
|
|
" If your source code needs camlp4r then you can define this in your .vimrc:
|
|
|
|
"
|
|
|
|
" let g:syntastic_ocaml_camlp4r = 1
|
|
|
|
"
|
|
|
|
" If you used some syntax extensions, or you want to also typecheck the source
|
|
|
|
" code, then you can define this:
|
|
|
|
"
|
|
|
|
" let g:syntastic_ocaml_use_ocamlbuild = 1
|
|
|
|
"
|
|
|
|
" This will run ocamlbuild <name>.inferred.mli, so it will write to your _build
|
|
|
|
" directory (and possibly rebuild your myocamlbuild.ml plugin), only enable this
|
|
|
|
" if you are ok with that.
|
|
|
|
"
|
|
|
|
" If you are using syntax extensions / external libraries and have a properly
|
|
|
|
" set up _tags (and myocamlbuild.ml file) then it should just work
|
|
|
|
" to enable this flag and get syntax / type checks through syntastic.
|
|
|
|
"
|
|
|
|
" For best results your current directory should be the project root
|
|
|
|
" (same situation if you want useful output from :make).
|
|
|
|
|
2012-01-13 07:00:53 -05:00
|
|
|
if exists("loaded_ocaml_syntax_checker")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let loaded_ocaml_syntax_checker = 1
|
|
|
|
|
2012-01-13 08:48:25 -05:00
|
|
|
if exists('g:syntastic_ocaml_camlp4r') &&
|
|
|
|
\ g:syntastic_ocaml_camlp4r != 0
|
|
|
|
let s:ocamlpp="camlp4r"
|
|
|
|
else
|
|
|
|
let s:ocamlpp="camlp4o"
|
|
|
|
endif
|
|
|
|
|
|
|
|
"bail if the user doesnt have the preprocessor
|
|
|
|
if !executable(s:ocamlpp)
|
2012-01-13 07:00:53 -05:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2012-08-31 16:18:57 -04:00
|
|
|
if !exists('g:syntastic_ocaml_use_ocamlc') || !executable('ocamlc')
|
|
|
|
let g:syntastic_ocaml_use_ocamlc = 0
|
|
|
|
endif
|
|
|
|
|
|
|
|
if !exists(':syntastic_ocaml_use_janestreet_core')
|
|
|
|
let g:syntastic_ocaml_use_ocamlc = 0
|
|
|
|
endif
|
|
|
|
|
|
|
|
if !exists('g:syntastic_ocaml_use_ocamlbuild') || !executable("ocamlbuild")
|
|
|
|
let g:syntastic_ocaml_use_ocamlbuild = 0
|
|
|
|
endif
|
|
|
|
|
2012-01-13 07:00:53 -05:00
|
|
|
function! SyntaxCheckers_ocaml_GetLocList()
|
2012-08-31 16:18:57 -04:00
|
|
|
let makeprg = s:GetMakeprg()
|
|
|
|
if makeprg == ""
|
|
|
|
return []
|
2012-01-13 07:00:53 -05:00
|
|
|
endif
|
2012-08-31 16:18:57 -04:00
|
|
|
|
2012-01-16 09:27:21 -05:00
|
|
|
let errorformat = '%AFile "%f"\, line %l\, characters %c-%*\d:,'.
|
|
|
|
\ '%AFile "%f"\, line %l\, characters %c-%*\d (end at line %*\d\, character %*\d):,'.
|
|
|
|
\ '%AFile "%f"\, line %l\, character %c:,'.
|
|
|
|
\ '%AFile "%f"\, line %l\, character %c:%m,'.
|
|
|
|
\ '%-GPreprocessing error %.%#,'.
|
|
|
|
\ '%-GCommand exited %.%#,'.
|
|
|
|
\ '%C%tarning %n: %m,'.
|
2012-01-13 08:48:25 -05:00
|
|
|
\ '%C%m,'.
|
|
|
|
\ '%-G+%.%#'
|
2012-01-13 07:00:53 -05:00
|
|
|
|
|
|
|
return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })
|
|
|
|
endfunction
|
2012-08-31 16:18:57 -04:00
|
|
|
|
|
|
|
function s:GetMakeprg()
|
|
|
|
if g:syntastic_ocaml_use_ocamlc
|
|
|
|
return s:GetOcamlcMakeprg()
|
|
|
|
endif
|
|
|
|
|
|
|
|
if g:syntastic_ocaml_use_ocamlbuild && isdirectory('_build')
|
|
|
|
return s:GetOcamlBuildMakeprg()
|
|
|
|
endif
|
|
|
|
|
|
|
|
return s:GetOtherMakeprg()
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function s:GetOcamlcMakeprg()
|
|
|
|
if g:syntastic_ocaml_use_janestreet_core
|
|
|
|
return "ocamlc -I ". shellescape(expand(g:syntastic_ocaml_janestreet_core_dir)) ." -c ".shellescape(expand('%'))
|
|
|
|
else
|
|
|
|
return "ocamlc -c ".shellescape(expand('%'))
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function s:GetOcamlBuildMakeprg()
|
|
|
|
return "ocamlbuild -quiet -no-log -tag annot,". s:ocamlpp. " -no-links -no-hygiene -no-sanitize ".
|
|
|
|
\ shellescape(expand('%:r')).".cmi"
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function s:GetOtherMakeprg()
|
|
|
|
"TODO: give this function a better name?
|
|
|
|
"
|
|
|
|
"TODO: should use throw/catch instead of returning an empty makeprg
|
|
|
|
|
|
|
|
let extension = expand('%:e')
|
|
|
|
let makeprg = ""
|
|
|
|
|
|
|
|
if match(extension, 'mly') >= 0 && executable("menhir")
|
|
|
|
" ocamlyacc output can't be redirected, so use menhir
|
|
|
|
let makeprg = "menhir --only-preprocess ".shellescape(expand('%')) . " >/dev/null"
|
|
|
|
elseif match(extension,'mll') >= 0 && executable("ocamllex")
|
|
|
|
let makeprg = "ocamllex -q -o /dev/null ".shellescape(expand('%'))
|
|
|
|
else
|
|
|
|
let makeprg = "camlp4o -o /dev/null ".shellescape(expand('%'))
|
|
|
|
endif
|
|
|
|
|
|
|
|
return makeprg
|
|
|
|
endfunction
|