mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 21:05:02 +00:00
Remove vscode_lldb setting
This commit is contained in:
parent
e21bf1b2b9
commit
7a4ebd2c8d
3 changed files with 18 additions and 20 deletions
|
@ -66,6 +66,10 @@ export function debugSingle(ctx: Ctx): Cmd {
|
|||
return async (config: ra.Runnable) => {
|
||||
const editor = ctx.activeRustEditor;
|
||||
if (!editor) return;
|
||||
if (!vscode.extensions.getExtension("vadimcn.vscode-lldb")) {
|
||||
vscode.window.showErrorMessage("Install `vadimcn.vscode-lldb` extension for debugging");
|
||||
return;
|
||||
}
|
||||
|
||||
const debugConfig = {
|
||||
type: "lldb",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue