File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
extensions/gitpod-web/src
src/vs/gitpod/browser/workbench Expand file tree Collapse file tree 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) {
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 ( ) ;
Original file line number Diff line number Diff 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 => {
You can’t perform that action at this time.
0 commit comments