Unnamed repository; edit this file 'description' to name the repository.
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.
| -rw-r--r-- | languages.toml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/languages.toml b/languages.toml index f9a9c67e..96eae3d1 100644 --- a/languages.toml +++ b/languages.toml @@ -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" |