Skip to content

Commit 25562e9

Browse files
authored
fix: show the subsession name before the root prefix (#2097)
Fixes microsoft/vscode#229100
1 parent fa2b0b7 commit 25562e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sessionManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export class Session<TSessionImpl extends IDebugSessionLike> implements IDisposa
8181
const substate = this.sessionStates.get(this.debugSession.id);
8282
let name = target.name();
8383
if (this.parent instanceof RootSession) {
84-
name = `${this.parent.debugSession.name}: ${name}`;
84+
name = `${name} « ${this.parent.debugSession.name}`;
8585
}
8686

8787
this.debugSession.name = substate ? `${name} (${substate})` : name;

0 commit comments

Comments
 (0)