IDE | Go语言IDE,你选择哪款?

###LiteIDE

本来就是go的IDE,只是界面....

官网 : https://github.com/visualfc/liteide

###Sublime Text

插件小王子,当然也是通过插件的方式来支持go
http://blog.csdn.net/kenkao/article/details/49488833

官网 : http://www.sublimetext.com/

###Visual Studio Code

微软跨平台编辑器,通过安装插件来支持go

打开Visual Studio Code,按快捷键CTRL+SHIFT+P,输入Install Extension,然后搜索go
此外还要安装一些工具:
    go get -u -v github.com/nsf/gocode
    go get -u -v github.com/rogpeppe/godef
    go get -u -v github.com/golang/lint/golint
    go get -u -v github.com/lukehoban/go-find-references
    go get -u -v sourcegraph.com/sqs/goreturns
    go get -u -v golang.org/x/tools/cmd/gorename
    go get -u -v github.com/derekparker/delve/cmd/dlv

官网 : https://code.visualstudio.com/

###Gogland

专为go语言开发的IDE
官网 : https://www.jetbrains.com/go/

你可能感兴趣的:(GoLang)