Remove vscode_lldb setting

This commit is contained in:
Aleksey Kladov 2020-04-02 12:56:14 +02:00
parent e21bf1b2b9
commit 7a4ebd2c8d
3 changed files with 18 additions and 20 deletions

View file

@ -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",