aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src
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/src
parent3d445256fe56f4a7ead64514fb57b79079973d84 (diff)
Add "rust-analyzer.lens.enable"
Diffstat (limited to 'editors/code/src')
-rw-r--r--editors/code/src/config.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts
index 93d9aa160..ee294fbe3 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -16,6 +16,7 @@ export class Config {
16 "files", 16 "files",
17 "highlighting", 17 "highlighting",
18 "updates.channel", 18 "updates.channel",
19 "lens.enable",
19 "lens.run", 20 "lens.run",
20 "lens.debug", 21 "lens.debug",
21 "lens.implementations", 22 "lens.implementations",
@@ -125,6 +126,7 @@ export class Config {
125 126
126 get lens() { 127 get lens() {
127 return { 128 return {
129 enable: this.get<boolean>("lens.enable"),
128 run: this.get<boolean>("lens.run"), 130 run: this.get<boolean>("lens.run"),
129 debug: this.get<boolean>("lens.debug"), 131 debug: this.get<boolean>("lens.debug"),
130 implementations: this.get<boolean>("lens.implementations"), 132 implementations: this.get<boolean>("lens.implementations"),