mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 21:13:37 +00:00
Regenerate config
This commit is contained in:
parent
7d466570f4
commit
9f5a547b3f
2 changed files with 14 additions and 0 deletions
|
@ -604,6 +604,11 @@ Number of syntax trees rust-analyzer keeps in memory. Defaults to 128.
|
|||
--
|
||||
Whether to show `can't find Cargo.toml` error message.
|
||||
--
|
||||
[[rust-analyzer.numThreads]]rust-analyzer.numThreads (default: `null`)::
|
||||
+
|
||||
--
|
||||
How many worker threads in the main loop. The default `null` means to pick automatically.
|
||||
--
|
||||
[[rust-analyzer.procMacro.attributes.enable]]rust-analyzer.procMacro.attributes.enable (default: `true`)::
|
||||
+
|
||||
--
|
||||
|
|
|
@ -1137,6 +1137,15 @@
|
|||
"default": true,
|
||||
"type": "boolean"
|
||||
},
|
||||
"rust-analyzer.numThreads": {
|
||||
"markdownDescription": "How many worker threads in the main loop. The default `null` means to pick automatically.",
|
||||
"default": null,
|
||||
"type": [
|
||||
"null",
|
||||
"integer"
|
||||
],
|
||||
"minimum": 0
|
||||
},
|
||||
"rust-analyzer.procMacro.attributes.enable": {
|
||||
"markdownDescription": "Expand attribute macros. Requires `#rust-analyzer.procMacro.enable#` to be set.",
|
||||
"default": true,
|
||||
|
|
Loading…
Reference in a new issue