您好,登錄后才能下訂單哦!
VSCode 必須安裝以下插件:
首先你必須安裝 Golang 插件,然后再給 Go 安裝工具包。
在 VS Code 中,使用快捷鍵: command+shift+P
,然后鍵入: go:install/update tools
,將所有 16 個(gè)插件都勾選上,然后點(diǎn)擊 OK 即開始安裝。
Installing 16 tools at /Users/maiyang/develop/goworkspace//bin gocode gopkgs go-outline go-symbols guru gorename dlv godef godoc goreturns golint gotests gomodifytags impl fillstruct goplay Installing github.com/mdempsky/gocode SUCCEEDED Installing github.com/uudashr/gopkgs/cmd/gopkgs SUCCEEDED Installing github.com/ramya-rao-a/go-outline SUCCEEDED Installing github.com/acroca/go-symbols SUCCEEDED Installing golang.org/x/tools/cmd/guru SUCCEEDED Installing golang.org/x/tools/cmd/gorename SUCCEEDED Installing github.com/derekparker/delve/cmd/dlv SUCCEEDED Installing github.com/rogpeppe/godef SUCCEEDED Installing golang.org/x/tools/cmd/godoc SUCCEEDED Installing github.com/sqs/goreturns SUCCEEDED Installing github.com/golang/lint/golint SUCCEEDED Installing github.com/cweill/gotests/... SUCCEEDED Installing github.com/fatih/gomodifytags SUCCEEDED Installing github.com/josharian/impl SUCCEEDED Installing github.com/davidrjenni/reftools/cmd/fillstruct SUCCEEDED Installing github.com/haya14busa/goplay/cmd/goplay SUCCEEDED All tools successfully installed. You're ready to Go :).
修改默認(rèn)配置的方法:
在 Preferences -> Setting
然后輸入 go,然后選擇 setting.json
,填入你想要修改的配置
自動(dòng)完成未導(dǎo)入的包。
"go.autocompleteUnimportedPackages": true,
VSCode 的一些插件需要配置代理,才能夠正常安裝。(配合VPN一起使用)
"http.proxy": "192.168.0.100:1087",
如果你遇到使用標(biāo)準(zhǔn)包可以出現(xiàn)代碼提示,但是使用自己的包或者第三方庫無法出現(xiàn)代碼提示,你可以查看一下你的配置項(xiàng)。
"go.inferGopath": true,
如果引用的包使用了 ( . “aa.com/text”) 那這個(gè)text包下的函數(shù)也無法跳轉(zhuǎn)進(jìn)去,這是為什么?
修改 "go.docsTool
" 為 gogetdoc ,默認(rèn)是 godoc。
"go.docsTool": "gogetdoc",
其他
附帶我的 settings.json
{ "go.goroot": "", "go.gopath": "", "go.inferGopath": true, "go.autocompleteUnimportedPackages": true, "go.gocodePackageLookupMode": "go", "go.gotoSymbol.includeImports": true, "go.useCodeSnippetsOnFunctionSuggest": true, "go.useCodeSnippetsOnFunctionSuggestWithoutType": true, "go.docsTool": "gogetdoc", }
參考文章: https://maiyang.me/post/2018-09-14-tips-vscode/
總結(jié)
到此這篇關(guān)于VSCode必裝Go語言以下插件的文章就介紹到這了,更多相關(guān)VSCode go語言插件內(nèi)容請搜索億速云以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持億速云!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。