From 3394e316b75adbbecc5f71074732587c2c990152 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=A9l=20Kerkmann?= Date: Fri, 27 Oct 2023 19:55:00 +0200 Subject: [PATCH] docs: add ignoring `#[server]` macro for helix as well (#1951) Update helix configuration for the newest version. To be consistent, adding the `server` ignore entry to helix as well. Also sorting the parameters alphabetically. --- docs/book/src/appendix_dx.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/book/src/appendix_dx.md b/docs/book/src/appendix_dx.md index a098526df..0b446591e 100644 --- a/docs/book/src/appendix_dx.md +++ b/docs/book/src/appendix_dx.md @@ -13,8 +13,8 @@ VSCode `settings.json`: ```json "rust-analyzer.procMacro.ignored": { "leptos_macro": [ - "server", - "component" + "component", + "server" ], } ``` @@ -30,8 +30,8 @@ require('lspconfig').rust_analyzer.setup { procMacro = { ignored = { leptos_macro = { - "server", "component", + "server", }, }, }, @@ -45,7 +45,9 @@ Helix, in `.helix/languages.toml`: ```toml [[language]] name = "rust" -config = { procMacro = {ignored = {leptos_macro = ["component"]}}} + +[language-server.rust-analyzer] +config = { procMacro = { ignored = { leptos_macro = ["component", "server"] } } } ``` ```admonish info