0%

使用vscode开发Go过程中遇到的问题

最近做Go开发还是使用vscode作为主力开发工具
感觉碰到的一些问题需要整理记录下
有些问题每次都鼓捣半天,虽能解决,却也无确切解释

Vscode Go相关的配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"[go]": {
"editor.formatOnSave": false,
"editor.tabSize": 4,
"editor.insertSpaces": false
},
"go.formatTool": "goreturns",
"editor.formatOnType": true,
"go.gocodeAutoBuild": true,
"go.buildOnSave": "package",
"go.vetOnSave": "off",
"go.inferGopath": true,
"go.useCodeSnippetsOnFunctionSuggest": true,
"go.useCodeSnippetsOnFunctionSuggestWithoutType": false,
"go.lintTool": "gometalinter",
"go.lintOnSave": "package",
"go.lintFlags": [
"--fast",
//"--debug",
"-Dgotype",
"-Dgas",
"-Dgosec",
// "-Dvet",
"--exclude=should be",
"--exclude=declaration of \"err",
"--exclude=should have comment"
],
"go.liveErrors": {
"enabled": true,
"delay": 500
},
"go.addTags": {
"tags": "json",
"options": "",
"promptForTags": true,
"transform": "snakecase"
},
"go.autocompleteUnimportedPackages": true,
"go.editorContextMenuCommands": {
"toggleTestFile": true,
"addTags": true,
"removeTags": false,
"testAtCursor": false,
"testFile": false,
"testPackage": false,
"generateTestForFunction": true,
"generateTestForFile": true,
"generateTestForPackage": false,
"addImport": false,
"testCoverage": false,
"playground": false
}
}

自动完成/自动提示很慢

现象

自动提示很慢,延时会有四五秒左右
尤其外部依赖包,甚至无法提示

原因

应该是GOPATH造成的,尤其是项目多,又没有独立设置GOPATH,造成大量的包冗余
当并未验证

解决方案

设置"go.inferGopath": true
这项设置会覆盖go.gopath
会自动包含全局的GOPATH,以及项目上层目录

gotype can’t find import

现象

开启了动态检查配置

1
2
3
4
"go.liveErrors": {
"enabled": true,
"delay": 500
}

然后会有一些import内容报错

1
could not import git.xxx.tv/xxx/web/model (can't find import: "git.xxx.tv/xxx/web/model")

其实是本项目内的相对路径

原因

vscode项目的issues中,挖掘到了一个相似的问题,vendor中的包报错
但并未发现原因

ramya-rao-a commented on 5 Dec 2017
Closing this as this is an upstream issue with gotype and we there is nothing much we can do from the extension’s perspective.

update

vscode编写go程序时,代码提示是依据pkg中后的.a文件内容的

-i会使go build命令安装那些编译目标依赖的且还未被安装的代码包。
这里的安装意味着产生与代码包对应的归档文件,并将其放置到当前工作区目录的pkg子目录的相应子目录中。
在默认情况下,这些代码包是不会被安装的

检查发现pkg下对应的.a文件上次更新时间确实落后了很多
原因是设置中"go.buildOnSave": "off"

解决方案

开启"go.buildOnSave": "package"

参考链接

Live error reporting says can’t find import:
Package build
原文链接