aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/src/config.ts')
-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"),