mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-15 16:01:10 +01:00
Debug: make sure to open json settings when openning global configurations
fixes #92264
This commit is contained in:
@@ -697,7 +697,7 @@ class UserLaunch extends AbstractLaunch implements ILaunch {
|
||||
}
|
||||
|
||||
async openConfigFile(_: boolean, preserveFocus: boolean): Promise<{ editor: IEditorPane | null, created: boolean }> {
|
||||
const editor = await this.preferencesService.openGlobalSettings(false, { preserveFocus });
|
||||
const editor = await this.preferencesService.openGlobalSettings(true, { preserveFocus });
|
||||
return ({
|
||||
editor: withUndefinedAsNull(editor),
|
||||
created: false
|
||||
|
||||
Reference in New Issue
Block a user