File tree 2 files changed +5
-5
lines changed
extensions/gitpod-web/src
src/vs/gitpod/browser/workbench
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,11 @@ export async function activate(context: vscode.ExtensionContext) {
37
37
...options ,
38
38
location : parentTerminal ? { parentTerminal } : vscode . TerminalLocation . Panel
39
39
} ) ;
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
+ }
40
45
} ) ;
41
46
registerWelcomeWalkthroughCommands ( gitpodContext ) ;
42
47
startWelcomeWalkthrough ( ) ;
Original file line number Diff line number Diff line change @@ -858,11 +858,6 @@ async function doStart(): Promise<IDisposable> {
858
858
}
859
859
}
860
860
} ,
861
- defaultLayout : {
862
- views : [ {
863
- id : 'terminal'
864
- } ]
865
- } ,
866
861
settingsSyncOptions : {
867
862
enabled : true ,
868
863
enablementHandler : enablement => {
You can’t perform that action at this time.
0 commit comments