need to update some generated files.

This commit is contained in:
Eric Sampson 2021-10-04 02:30:46 -05:00
parent a0bb31587e
commit 99dd8066d9
2 changed files with 10 additions and 4 deletions

View file

@ -355,8 +355,14 @@ Whether to show `Method References` lens. Only applies when
[[rust-analyzer.lens.references]]rust-analyzer.lens.references (default: `false`):: [[rust-analyzer.lens.references]]rust-analyzer.lens.references (default: `false`)::
+ +
-- --
Whether to show `References` lens. Only applies when Whether to show `References` lens for Struct, Enum, Union and Trait.
`#rust-analyzer.lens.enable#` is set. Only applies when `#rust-analyzer.lens.enable#` is set.
--
[[rust-analyzer.lens.enumVariantReferences]]rust-analyzer.lens.enumVariantReferences (default: `false`)::
+
--
Whether to show `References` lens for Enum Variants.
Only applies when `#rust-analyzer.lens.enable#` is set.
-- --
[[rust-analyzer.lens.forceCustomCommands]]rust-analyzer.lens.forceCustomCommands (default: `true`):: [[rust-analyzer.lens.forceCustomCommands]]rust-analyzer.lens.forceCustomCommands (default: `true`)::
+ +

View file

@ -793,12 +793,12 @@
"type": "boolean" "type": "boolean"
}, },
"rust-analyzer.lens.references": { "rust-analyzer.lens.references": {
"markdownDescription": "Whether to show `References` lens for Struct, Enum, Union and Trait. Only applies when\n`#rust-analyzer.lens.enable#` is set.", "markdownDescription": "Whether to show `References` lens for Struct, Enum, Union and Trait.\nOnly applies when `#rust-analyzer.lens.enable#` is set.",
"default": false, "default": false,
"type": "boolean" "type": "boolean"
}, },
"rust-analyzer.lens.enumVariantReferences": { "rust-analyzer.lens.enumVariantReferences": {
"markdownDescription": "Whether to show `References` lens for Enum Variants. Only applies when\n`#rust-analyzer.lens.enable#` is set.", "markdownDescription": "Whether to show `References` lens for Enum Variants.\nOnly applies when `#rust-analyzer.lens.enable#` is set.",
"default": false, "default": false,
"type": "boolean" "type": "boolean"
}, },