[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/eglot 11cd074 29/45: Support ocaml-language-server out
From: |
Jo�o T�vora |
Subject: |
[elpa] externals/eglot 11cd074 29/45: Support ocaml-language-server out of the box (#149) |
Date: |
Thu, 22 Nov 2018 19:15:31 -0500 (EST) |
branch: externals/eglot
commit 11cd0740f4af92cfc1c0f52433fcf9476e702ceb
Author: Mario Rodas <address@hidden>
Commit: João Távora <address@hidden>
Support ocaml-language-server out of the box (#149)
Copyright-paperwork-exempt: yes
* eglot.el (eglot-server-programs): Add ocaml-language-server.
* README.md (Installation and usage): Mention ocaml-language-server
---
README.md | 3 ++-
eglot.el | 2 ++
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 38698dd..0d73d37 100644
--- a/README.md
+++ b/README.md
@@ -35,6 +35,7 @@ for the language of your choice. Otherwise, it prompts you to
enter one:
* Haskell's [IDE engine][haskell-ide-engine]
* Kotlin's [kotlin-language-server][kotlin-language-server]
* Golang's [go-langserver][go-langserver]
+* Ocaml's [ocaml-language-server][ocaml-language-server]
I'll add to this list as I test more servers. In the meantime you can
customize `eglot-server-programs`:
@@ -303,4 +304,4 @@ Under the hood:
[kotlin-language-server]: https://github.com/fwcd/KotlinLanguageServer
[go-langserver]: https://github.com/sourcegraph/go-langserver
[eclipse-jdt]: https://github.com/eclipse/eclipse.jdt.ls
-
+[ocaml-language-server]: https://github.com/freebroccolo/ocaml-language-server
diff --git a/eglot.el b/eglot.el
index 0a78970..2ce9d08 100644
--- a/eglot.el
+++ b/eglot.el
@@ -85,6 +85,8 @@
rjsx-mode) . ("javascript-typescript-stdio"))
(sh-mode . ("bash-language-server" "start"))
((c++-mode c-mode) . ("ccls"))
+ ((caml-mode tuareg-mode reason-mode)
+ . ("ocaml-language-server" "--stdio"))
(ruby-mode
. ("solargraph" "socket" "--port"
:autoport))
- [elpa] externals/eglot 22e5c57 18/45: Don't ignore unknown SymbolKinds in imenu, (continued)
- [elpa] externals/eglot 22e5c57 18/45: Don't ignore unknown SymbolKinds in imenu, Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot 5ee05f9 16/45: Require subr-x at compile time (#139), Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot d9c3696 15/45: Fix #138: accept deprecated field in SymbolInformation, Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot 82ae4f6 21/45: Re-enable eclipse-jdt tests, Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot ee41f06 22/45: Slightly robustify test engine, Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot faf93ad 13/45: * eglot-tests.el: Disable eclipse connection tests., Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot c664f40 28/45: * eglot.el (eglot-client-capabilities): Mention supported SymbolKinds., Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot edc6538 32/45: Fix a bug introduced by previous bugfix, Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot d6e0ba3 31/45: * eglot-tests.el (eclipse-connect): Increase connect timeout to 20., Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot 31bfe21 24/45: Add support for code action literals, Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot 11cd074 29/45: Support ocaml-language-server out of the box (#149),
Jo�o T�vora <=
- [elpa] externals/eglot 7b4ed97 33/45: Fix #124: add ability to move to LSP-precise columns, Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot f2ccb77 25/45: Simplify eglot-code-action. Fix compilation warning, Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot 2a410e9 30/45: Move constants to top instead of forward-declaring, Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot f74a80f 27/45: Make imenu hierarchical, Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot 118f966 26/45: Fix a bug when response to definitions request is a single location, Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot 3c180c0 19/45: Rework test macros for hopefully more stable testing, Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot b31ba80 35/45: Tweak solution to #125 with a hint from Fangrui Song, Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot fdb1941 36/45: Add support for TextEdits in completion, Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot d66f2eb 39/45: Treat tab characters as 1 column wide in position conversion functions, Jo�o T�vora, 2018/11/22
- [elpa] externals/eglot b731db5 41/45: Add support for R's languageserver (#161), Jo�o T�vora, 2018/11/22