aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/highlighting.ts
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/src/highlighting.ts')
-rw-r--r--editors/code/src/highlighting.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/editors/code/src/highlighting.ts b/editors/code/src/highlighting.ts
index 66216e0fc..22458a391 100644
--- a/editors/code/src/highlighting.ts
+++ b/editors/code/src/highlighting.ts
@@ -32,6 +32,7 @@ export function activateHighlighting(ctx: Ctx) {
32 32
33 vscode.workspace.onDidChangeConfiguration( 33 vscode.workspace.onDidChangeConfiguration(
34 _ => highlighter.removeHighlights(), 34 _ => highlighter.removeHighlights(),
35 null,
35 ctx.subscriptions, 36 ctx.subscriptions,
36 ); 37 );
37 38
@@ -52,6 +53,7 @@ export function activateHighlighting(ctx: Ctx) {
52 ); 53 );
53 highlighter.setHighlights(editor, decorations); 54 highlighter.setHighlights(editor, decorations);
54 }, 55 },
56 null,
55 ctx.subscriptions, 57 ctx.subscriptions,
56 ); 58 );
57} 59}