1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-13 02:05:40 +08:00

doc(layer): use go install replace go get

Problem: Starting in Go 1.17, `go get` is deprecated.
Solution: use `go install` instead.
This commit is contained in:
LookForAdmin 2021-10-01 14:30:03 +08:00 committed by GitHub
parent 14d75c0441
commit 4ea483fdae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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): To enable tagbar support, you need to install [gotags](https://github.com/jstemmer/gotags):
```sh ```sh
go get -u github.com/jstemmer/gotags go install github.com/jstemmer/gotags@latest
``` ```
## Features ## Features