From 6e58c166a50515c50bf68b44b277757f5f39df4c Mon Sep 17 00:00:00 2001 From: isidor Date: Tue, 25 Jul 2017 12:35:03 +0200 Subject: [PATCH] debug: start debugging select configuration --- src/vs/workbench/parts/debug/electron-browser/debugService.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/vs/workbench/parts/debug/electron-browser/debugService.ts b/src/vs/workbench/parts/debug/electron-browser/debugService.ts index 0329bee9573..e3443bb537c 100644 --- a/src/vs/workbench/parts/debug/electron-browser/debugService.ts +++ b/src/vs/workbench/parts/debug/electron-browser/debugService.ts @@ -658,6 +658,9 @@ export class DebugService implements debug.IDebugService { } else if (typeof configOrName !== 'string') { config = configOrName; } + if (launch) { + manager.selectConfiguration(launch, typeof configOrName === 'string' ? configOrName : undefined); + } if (compound) { if (!compound.configurations) { -- GitLab