This is an automated email from the ASF dual-hosted git repository.
shanedell pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git
The following commit(s) were added to refs/heads/main by this push:
new 5e15939 make infoset not auto open
5e15939 is described below
commit 5e15939f7744329937f1ba1d4a546511b5212264
Author: CoverRyan <[email protected]>
AuthorDate: Tue Sep 30 23:53:07 2025 -0400
make infoset not auto open
---
src/adapter/activateDaffodilDebug.ts | 14 --------------
1 file changed, 14 deletions(-)
diff --git a/src/adapter/activateDaffodilDebug.ts
b/src/adapter/activateDaffodilDebug.ts
index 1b5ae19..a655f4b 100644
--- a/src/adapter/activateDaffodilDebug.ts
+++ b/src/adapter/activateDaffodilDebug.ts
@@ -205,20 +205,6 @@ async function createDebugRunFileConfigs(
vscode.debug.startDebugging(undefined, config, { noDebug: noDebug })
}
-
- vscode.debug.onDidTerminateDebugSession(async () => {
- if (!vscode.workspace.workspaceFolders) {
- return
- }
-
- vscode.workspace
- .openTextDocument(
- `${vscode.workspace.workspaceFolders[0].uri.fsPath}/${infosetFile}`
- )
- .then((doc) => {
- vscode.window.showTextDocument(doc)
- })
- })
}
}