From 643c4b522e41d961497f6c58d3fb337f3fdecbe3 Mon Sep 17 00:00:00 2001 From: Andy Jordan Date: Thu, 28 Jul 2022 15:06:51 -0700 Subject: [PATCH] Don't hide extension terminal entirely When `showOnStartup` is false, we currently completely hide the terminal from the user via an API that essentially backgrounds the terminal. This was in response to a user request, but has caused more problems than it's worth. This PR reverts the behavior so that it simply won't show the terminal pane on startup, but opening it reveals the connected extension terminal. --- src/process.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/process.ts b/src/process.ts index ffc749fecd..6d8c8b6cda 100644 --- a/src/process.ts +++ b/src/process.ts @@ -109,7 +109,6 @@ export class PowerShellProcess { shellPath: this.exePath, shellArgs: powerShellArgs, cwd: this.sessionSettings.cwd, - hideFromUser: !this.sessionSettings.integratedConsole.showOnStartup, iconPath: new vscode.ThemeIcon("terminal-powershell"), };