未验证 提交 b858b34e 编写于 作者: C Connor Peet

debug: only save when starting a new top-level session

Fixes https://github.com/microsoft/vscode-node-debug2/issues/257
上级 f1547427
......@@ -270,7 +270,9 @@ export class DebugService implements IDebugService {
try {
// make sure to save all files and that the configuration is up to date
await this.extensionService.activateByEvent('onDebug');
await this.editorService.saveAll();
if (!options?.parentSession) {
await this.editorService.saveAll();
}
await this.configurationService.reloadConfiguration(launch ? launch.workspace : undefined);
await this.extensionService.whenInstalledExtensionsRegistered();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册