We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 466e5ef commit 1fa8c2fCopy full SHA for 1fa8c2f
2 files changed
src/vs/workbench/contrib/debug/browser/debugSession.ts
@@ -675,7 +675,7 @@ export class DebugSession implements IDebugSession {
675
this.viewletService.openViewlet(VIEWLET_ID);
676
}
677
678
- if (this.configurationService.getValue<boolean>('debug.autoFocusEditor')) {
+ if (this.configurationService.getValue<IDebugConfiguration>('debug').focusWindowOnBreak) {
679
this.windowService.focusWindow();
680
681
src/vs/workbench/contrib/debug/common/debug.ts
@@ -440,6 +440,7 @@ export interface IDebugConfiguration {
440
lineHeight: number;
441
wordWrap: boolean;
442
};
443
+ focusWindowOnBreak: boolean;
444
445
446
export interface IGlobalConfig {
0 commit comments