File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -604,6 +604,11 @@ Number of syntax trees rust-analyzer keeps in memory. Defaults to 128.
604
604
--
605
605
Whether to show `can't find Cargo.toml` error message.
606
606
--
607
+ [[rust-analyzer.numThreads]]rust-analyzer.numThreads (default: `null` )::
608
+ +
609
+ --
610
+ How many worker threads in the main loop. The default `null` means to pick automatically.
611
+ --
607
612
[[rust-analyzer.procMacro.attributes.enable]]rust-analyzer.procMacro.attributes.enable (default: `true` )::
608
613
+
609
614
--
Original file line number Diff line number Diff line change 1137
1137
"default" : true ,
1138
1138
"type" : " boolean"
1139
1139
},
1140
+ "rust-analyzer.numThreads" : {
1141
+ "markdownDescription" : " How many worker threads in the main loop. The default `null` means to pick automatically." ,
1142
+ "default" : null ,
1143
+ "type" : [
1144
+ " null" ,
1145
+ " integer"
1146
+ ],
1147
+ "minimum" : 0
1148
+ },
1140
1149
"rust-analyzer.procMacro.attributes.enable" : {
1141
1150
"markdownDescription" : " Expand attribute macros. Requires `#rust-analyzer.procMacro.enable#` to be set." ,
1142
1151
"default" : true ,
You can’t perform that action at this time.
0 commit comments