We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f154742 commit b858b34Copy full SHA for b858b34
src/vs/workbench/contrib/debug/browser/debugService.ts
@@ -270,7 +270,9 @@ export class DebugService implements IDebugService {
270
try {
271
// make sure to save all files and that the configuration is up to date
272
await this.extensionService.activateByEvent('onDebug');
273
- await this.editorService.saveAll();
+ if (!options?.parentSession) {
274
+ await this.editorService.saveAll();
275
+ }
276
await this.configurationService.reloadConfiguration(launch ? launch.workspace : undefined);
277
await this.extensionService.whenInstalledExtensionsRegistered();
278
0 commit comments