Skip to content

Commit 1b830ce

Browse files
Add PowerShell icon to Integrated Console (#3897)
1 parent 45c3321 commit 1b830ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/process.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,9 @@ export class PowerShellProcess {
106106
name: this.title,
107107
shellPath: this.exePath,
108108
shellArgs: powerShellArgs,
109-
hideFromUser: !this.sessionSettings.integratedConsole.showOnStartup,
110109
cwd: this.sessionSettings.cwd,
110+
hideFromUser: !this.sessionSettings.integratedConsole.showOnStartup,
111+
iconPath: new vscode.ThemeIcon("terminal-powershell"),
111112
};
112113

113114
if (semver.gte(vscode.version, "1.65.0")) {
@@ -147,7 +148,6 @@ export class PowerShellProcess {
147148
}
148149

149150
public dispose() {
150-
151151
// Clean up the session file
152152
utils.deleteSessionFile(this.sessionFilePath);
153153

0 commit comments

Comments
 (0)