We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6ee543 commit 61dcbfcCopy full SHA for 61dcbfc
1 file changed
src/vs/workbench/contrib/debug/browser/debugService.ts
@@ -373,7 +373,11 @@ export class DebugService implements IDebugService {
373
config = Object.create(null);
374
}
375
if (options && options.noDebug) {
376
- options.noDebug = true;
+ config!.noDebug = true;
377
+ } else if (options && typeof options.noDebug === 'undefined' && options.parentSession && options.parentSession.configuration.noDebug) {
378
379
+ } else {
380
+ delete config!.noDebug;
381
382
const unresolvedConfig = deepClone(config);
383
0 commit comments