Crates.io | erlls |
lib.rs | erlls |
version | 0.0.19 |
source | src |
created_at | 2023-07-30 09:51:04.074184 |
updated_at | 2024-02-23 05:49:23.21441 |
description | Erlang language server |
homepage | https://github.com/sile/erlls |
repository | https://github.com/sile/erlls |
max_upload_size | |
id | 929837 |
size | 40,799 |
Erlang language server.
textDocument/{didOpen,didSave}
)
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))