diff options
author | Risto Stevcev <risto1@gmail.com> | 2021-02-18 15:51:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-18 23:51:11 +0900 |
commit | 3ea887d2f4d43dd55d81213517344226f6399ed6 (patch) | |
tree | e5c15f7ef4cb7d6167215453cf71905e8808139f /ale_linters | |
parent | 1ee7f6c97bb73bb6e12f00e527b664c5ea0df167 (diff) | |
download | ale-3ea887d2f4d43dd55d81213517344226f6399ed6.zip |
Added ocamllsp (#3595)
* Added ocamllsp
* Update ordering in docs to be alphabetical
* Updated expected result in test
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/ocaml/ocamllsp.vim | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ale_linters/ocaml/ocamllsp.vim b/ale_linters/ocaml/ocamllsp.vim new file mode 100644 index 00000000..4ff7419c --- /dev/null +++ b/ale_linters/ocaml/ocamllsp.vim @@ -0,0 +1,13 @@ +" Author: Risto Stevcev <me@risto.codes> +" Description: The official language server for OCaml + +call ale#Set('ocaml_ocamllsp_use_opam', 1) + +call ale#linter#Define('ocaml', { +\ 'name': 'ocamllsp', +\ 'lsp': 'stdio', +\ 'executable': function('ale#handlers#ocamllsp#GetExecutable'), +\ 'command': function('ale#handlers#ocamllsp#GetCommand'), +\ 'language': function('ale#handlers#ocamllsp#GetLanguage'), +\ 'project_root': function('ale#handlers#ocamllsp#GetProjectRoot'), +\}) |