网上通常的方法是通过安装gocode来进行代码智能提示,但是在安装过程中会遇到如下错误:
“mac gocode unrecognized import path "golang.org/x/tools/go/gcexportdata"(https fetch: Get https://golang.org/x/tools/go/gcexportdata?go-get=1: dial tcp 216.239.37.1:443: i/o timeout)”
很明显是网络问题,无法访问golang.org/的包(需要翻墙)。如果不翻墙的情况下,按照如下步骤进行操作,依然可以进行智能提示插件安装:
1、mkdir -p $GOPATH/src/golang.org/x
2、cd $GOPATH/src/golang.org/x
3、git clone https://github.com/golang/tools.git
4、git clone https://github.com/golang/lint.git
5、go get golang.org/x/lint/golint
重启VS Code 即可看到智能提示的效果(^_^):
有疑问加站长微信联系(非本文作者)