mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/ale/ale_linters/ocamlinterface/merlin.vim

18 lines
437 B
VimL
Raw Normal View History

2021-05-31 16:30:26 -04:00
" Author: Andrey Popp -- @andreypopp
" Description: Report errors in OCaml code with Merlin
if !exists('g:merlin')
finish
endif
function! ale_linters#ocamlinterface#merlin#Handle(buffer, lines) abort
return merlin#ErrorLocList()
endfunction
call ale#linter#Define('ocamlinterface', {
\ 'name': 'merlin',
\ 'executable': 'ocamlmerlin',
\ 'command': 'true',
\ 'callback': 'ale_linters#ocamlinterface#merlin#Handle',
\})