谁能发现以下任务无法从 Ubuntu 上的 Visual Studio Code 1.18 运行的原因?
我已经尝试了很多东西,并认为这是代码在 Ubuntu 上关闭进程的方式中的一个错误。该isBackground
属性不会改变行为。将 a 链接sleep 10
到command
使浏览器保持打开状态,直到睡眠返回。我希望该任务的行为就像您xdg-open index.html; exit
从 shell 中运行一样。
// tasks.json
{
"version": "2.0.0",
"tasks": [
{
"label": "Open Coverage in default browser",
"type": "shell",
"linux": {
"command": "xdg-open '${workspaceFolder}/coverage/index.html'"
},
"windows": {
"command": "explorer \"${workspaceFolder}\\coverage\\index.html\""
},
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
}
]
}