aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/highlighting.ts
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-02-05 20:57:08 +0000
committerGitHub <[email protected]>2020-02-05 20:57:08 +0000
commitea9d18ba836a7228f7310e1bc77c0918f0191a42 (patch)
tree64b3cabe122d06484a521ff2428f2ca1e4df1d48 /editors/code/src/highlighting.ts
parent2471b6bc3a318d7303d0556c85940090b6cf6d7a (diff)
parent8153b60e1d8abdcefbf6c7c9657f1ce65a216d7a (diff)
Merge #3024
3024: vscode: eliminate floating promises and insane amount of resource handle leaks r=matklad a=Veetaha Khm, yeah ... Co-authored-by: Veetaha <[email protected]>
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 e90fb8acc..4fbbe3ddc 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}