当 运行 来自 task.json 的命令时跳过扫描任务输出
Skip the scan the task output when running a command from task.json
我已经从 vscode 配置了类型 shell 的 custom task。
此任务将是一个简单的任务,我预计不会出现任何错误,因此为了节省一次点击,我想跳过提示 select for which kind of errors or warnings to scan the output
。
关于我如何实现这一点的任何想法或者这是否可能?非常感谢!
可以通过在特定任务中将 problemMatcher
属性 设置为空数组来跳过提示:
{
"label": "echo hello world",
"type": "shell",
"command": "echo Hello",
"problemMatcher": []
}
我已经从 vscode 配置了类型 shell 的 custom task。
此任务将是一个简单的任务,我预计不会出现任何错误,因此为了节省一次点击,我想跳过提示 select for which kind of errors or warnings to scan the output
。
关于我如何实现这一点的任何想法或者这是否可能?非常感谢!
可以通过在特定任务中将 problemMatcher
属性 设置为空数组来跳过提示:
{
"label": "echo hello world",
"type": "shell",
"command": "echo Hello",
"problemMatcher": []
}