File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ for popular package managers:
63
63
64
64
You will also need to install all the necessary binaries. vim-go makes it easy
65
65
to install all of them by providing a command, ` :GoInstallBinaries ` , which will
66
- ` go get ` all the required binaries.
66
+ ` go install ` all the required binaries.
67
67
68
68
Check out the Install section in [ the documentation] ( doc/vim-go.txt ) for more
69
69
detailed instructions (` :help go-install ` ).
Original file line number Diff line number Diff line change @@ -122,8 +122,8 @@ manager's install command.
122
122
123
123
You will also need to install all the necessary binaries. vim-go makes it easy
124
124
to install all of them by providing a command, | :GoInstallBinaries | , to
125
- `go get ` all the required binaries. The binaries will be installed to $GOBIN
126
- or $GOPATH/bin (default: $HOME/go/bin). It requires `git` .
125
+ `go install ` all the required binaries. The binaries will be installed to
126
+ $GOBIN or $GOPATH/bin (default: $HOME/go/bin). It requires `git` .
127
127
128
128
Depending on your installation method, you may have to generate the plugin's
129
129
| :helptags | manually (e.g. `:helptags ALL`).
@@ -2748,9 +2748,9 @@ If you see errors like this:
2748
2748
<
2749
2749
that means your local Go setup is broken or the remote website is down. For
2750
2750
example sometimes code.google.com times out. To test, just execute a simple
2751
- `go get `:
2751
+ `go install `:
2752
2752
>
2753
- go get golang.org/x/tools/cmd/goimports
2753
+ go install golang.org/x/tools/cmd/goimports@latest
2754
2754
<
2755
2755
You'll see a more detailed error. If this works, vim-go will work too.
2756
2756
You can’t perform that action at this time.
0 commit comments