aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/commands/runnables.ts
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/src/commands/runnables.ts')
-rw-r--r--editors/code/src/commands/runnables.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands/runnables.ts b/editors/code/src/commands/runnables.ts
index befb8b366..2238a5a73 100644
--- a/editors/code/src/commands/runnables.ts
+++ b/editors/code/src/commands/runnables.ts
@@ -102,7 +102,7 @@ export function debugSingle(ctx: Ctx): Cmd {
102 102
103 let debugEngineId = ctx.config.debug.engine; 103 let debugEngineId = ctx.config.debug.engine;
104 let debugEngine = null; 104 let debugEngine = null;
105 if (!debugEngineId) { 105 if ( debugEngineId === "auto" ) {
106 debugEngine = vscode.extensions.getExtension(lldbId); 106 debugEngine = vscode.extensions.getExtension(lldbId);
107 if (!debugEngine) { 107 if (!debugEngine) {
108 debugEngine = vscode.extensions.getExtension(cpptoolsId); 108 debugEngine = vscode.extensions.getExtension(cpptoolsId);