環(huán)境搭建:
[https://github.com/astaxie/build-web-application-with-golang/blob/master/zh/01.4.md](https://github.com/astaxie/build-web-application-with-golang/blob/master/zh/01.4.md)
1涂屁、安裝gosubmile
【gosublime自動(dòng)安裝失敗缘滥,手動(dòng)安裝】
參考:[https://note.youdao.com/ynoteshare1/index.html?id=2468dc1652bd08f6ab28ca81617ec1f6&type=note](https://note.youdao.com/ynoteshare1/index.html?id=2468dc1652bd08f6ab28ca81617ec1f6&type=note)
點(diǎn)擊菜單: Preferences --> Browse Packages
打開Packages directory
打開Bit Bash Here 争群,git clone gosublime 包
git clone git@github.com:DisposaBoy/GoSublime.git在 GoSublime\src 源代碼目錄中,新建 margo 子目錄
將 GoSublime\src\margo.sh\extension-example 目錄下的 extension-example.go 文件復(fù)制到
GoSublime\src\margo 目錄 藏否,并改名 margo.go
重啟 Sublime Text3 鞭衩。
點(diǎn)擊菜單項(xiàng)Preferences -> package settings -> GoSublime -> Settings - Uesrs,
配置GOPATH射赛,GOROOT:
{
"env": {
"GOPATH": "F:/WORKSPACE/go-space", ##源碼的頂級(jí)工作空間多柑,注意必須放在src包下,否則運(yùn)行錯(cuò)誤
"GOROOT": "e:/go"
},
"font_size": 14,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"soda_classic_tabs": true,
"soda_folder_icons": true,
"tab_size": 4,
"translate_tabs_to_spaces": true,
"update_check": false,
"word_wrap": true
}
快捷鍵
在sublime打開控制臺(tái) Ctrl + B
關(guān)閉sbulime中打開的控制臺(tái) Esc
查看函數(shù)的聲明 Ctrl + . + H
查看函數(shù)源碼 Ctrl + . + G
調(diào)出GoSublime 支持的所有功能: cmd +.
2楣责、安裝SidebarEnhancements和Go Build
3竣灌、安裝 gocode
go get -u github.com/nsf/gocode
gocode 將會(huì)安裝在默認(rèn)$GOBIN
另外建議安裝gotests(生成測(cè)試代碼):
先在sublime安裝gotests插件,再運(yùn)行:
go get -u -v github.com/cweill/gotests/...
4聂沙、安裝Goimports:可以在開發(fā)過程時(shí)候自動(dòng)引入包和刪除沒有使用的包
4.1 下載goimports
創(chuàng)建文件夾
mkdir $GOPATH/src/golang.org/x/
進(jìn)入文件夾 cd $GOPATH/src/golang.org/x/
下載源碼
git clone https://github.com/golang/tools.git
安裝
go install golang.org/x/tools/cmd/goimports
4.2 安裝后打開 GoSublime 的配置文件,在配置文件中添加新的根配置項(xiàng):
{
"fmt_cmd" :[ "goimports"]
}
5初嘹、新加一個(gè)Build System支持CTRL+B進(jìn)行編譯
?