Created
December 1, 2023 14:23
-
-
Save kaishuu0123/ebff67fd3fa99db8e1e7818f0d1479f9 to your computer and use it in GitHub Desktop.
VSCode keybindings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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