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 15aaa8c commit 2e8e703Copy full SHA for 2e8e703
src/goDebugConfiguration.ts
@@ -272,11 +272,6 @@ export class GoDebugConfigurationProvider implements vscode.DebugConfigurationPr
272
dlvDAPVersionCurrent = true;
273
}
274
275
- if (debugAdapter === 'dlv-dap' && debugConfiguration['cwd']) {
276
- // dlv dap expects 'wd' not 'cwd'
277
- debugConfiguration['wd'] = debugConfiguration['cwd'];
278
- }
279
-
280
if (debugConfiguration['mode'] === 'auto') {
281
let filename = activeEditor?.document?.fileName;
282
if (debugConfiguration['program'] && debugConfiguration['program'].endsWith('.go')) {
0 commit comments