From: dalu Date: Thu, 17 Aug 2023 10:34:42 +0000 (+0800) Subject: Add "lexical" LSP server for Elixir to Eglot X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9e0524a8820fbb8fdb155b1ca58919dcfcaffd63;p=emacs.git Add "lexical" LSP server for Elixir to Eglot * lisp/progmodes/eglot.el (eglot-server-programs): Add lexical. It does not support MS-Windows currently. (Bug#65359) Copyright-paperwork-exempt: yes --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 113ff08e94e..65daa0941d5 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -222,7 +222,8 @@ chosen (interactively or automatically)." . ,(if (and (fboundp 'w32-shell-dos-semantics) (w32-shell-dos-semantics)) '("language_server.bat") - '("language_server.sh"))) + (eglot-alternatives + '("language_server.sh" "start_lexical.sh")))) (ada-mode . ("ada_language_server")) (scala-mode . ,(eglot-alternatives '("metals" "metals-emacs")))