Skip to content

Instantly share code, notes, and snippets.

@kaishuu0123
Created December 1, 2023 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaishuu0123/ebff67fd3fa99db8e1e7818f0d1479f9 to your computer and use it in GitHub Desktop.
Save kaishuu0123/ebff67fd3fa99db8e1e7818f0d1479f9 to your computer and use it in GitHub Desktop.
VSCode keybindings
[
{
"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",
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment