Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions LSP.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -344,10 +344,9 @@
},
"ocaml": {
"command": [
"ocaml-language-server",
"--stdio"
"ocamllsp"
],
"selector": "source.reason | source.ocaml",
"selector": "source.ocaml | source.reason",
},
"polymer-ide": {
"command": [
Expand Down
17 changes: 1 addition & 16 deletions docs/src/language_servers.md
Original file line number Diff line number Diff line change
Expand Up @@ -380,22 +380,7 @@ Spell check can be provided by [LSP-ltex-ls](https://github.com/LDAP/LSP-ltex-ls

## OCaml/Reason

1. Install the [Reason](https://packagecontrol.io/packages/Reason) package from Package Control for syntax highlighting.
2. Install the [Reason Language Server](https://github.com/jaredly/reason-language-server#sublime-text).
3. Open `Preferences > Package Settings > LSP > Settings` and add the `"reason"` client configuration to the `"clients"`:


```jsonc
{
"clients": {
"reason": {
"enabled": true,
"command": ["PATH/TO/reason-language-server.exe"], // Update the PATH
"selector": "source.ocaml | source.reason"
}
}
}
```
Follow installation instructions on [OCaml-LSP](https://github.com/ocaml/ocaml-lsp).

## Odin

Expand Down