mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-25 20:43:21 +00:00
fixup! feat: add debug code lens
This commit is contained in:
parent
60b154ff92
commit
a034257e5e
1 changed files with 1 additions and 2 deletions
|
@ -3,7 +3,6 @@ import * as lc from 'vscode-languageclient';
|
|||
import * as ra from '../rust-analyzer-api';
|
||||
|
||||
import { Ctx, Cmd } from '../ctx';
|
||||
import { debug } from 'vscode';
|
||||
|
||||
export function run(ctx: Ctx): Cmd {
|
||||
let prevRunnable: RunnableQuickPick | undefined;
|
||||
|
@ -84,7 +83,7 @@ export function debugSingle(ctx: Ctx): Cmd {
|
|||
args: config.extraArgs,
|
||||
cwd: config.cwd
|
||||
};
|
||||
return debug.startDebugging(undefined, debugConfig);
|
||||
return vscode.debug.startDebugging(undefined, debugConfig);
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue