aboutsummaryrefslogtreecommitdiff
path: root/editors/code
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code')
-rw-r--r--editors/code/src/config.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts
index 5acce0752..b26bf10da 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -27,7 +27,9 @@ export class Config {
27 private static readonly requiresReloadOpts = [ 27 private static readonly requiresReloadOpts = [
28 "cargoFeatures", 28 "cargoFeatures",
29 "cargo-watch", 29 "cargo-watch",
30 "highlighting.semanticTokens" 30 "highlighting.semanticTokens",
31 "inlayHintOpts.maxLength",
32 "inlayHintOpts.displayType",
31 ] 33 ]
32 .map(opt => `${Config.rootSection}.${opt}`); 34 .map(opt => `${Config.rootSection}.${opt}`);
33 35