1
0
Fork 0
mirror of synced 2024-05-26 20:11:13 -04:00
ultimate-vim/sources_non_forked/ale/ale_linters/ocaml/ols.vim

15 lines
554 B
VimL
Raw Normal View History

" Author: Michael Jungo <michaeljungo92@gmail.com>
" Description: A language server for OCaml
call ale#Set('ocaml_ols_executable', 'ocaml-language-server')
2018-06-14 06:31:12 -04:00
call ale#Set('ocaml_ols_use_global', get(g:, 'ale_use_global_executables', 0))
call ale#linter#Define('ocaml', {
\ 'name': 'ols',
\ 'lsp': 'stdio',
2019-03-08 06:04:56 -05:00
\ 'executable': function('ale#handlers#ols#GetExecutable'),
\ 'command': function('ale#handlers#ols#GetCommand'),
\ 'language_callback': 'ale#handlers#ols#GetLanguage',
2019-03-08 06:04:56 -05:00
\ 'project_root': function('ale#handlers#ols#GetProjectRoot'),
\})