From fe4facfe15f0e33baf52e0794c84d3706e7b6379 Mon Sep 17 00:00:00 2001 From: max Date: Tue, 8 Oct 2024 15:42:27 +0200 Subject: [PATCH] update helix example config I'm not sure when it changed, but current version `helix 24.7` doesn't work with the old example anymore. --- examples/helix/languages.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/helix/languages.toml b/examples/helix/languages.toml index a22ce18..14ce7b5 100644 --- a/examples/helix/languages.toml +++ b/examples/helix/languages.toml @@ -1,3 +1,3 @@ -[[language]] -name = "rust" -language-server = { command = "ra-multiplex", args = ["client", "--server-path", "rust-analyzer"] } +[language-server.rust-analyzer] +args = ["client", "--server-path", "rust-analyzer"] +command = "/path/to/ra-multiplex"