Skip to content

Commit 6db2d6f

Browse files
committed
supports prop
1 parent 91dd086 commit 6db2d6f

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

client/out/languageserver.js

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/src/languageserver.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,12 @@ function registerCustomCommands(context: ExtensionContext) {
3838
config.update(data.key, data.value, data.global);
3939
continue;
4040
}
41+
if (data.action == 'prop') {
42+
let value: Map<string, any> = config.get(data.key);
43+
value[data.prop] = data.value;
44+
config.update(data.key, value, data.global);
45+
continue;
46+
}
4147
}
4248
}))
4349
}

0 commit comments

Comments
 (0)