Created
September 11, 2018 22:39
-
-
Save Zetaphor/3acb10fe1701fbf31bf14c68f4fa01a5 to your computer and use it in GitHub Desktop.
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": "ctrl+\\", | |
"command": "workbench.action.toggleSidebarVisibility" | |
}, | |
{ | |
"key": "ctrl+b", | |
"command": "-workbench.action.toggleSidebarVisibility" | |
}, | |
{ | |
"key": "ctrl+\\", | |
"command": "-workbench.action.splitEditor" | |
}, | |
{ | |
"key": "ctrl+]", | |
"command": "workbench.action.toggleActivityBarVisibility" | |
}, | |
{ | |
"key": "ctrl+'", | |
"command": "workbench.action.terminal.toggleTerminal" | |
}, | |
{ | |
"key": "ctrl+`", | |
"command": "-workbench.action.terminal.toggleTerminal" | |
}, | |
{ | |
"key": "ctrl+]", | |
"command": "-editor.action.indentLines", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+alt+down", | |
"command": "editor.action.moveLinesDownAction", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "alt+down", | |
"command": "-editor.action.moveLinesDownAction", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+alt+up", | |
"command": "editor.action.moveLinesUpAction", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "alt+up", | |
"command": "-editor.action.moveLinesUpAction", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+shift+o", | |
"command": "workbench.action.showAllSymbols" | |
}, | |
{ | |
"key": "ctrl+t", | |
"command": "-workbench.action.showAllSymbols" | |
}, | |
{ | |
"key": "ctrl+t", | |
"command": "workbench.action.gotoSymbol" | |
}, | |
{ | |
"key": "ctrl+shift+o", | |
"command": "-workbench.action.gotoSymbol" | |
}, | |
{ | |
"key": "ctrl+k", | |
"command": "editor.action.deleteLines", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+shift+k", | |
"command": "-editor.action.deleteLines", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+k ctrl+c", | |
"command": "-editor.action.addCommentLine", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+k m", | |
"command": "-workbench.action.editor.changeLanguageMode" | |
}, | |
{ | |
"key": "ctrl+k ctrl+w", | |
"command": "-workbench.action.closeAllEditors" | |
}, | |
{ | |
"key": "ctrl+k w", | |
"command": "-workbench.action.closeEditorsInGroup" | |
}, | |
{ | |
"key": "ctrl+k u", | |
"command": "-workbench.action.closeUnmodifiedEditors" | |
}, | |
{ | |
"key": "ctrl+k f", | |
"command": "-workbench.action.closeFolder" | |
}, | |
{ | |
"key": "ctrl+k ctrl+t", | |
"command": "-workbench.action.selectTheme" | |
}, | |
{ | |
"key": "ctrl+k c", | |
"command": "-workbench.files.action.compareWithClipboard" | |
}, | |
{ | |
"key": "ctrl+k d", | |
"command": "-workbench.files.action.compareWithSaved" | |
}, | |
{ | |
"key": "ctrl+k p", | |
"command": "-workbench.action.files.copyPathOfActiveFile" | |
}, | |
{ | |
"key": "ctrl+k ctrl+i", | |
"command": "-editor.debug.action.showDebugHover", | |
"when": "editorTextFocus && inDebugMode" | |
}, | |
{ | |
"key": "ctrl+k ctrl+right", | |
"command": "-workbench.action.focusNextGroup" | |
}, | |
{ | |
"key": "ctrl+k e", | |
"command": "-workbench.files.action.focusOpenEditorsView" | |
}, | |
{ | |
"key": "ctrl+k ctrl+left", | |
"command": "-workbench.action.focusPreviousGroup" | |
}, | |
{ | |
"key": "ctrl+k ctrl+0", | |
"command": "-editor.foldAll", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+/", | |
"command": "-editor.foldAllBlockComments", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+8", | |
"command": "-editor.foldAllMarkerRegions", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+1", | |
"command": "-editor.foldLevel1", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+2", | |
"command": "-editor.foldLevel2", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+3", | |
"command": "-editor.foldLevel3", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+4", | |
"command": "-editor.foldLevel4", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+5", | |
"command": "-editor.foldLevel5", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+6", | |
"command": "-editor.foldLevel6", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+7", | |
"command": "-editor.foldLevel7", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+[", | |
"command": "-editor.foldRecursively", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+f", | |
"command": "-editor.action.formatSelection", | |
"when": "editorHasSelection && editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+k enter", | |
"command": "-workbench.action.keepEditor" | |
}, | |
{ | |
"key": "ctrl+k ctrl+r", | |
"command": "-workbench.action.keybindingsReference" | |
}, | |
{ | |
"key": "ctrl+k ctrl+m", | |
"command": "-workbench.extensions.action.showRecommendedKeymapExtensions" | |
}, | |
{ | |
"key": "ctrl+k left", | |
"command": "-workbench.action.moveActiveEditorGroupLeft" | |
}, | |
{ | |
"key": "ctrl+k right", | |
"command": "-workbench.action.moveActiveEditorGroupRight" | |
}, | |
{ | |
"key": "ctrl+k ctrl+d", | |
"command": "-editor.action.moveSelectionToNextFindMatch", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+k o", | |
"command": "-workbench.action.files.showOpenedFileInNewWindow" | |
}, | |
{ | |
"key": "ctrl+k r", | |
"command": "-workbench.action.files.revealActiveFileInWindows" | |
}, | |
{ | |
"key": "ctrl+k f12", | |
"command": "-editor.action.openDeclarationToTheSide", | |
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" | |
}, | |
{ | |
"key": "ctrl+k ctrl+o", | |
"command": "-workbench.action.files.openFolder" | |
}, | |
{ | |
"key": "ctrl+k ctrl+s", | |
"command": "-workbench.action.openGlobalKeybindings" | |
}, | |
{ | |
"key": "ctrl+k v", | |
"command": "-markdown.showPreviewToSide", | |
"when": "editorLangId == 'markdown'" | |
}, | |
{ | |
"key": "ctrl+k ctrl+u", | |
"command": "-editor.action.removeCommentLine", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+k ctrl+n", | |
"command": "-extension.search", | |
"when": "!terminalFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+p", | |
"command": "-workbench.action.showAllEditors" | |
}, | |
{ | |
"key": "ctrl+k ctrl+i", | |
"command": "-editor.action.showHover", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+h", | |
"command": "-workbench.action.output.toggleOutput" | |
}, | |
{ | |
"key": "ctrl+k z", | |
"command": "-workbench.action.toggleZenMode" | |
}, | |
{ | |
"key": "ctrl+k ctrl+x", | |
"command": "-editor.action.trimTrailingWhitespace", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+k ctrl+j", | |
"command": "-editor.unfoldAll", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+9", | |
"command": "-editor.unfoldAllMarkerRegions", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+]", | |
"command": "-editor.unfoldRecursively", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+k ctrl+k", | |
"command": "-editor.action.defineKeybinding", | |
"when": "editorTextFocus && !editorReadonly && editorLangId == 'json'" | |
}, | |
{ | |
"key": "ctrl+k ctrl+k", | |
"command": "-keybindings.editor.defineKeybinding", | |
"when": "inKeybindings && keybindingFocus" | |
}, | |
{ | |
"key": "ctrl+m", | |
"command": "-editor.action.toggleTabFocusMode" | |
}, | |
{ | |
"key": "ctrl+m", | |
"command": "editor.action.toggleMinimap" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment