We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa2b0b7 commit 25562e9Copy full SHA for 25562e9
src/sessionManager.ts
@@ -81,7 +81,7 @@ export class Session<TSessionImpl extends IDebugSessionLike> implements IDisposa
81
const substate = this.sessionStates.get(this.debugSession.id);
82
let name = target.name();
83
if (this.parent instanceof RootSession) {
84
- name = `${this.parent.debugSession.name}: ${name}`;
+ name = `${name} « ${this.parent.debugSession.name}`;
85
}
86
87
this.debugSession.name = substate ? `${name} (${substate})` : name;
0 commit comments