Skip to content

Instantly share code, notes, and snippets.

@bsed
Created September 16, 2019 07:17
Show Gist options
  • Save bsed/59ef1c1bbc9d9ce5926308a77ed18a5e to your computer and use it in GitHub Desktop.
Save bsed/59ef1c1bbc9d9ce5926308a77ed18a5e to your computer and use it in GitHub Desktop.
golang vscode
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "launch",
"mode": "debug",
"remotePath": "",
"port": 4345,
"host": "127.0.0.1",
"program": "${workspaceRoot}",
"env": {
"go.gopath": "c:/gocode" // 打开终端,输入命令 go env 可以查看GOPATH路径
},
"args": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment