From 4ea483fdaebce337f06c597c0832699341f0fa3d Mon Sep 17 00:00:00 2001 From: LookForAdmin Date: Fri, 1 Oct 2021 14:30:03 +0800 Subject: [PATCH] doc(layer): use `go install` replace `go get` Problem: Starting in Go 1.17, `go get` is deprecated. Solution: use `go install` instead. --- docs/layers/lang/go.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/layers/lang/go.md b/docs/layers/lang/go.md index f055056ef..917be8a4b 100644 --- a/docs/layers/lang/go.md +++ b/docs/layers/lang/go.md @@ -32,7 +32,7 @@ After the installation, run `:GoInstallBinaries` inside vim. To enable tagbar support, you need to install [gotags](https://github.com/jstemmer/gotags): ```sh -go get -u github.com/jstemmer/gotags +go install github.com/jstemmer/gotags@latest ``` ## Features