步骤

1. 始

Golang 语言开发选择一款合适的编辑器,能加速你敲字的灵感,这里推荐微软的 Visual Studio Code,简称 vscode。

2. 安装 go 插件

首先需要安装 go 语言插件,在 vscode 扩展中搜索 “go”,如下图,下载安装go插件

3. 设置 GOPROXY

如果想要 vscode 在 Go语言开发的时候为我们提供诸如代码提示、代码自动补全等功能,需要安装 go tools,但是安装 tools 需要设置 goproxy,否则会因为网络问题无法下载 tools 工具。

GOPROXY
go env -w GOPROXY=https://goproxy.cn,direct

4. 安装 Go语言开发工具包

> Go: Install/Update Tools

5. 插件介绍

"go.docsTool"Go: Generate Unit TestsGo: Add Tags to Struct FieldsGo: Remove Tags From Struct FieldsGo: Generate Interface StubsGo: Fill structGo: Run on Go Playgroundgopls

6. 打开vscode设置

7. settings.json 配置

  "go.inferGopath": true,
"go.autocompleteUnimportedPackages": true,
"go.gocodePackageLookupMode": "go",
"go.gotoSymbol.includeImports": true,
"go.useCodeSnippetsOnFunctionSuggest": true,
"go.useCodeSnippetsOnFunctionSuggestWithoutType": true,
"go.docsTool": "guru",

8. settings.json 参数介绍:

8.1 跳转到定义

ctrl/cmd +鼠标左键

参考链接: