aboutsummaryrefslogtreecommitdiff
path: root/editors/code
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code')
-rw-r--r--editors/code/src/commands/runnables.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/editors/code/src/commands/runnables.ts b/editors/code/src/commands/runnables.ts
index faa92799c..51cfb37d5 100644
--- a/editors/code/src/commands/runnables.ts
+++ b/editors/code/src/commands/runnables.ts
@@ -3,7 +3,6 @@ import * as lc from 'vscode-languageclient';
3import * as ra from '../rust-analyzer-api'; 3import * as ra from '../rust-analyzer-api';
4 4
5import { Ctx, Cmd } from '../ctx'; 5import { Ctx, Cmd } from '../ctx';
6import { debug } from 'vscode';
7 6
8export function run(ctx: Ctx): Cmd { 7export function run(ctx: Ctx): Cmd {
9 let prevRunnable: RunnableQuickPick | undefined; 8 let prevRunnable: RunnableQuickPick | undefined;
@@ -84,7 +83,7 @@ export function debugSingle(ctx: Ctx): Cmd {
84 args: config.extraArgs, 83 args: config.extraArgs,
85 cwd: config.cwd 84 cwd: config.cwd
86 }; 85 };
87 return debug.startDebugging(undefined, debugConfig); 86 return vscode.debug.startDebugging(undefined, debugConfig);
88 }; 87 };
89} 88}
90 89