From 5751632255ca20229680cf733965b9c338f951a2 Mon Sep 17 00:00:00 2001 From: poa00 Date: Mon, 10 Jun 2024 21:45:47 -0500 Subject: [PATCH] Update Getting_Started_for_Windows.md Replaced a command to install an outdated tool (no longer maintained according to the repository's owner) go get -u -ldflags -H=windowsgui github.com/nsf/gocode/... with a command to install the tool recommended as a substitute by the former tool's author. (The command as it appears below was copied verbatim from the official instructions provided on the landing page of the gopls tool.) go install golang.org/x/tools/gopls@latest --- Getting_Started_for_Windows.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Getting_Started_for_Windows.md b/Getting_Started_for_Windows.md index 1eb7fb9..375fc6d 100644 --- a/Getting_Started_for_Windows.md +++ b/Getting_Started_for_Windows.md @@ -41,7 +41,7 @@ Install go tools Open a NEW Command Prompt (`cmd.exe` with new env vars), paste this in to install those sweet tools: - go get -u -ldflags -H=windowsgui github.com/nsf/gocode/... + go install golang.org/x/tools/gopls@latest... go get -u github.com/rogpeppe/godef/... go get -u golang.org/x/tools/cmd/...