diff options
Diffstat (limited to 'editors/code/src/main.ts')
-rw-r--r-- | editors/code/src/main.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts index 424ff1ac3..ecf53cf77 100644 --- a/editors/code/src/main.ts +++ b/editors/code/src/main.ts | |||
@@ -89,7 +89,9 @@ export async function activate(context: vscode.ExtensionContext) { | |||
89 | 89 | ||
90 | activateStatusDisplay(ctx); | 90 | activateStatusDisplay(ctx); |
91 | 91 | ||
92 | activateHighlighting(ctx); | 92 | if (!ctx.config.highlightingSemanticTokens) { |
93 | activateHighlighting(ctx); | ||
94 | } | ||
93 | activateInlayHints(ctx); | 95 | activateInlayHints(ctx); |
94 | } | 96 | } |
95 | 97 | ||