We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60b154f commit a034257Copy full SHA for a034257
editors/code/src/commands/runnables.ts
@@ -3,7 +3,6 @@ import * as lc from 'vscode-languageclient';
3
import * as ra from '../rust-analyzer-api';
4
5
import { Ctx, Cmd } from '../ctx';
6
-import { debug } from 'vscode';
7
8
export function run(ctx: Ctx): Cmd {
9
let prevRunnable: RunnableQuickPick | undefined;
@@ -84,7 +83,7 @@ export function debugSingle(ctx: Ctx): Cmd {
84
83
args: config.extraArgs,
85
cwd: config.cwd
86
};
87
- return debug.startDebugging(undefined, debugConfig);
+ return vscode.debug.startDebugging(undefined, debugConfig);
88
89
}
90
0 commit comments