{
"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}"]
}
我的**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}"]
}
```
我的tasks.json的配置是
调试的方式 暂时我也没找到。。
能编译运行就行了,我本来也不怎么调试
对了,task.json放在哪个目录下呢?
是否支持结构体元素的动态提示呢。
嗯,支持
好像智能下拉支持的不好,按了结构体的名字加“."后,不会出来结构体的元素。要按首字母,又出来一堆非结构体的元素。
嗯,没有liteide那样智能
·.settings·目录下
打错字了 是'.settings'
我发现我的code目录下没有这个文件夹