> For the complete documentation index, see [llms.txt](https://yeasy.gitbook.io/blockchain_guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://yeasy.gitbook.io/blockchain_guide/appendix/golang/ide.md).

# 编辑器与 IDE

使用传统编辑器如 VIM，可以安装相应的 Golang 支持插件，如 [vim-go](https://github.com/fatih/vim-go)。

Go 语言的编辑器和 IDE（Integrated Development Environment）生态已经相当成熟。最常用的是 JetBrains 出品的 GoLand 和微软开发的 Visual Studio Code（配合官方 Go 扩展），两者都基于 gopls 语言服务器提供补全、跳转和重构能力。

GoLand 是专门针对 Go 语言设计的 IDE，在代码的补全、分析等方面性能更优越。可以从 <https://www.jetbrains.com/go/> 下载获取。

Visual Studio Code 是一个通用的 IDE，可以通过安装支持 Go 的插件来进行开发。下载地址为 <https://code.visualstudio.com/download。>

此外，简单的代码逻辑验证也可以通过官方的在线 Playground 平台，地址为 <https://go.dev/play/。>
