Visual Studio代码 - 暂停Grunt任务

时间:2017-07-10 08:09:58

标签: gruntjs visual-studio-code

This page explains如何启动任务(例如Grunt任务):

但是我没有看到你如何暂停任务(即相当于从CLI执行Ctrl C)。

有什么建议吗?

1 个答案:

答案 0 :(得分:1)

您可以执行 ctrl + shift + p 并搜索/选择"任务:终止正在运行的任务"

或为此定义新的键绑定。转到文件 - >偏好设置 - >键盘快捷键 - > keybindings.json并添加:

{
    "key": "ctrl+shift+alt+t",
    "command": "workbench.action.tasks.terminate"
}