vs code目前支持golang的语法高亮什么的,但还不支持编译调试,怎样配置呢?
我的**tasks.json**的配置是
```
{
"version": "0.1.0",
// The command is tsc. Assumes that tsc has been installed using npm install -g typescript
"command": "go",
// The command is a shell script
"isShellCommand": true,
// Show the output window only if unrecognized errors occur.
"showOutput": "silent",
// args is the HelloWorld program to compile.
"args": ["run","${file}"]
}
```
#1