Go语言是采用UTF8编码的,使用任何文本编辑器都能做Go语言开发。大家可以根据自己的喜好自行选择。编辑器/IDE没有最好只有最适合。
其实goland更加具有生产力,不过VS Code免费,还有中文插件,对小白更友好。
VS Code
中文插件
go插件
颜色和主题
Go语言开发的时候为我们提供诸如代码提示、代码自动补全等功能。
因为不可抗力,原来的下载地址不能用了。
GOPROXY
go env -w GOPROXY=https://goproxy.cn,direct
Ctrl+Shift+P
代码自动保存
配置代码片段快捷键
Ctrl+Shift+P>snippets
plnfmt.Println()plffmt.Printf("")
{
"println":{
"prefix": "pln",
"body":"fmt.Println($0)",
"description": "println"
},
"printf":{
"prefix": "plf",
"body": "fmt.Printf(\"$0\")",
"description": "printf"
}
}