File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 165165 " src/vs/workbench/workbench.web.main.ts" ,
166166 " src/vs/workbench/api/common/extHostTypes.ts"
167167 ],
168-
169168 // Temporarily enabled for self-hosting
170169 "terminal.integrated.stickyScroll.enabled" : true ,
171-
172170 // Temporarily enabled for self-hosting
173171 "scm.showIncomingChanges" : " always" ,
174- "scm.showOutgoingChanges" : " always"
172+ "scm.showOutgoingChanges" : " always" ,
173+ "workbench.editor.showTabs" : " multiple" ,
175174}
Original file line number Diff line number Diff line change @@ -817,17 +817,21 @@ Registry.as<IConfigurationMigrationRegistry>(Extensions.ConfigurationMigration)
817817Registry . as < IConfigurationMigrationRegistry > ( Extensions . ConfigurationMigration )
818818 . registerConfigurationMigrations ( [ {
819819 key : 'workbench.editor.doubleClickTabToToggleEditorGroupSizes' , migrateFn : ( value : any ) => {
820+ const results : ConfigurationKeyValuePairs = [ ] ;
820821 if ( typeof value === 'boolean' ) {
821822 value = value ? 'expand' : 'off' ;
823+ results . push ( [ 'workbench.editor.doubleClickTabToToggleEditorGroupSizes' , { value } ] ) ;
822824 }
823- return [ [ 'workbench.editor.doubleClickTabToToggleEditorGroupSizes' , { value : value } ] ] ;
825+ return results ;
824826 }
825827 } , {
826828 key : LayoutSettings . EDITOR_TABS_MODE , migrateFn : ( value : any ) => {
829+ const results : ConfigurationKeyValuePairs = [ ] ;
827830 if ( typeof value === 'boolean' ) {
828831 value = value ? EditorTabsMode . MULTIPLE : EditorTabsMode . SINGLE ;
832+ results . push ( [ LayoutSettings . EDITOR_TABS_MODE , { value } ] ) ;
829833 }
830- return [ [ LayoutSettings . EDITOR_TABS_MODE , { value } ] ] ;
834+ return results ;
831835 }
832836 } , {
833837 key : 'workbench.editor.tabCloseButton' , migrateFn : ( value : any ) => {
You can’t perform that action at this time.
0 commit comments