mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
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.
This commit is contained in:
parent
4b0437394c
commit
3394e316b7
1 changed files with 6 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue