Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index 0d91378706..a1266c4a67 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -2784,6 +2784,31 @@
}
},
{
+ "title": "Proc",
+ "properties": {
+ "rust-analyzer.proc.macro.processes": {
+ "markdownDescription": "Number of proc-macro server processes to spawn.\n\nControls how many independent `proc-macro-srv` processes rust-analyzer\nruns in parallel to handle macro expansion.",
+ "default": 1,
+ "anyOf": [
+ {
+ "type": "number",
+ "minimum": 0,
+ "maximum": 255
+ },
+ {
+ "type": "string",
+ "enum": [
+ "physical"
+ ],
+ "enumDescriptions": [
+ "Use the number of physical cores"
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
"title": "Profiling",
"properties": {
"rust-analyzer.profiling.memoryProfile": {