Skip to content

Commit 1d549a2

Browse files
committed
src/goInstallTools: linkify dlv-dap installation instruction
Change-Id: I666ce50c8a9230be3e2fe447bd6e8db11328adea Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/308492 Trust: Hyang-Ah Hana Kim <[email protected]> Run-TryBot: Hyang-Ah Hana Kim <[email protected]> TryBot-Result: kokoro <[email protected]> Reviewed-by: Suzy Mueller <[email protected]>
1 parent 1cacf9d commit 1d549a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/goInstallTools.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -357,8 +357,8 @@ export async function promptForMissingTool(toolName: string) {
357357
let msg = `The "${tool.name}" command is not available.
358358
Run "go get -v ${getImportPath(tool, goVersion)}" to install.`;
359359
if (tool.name === 'dlv-dap') {
360-
msg = `The "${tool.name}" command is not available.
361-
Installation instructions can be found at https://github.com/golang/vscode-go/blob/master/docs/dlv-dap.md#updating-dlv-dap.`;
360+
msg = `The ["${tool.name}"](https://github.com/golang/vscode-go/blob/master/docs/dlv-dap.md) command is not available.
361+
Please select "Install", or follow the installation instructions [here](https://github.com/golang/vscode-go/blob/master/docs/dlv-dap.md#updating-dlv-dap).`;
362362
}
363363
const selected = await vscode.window.showErrorMessage(msg, ...installOptions);
364364
switch (selected) {

0 commit comments

Comments
 (0)