We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45c3321 commit 1b830ceCopy full SHA for 1b830ce
src/process.ts
@@ -106,8 +106,9 @@ export class PowerShellProcess {
106
name: this.title,
107
shellPath: this.exePath,
108
shellArgs: powerShellArgs,
109
- hideFromUser: !this.sessionSettings.integratedConsole.showOnStartup,
110
cwd: this.sessionSettings.cwd,
+ hideFromUser: !this.sessionSettings.integratedConsole.showOnStartup,
111
+ iconPath: new vscode.ThemeIcon("terminal-powershell"),
112
};
113
114
if (semver.gte(vscode.version, "1.65.0")) {
@@ -147,7 +148,6 @@ export class PowerShellProcess {
147
148
}
149
150
public dispose() {
-
151
// Clean up the session file
152
utils.deleteSessionFile(this.sessionFilePath);
153
0 commit comments