Add language server command for OCaml (#2035)

imgbot
unrelentingtech 2 years ago committed by GitHub
parent 9caf7c0d5a
commit 7f461895b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save