Last active
September 25, 2025 20:59
-
-
Save telnet2/5ebda563cedbb34ef8bfd24a1368fe9a to your computer and use it in GitHub Desktop.
VSCode Shortcut
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
| // Place your key bindings in this file to overwrite the defaults | |
| [ | |
| { | |
| "key": "alt+r", | |
| "command": "workbench.action.debug.run", | |
| "when": "!inDebugMode" | |
| }, | |
| { | |
| "key": "ctrl+f5", | |
| "command": "-workbench.action.debug.run", | |
| "when": "!inDebugMode" | |
| }, | |
| { | |
| "key": "shift+alt+-", | |
| "command": "editor.emmet.action.prevEditPoint" | |
| }, | |
| { | |
| "key": "cmd+down", | |
| "command": "editor.action.moveLinesDownAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+down", | |
| "command": "-editor.action.moveLinesDownAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "cmd+up", | |
| "command": "editor.action.moveLinesUpAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+up", | |
| "command": "-editor.action.moveLinesUpAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "cmd+end", | |
| "command": "cursorBottom", | |
| "when": "textInputFocus" | |
| }, | |
| { | |
| "key": "cmd+down", | |
| "command": "-cursorBottom", | |
| "when": "textInputFocus" | |
| }, | |
| { | |
| "key": "cmd+home", | |
| "command": "cursorTop", | |
| "when": "textInputFocus" | |
| }, | |
| { | |
| "key": "cmd+up", | |
| "command": "-cursorTop", | |
| "when": "textInputFocus" | |
| }, | |
| { | |
| "key": "shift+cmd+down", | |
| "command": "editor.action.copyLinesDownAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+alt+down", | |
| "command": "-editor.action.copyLinesDownAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+cmd+up", | |
| "command": "editor.action.copyLinesUpAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+alt+up", | |
| "command": "-editor.action.copyLinesUpAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+backspace", | |
| "command": "deleteLeft", | |
| "when": "textInputFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+backspace", | |
| "command": "-deleteLeft", | |
| "when": "textInputFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+backspace", | |
| "command": "deleteAllLeft", | |
| "when": "textInputFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "cmd+backspace", | |
| "command": "-deleteAllLeft", | |
| "when": "textInputFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "cmd+backspace", | |
| "command": "deleteWordLeft", | |
| "when": "textInputFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+backspace", | |
| "command": "-deleteWordLeft", | |
| "when": "textInputFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "cmd+backspace", | |
| "command": "workbench.action.terminal.deleteWordLeft", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "alt+backspace", | |
| "command": "-workbench.action.terminal.deleteWordLeft", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "shift+cmd+backspace", | |
| "command": "workbench.action.terminal.deleteWordRight", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "alt+delete", | |
| "command": "-workbench.action.terminal.deleteWordRight", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "alt+delete", | |
| "command": "deleteAllRight", | |
| "when": "textInputFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "cmd+delete", | |
| "command": "-deleteAllRight", | |
| "when": "textInputFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+k", | |
| "command": "-deleteAllRight", | |
| "when": "textInputFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "cmd+delete", | |
| "command": "deleteWordRight", | |
| "when": "textInputFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+delete", | |
| "command": "-deleteWordRight", | |
| "when": "textInputFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "cmd+k", | |
| "command": "editor.action.deleteLines", | |
| "when": "textInputFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+cmd+k", | |
| "command": "-editor.action.deleteLines", | |
| "when": "textInputFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "cmd+k cmd+,", | |
| "command": "git.checkout" | |
| }, | |
| { | |
| "key": "alt+=", | |
| "command": "workbench.action.terminal.new", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "ctrl+shift+`", | |
| "command": "-workbench.action.terminal.new" | |
| }, | |
| { | |
| "key": "cmd+down", | |
| "command": "workbench.action.terminal.focusNext", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "cmd+up", | |
| "command": "workbench.action.terminal.focusPrevious", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "cmd+left", | |
| "command": "workbench.action.terminal.focusPreviousPane", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "alt+cmd+left", | |
| "command": "-workbench.action.terminal.focusPreviousPane", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "alt+cmd+up", | |
| "command": "-workbench.action.terminal.focusPreviousPane", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "alt+cmd+down", | |
| "command": "-workbench.action.terminal.focusNextPane", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "cmd+right", | |
| "command": "workbench.action.terminal.focusNextPane", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "alt+cmd+right", | |
| "command": "-workbench.action.terminal.focusNextPane", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "ctrl+shift+5", | |
| "command": "-workbench.action.terminal.split", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "shift+cmd+end", | |
| "command": "cursorBottomSelect", | |
| "when": "textInputFocus" | |
| }, | |
| { | |
| "key": "shift+cmd+down", | |
| "command": "-cursorBottomSelect", | |
| "when": "textInputFocus" | |
| }, | |
| { | |
| "key": "shift+cmd+home", | |
| "command": "cursorTopSelect", | |
| "when": "textInputFocus" | |
| }, | |
| { | |
| "key": "shift+cmd+up", | |
| "command": "-cursorTopSelect", | |
| "when": "textInputFocus" | |
| }, | |
| { | |
| "key": "shift+cmd+9", | |
| "command": "workbench.action.navigateBack" | |
| }, | |
| { | |
| "key": "ctrl+-", | |
| "command": "-workbench.action.navigateBack" | |
| }, | |
| { | |
| "key": "shift+cmd+0", | |
| "command": "workbench.action.navigateForward" | |
| }, | |
| { | |
| "key": "ctrl+shift+-", | |
| "command": "-workbench.action.navigateForward" | |
| }, | |
| { | |
| "key": "cmd+.", | |
| "command": "breadcrumbs.focusAndSelect", | |
| "when": "breadcrumbsPossible" | |
| }, | |
| { | |
| "key": "shift+cmd+.", | |
| "command": "-breadcrumbs.focusAndSelect", | |
| "when": "breadcrumbsPossible" | |
| }, | |
| { | |
| "key": "shift+cmd+.", | |
| "command": "editor.action.quickFix", | |
| "when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "cmd+.", | |
| "command": "-editor.action.quickFix", | |
| "when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+cmd+r", | |
| "command": "python.execInTerminal-icon", | |
| "when": "editorFocus" | |
| }, | |
| { | |
| "key": "ctrl+'", | |
| "command": "workbench.action.terminal.toggleTerminal", | |
| "when": "terminal.active" | |
| }, | |
| { | |
| "key": "ctrl+=", | |
| "command": "workbench.action.toggleMaximizedPanel" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment