You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
src/goDebugConfiguration: use 'dlv' instead of 'dlv-dap' binary
The stable version of dlv includes all the features Delve DAP
mode debug setup requires. We do not need to depend on Delve
built from the master or newer than the stable version.
Use 'dlv' instead of 'dlv-dap', and remove 'dlv-dap' binary
installation/update logic.
The extension presents a warning to the users who configured
`go.alternateTools.dlv-dap` and offers an option to open
the corresponding settings.json.
Fixes#1977
Change-Id: I5ed398c4d85594a6ad26bea4874324a75f96badb
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/374594
Trust: Hyang-Ah Hana Kim <[email protected]>
Run-TryBot: Hyang-Ah Hana Kim <[email protected]>
Reviewed-by: Polina Sokolova <[email protected]>
@@ -383,14 +383,13 @@ export async function promptForMissingTool(toolName: string) {
383
383
// Offer the option to install all tools.
384
384
installOptions.push('Install All');
385
385
}
386
-
letmsg=`The "${tool.name}" command is not available.
387
-
Run "go get -v ${getImportPath(tool,goVersion)}" to install.`;
388
-
if(tool.name==='dlv-dap'){
389
-
msg=`The ["${tool.name}"](https://github.com/golang/vscode-go/blob/master/docs/debugging.md) command is not available.
390
-
Please select "Install", or follow the installation instructions [here](https://github.com/golang/vscode-go/blob/master/docs/debugging.md#updating-dlv-dap).`;
0 commit comments