2017-11-11 13:27:41 -05:00
|
|
|
" Author: Michael Jungo <michaeljungo92@gmail.com>
|
|
|
|
" Description: A language server for Reason
|
|
|
|
|
|
|
|
call ale#Set('reason_ols_executable', 'ocaml-language-server')
|
2018-04-09 14:11:20 -04:00
|
|
|
call ale#Set('reason_ols_use_global', get(g:, 'ale_use_global_executables', 0))
|
2017-11-11 13:27:41 -05:00
|
|
|
|
|
|
|
call ale#linter#Define('reason', {
|
|
|
|
\ 'name': 'ols',
|
|
|
|
\ 'lsp': 'stdio',
|
2019-02-22 13:05:04 -05:00
|
|
|
\ 'executable': function('ale#handlers#ols#GetExecutable'),
|
|
|
|
\ 'command': function('ale#handlers#ols#GetCommand'),
|
2017-11-11 13:27:41 -05:00
|
|
|
\ 'language_callback': 'ale#handlers#ols#GetLanguage',
|
2019-02-22 13:05:04 -05:00
|
|
|
\ 'project_root': function('ale#handlers#ols#GetProjectRoot'),
|
2017-11-11 13:27:41 -05:00
|
|
|
\})
|