@@ -22,7 +22,7 @@ import { IInstantiationService } from 'vs/platform/instantiation/common/instanti
2222import { ICommandService } from 'vs/platform/commands/common/commands' ;
2323import { IDebugConfigurationProvider , ICompound , IDebugConfiguration , IConfig , IGlobalConfig , IConfigurationManager , ILaunch , IDebugAdapterDescriptorFactory , IDebugAdapter , IDebugSession , IAdapterDescriptor , CONTEXT_DEBUG_CONFIGURATION_TYPE , IDebugAdapterFactory , IConfigPresentation } from 'vs/workbench/contrib/debug/common/debug' ;
2424import { Debugger } from 'vs/workbench/contrib/debug/common/debugger' ;
25- import { IEditorService , ACTIVE_GROUP , SIDE_GROUP } from 'vs/workbench/services/editor/common/editorService' ;
25+ import { IEditorService , ACTIVE_GROUP } from 'vs/workbench/services/editor/common/editorService' ;
2626import { isCodeEditor } from 'vs/editor/browser/editorBrowser' ;
2727import { launchSchemaId } from 'vs/workbench/services/configuration/common/configuration' ;
2828import { IPreferencesService } from 'vs/workbench/services/preferences/common/preferences' ;
@@ -635,7 +635,7 @@ class Launch extends AbstractLaunch implements ILaunch {
635635 return this . configurationService . inspect < IGlobalConfig > ( 'launch' , { resource : this . workspace . uri } ) . workspaceFolderValue ;
636636 }
637637
638- async openConfigFile ( sideBySide : boolean , preserveFocus : boolean , type ?: string , token ?: CancellationToken ) : Promise < { editor : IEditorPane | null , created : boolean } > {
638+ async openConfigFile ( preserveFocus : boolean , type ?: string , token ?: CancellationToken ) : Promise < { editor : IEditorPane | null , created : boolean } > {
639639 const resource = this . uri ;
640640 let created = false ;
641641 let content = '' ;
@@ -681,7 +681,7 @@ class Launch extends AbstractLaunch implements ILaunch {
681681 pinned : created ,
682682 revealIfVisible : true
683683 } ,
684- } , sideBySide ? SIDE_GROUP : ACTIVE_GROUP ) ;
684+ } , ACTIVE_GROUP ) ;
685685
686686 return ( {
687687 editor : withUndefinedAsNull ( editor ) ,
@@ -715,12 +715,12 @@ class WorkspaceLaunch extends AbstractLaunch implements ILaunch {
715715 return this . configurationService . inspect < IGlobalConfig > ( 'launch' ) . workspaceValue ;
716716 }
717717
718- async openConfigFile ( sideBySide : boolean , preserveFocus : boolean ) : Promise < { editor : IEditorPane | null , created : boolean } > {
718+ async openConfigFile ( preserveFocus : boolean ) : Promise < { editor : IEditorPane | null , created : boolean } > {
719719
720720 const editor = await this . editorService . openEditor ( {
721721 resource : this . contextService . getWorkspace ( ) . configuration ! ,
722722 options : { preserveFocus }
723- } , sideBySide ? SIDE_GROUP : ACTIVE_GROUP ) ;
723+ } , ACTIVE_GROUP ) ;
724724
725725 return ( {
726726 editor : withUndefinedAsNull ( editor ) ,
@@ -758,7 +758,7 @@ class UserLaunch extends AbstractLaunch implements ILaunch {
758758 return this . configurationService . inspect < IGlobalConfig > ( 'launch' ) . userValue ;
759759 }
760760
761- async openConfigFile ( _ : boolean , preserveFocus : boolean ) : Promise < { editor : IEditorPane | null , created : boolean } > {
761+ async openConfigFile ( preserveFocus : boolean ) : Promise < { editor : IEditorPane | null , created : boolean } > {
762762 const editor = await this . preferencesService . openGlobalSettings ( true , { preserveFocus } ) ;
763763 return ( {
764764 editor : withUndefinedAsNull ( editor ) ,
0 commit comments