何番煎じかわからないですが、自分が使っている設定を📝しておきます。
VS Code のターミナル上のキーバインドを設定して、いい感じにターミナルを操作するやり方です。
設定方法
設定内容
以下の設定内容を記載します。
// 既定値を上書きするには、このファイル内にキー バインドを挿入します
[
{
"key": "ctrl+p",
"command": "cursorUp",
"when": "terminalFocus"
},
{
"key": "ctrl+n",
"command": "cursorDown",
"when": "terminalFocus"
},
{
"key": "ctrl+f",
"command": "cursorRight",
"when": "terminalFocus"
},
{
"key": "ctrl+b",
"command": "cursorLeft",
"when": "terminalFocus"
},
{
"key": "ctrl+a",
"command": "cursorHome",
"when": "terminalFocus"
},
{
"key": "ctrl+e",
"command": "cursorEnd",
"when": "terminalFocus"
},
{
"key": "ctrl+d",
"command": "deleteRight",
"when": "terminalFocus"
},
{
"key": "ctrl+h",
"command": "deleteLeft",
"when": "terminalFocus"
},
{
"key": "ctrl+k",
"command": "deleteAllRight",
"when": "terminalFocus"
},
{
"key": "ctrl+m",
"command": "type",
"args": { "text": "\n"},
"when": "terminalFocus",
}
]