| Crates.io | erlls |
| lib.rs | erlls |
| version | 0.0.28 |
| created_at | 2023-07-30 09:51:04.074184+00 |
| updated_at | 2025-08-02 14:51:51.580261+00 |
| description | Erlang language server |
| homepage | https://github.com/sile/erlls |
| repository | https://github.com/sile/erlls |
| max_upload_size | |
| id | 929837 |
| size | 47,081 |
Erlang language server.
textDocument/{didOpen,didSave})
-doc and -moduledoc attributes are supported (i.e., doc comments are not supported)ErlLS can be used with any LSP clients. Here are a few examples.
Please install erlls extension.
There is no need to install the erlls binary using the $ cargo install command as the extension already includes the WebAssembly build.
settings.json)To include the Erlang/OTP applications in the search target, please specify the directory as follows:
{
"erlls.erlLibs": "/usr/local/lib/erlang/lib/:_checkouts:_build/default/lib"
}
NOTE:
erlls command.$ cargo install erlls
.emacs file.(with-eval-after-load 'lsp-mode
(add-to-list 'lsp-language-id-configuration
'(erlang-mode . "erlang")))
(lsp-register-client
(make-lsp-client :new-connection (lsp-stdio-connection "erlls")
:activation-fn (lsp-activate-on "erlang")
:priority -1
:server-id 'erlls))