Add language server command for OCaml (#2035)
This commit is contained in:
parent
9caf7c0d5a
commit
7f461895b0
2 changed files with 5 additions and 3 deletions
|
@ -42,8 +42,8 @@
|
|||
| markdown | ✓ | | | |
|
||||
| mint | | | | `mint` |
|
||||
| nix | ✓ | | ✓ | `rnix-lsp` |
|
||||
| ocaml | ✓ | | ✓ | |
|
||||
| ocaml-interface | ✓ | | | |
|
||||
| ocaml | ✓ | | ✓ | `ocamllsp` |
|
||||
| ocaml-interface | ✓ | | | `ocamllsp` |
|
||||
| org | ✓ | | | |
|
||||
| perl | ✓ | ✓ | ✓ | |
|
||||
| php | ✓ | ✓ | ✓ | `intelephense` |
|
||||
|
|
|
@ -529,6 +529,7 @@ file-types = ["ml"]
|
|||
shebangs = []
|
||||
roots = []
|
||||
comment-token = "(**)"
|
||||
language-server = { command = "ocamllsp" }
|
||||
indent = { tab-width = 2, unit = " " }
|
||||
|
||||
[[grammar]]
|
||||
|
@ -542,7 +543,8 @@ file-types = ["mli"]
|
|||
shebangs = []
|
||||
roots = []
|
||||
comment-token = "(**)"
|
||||
indent = { tab-width = 2, unit = " "}
|
||||
language-server = { command = "ocamllsp" }
|
||||
indent = { tab-width = 2, unit = " " }
|
||||
|
||||
[[grammar]]
|
||||
name = "ocaml-interface"
|
||||
|
|
Loading…
Reference in a new issue