aboutsummaryrefslogtreecommitdiff
path: root/editors/code/package.json
diff options
context:
space:
mode:
authorvsrs <[email protected]>2020-05-17 17:51:44 +0100
committervsrs <[email protected]>2020-05-17 17:51:44 +0100
commitdc217bdf90d555eaa1780041fc3a14e64173994d (patch)
tree547807df99ad67f5be229ccb600610a376189723 /editors/code/package.json
parent71e94b1d0bf7c58aa377513f010fcb3f56081f5f (diff)
CodeLens configuration options.
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index 2dbbde852..efed4c7f2 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -443,6 +443,21 @@
443 "type": "object", 443 "type": "object",
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 },
447 "rust-analyzer.lens.run": {
448 "description": "Whether to show Run lens.",
449 "type": "boolean",
450 "default": true
451 },
452 "rust-analyzer.lens.debug": {
453 "description": "Whether to show Debug lens.",
454 "type": "boolean",
455 "default": true
456 },
457 "rust-analyzer.lens.implementations": {
458 "description": "Whether to show Implementations lens.",
459 "type": "boolean",
460 "default": true
446 } 461 }
447 } 462 }
448 }, 463 },