mirror of
https://github.com/helix-editor/helix.git
synced 2025-10-06 00:13:28 +02:00
Use syntax symbol pickers for Erlang
Neither language server robustly supports workspace symbol search. `erlang-ls`'s symbol picker takes a long time to open successfully on boot. `elp`'s is faster but not faster than the tags query.
This commit is contained in:
@@ -2047,7 +2047,10 @@ roots = ["rebar.config"]
|
||||
shebangs = ["escript"]
|
||||
comment-token = "%%"
|
||||
indent = { tab-width = 4, unit = " " }
|
||||
language-servers = [ "erlang-ls", "elp" ]
|
||||
language-servers = [
|
||||
{ name = "erlang-ls", except-features = ["document-symbols", "workspace-symbols"] },
|
||||
{ name = "elp", except-features = ["document-symbols", "workspace-symbols"] }
|
||||
]
|
||||
|
||||
[[grammar]]
|
||||
name = "erlang"
|
||||
|
Reference in New Issue
Block a user