Skip to content

Instantly share code, notes, and snippets.

@TrevorBurnham
Created October 7, 2020 19:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TrevorBurnham/32fda273579e68e7995c99582a9576ce to your computer and use it in GitHub Desktop.
Save TrevorBurnham/32fda273579e68e7995c99582a9576ce to your computer and use it in GitHub Desktop.
VS Code Custom Keyboard Shortcuts
[
{
"key": "ctrl+t",
"command": "extension.transpose"
},
{
"key": "ctrl+cmd+w",
"command": "workbench.action.closeAllEditors"
},
{
"key": "cmd+k cmd+w",
"command": "-workbench.action.closeAllEditors"
},
{
"key": "alt+cmd+z",
"command": "git.clean"
},
{
"key": "shift+cmd+,",
"command": "git.checkout"
},
{
"key": "shift+cmd+c",
"command": "git.commitAll"
},
{
"key": "ctrl+shift+k",
"command": "workbench.action.terminal.kill",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+[",
"command": "workbench.action.terminal.focusPrevious"
},
{
"key": "ctrl+shift+]",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+`",
"command": "workbench.action.terminal.focus",
"when": "!terminalFocus"
},
{
"key": "ctrl+shift+f",
"command": "workbench.action.toggleMaximizedPanel",
"when": "terminalFocus"
},
{
"key": "cmd+'",
"command": "extension.selectEitherQuote"
},
{
"key": "cmd+k ;",
"command": "-extension.selectEitherQuote"
},
{
"key": "shift+cmd+.",
"command": "git.branch"
},
{
"key": "shift+cmd+-",
"command": "git.pull"
},
{
"key": "shift+cmd+enter",
"command": "git.publish"
},
{
"key": "shift+cmd+b",
"command": "workbench.action.tasks.runTask"
},
{
"key": "shift+cmd+b",
"command": "-workbench.action.tasks.build"
},
{
"key": "ctrl+cmd+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+down",
"command": "-editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+cmd+up",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+up",
"command": "-editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+cmd+backspace",
"command": "git.deleteBranch"
},
{
"key": "shift+alt+up",
"command": "-editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+cmd+b",
"command": "workbench.action.tasks.restartTask"
},
{
"key": "alt+cmd+p",
"command": "-projectManager.listProjects"
},
{
"key": "alt+cmd+p",
"command": "projectManager.listProjectsNewWindow"
},
{
"key": "alt+cmd+up",
"command": "search.action.focusPreviousSearchResult"
},
{
"key": "shift+f4",
"command": "-search.action.focusPreviousSearchResult"
},
{
"key": "alt+cmd+down",
"command": "search.action.focusNextSearchResult"
},
{
"key": "f4",
"command": "-search.action.focusNextSearchResult"
},
{
"key": "shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+cmd+/",
"command": "cSpell.addWordToUserDictionary"
},
{
"key": "ctrl+p",
"command": "editor.emmet.action.wrapWithAbbreviation"
},
{
"key": "cmd+q",
"command": "-workbench.action.quit"
},
{
"key": "cmd+q cmd+q",
"command": "workbench.action.quit"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment