aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/main.ts
diff options
context:
space:
mode:
authorvsrs <[email protected]>2020-06-18 20:20:13 +0100
committervsrs <[email protected]>2020-06-24 08:53:49 +0100
commita43a9103bc9a8c1bf735d51c952bc3b9352a00c3 (patch)
treeab29bcaca605deb29328789e627d1100c5a9517d /editors/code/src/main.ts
parentc544f9a137bd675fd6e9cc4c244ff4366ededb50 (diff)
Add custom cargo runners
Diffstat (limited to 'editors/code/src/main.ts')
-rw-r--r--editors/code/src/main.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts
index 12b4d0510..5b4f453c8 100644
--- a/editors/code/src/main.ts
+++ b/editors/code/src/main.ts
@@ -115,7 +115,7 @@ export async function activate(context: vscode.ExtensionContext) {
115 ctx.registerCommand('applyActionGroup', commands.applyActionGroup); 115 ctx.registerCommand('applyActionGroup', commands.applyActionGroup);
116 ctx.registerCommand('gotoLocation', commands.gotoLocation); 116 ctx.registerCommand('gotoLocation', commands.gotoLocation);
117 117
118 ctx.pushCleanup(activateTaskProvider(workspaceFolder)); 118 ctx.pushCleanup(activateTaskProvider(workspaceFolder, ctx.config));
119 119
120 activateStatusDisplay(ctx); 120 activateStatusDisplay(ctx);
121 121