aboutsummaryrefslogtreecommitdiff
path: root/editors/code/package.json
diff options
context:
space:
mode:
authorvsrs <[email protected]>2020-05-18 08:27:00 +0100
committervsrs <[email protected]>2020-05-18 08:27:00 +0100
commit78817a319476d8af40c4f78e8c47dc958781f88f (patch)
treee15efb6555e667cea876cc9479278cb812b792e4 /editors/code/package.json
parent3d445256fe56f4a7ead64514fb57b79079973d84 (diff)
Add "rust-analyzer.lens.enable"
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json11
1 files changed, 8 insertions, 3 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index efed4c7f2..38c77533c 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -444,18 +444,23 @@
444 "default": {}, 444 "default": {},
445 "description": "Optional settings passed to the debug engine. Example:\n{ \"lldb\": { \"terminal\":\"external\"} }" 445 "description": "Optional settings passed to the debug engine. Example:\n{ \"lldb\": { \"terminal\":\"external\"} }"
446 }, 446 },
447 "rust-analyzer.lens.enable": {
448 "description": "Whether to show CodeLens in Rust files.",
449 "type": "boolean",
450 "default": true
451 },
447 "rust-analyzer.lens.run": { 452 "rust-analyzer.lens.run": {
448 "description": "Whether to show Run lens.", 453 "markdownDescription": "Whether to show Run lens. Only applies when `#rust-analyzer.lens.enable#` is set.",
449 "type": "boolean", 454 "type": "boolean",
450 "default": true 455 "default": true
451 }, 456 },
452 "rust-analyzer.lens.debug": { 457 "rust-analyzer.lens.debug": {
453 "description": "Whether to show Debug lens.", 458 "markdownDescription": "Whether to show Debug lens. Only applies when `#rust-analyzer.lens.enable#` is set.",
454 "type": "boolean", 459 "type": "boolean",
455 "default": true 460 "default": true
456 }, 461 },
457 "rust-analyzer.lens.implementations": { 462 "rust-analyzer.lens.implementations": {
458 "description": "Whether to show Implementations lens.", 463 "markdownDescription": "Whether to show Implementations lens. Only applies when `#rust-analyzer.lens.enable#` is set.",
459 "type": "boolean", 464 "type": "boolean",
460 "default": true 465 "default": true
461 } 466 }