From a02a4f2811f810877f3c3859cca963f9578ff94a Mon Sep 17 00:00:00 2001 From: Pau Ruiz Safont Date: Thu, 27 May 2021 08:33:43 +0100 Subject: ocaml: prepare for filetype separation (#3732) The ocaml filetype is currently used for several, different file formats. This causes problems as not all tools support all formats. New filetypes are introduced to support this separation, this needs some changes in ale that are fortunately backwards-compatible. These change add ocamlinterface file support for ocp-indent, merlin, ocamlformat and ocaml-lsp. For ocaml-lsp I took the liberty to add all recognised language ids, even if they are not supported. ols has not been changed as the project has been abandoned since 2019. --- ale_linters/ocamlinterface/ocamllsp.vim | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ale_linters/ocamlinterface/ocamllsp.vim (limited to 'ale_linters/ocamlinterface/ocamllsp.vim') diff --git a/ale_linters/ocamlinterface/ocamllsp.vim b/ale_linters/ocamlinterface/ocamllsp.vim new file mode 100644 index 00000000..cd4bea80 --- /dev/null +++ b/ale_linters/ocamlinterface/ocamllsp.vim @@ -0,0 +1,13 @@ +" Author: Risto Stevcev +" Description: The official language server for OCaml + +call ale#Set('ocaml_ocamllsp_use_opam', 1) + +call ale#linter#Define('ocamlinterface', { +\ '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'), +\}) -- cgit v1.2.3