我已经创建了一个自定义任务,可以使用当前打开的文件打开Google-Chrome
。这很好用,但我似乎找不到抑制终端输出的方法。
尝试suggestion on the site也没有帮助。
Tasks.json
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"taskName": "Open in browser",
"command": "google-chrome",
"type": "process",
"args": ["${file}"],
"presentation": {
"reveal": "never",
"echo": false
},
"problemMatcher": []
}
]
}
输出始终在终端中可见:
有没有办法完全没有输出?