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 4718b3b commit 4bf3b6aCopy full SHA for 4bf3b6a
src/extension/extensionInit.ts
@@ -89,7 +89,8 @@ export async function registerDebugger(context: IExtensionContext): Promise<void
89
executeCommand('workbench.action.debug.selectandstart');
90
} else {
91
await executeCommand('debug.addConfiguration');
92
- executeCommand('workbench.action.debug.start');
+ if (file) await window.showTextDocument(file);
93
+ executeCommand('workbench.action.debug.start', file?.toString());
94
}
95
}),
96
);
0 commit comments