We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e4798d commit 058ea6cCopy full SHA for 058ea6c
src/session.ts
@@ -656,7 +656,9 @@ export class SessionManager implements Middleware {
656
657
private setSessionStatus(statusText: string, status: SessionStatus): void {
658
// Set color and icon for 'Running' by default
659
- let statusIconText = "$(terminal) ";
+ let statusIconText = (semver.gte(vscode.version, "1.56.0"))
660
+ ? "$(terminal-powershell) "
661
+ : "$(terminal) ";
662
let statusColor = "#affc74";
663
664
if (status === SessionStatus.Initializing) {
0 commit comments