脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Golang - 在Visual Studio Code中配置GO开发环境的详细教程

在Visual Studio Code中配置GO开发环境的详细教程

2020-05-05 13:48脚本之家 Golang

这篇文章主要介绍了在Visual Studio Code中配置GO开发环境的详细教程,需要的朋友可以参考下

一、GO语言安装

详情查看:GO语言下载、安装、配置

二、GoLang插件介绍

对于Visual Studio Code开发工具,有一款优秀的GoLang插件,它的主页为:https://github.com/microsoft/vscode-go

这款插件的特性包括:

Colorization 代码着彩色
Completion Lists 代码自动完成(使用gocode)
Snippets 代码片段
Quick Info 快速提示信息(使用godef)
Goto Definition 跳转到定义(使用godef)
Find References 搜索参考引用(使用go-find-references)
File outline 文件大纲(使用go-outline)
Workspace symbol search 工作区符号搜索(使用 go-symbols)
Rename 重命名(使用gorename)
Build-on-save 保存构建(使用go build和go test)
Format 代码格式化(使用goreturns或goimports或gofmt)
Add Imports 添加引用(使用 gopkgs)
Debugging 调试代码(使用delve)
本插件的安装教程,请查看《Windows环境下vscode-go安装日记

三、插件安装

3.1 Visual Studio Code

找到微软的官方网站,下载Visual Studio Code,官网地址 https://code.visualstudio.com/

在Visual Studio Code中配置GO开发环境的详细教程

点击上图红框,可以下载其他平台的编辑器,如下图:

在Visual Studio Code中配置GO开发环境的详细教程

下载安装过程省略,当前版本是:

在Visual Studio Code中配置GO开发环境的详细教程

3.2 安装插件

进入Visual Studio Code,使用快捷键F1,打开命令面板

在Visual Studio Code中配置GO开发环境的详细教程

在上图光标处·输入exten ,然后选择“Extensions:Install Extension”,如下图:

在Visual Studio Code中配置GO开发环境的详细教程

查询插件:

在Visual Studio Code中配置GO开发环境的详细教程

显示插件列表:

在Visual Studio Code中配置GO开发环境的详细教程

在插件列表中,选择 Go,进行安装,安装之后,系统会提示重启Visual Studio Code。

3.3 设置环境变量GOPATH

在Windows系统中设置GOPATH环境变量,我的值为D:GoWorks

在Visual Studio Code中配置GO开发环境的详细教程
缺少GOPATH环境变量通常会报“$GOPATH not set.”这样的错误。

3.4 开启Visual Studio Code自动保存功能

打开Visual Studio Code,找到菜单File->Preferences->User Settings,如下图:

在Visual Studio Code中配置GO开发环境的详细教程     在Visual Studio Code中配置GO开发环境的详细教程

添加或更改settings.json的“files.autoSave”属性为“onFocusChange”,并保存。

 在Visual Studio Code中配置GO开发环境的详细教程

3.5 安装Git

Windows安装Git的过程省略;安装之后gitin配置到PATH环境变量中。

 在Visual Studio Code中配置GO开发环境的详细教程

四、插件配置4.1 Visual Studio Code Go插件配置选项

Visual Studio Code的配置选项支持Go插件的设置,可以通过用户偏好设置或workspace设置进行配置。在菜单File->Preferences处可以找到。
在Visual Studio Code中配置GO开发环境的详细教程

在settings.json中设置go配置环境,如下图:

在Visual Studio Code中配置GO开发环境的详细教程

4.2 执行命令

详情请查看官方网站:https://marketplace.visualstudio.com/items?itemName=lukehoban.Go

1)安装gocode

打开命令提示符(以管理员身份打开),输入:

go get -u -v github.com/nsf/gocode

开始下载:

在Visual Studio Code中配置GO开发环境的详细教程

下载完毕:

在Visual Studio Code中配置GO开发环境的详细教程

下载完成,查看D:GoWorks目录,多了一个srcgithub.com sfgocode路径,如下图:

在Visual Studio Code中配置GO开发环境的详细教程

雷同,通过命令行安装以下8个工具。

2)安装godef
go get -u -v github.com/rogpeppe/godef

在Visual Studio Code中配置GO开发环境的详细教程
3)安装golint
go get -u -v github.com/golang/lint/golint

在Visual Studio Code中配置GO开发环境的详细教程
4)安装go-find-references
go get -u -v github.com/lukehoban/go-find-references

在Visual Studio Code中配置GO开发环境的详细教程
5)安装go-outline
go get -u -v github.com/lukehoban/go-outline

在Visual Studio Code中配置GO开发环境的详细教程
6)安装goreturns
go get -u -v sourcegraph.com/sqs/goreturns

在Visual Studio Code中配置GO开发环境的详细教程
7)安装gorename
go get -u -v golang.org/x/tools/cmd/gorename

在Visual Studio Code中配置GO开发环境的详细教程
8)安装gopkgs
go get -u -v github.com/tpng/gopkgs

在Visual Studio Code中配置GO开发环境的详细教程
9)安装go-symbols
go get -u -v github.com/newhook/go-symbols

在Visual Studio Code中配置GO开发环境的详细教程

集成安装命令,拷贝到cmd窗口就可完成安装:

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 github.com/lukehoban/go-outline
go get -u -v sourcegraph.com/sqs/goreturns
go get -u -v golang.org/x/tools/cmd/gorename
go get -u -v github.com/tpng/gopkgs
go get -u -v github.com/newhook/go-symbols

3、使用 Hello word

1)File-> Open Folder,现在工作目录:

在Visual Studio Code中配置GO开发环境的详细教程 在Visual Studio Code中配置GO开发环境的详细教程

 

2)新建go文件

在Visual Studio Code中配置GO开发环境的详细教程

看看,智能提示出来了。

在Visual Studio Code中配置GO开发环境的详细教程

 关于Visual Studio Code的调试功能配置,可查看:Windows环境下vscode-go安装日记

延伸 · 阅读

精彩推荐
  • Golanggo日志系统logrus显示文件和行号的操作

    go日志系统logrus显示文件和行号的操作

    这篇文章主要介绍了go日志系统logrus显示文件和行号的操作,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧...

    SmallQinYan12302021-02-02
  • Golanggolang如何使用struct的tag属性的详细介绍

    golang如何使用struct的tag属性的详细介绍

    这篇文章主要介绍了golang如何使用struct的tag属性的详细介绍,从例子说起,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看...

    Go语言中文网11352020-05-21
  • GolangGolang中Bit数组的实现方式

    Golang中Bit数组的实现方式

    这篇文章主要介绍了Golang中Bit数组的实现方式,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧...

    天易独尊11682021-06-09
  • Golanggolang的httpserver优雅重启方法详解

    golang的httpserver优雅重启方法详解

    这篇文章主要给大家介绍了关于golang的httpserver优雅重启的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,...

    helight2992020-05-14
  • GolangGolang通脉之数据类型详情

    Golang通脉之数据类型详情

    这篇文章主要介绍了Golang通脉之数据类型,在编程语言中标识符就是定义的具有某种意义的词,比如变量名、常量名、函数名等等,Go语言中标识符允许由...

    4272021-11-24
  • Golanggolang 通过ssh代理连接mysql的操作

    golang 通过ssh代理连接mysql的操作

    这篇文章主要介绍了golang 通过ssh代理连接mysql的操作,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧...

    a165861639710342021-03-08
  • Golanggolang json.Marshal 特殊html字符被转义的解决方法

    golang json.Marshal 特殊html字符被转义的解决方法

    今天小编就为大家分享一篇golang json.Marshal 特殊html字符被转义的解决方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧 ...

    李浩的life12792020-05-27
  • Golanggo语言制作端口扫描器

    go语言制作端口扫描器

    本文给大家分享的是使用go语言编写的TCP端口扫描器,可以选择IP范围,扫描的端口,以及多线程,有需要的小伙伴可以参考下。 ...

    脚本之家3642020-04-25