1
私はVSCodeの統合端末にいくつかのキーバインドを追加することができましたが、さらに追加したいと思います。私自身のキーバインディングを追加するにはどうすればいいですか?VSCode - 統合端末にキーバインディングを追加する方法
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "cmd+right", "command": "workbench.action.terminal.focusNext",
"when": "terminalFocus" },
{ "key": "cmd+left", "command": "workbench.action.terminal.focusPrevious",
"when": "terminalFocus" },
{ "key": "cmd+delete", "command": "workbench.action.terminal.deleteAllRight",
"when": "terminalFocus" }
]
最初の2点の作品が、最後の1にはない、と私は、これは統合された端末は、このオプションを持っていないことに起因している推測しています。それを追加する方法はありますか?私はすべての私の定期的なターミナルのキーバインディングをここにも持ちたいと思う。