0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

VS CodeでTerminate Running Taskのキーボードショートカットを設定する

Posted at

ビルドタスクなどの実行を中断するためのキーボードショートカットを設定したかったのだけど、Default Keyboard Shortcutsの一覧には載っていなかった。そこで、適当にそれっぽいコマンド名を指定してみたらいけた。

[
{ "key": "ctrl+alt+c",           "command": "workbench.action.tasks.terminate",
                                     "when": "editorTextFocus" }
]

keyの部分はお好みで。

調べてみたら同じ悩みを抱えた人がいた。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?