diff options
author | Aleksey Kladov <[email protected]> | 2020-04-02 11:56:14 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-04-02 11:56:14 +0100 |
commit | 7a4ebd2c8dfee8ca15dab7ba053a6521840aa5e3 (patch) | |
tree | 0dbb6b8c37601a7d0c617a1d88a342b8f4c97a32 /editors/code/src/commands | |
parent | e21bf1b2b91041be601d22c3415daf9bcb7246a8 (diff) |
Remove vscode_lldb setting
Diffstat (limited to 'editors/code/src/commands')
-rw-r--r-- | editors/code/src/commands/runnables.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editors/code/src/commands/runnables.ts b/editors/code/src/commands/runnables.ts index 357155163..2635a1440 100644 --- a/editors/code/src/commands/runnables.ts +++ b/editors/code/src/commands/runnables.ts | |||
@@ -66,6 +66,10 @@ export function debugSingle(ctx: Ctx): Cmd { | |||
66 | return async (config: ra.Runnable) => { | 66 | return async (config: ra.Runnable) => { |
67 | const editor = ctx.activeRustEditor; | 67 | const editor = ctx.activeRustEditor; |
68 | if (!editor) return; | 68 | if (!editor) return; |
69 | if (!vscode.extensions.getExtension("vadimcn.vscode-lldb")) { | ||
70 | vscode.window.showErrorMessage("Install `vadimcn.vscode-lldb` extension for debugging"); | ||
71 | return; | ||
72 | } | ||
69 | 73 | ||
70 | const debugConfig = { | 74 | const debugConfig = { |
71 | type: "lldb", | 75 | type: "lldb", |