Add Erlang Language Platform (ELP) support to Erlang (#11499)
* Add ELP LSP to Erlang * generate docs --------- Co-authored-by: Blaž Hrastnik <blaz@mxxn.io>
This commit is contained in:
parent
d103248cb8
commit
e5dd60f794
2 changed files with 4 additions and 3 deletions
|
@ -49,7 +49,7 @@
|
|||
| elvish | ✓ | | | `elvish` |
|
||||
| env | ✓ | ✓ | | |
|
||||
| erb | ✓ | | | |
|
||||
| erlang | ✓ | ✓ | | `erlang_ls` |
|
||||
| erlang | ✓ | ✓ | | `erlang_ls`, `elp` |
|
||||
| esdl | ✓ | | | |
|
||||
| fidl | ✓ | | | |
|
||||
| fish | ✓ | ✓ | ✓ | |
|
||||
|
|
|
@ -33,6 +33,7 @@ dot-language-server = { command = "dot-language-server", args = ["--stdio"] }
|
|||
earthlyls = { command = "earthlyls" }
|
||||
elixir-ls = { command = "elixir-ls", config = { elixirLS.dialyzerEnabled = false } }
|
||||
elm-language-server = { command = "elm-language-server" }
|
||||
elp = { command = "elp", args = ["server"] }
|
||||
elvish = { command = "elvish", args = ["-lsp"] }
|
||||
erlang-ls = { command = "erlang_ls" }
|
||||
forc = { command = "forc", args = ["lsp"] }
|
||||
|
@ -1800,7 +1801,7 @@ roots = ["rebar.config"]
|
|||
shebangs = ["escript"]
|
||||
comment-token = "%%"
|
||||
indent = { tab-width = 4, unit = " " }
|
||||
language-servers = [ "erlang-ls" ]
|
||||
language-servers = [ "erlang-ls", "elp" ]
|
||||
|
||||
[[grammar]]
|
||||
name = "erlang"
|
||||
|
@ -3808,4 +3809,4 @@ language-servers = ["circom-lsp"]
|
|||
|
||||
[[grammar]]
|
||||
name = "circom"
|
||||
source = { git = "https://github.com/Decurity/tree-sitter-circom", rev = "02150524228b1e6afef96949f2d6b7cc0aaf999e" }
|
||||
source = { git = "https://github.com/Decurity/tree-sitter-circom", rev = "02150524228b1e6afef96949f2d6b7cc0aaf999e" }
|
||||
|
|
Loading…
Add table
Reference in a new issue