我想在2个以上的任务中添加2个以上的键绑定。大约5-10。
现在我有这个:
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "ctrl+alt+s", "command": "workbench.action.tasks.test" },
{ "key": "ctrl+alt+d", "command": "workbench.action.tasks.build" }
]
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "npm",
"isShellCommand": true,
"showOutput": "always",
"suppressTaskName": true,
"tasks": [
{
"taskName": "npm start",
"isTestCommand": true,
"args": ["start"]
},
{
"taskName": "npm dist",
"isBuildCommand": true,
"args": ["run", "dist"]
}
]
}
如何添加更多内容?
答案 0 :(得分:1)
使用vscode 1.10的更新版本,您现在可以将键绑定到任何任务。 Here是描述此内容的发布文档。 根据链接中的示例,您可以执行以下操作:
richTextBox1.ForeColor = Color.Blue;
将ctrl + h绑定到名为tsc
的任务