Skip to content

Commit c18201b

Browse files
committed
1 parent 25f6071 commit c18201b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

extensions/gitpod-web/src/extension.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ export async function activate(context: vscode.ExtensionContext) {
3737
...options,
3838
location: parentTerminal ? { parentTerminal } : vscode.TerminalLocation.Panel
3939
});
40+
}).then(() => {
41+
if (vscode.window.terminals.length === 0) {
42+
// Always show a terminal if no task terminals are created
43+
vscode.window.createTerminal();
44+
}
4045
});
4146
registerWelcomeWalkthroughCommands(gitpodContext);
4247
startWelcomeWalkthrough();

src/vs/gitpod/browser/workbench/workbench.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -858,11 +858,6 @@ async function doStart(): Promise<IDisposable> {
858858
}
859859
}
860860
},
861-
defaultLayout: {
862-
views: [{
863-
id: 'terminal'
864-
}]
865-
},
866861
settingsSyncOptions: {
867862
enabled: true,
868863
enablementHandler: enablement => {

0 commit comments

Comments
 (0)