Skip to content

Commit a034257

Browse files
committed
fixup! feat: add debug code lens
1 parent 60b154f commit a034257

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

editors/code/src/commands/runnables.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import * as lc from 'vscode-languageclient';
33
import * as ra from '../rust-analyzer-api';
44

55
import { Ctx, Cmd } from '../ctx';
6-
import { debug } from 'vscode';
76

87
export function run(ctx: Ctx): Cmd {
98
let prevRunnable: RunnableQuickPick | undefined;
@@ -84,7 +83,7 @@ export function debugSingle(ctx: Ctx): Cmd {
8483
args: config.extraArgs,
8584
cwd: config.cwd
8685
};
87-
return debug.startDebugging(undefined, debugConfig);
86+
return vscode.debug.startDebugging(undefined, debugConfig);
8887
};
8988
}
9089

0 commit comments

Comments
 (0)