Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json20
1 files changed, 14 insertions, 6 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index c4e7036a3c..df5d9b3609 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -873,7 +873,7 @@
"default": false,
"type": "boolean"
},
- "rust-analyzer.lens.references.adt.variant.enable": {
+ "rust-analyzer.lens.references.enumVariant.enable": {
"markdownDescription": "Whether to show `References` lens for Enum Variants.\nOnly applies when `#rust-analyzer.lens.enable#` is set.",
"default": false,
"type": "boolean"
@@ -1006,16 +1006,24 @@
"default": true,
"type": "boolean"
},
+ "rust-analyzer.signatureInfo.detail": {
+ "markdownDescription": "Show full signature of the callable. Only shows parameters if disabled.",
+ "default": "full",
+ "type": "string",
+ "enum": [
+ "full",
+ "parameters"
+ ],
+ "enumDescriptions": [
+ "Show the entire signature.",
+ "Show only the parameters."
+ ]
+ },
"rust-analyzer.signatureInfo.documentation.enable": {
"markdownDescription": "Show documentation.",
"default": true,
"type": "boolean"
},
- "rust-analyzer.signatureInfo.signature.enable": {
- "markdownDescription": "Show full signature of the callable. Only shows parameters if disabled.",
- "default": true,
- "type": "boolean"
- },
"rust-analyzer.workspace.symbol.search.kind": {
"markdownDescription": "Workspace symbol search kind.",
"default": "only_types",