Skip to content

Instantly share code, notes, and snippets.

@jaywick
Created August 2, 2016 12:32
Show Gist options
  • Save jaywick/03e49b14ab8b22dfe1687a7757c1907a to your computer and use it in GitHub Desktop.
Save jaywick/03e49b14ab8b22dfe1687a7757c1907a to your computer and use it in GitHub Desktop.
My keybindings for VSCode
[
{
"key": "ctrl+t",
"command": "workbench.action.files.newUntitledFile",
"when": "editorTextFocus"
},
{
"key": "ctrl+b",
"command": "editor.action.goToDeclaration",
"when": "editorTextFocus"
},
{
"key": "f1",
"command": "editor.action.previewDeclaration",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+n",
"command": "workbench.action.files.newFolder"
},
{
"key": "ctrl+`",
"command": "workbench.action.tasks.runTask"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor",
"when": "editorTextFocus"
},
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor",
"when": "editorTextFocus"
},
{
"key": "ctrl+,",
"command": "workbench.action.showAllSymbols"
},
{
"key": "ctrl+alt+f",
"command": "editor.action.format",
"when": "editorTextFocus"
},
{
"key": "ctrl+r",
"command": "editor.action.showReferences",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+s",
"command": "workbench.action.files.saveAll"
},
{
"key": "ctrl+e",
"command": "workbench.action.files.revealActiveFileInWindows"
},
{
"key": "ctrl+p",
"command": "editor.action.triggerParameterHints",
"when": "editorTextFocus"
},
{
"key": "ctrl+r",
"command": "editor.action.referenceSearch.trigger",
"when": "editorTextFocus"
},
{
"key": "ctrl+[",
"command": "editor.fold",
"when": "editorFocus"
},
{
"key": "ctrl+shift+[",
"command": "editor.foldAll",
"when": "editorFocus"
},
{
"key": "ctrl+]",
"command": "editor.unfold",
"when": "editorFocus"
},
{
"key": "ctrl+shift+]",
"command": "editor.unfoldAll",
"when": "editorFocus"
},
{
"key": "ctrl+0",
"command": "workbench.action.zoomReset",
"when": "editorFocus"
},
{
"key": "ctrl+alt+k",
"command": "workbench.action.openGlobalKeybindings"
},
{
"key": "ctrl+shift+o",
"command": "workbench.action.files.openFolder"
},
{
"key": "ctrl+shift+w",
"command": "workbench.action.closeOtherEditors",
"when": "editorTextFocus"
},
{
"key": "ctrl+q",
"command": "workbench.action.closeAllEditors",
"when": "editorTextFocus"
},
{
"key": "alt+`",
"command": "workbench.files.action.focusFilesExplorer",
"when": "editorTextFocus"
},
{
"key": "alt+end",
"command": "workbench.action.tasks.terminate",
"when": "editorTextFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment