Skip to content

Instantly share code, notes, and snippets.

@jyydev
Last active July 6, 2021 04:16
Show Gist options
  • Select an option

  • Save jyydev/2068c3d0c96a3fb53e84fad8ea244117 to your computer and use it in GitHub Desktop.

Select an option

Save jyydev/2068c3d0c96a3fb53e84fad8ea244117 to your computer and use it in GitHub Desktop.
VSCode > keyboard shortcuts, shortcut keys > default > json
[
{ "key": "escape escape", "command": "workbench.action.exitZenMode",
"when": "inZenMode" },
{ "key": "shift+escape", "command": "closeReferenceSearch",
"when": "inReferenceSearchEditor && !config.editor.stablePeek" },
{ "key": "escape", "command": "closeReferenceSearch",
"when": "inReferenceSearchEditor && !config.editor.stablePeek" },
{ "key": "escape", "command": "editor.closeTestPeek",
"when": "testing.isInPeek && !config.editor.stablePeek || testing.isPeekVisible && !config.editor.stablePeek" },
{ "key": "shift+escape", "command": "cancelSelection",
"when": "editorHasSelection && textInputFocus" },
{ "key": "escape", "command": "cancelSelection",
"when": "editorHasSelection && textInputFocus" },
{ "key": "cmd+down", "command": "cursorBottom",
"when": "textInputFocus" },
{ "key": "shift+cmd+down", "command": "cursorBottomSelect",
"when": "textInputFocus" },
{ "key": "shift+alt+cmd+down", "command": "cursorColumnSelectDown",
"when": "textInputFocus" },
{ "key": "shift+alt+cmd+left", "command": "cursorColumnSelectLeft",
"when": "textInputFocus" },
{ "key": "shift+alt+cmd+pagedown", "command": "cursorColumnSelectPageDown",
"when": "textInputFocus" },
{ "key": "shift+alt+cmd+pageup", "command": "cursorColumnSelectPageUp",
"when": "textInputFocus" },
{ "key": "shift+alt+cmd+right", "command": "cursorColumnSelectRight",
"when": "textInputFocus" },
{ "key": "shift+alt+cmd+up", "command": "cursorColumnSelectUp",
"when": "textInputFocus" },
{ "key": "ctrl+n", "command": "cursorDown",
"when": "textInputFocus" },
{ "key": "down", "command": "cursorDown",
"when": "textInputFocus" },
{ "key": "shift+down", "command": "cursorDownSelect",
"when": "textInputFocus" },
{ "key": "cmd+right", "command": "cursorEnd",
"when": "textInputFocus",
"args": {"sticky":false} },
{ "key": "end", "command": "cursorEnd",
"when": "textInputFocus",
"args": {"sticky":false} },
{ "key": "shift+cmd+right", "command": "cursorEndSelect",
"when": "textInputFocus",
"args": {"sticky":false} },
{ "key": "shift+end", "command": "cursorEndSelect",
"when": "textInputFocus",
"args": {"sticky":false} },
{ "key": "cmd+left", "command": "cursorHome",
"when": "textInputFocus" },
{ "key": "home", "command": "cursorHome",
"when": "textInputFocus" },
{ "key": "shift+cmd+left", "command": "cursorHomeSelect",
"when": "textInputFocus" },
{ "key": "shift+home", "command": "cursorHomeSelect",
"when": "textInputFocus" },
{ "key": "ctrl+b", "command": "cursorLeft",
"when": "textInputFocus" },
{ "key": "left", "command": "cursorLeft",
"when": "textInputFocus" },
{ "key": "shift+left", "command": "cursorLeftSelect",
"when": "textInputFocus" },
{ "key": "ctrl+e", "command": "cursorLineEnd",
"when": "textInputFocus" },
{ "key": "ctrl+shift+e", "command": "cursorLineEndSelect",
"when": "textInputFocus" },
{ "key": "ctrl+a", "command": "cursorLineStart",
"when": "textInputFocus" },
{ "key": "ctrl+shift+a", "command": "cursorLineStartSelect",
"when": "textInputFocus" },
{ "key": "pagedown", "command": "cursorPageDown",
"when": "textInputFocus" },
{ "key": "shift+pagedown", "command": "cursorPageDownSelect",
"when": "textInputFocus" },
{ "key": "pageup", "command": "cursorPageUp",
"when": "textInputFocus" },
{ "key": "shift+pageup", "command": "cursorPageUpSelect",
"when": "textInputFocus" },
{ "key": "ctrl+f", "command": "cursorRight",
"when": "textInputFocus" },
{ "key": "right", "command": "cursorRight",
"when": "textInputFocus" },
{ "key": "shift+right", "command": "cursorRightSelect",
"when": "textInputFocus" },
{ "key": "cmd+up", "command": "cursorTop",
"when": "textInputFocus" },
{ "key": "shift+cmd+up", "command": "cursorTopSelect",
"when": "textInputFocus" },
{ "key": "ctrl+p", "command": "cursorUp",
"when": "textInputFocus" },
{ "key": "up", "command": "cursorUp",
"when": "textInputFocus" },
{ "key": "shift+up", "command": "cursorUpSelect",
"when": "textInputFocus" },
{ "key": "ctrl+backspace", "command": "deleteLeft",
"when": "textInputFocus" },
{ "key": "ctrl+h", "command": "deleteLeft",
"when": "textInputFocus" },
{ "key": "shift+backspace", "command": "deleteLeft",
"when": "textInputFocus" },
{ "key": "backspace", "command": "deleteLeft",
"when": "textInputFocus" },
{ "key": "ctrl+delete", "command": "deleteRight",
"when": "textInputFocus" },
{ "key": "ctrl+d", "command": "deleteRight",
"when": "textInputFocus" },
{ "key": "delete", "command": "deleteRight",
"when": "textInputFocus" },
{ "key": "cmd+a", "command": "editor.action.selectAll" },
{ "key": "cmd+c", "command": "execCopy" },
{ "key": "cmd+x", "command": "execCut" },
{ "key": "cmd+v", "command": "execPaste" },
{ "key": "cmd+l", "command": "expandLineSelection",
"when": "textInputFocus" },
{ "key": "ctrl+o", "command": "lineBreakInsert",
"when": "textInputFocus && !editorReadonly" },
{ "key": "shift+tab", "command": "outdent",
"when": "editorTextFocus && !editorReadonly && !editorTabMovesFocus" },
{ "key": "shift+cmd+z", "command": "redo" },
{ "key": "ctrl+pagedown", "command": "scrollLineDown",
"when": "textInputFocus" },
{ "key": "ctrl+pageup", "command": "scrollLineUp",
"when": "textInputFocus" },
{ "key": "cmd+pagedown", "command": "scrollPageDown",
"when": "textInputFocus" },
{ "key": "cmd+pageup", "command": "scrollPageUp",
"when": "textInputFocus" },
{ "key": "tab", "command": "tab",
"when": "editorTextFocus && !editorReadonly && !editorTabMovesFocus" },
{ "key": "cmd+z", "command": "undo" },
{ "key": "shift+down", "command": "cursorColumnSelectDown",
"when": "editorColumnSelection && textInputFocus" },
{ "key": "shift+left", "command": "cursorColumnSelectLeft",
"when": "editorColumnSelection && textInputFocus" },
{ "key": "shift+pagedown", "command": "cursorColumnSelectPageDown",
"when": "editorColumnSelection && textInputFocus" },
{ "key": "shift+pageup", "command": "cursorColumnSelectPageUp",
"when": "editorColumnSelection && textInputFocus" },
{ "key": "shift+right", "command": "cursorColumnSelectRight",
"when": "editorColumnSelection && textInputFocus" },
{ "key": "shift+up", "command": "cursorColumnSelectUp",
"when": "editorColumnSelection && textInputFocus" },
{ "key": "shift+escape", "command": "removeSecondaryCursors",
"when": "editorHasMultipleSelections && textInputFocus" },
{ "key": "escape", "command": "removeSecondaryCursors",
"when": "editorHasMultipleSelections && textInputFocus" },
{ "key": "f12", "command": "goToNextReference",
"when": "inReferenceSearchEditor || referenceSearchVisible" },
{ "key": "f4", "command": "goToNextReference",
"when": "inReferenceSearchEditor || referenceSearchVisible" },
{ "key": "shift+f12", "command": "goToPreviousReference",
"when": "inReferenceSearchEditor || referenceSearchVisible" },
{ "key": "shift+f4", "command": "goToPreviousReference",
"when": "inReferenceSearchEditor || referenceSearchVisible" },
{ "key": "shift+enter", "command": "refactorPreview.apply",
"when": "refactorPreview.enabled && refactorPreview.enabled && refactorPreview.hasCheckedChanges && focusedView == 'refactorPreview'" },
{ "key": "alt+enter", "command": "testing.editFocusedTest",
"when": "focusedView == 'workbench.view.testing'" },
{ "key": "escape", "command": "notebook.cell.quitEdit",
"when": "inputFocus && notebookEditorFocused && !editorHasMultipleSelections && !editorHasSelection && !editorHoverVisible" },
{ "key": "cmd+f", "command": "actions.find",
"when": "editorFocus || editorIsOpen" },
{ "key": "cmd+e", "command": "actions.findWithSelection" },
{ "key": "enter", "command": "breakpointWidget.action.acceptInput",
"when": "breakpointWidgetVisible && inBreakpointWidget" },
{ "key": "shift+escape", "command": "closeBreakpointWidget",
"when": "breakpointWidgetVisible && textInputFocus" },
{ "key": "escape", "command": "closeBreakpointWidget",
"when": "breakpointWidgetVisible && textInputFocus" },
{ "key": "cmd+u", "command": "cursorUndo",
"when": "textInputFocus" },
{ "key": "alt+right", "command": "cursorWordEndRight",
"when": "textInputFocus" },
{ "key": "shift+alt+right", "command": "cursorWordEndRightSelect",
"when": "textInputFocus" },
{ "key": "alt+left", "command": "cursorWordLeft",
"when": "textInputFocus" },
{ "key": "shift+alt+left", "command": "cursorWordLeftSelect",
"when": "textInputFocus" },
{ "key": "ctrl+alt+left", "command": "cursorWordPartLeft",
"when": "textInputFocus" },
{ "key": "ctrl+shift+alt+left", "command": "cursorWordPartLeftSelect",
"when": "textInputFocus" },
{ "key": "ctrl+alt+right", "command": "cursorWordPartRight",
"when": "textInputFocus" },
{ "key": "ctrl+shift+alt+right", "command": "cursorWordPartRightSelect",
"when": "textInputFocus" },
{ "key": "cmd+backspace", "command": "deleteAllLeft",
"when": "textInputFocus && !editorReadonly" },
{ "key": "cmd+delete", "command": "deleteAllRight",
"when": "textInputFocus && !editorReadonly" },
{ "key": "ctrl+k", "command": "deleteAllRight",
"when": "textInputFocus && !editorReadonly" },
{ "key": "alt+backspace", "command": "deleteWordLeft",
"when": "textInputFocus && !editorReadonly" },
{ "key": "ctrl+alt+backspace", "command": "deleteWordPartLeft",
"when": "textInputFocus && !editorReadonly" },
{ "key": "ctrl+alt+delete", "command": "deleteWordPartRight",
"when": "textInputFocus && !editorReadonly" },
{ "key": "alt+delete", "command": "deleteWordRight",
"when": "textInputFocus && !editorReadonly" },
{ "key": "cmd+k cmd+c", "command": "editor.action.addCommentLine",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "cmd+d", "command": "editor.action.addSelectionToNextFindMatch",
"when": "editorFocus" },
{ "key": "alt+cmd+.", "command": "editor.action.autoFix",
"when": "editorTextFocus && !editorReadonly && supportedCodeAction =~ /(\\s|^)quickfix\\b/" },
{ "key": "shift+alt+a", "command": "editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "escape", "command": "editor.action.cancelSelectionAnchor",
"when": "editorTextFocus && selectionAnchorSet" },
{ "key": "cmd+f2", "command": "editor.action.changeAll",
"when": "editorTextFocus && editorTextFocus && !editorReadonly" },
{ "key": "cmd+c", "command": "editor.action.clipboardCopyAction" },
{ "key": "cmd+x", "command": "editor.action.clipboardCutAction" },
{ "key": "cmd+v", "command": "editor.action.clipboardPasteAction" },
{ "key": "cmd+/", "command": "editor.action.commentLine",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "shift+alt+down", "command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "shift+alt+up", "command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "cmd+k cmd+k", "command": "editor.action.defineKeybinding",
"when": "editorTextFocus && !editorReadonly && editorLangId == 'jsonc'" },
{ "key": "shift+cmd+k", "command": "editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly" },
{ "key": "f7", "command": "editor.action.diffReview.next",
"when": "isInDiffEditor" },
{ "key": "shift+f7", "command": "editor.action.diffReview.prev",
"when": "isInDiffEditor" },
{ "key": "alt+f3", "command": "editor.action.dirtydiff.next",
"when": "editorTextFocus" },
{ "key": "shift+alt+f3", "command": "editor.action.dirtydiff.previous",
"when": "editorTextFocus" },
{ "key": "enter", "command": "editor.action.extensioneditor.findNext",
"when": "webviewFindWidgetFocused && !editorFocus && activeEditor == 'workbench.editor.extension'" },
{ "key": "shift+enter", "command": "editor.action.extensioneditor.findPrevious",
"when": "webviewFindWidgetFocused && !editorFocus && activeEditor == 'workbench.editor.extension'" },
{ "key": "cmd+f", "command": "editor.action.extensioneditor.showfind",
"when": "!editorFocus && activeEditor == 'workbench.editor.extension'" },
{ "key": "shift+alt+f", "command": "editor.action.formatDocument",
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly && !inCompositeEditor" },
{ "key": "shift+alt+f", "command": "editor.action.formatDocument.none",
"when": "editorTextFocus && !editorHasDocumentFormattingProvider && !editorReadonly" },
{ "key": "cmd+k cmd+f", "command": "editor.action.formatSelection",
"when": "editorHasDocumentSelectionFormattingProvider && editorTextFocus && !editorReadonly" },
{ "key": "cmd+f12", "command": "editor.action.goToImplementation",
"when": "editorHasImplementationProvider && editorTextFocus && !isInEmbeddedEditor" },
{ "key": "shift+f12", "command": "editor.action.goToReferences",
"when": "editorHasReferenceProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor" },
{ "key": "shift+cmd+.", "command": "editor.action.inPlaceReplace.down",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "shift+cmd+,", "command": "editor.action.inPlaceReplace.up",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "cmd+]", "command": "editor.action.indentLines",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "tab", "command": "editor.action.inlineSuggest.commit",
"when": "inlineSuggestionVisible && !editorTabMovesFocus && !inlineSuggestionHasIndentation" },
{ "key": "escape", "command": "editor.action.inlineSuggest.hide",
"when": "inlineSuggestionVisible " },
{ "key": "alt+]", "command": "editor.action.inlineSuggest.showNext",
"when": "!editorReadonly" },
{ "key": "alt+[", "command": "editor.action.inlineSuggest.showPrevious",
"when": "!editorReadonly" },
{ "key": "alt+cmd+up", "command": "editor.action.insertCursorAbove",
"when": "editorTextFocus" },
{ "key": "shift+alt+i", "command": "editor.action.insertCursorAtEndOfEachLineSelected",
"when": "editorTextFocus" },
{ "key": "alt+cmd+down", "command": "editor.action.insertCursorBelow",
"when": "editorTextFocus" },
{ "key": "cmd+enter", "command": "editor.action.insertLineAfter",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "shift+cmd+enter", "command": "editor.action.insertLineBefore",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+j", "command": "editor.action.joinLines",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "shift+cmd+\\", "command": "editor.action.jumpToBracket",
"when": "editorTextFocus" },
{ "key": "shift+cmd+f2", "command": "editor.action.linkedEditing",
"when": "editorHasRenameProvider && editorTextFocus && !editorReadonly" },
{ "key": "alt+f8", "command": "editor.action.marker.next",
"when": "editorFocus" },
{ "key": "f8", "command": "editor.action.marker.nextInFiles",
"when": "editorFocus" },
{ "key": "shift+alt+f8", "command": "editor.action.marker.prev",
"when": "editorFocus" },
{ "key": "shift+f8", "command": "editor.action.marker.prevInFiles",
"when": "editorFocus" },
{ "key": "alt+down", "command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "alt+up", "command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "cmd+k cmd+d", "command": "editor.action.moveSelectionToNextFindMatch",
"when": "editorFocus" },
{ "key": "f3", "command": "editor.action.nextMatchFindAction",
"when": "editorFocus" },
{ "key": "cmd+g", "command": "editor.action.nextMatchFindAction",
"when": "editorFocus" },
{ "key": "enter", "command": "editor.action.nextMatchFindAction",
"when": "editorFocus && findInputFocussed" },
{ "key": "cmd+f3", "command": "editor.action.nextSelectionMatchFindAction",
"when": "editorFocus" },
{ "key": "shift+alt+o", "command": "editor.action.organizeImports",
"when": "editorTextFocus && !editorReadonly && supportedCodeAction =~ /(\\s|^)source\\.organizeImports\\b/" },
{ "key": "cmd+[", "command": "editor.action.outdentLines",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "alt+f12", "command": "editor.action.peekDefinition",
"when": "editorHasDefinitionProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor" },
{ "key": "shift+cmd+f12", "command": "editor.action.peekImplementation",
"when": "editorHasImplementationProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor" },
{ "key": "shift+f3", "command": "editor.action.previousMatchFindAction",
"when": "editorFocus" },
{ "key": "shift+cmd+g", "command": "editor.action.previousMatchFindAction",
"when": "editorFocus" },
{ "key": "shift+enter", "command": "editor.action.previousMatchFindAction",
"when": "editorFocus && findInputFocussed" },
{ "key": "shift+cmd+f3", "command": "editor.action.previousSelectionMatchFindAction",
"when": "editorFocus" },
{ "key": "cmd+.", "command": "editor.action.quickFix",
"when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly" },
{ "key": "ctrl+shift+r", "command": "editor.action.refactor",
"when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly" },
{ "key": "cmd+k cmd+u", "command": "editor.action.removeCommentLine",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "f2", "command": "editor.action.rename",
"when": "editorHasRenameProvider && editorTextFocus && !editorReadonly" },
{ "key": "f12", "command": "editor.action.revealDefinition",
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" },
{ "key": "cmd+k f12", "command": "editor.action.revealDefinitionAside",
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" },
{ "key": "cmd+k cmd+k", "command": "editor.action.selectFromAnchorToCursor",
"when": "editorTextFocus && selectionAnchorSet" },
{ "key": "shift+cmd+l", "command": "editor.action.selectHighlights",
"when": "editorFocus" },
{ "key": "cmd+k cmd+b", "command": "editor.action.setSelectionAnchor",
"when": "editorTextFocus" },
{ "key": "alt+f1", "command": "editor.action.showAccessibilityHelp" },
{ "key": "shift+f10", "command": "editor.action.showContextMenu",
"when": "textInputFocus" },
{ "key": "cmd+k cmd+i", "command": "editor.action.showHover",
"when": "editorTextFocus" },
{ "key": "ctrl+shift+right", "command": "editor.action.smartSelect.expand",
"when": "editorTextFocus" },
{ "key": "ctrl+shift+cmd+right", "command": "editor.action.smartSelect.expand",
"when": "editorTextFocus" },
{ "key": "ctrl+shift+left", "command": "editor.action.smartSelect.shrink",
"when": "editorTextFocus" },
{ "key": "ctrl+shift+cmd+left", "command": "editor.action.smartSelect.shrink",
"when": "editorTextFocus" },
{ "key": "alt+cmd+f", "command": "editor.action.startFindReplaceAction",
"when": "editorFocus || editorIsOpen" },
{ "key": "ctrl+shift+m", "command": "editor.action.toggleTabFocusMode" },
{ "key": "alt+z", "command": "editor.action.toggleWordWrap" },
{ "key": "ctrl+t", "command": "editor.action.transposeLetters",
"when": "textInputFocus && !editorReadonly" },
{ "key": "shift+cmd+space", "command": "editor.action.triggerParameterHints",
"when": "editorHasSignatureHelpProvider && editorTextFocus" },
{ "key": "cmd+i", "command": "editor.action.triggerSuggest",
"when": "editorHasCompletionItemProvider && textInputFocus && !editorReadonly" },
{ "key": "alt+escape", "command": "editor.action.triggerSuggest",
"when": "editorHasCompletionItemProvider && textInputFocus && !editorReadonly" },
{ "key": "ctrl+space", "command": "editor.action.triggerSuggest",
"when": "editorHasCompletionItemProvider && textInputFocus && !editorReadonly" },
{ "key": "cmd+k cmd+x", "command": "editor.action.trimTrailingWhitespace",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "enter", "command": "editor.action.webvieweditor.findNext",
"when": "webviewFindWidgetFocused && !editorFocus && activeEditor == 'WebviewEditor'" },
{ "key": "shift+enter", "command": "editor.action.webvieweditor.findPrevious",
"when": "webviewFindWidgetFocused && !editorFocus && activeEditor == 'WebviewEditor'" },
{ "key": "escape", "command": "editor.action.webvieweditor.hideFind",
"when": "webviewFindWidgetVisible && !editorFocus && activeEditor == 'WebviewEditor'" },
{ "key": "cmd+f", "command": "editor.action.webvieweditor.showFind",
"when": "webviewFindWidgetEnabled && !editorFocus && activeEditor == 'WebviewEditor'" },
{ "key": "f7", "command": "editor.action.wordHighlight.next",
"when": "editorTextFocus && hasWordHighlights" },
{ "key": "shift+f7", "command": "editor.action.wordHighlight.prev",
"when": "editorTextFocus && hasWordHighlights" },
{ "key": "escape", "command": "editor.cancelOperation",
"when": "cancellableOperation" },
{ "key": "escape", "command": "editor.debug.action.closeExceptionWidget",
"when": "exceptionWidgetVisible" },
{ "key": "cmd+k cmd+i", "command": "editor.debug.action.showDebugHover",
"when": "editorTextFocus && inDebugMode" },
{ "key": "f9", "command": "editor.debug.action.toggleBreakpoint",
"when": "debuggersAvailable && editorTextFocus" },
{ "key": "tab", "command": "editor.emmet.action.expandAbbreviation",
"when": "config.emmet.triggerExpansionOnTab && editorTextFocus && !editorReadonly && !editorTabMovesFocus" },
{ "key": "alt+cmd+[", "command": "editor.fold",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "cmd+k cmd+0", "command": "editor.foldAll",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "cmd+k cmd+/", "command": "editor.foldAllBlockComments",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "cmd+k cmd+-", "command": "editor.foldAllExcept",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "cmd+k cmd+8", "command": "editor.foldAllMarkerRegions",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "cmd+k cmd+1", "command": "editor.foldLevel1",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "cmd+k cmd+2", "command": "editor.foldLevel2",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "cmd+k cmd+3", "command": "editor.foldLevel3",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "cmd+k cmd+4", "command": "editor.foldLevel4",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "cmd+k cmd+5", "command": "editor.foldLevel5",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "cmd+k cmd+6", "command": "editor.foldLevel6",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "cmd+k cmd+7", "command": "editor.foldLevel7",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "cmd+k cmd+[", "command": "editor.foldRecursively",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "f12", "command": "editor.gotoNextSymbolFromResult",
"when": "hasSymbols" },
{ "key": "escape", "command": "editor.gotoNextSymbolFromResult.cancel",
"when": "hasSymbols" },
{ "key": "cmd+k cmd+l", "command": "editor.toggleFold",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "alt+cmd+]", "command": "editor.unfold",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "cmd+k cmd+j", "command": "editor.unfoldAll",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "cmd+k cmd+=", "command": "editor.unfoldAllExcept",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "cmd+k cmd+9", "command": "editor.unfoldAllMarkerRegions",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "cmd+k cmd+]", "command": "editor.unfoldRecursively",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "escape", "command": "gettingStarted.goBack",
"when": "inGettingStarted && activeEditor == 'gettingStartedPage'" },
{ "key": "right", "command": "gettingStarted.next",
"when": "inGettingStarted && activeEditor == 'gettingStartedPage'" },
{ "key": "down", "command": "gettingStarted.next",
"when": "inGettingStarted && activeEditor == 'gettingStartedPage'" },
{ "key": "left", "command": "gettingStarted.prev",
"when": "inGettingStarted && activeEditor == 'gettingStartedPage'" },
{ "key": "up", "command": "gettingStarted.prev",
"when": "inGettingStarted && activeEditor == 'gettingStartedPage'" },
{ "key": "tab", "command": "insertSnippet",
"when": "editorTextFocus && hasSnippetCompletions && !editorTabMovesFocus && !inSnippetMode" },
{ "key": "ctrl+enter", "command": "notebook.cell.execute",
"when": "notebookCellListFocused && notebookCellType == 'code' && notebookCellExecutionState == 'failed' || notebookCellExecutionState == 'idle' || notebookCellExecutionState == 'succeeded' && notebookKernelCount > 0" },
{ "key": "alt+enter", "command": "notebook.cell.executeAndInsertBelow",
"when": "notebookCellListFocused && notebookCellType == 'code' && notebookCellExecutionState == 'failed' || notebookCellExecutionState == 'idle' || notebookCellExecutionState == 'succeeded' && notebookKernelCount > 0" },
{ "key": "shift+enter", "command": "notebook.cell.executeAndSelectBelow",
"when": "notebookCellListFocused && notebookCellType == 'markup' || notebookCellListFocused && notebookCellType == 'code' && notebookCellExecutionState == 'failed' || notebookCellExecutionState == 'idle' || notebookCellExecutionState == 'succeeded' && notebookKernelCount > 0" },
{ "key": "shift+cmd+v", "command": "notebook.cell.pasteAbove",
"when": "notebookEditorFocused && !inputFocus" },
{ "key": "ctrl+enter", "command": "notebook.cell.quitEdit",
"when": "inputFocus && notebookEditorFocused && !editorHasMultipleSelections && !editorHasSelection && !editorHoverVisible && notebookCellType == 'markup'" },
{ "key": "down", "command": "notebook.focusNextEditor",
"when": "config.notebook.navigation.allowNavigateToSurroundingCells && editorTextFocus && inputFocus && notebookEditorFocused && notebookEditorCursorAtBoundary != 'none' && notebookEditorCursorAtBoundary != 'top'" },
{ "key": "up", "command": "notebook.focusPreviousEditor",
"when": "config.notebook.navigation.allowNavigateToSurroundingCells && editorTextFocus && inputFocus && notebookEditorFocused && notebookEditorCursorAtBoundary != 'bottom' && notebookEditorCursorAtBoundary != 'none'" },
{ "key": "shift+alt+f", "command": "notebook.formatCell",
"when": "editorHasDocumentFormattingProvider && editorTextFocus && inCompositeEditor && notebookEditable && !editorReadonly && activeEditor == 'workbench.editor.notebook'" },
{ "key": "ctrl+enter", "command": "openReferenceToSide",
"when": "listFocus && referenceSearchVisible && !inputFocus" },
{ "key": "enter", "command": "repl.action.acceptInput",
"when": "inDebugRepl && textInputFocus" },
{ "key": "cmd+f", "command": "repl.action.filter",
"when": "inDebugRepl && textInputFocus" },
{ "key": "shift+cmd+r", "command": "rerunSearchEditorSearch",
"when": "inSearchEditor" },
{ "key": "escape", "command": "search.action.focusQueryEditorWidget",
"when": "inSearchEditor" },
{ "key": "shift+cmd+backspace", "command": "search.searchEditor.action.deleteFileResults",
"when": "inSearchEditor" },
{ "key": "escape", "command": "settings.action.clearSearchResults",
"when": "inSettingsEditor && inSettingsSearch" },
{ "key": "cmd+.", "command": "settings.action.editFocusedSetting",
"when": "inSettingsSearch" },
{ "key": "enter", "command": "settings.action.focusNextSetting",
"when": "inSettingsSearch" },
{ "key": "shift+enter", "command": "settings.action.focusPreviousSetting",
"when": "inSettingsSearch" },
{ "key": "down", "command": "settings.action.focusSettingsFile",
"when": "inSettingsSearch && !suggestWidgetVisible" },
{ "key": "cmd+f", "command": "settings.action.search",
"when": "inSettingsEditor" },
{ "key": "cmd+/", "command": "toggleExplainMode",
"when": "suggestWidgetVisible" },
{ "key": "cmd+k f2", "command": "togglePeekWidgetFocus",
"when": "inReferenceSearchEditor || referenceSearchVisible" },
{ "key": "alt+f5", "command": "workbench.action.editor.nextChange",
"when": "editorTextFocus" },
{ "key": "shift+alt+f5", "command": "workbench.action.editor.previousChange",
"when": "editorTextFocus" },
{ "key": "shift+escape", "command": "workbench.action.hideComment",
"when": "commentEditorFocused" },
{ "key": "escape", "command": "workbench.action.hideComment",
"when": "commentEditorFocused" },
{ "key": "cmd+enter", "command": "workbench.action.submitComment",
"when": "commentEditorFocused" },
{ "key": "shift+escape", "command": "closeFindWidget",
"when": "editorFocus && findWidgetVisible && !isComposing" },
{ "key": "escape", "command": "closeFindWidget",
"when": "editorFocus && findWidgetVisible && !isComposing" },
{ "key": "alt+cmd+enter", "command": "editor.action.replaceAll",
"when": "editorFocus && findWidgetVisible" },
{ "key": "cmd+enter", "command": "editor.action.replaceAll",
"when": "editorFocus && findWidgetVisible && replaceInputFocussed" },
{ "key": "shift+cmd+1", "command": "editor.action.replaceOne",
"when": "editorFocus && findWidgetVisible" },
{ "key": "enter", "command": "editor.action.replaceOne",
"when": "editorFocus && findWidgetVisible && replaceInputFocussed" },
{ "key": "alt+enter", "command": "editor.action.selectAllMatches",
"when": "editorFocus && findWidgetVisible" },
{ "key": "alt+cmd+c", "command": "toggleFindCaseSensitive",
"when": "editorFocus" },
{ "key": "alt+cmd+l", "command": "toggleFindInSelection",
"when": "editorFocus" },
{ "key": "alt+cmd+r", "command": "toggleFindRegex",
"when": "editorFocus" },
{ "key": "alt+cmd+w", "command": "toggleFindWholeWord",
"when": "editorFocus" },
{ "key": "alt+cmd+p", "command": "togglePreserveCase",
"when": "editorFocus" },
{ "key": "tab", "command": "jumpToNextSnippetPlaceholder",
"when": "editorTextFocus && hasNextTabstop && inSnippetMode" },
{ "key": "shift+tab", "command": "jumpToPrevSnippetPlaceholder",
"when": "editorTextFocus && hasPrevTabstop && inSnippetMode" },
{ "key": "escape", "command": "leaveEditorMessage",
"when": "messageVisible" },
{ "key": "shift+escape", "command": "leaveSnippet",
"when": "editorTextFocus && inSnippetMode" },
{ "key": "escape", "command": "leaveSnippet",
"when": "editorTextFocus && inSnippetMode" },
{ "key": "shift+escape", "command": "closeDirtyDiff",
"when": "dirtyDiffVisible" },
{ "key": "escape", "command": "closeDirtyDiff",
"when": "dirtyDiffVisible" },
{ "key": "shift+escape", "command": "closeMarkersNavigation",
"when": "editorFocus && markersNavigationVisible" },
{ "key": "escape", "command": "closeMarkersNavigation",
"when": "editorFocus && markersNavigationVisible" },
{ "key": "escape", "command": "notifications.hideToasts",
"when": "notificationToastsVisible" },
{ "key": "shift+escape", "command": "closeParameterHints",
"when": "editorFocus && parameterHintsVisible" },
{ "key": "escape", "command": "closeParameterHints",
"when": "editorFocus && parameterHintsVisible" },
{ "key": "ctrl+n", "command": "showNextParameterHint",
"when": "editorFocus && parameterHintsMultipleSignatures && parameterHintsVisible" },
{ "key": "alt+down", "command": "showNextParameterHint",
"when": "editorFocus && parameterHintsMultipleSignatures && parameterHintsVisible" },
{ "key": "down", "command": "showNextParameterHint",
"when": "editorFocus && parameterHintsMultipleSignatures && parameterHintsVisible" },
{ "key": "ctrl+p", "command": "showPrevParameterHint",
"when": "editorFocus && parameterHintsMultipleSignatures && parameterHintsVisible" },
{ "key": "alt+up", "command": "showPrevParameterHint",
"when": "editorFocus && parameterHintsMultipleSignatures && parameterHintsVisible" },
{ "key": "up", "command": "showPrevParameterHint",
"when": "editorFocus && parameterHintsMultipleSignatures && parameterHintsVisible" },
{ "key": "shift+tab", "command": "acceptAlternativeSelectedSuggestion",
"when": "suggestWidgetVisible && textInputFocus && textInputFocus" },
{ "key": "shift+enter", "command": "acceptAlternativeSelectedSuggestion",
"when": "suggestWidgetVisible && textInputFocus && textInputFocus" },
{ "key": "tab", "command": "acceptSelectedSuggestion",
"when": "suggestWidgetVisible && textInputFocus" },
{ "key": "enter", "command": "acceptSelectedSuggestion",
"when": "acceptSuggestionOnEnter && suggestWidgetVisible && suggestionMakesTextEdit && textInputFocus" },
{ "key": "shift+escape", "command": "hideSuggestWidget",
"when": "suggestWidgetVisible && textInputFocus" },
{ "key": "escape", "command": "hideSuggestWidget",
"when": "suggestWidgetVisible && textInputFocus" },
{ "key": "tab", "command": "insertBestCompletion",
"when": "atEndOfWord && textInputFocus && !hasOtherSuggestions && !inSnippetMode && !suggestWidgetVisible && config.editor.tabCompletion == 'on'" },
{ "key": "tab", "command": "insertNextSuggestion",
"when": "hasOtherSuggestions && textInputFocus && textInputFocus && !inSnippetMode && !suggestWidgetVisible && config.editor.tabCompletion == 'on'" },
{ "key": "shift+tab", "command": "insertPrevSuggestion",
"when": "hasOtherSuggestions && textInputFocus && textInputFocus && !inSnippetMode && !suggestWidgetVisible && config.editor.tabCompletion == 'on'" },
{ "key": "cmd+pagedown", "command": "selectNextPageSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus" },
{ "key": "pagedown", "command": "selectNextPageSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus" },
{ "key": "ctrl+n", "command": "selectNextSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus" },
{ "key": "cmd+down", "command": "selectNextSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus" },
{ "key": "down", "command": "selectNextSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus" },
{ "key": "cmd+pageup", "command": "selectPrevPageSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus" },
{ "key": "pageup", "command": "selectPrevPageSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus" },
{ "key": "ctrl+p", "command": "selectPrevSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus" },
{ "key": "cmd+up", "command": "selectPrevSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus" },
{ "key": "up", "command": "selectPrevSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus" },
{ "key": "ctrl+space", "command": "toggleSuggestionDetails",
"when": "suggestWidgetVisible && textInputFocus" },
{ "key": "ctrl+alt+space", "command": "toggleSuggestionFocus",
"when": "suggestWidgetVisible && textInputFocus" },
{ "key": "enter", "command": "acceptRenameInput",
"when": "editorFocus && renameInputVisible" },
{ "key": "shift+enter", "command": "acceptRenameInputWithPreview",
"when": "config.editor.rename.enablePreview && editorFocus && renameInputVisible" },
{ "key": "shift+escape", "command": "cancelLinkedEditingInput",
"when": "LinkedEditingInputVisible && editorTextFocus" },
{ "key": "escape", "command": "cancelLinkedEditingInput",
"when": "LinkedEditingInputVisible && editorTextFocus" },
{ "key": "shift+escape", "command": "cancelRenameInput",
"when": "editorFocus && renameInputVisible" },
{ "key": "escape", "command": "cancelRenameInput",
"when": "editorFocus && renameInputVisible" },
{ "key": "shift+cmd+l", "command": "addCursorsAtSearchResults",
"when": "fileMatchOrMatchFocus && searchViewletVisible" },
{ "key": "shift+cmd+;", "command": "breadcrumbs.focus",
"when": "breadcrumbsPossible" },
{ "key": "shift+cmd+.", "command": "breadcrumbs.focusAndSelect",
"when": "breadcrumbsPossible" },
{ "key": "alt+right", "command": "breadcrumbs.focusNext",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "right", "command": "breadcrumbs.focusNext",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "alt+left", "command": "breadcrumbs.focusPrevious",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "left", "command": "breadcrumbs.focusPrevious",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "cmd+enter", "command": "breadcrumbs.revealFocused",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "space", "command": "breadcrumbs.revealFocused",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "cmd+enter", "command": "breadcrumbs.revealFocusedFromTreeAside",
"when": "breadcrumbsActive && breadcrumbsVisible && listFocus && !inputFocus" },
{ "key": "down", "command": "breadcrumbs.selectFocused",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "enter", "command": "breadcrumbs.selectFocused",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "shift+cmd+.", "command": "breadcrumbs.toggleToOn",
"when": "!config.breadcrumbs.enabled" },
{ "key": "shift+escape", "command": "closeAccessibilityHelp",
"when": "accessibilityHelpWidgetVisible && editorFocus" },
{ "key": "escape", "command": "closeAccessibilityHelp",
"when": "accessibilityHelpWidgetVisible && editorFocus" },
{ "key": "escape", "command": "closeReplaceInFilesWidget",
"when": "replaceInputBoxFocus && searchViewletVisible" },
{ "key": "alt+cmd+c", "command": "copyFilePath",
"when": "!editorFocus" },
{ "key": "shift+alt+cmd+c", "command": "copyRelativeFilePath",
"when": "!editorFocus" },
{ "key": "alt+enter", "command": "debug.openBreakpointToSide",
"when": "breakpointsFocused" },
{ "key": "cmd+enter", "command": "debug.openBreakpointToSide",
"when": "breakpointsFocused" },
{ "key": "cmd+backspace", "command": "debug.removeBreakpoint",
"when": "breakpointsFocused && !breakpointInputFocused" },
{ "key": "cmd+backspace", "command": "debug.removeWatchExpression",
"when": "watchExpressionsFocused && !expressionSelected" },
{ "key": "alt+-", "command": "decreaseSearchEditorContextLines",
"when": "inSearchEditor" },
{ "key": "shift+f9", "command": "editor.debug.action.toggleInlineBreakpoint",
"when": "editorTextFocus" },
{ "key": "shift+enter", "command": "editor.refocusCallHierarchy",
"when": "callHierarchyVisible" },
{ "key": "shift+alt+h", "command": "editor.showCallHierarchy",
"when": "editorHasCallHierarchyProvider && editorTextFocus && !inReferenceSearchEditor" },
{ "key": "shift+alt+h", "command": "editor.showIncomingCalls",
"when": "callHierarchyVisible && callHierarchyDirection == 'outgoingCalls'" },
{ "key": "shift+alt+h", "command": "editor.showOutgoingCalls",
"when": "callHierarchyVisible && callHierarchyDirection == 'incomingCalls'" },
{ "key": "ctrl+enter", "command": "explorer.openToSide",
"when": "explorerViewletFocus && explorerViewletVisible && !inputFocus" },
{ "key": "shift+alt+f", "command": "filesExplorer.findInFolder",
"when": "explorerResourceIsFolder && explorerViewletVisible && filesExplorerFocus && !inputFocus" },
{ "key": "alt+down", "command": "history.showNext",
"when": "historyNavigationEnabled && historyNavigationWidget" },
{ "key": "down", "command": "history.showNext",
"when": "historyNavigationEnabled && historyNavigationWidget" },
{ "key": "alt+up", "command": "history.showPrevious",
"when": "historyNavigationEnabled && historyNavigationWidget" },
{ "key": "up", "command": "history.showPrevious",
"when": "historyNavigationEnabled && historyNavigationWidget" },
{ "key": "alt+=", "command": "increaseSearchEditorContextLines",
"when": "inSearchEditor" },
{ "key": "cmd+k cmd+a", "command": "keybindings.editor.addKeybinding",
"when": "inKeybindings && keybindingFocus" },
{ "key": "escape", "command": "keybindings.editor.clearSearchResults",
"when": "inKeybindings && inKeybindingsSearch" },
{ "key": "cmd+c", "command": "keybindings.editor.copyKeybindingEntry",
"when": "inKeybindings && keybindingFocus" },
{ "key": "enter", "command": "keybindings.editor.defineKeybinding",
"when": "inKeybindings && keybindingFocus" },
{ "key": "cmd+k cmd+e", "command": "keybindings.editor.defineWhenExpression",
"when": "inKeybindings && keybindingFocus" },
{ "key": "cmd+down", "command": "keybindings.editor.focusKeybindings",
"when": "inKeybindings && inKeybindingsSearch" },
{ "key": "alt+cmd+k", "command": "keybindings.editor.recordSearchKeys",
"when": "inKeybindings && inKeybindingsSearch" },
{ "key": "cmd+backspace", "command": "keybindings.editor.removeKeybinding",
"when": "inKeybindings && keybindingFocus" },
{ "key": "cmd+f", "command": "keybindings.editor.searchKeybindings",
"when": "inKeybindings" },
{ "key": "alt+cmd+p", "command": "keybindings.editor.toggleSortByPrecedence",
"when": "inKeybindings" },
{ "key": "escape", "command": "list.clear",
"when": "listFocus && listHasSelectionOrFocus && !inputFocus" },
{ "key": "cmd+up", "command": "list.collapse",
"when": "listFocus && !inputFocus" },
{ "key": "left", "command": "list.collapse",
"when": "listFocus && !inputFocus" },
{ "key": "shift+cmd+up", "command": "list.collapseAll",
"when": "listFocus && !inputFocus" },
{ "key": "cmd+left", "command": "list.collapseAll",
"when": "listFocus && !inputFocus" },
{ "key": "right", "command": "list.expand",
"when": "listFocus && !inputFocus" },
{ "key": "shift+down", "command": "list.expandSelectionDown",
"when": "listFocus && listSupportsMultiselect && !inputFocus" },
{ "key": "shift+up", "command": "list.expandSelectionUp",
"when": "listFocus && listSupportsMultiselect && !inputFocus" },
{ "key": "ctrl+n", "command": "list.focusDown",
"when": "listFocus && !inputFocus" },
{ "key": "down", "command": "list.focusDown",
"when": "listFocus && !inputFocus" },
{ "key": "home", "command": "list.focusFirst",
"when": "listFocus && !inputFocus" },
{ "key": "end", "command": "list.focusLast",
"when": "listFocus && !inputFocus" },
{ "key": "pagedown", "command": "list.focusPageDown",
"when": "listFocus && !inputFocus" },
{ "key": "pageup", "command": "list.focusPageUp",
"when": "listFocus && !inputFocus" },
{ "key": "ctrl+p", "command": "list.focusUp",
"when": "listFocus && !inputFocus" },
{ "key": "up", "command": "list.focusUp",
"when": "listFocus && !inputFocus" },
{ "key": "cmd+down", "command": "list.scrollDown",
"when": "listFocus && !inputFocus" },
{ "key": "cmd+up", "command": "list.scrollUp",
"when": "listFocus && !inputFocus" },
{ "key": "cmd+down", "command": "list.select",
"when": "listFocus && !inputFocus" },
{ "key": "enter", "command": "list.select",
"when": "listFocus && !inputFocus" },
{ "key": "cmd+a", "command": "list.selectAll",
"when": "listFocus && listSupportsMultiselect && !inputFocus" },
{ "key": "space", "command": "list.toggleExpand",
"when": "listFocus && !inputFocus" },
{ "key": "shift+cmd+enter", "command": "list.toggleSelection",
"when": "listFocus && !inputFocus" },
{ "key": "y", "command": "notebook.cell.changeToCode",
"when": "notebookEditorFocused && !inputFocus && activeEditor == 'workbench.editor.notebook' && notebookCellType == 'markup'" },
{ "key": "m", "command": "notebook.cell.changeToMarkdown",
"when": "notebookEditorFocused && !inputFocus && activeEditor == 'workbench.editor.notebook' && notebookCellType == 'code'" },
{ "key": "alt+delete", "command": "notebook.cell.clearOutputs",
"when": "notebookCellEditable && notebookCellHasOutputs && notebookEditable && notebookEditorFocused && !inputFocus" },
{ "key": "cmd+k cmd+c", "command": "notebook.cell.collapseCellInput",
"when": "notebookCellListFocused && !inputFocus && !notebookCellInputIsCollapsed" },
{ "key": "cmd+k t", "command": "notebook.cell.collapseCellOutput",
"when": "notebookCellHasOutputs && notebookCellListFocused && !inputFocus && !notebookCellOutputIsCollapsed" },
{ "key": "shift+alt+down", "command": "notebook.cell.copyDown",
"when": "notebookEditorFocused && !inputFocus" },
{ "key": "shift+alt+up", "command": "notebook.cell.copyUp",
"when": "notebookEditorFocused && !inputFocus" },
{ "key": "cmd+backspace", "command": "notebook.cell.delete",
"when": "notebookEditable && notebookEditorFocused && !inputFocus" },
{ "key": "enter", "command": "notebook.cell.edit",
"when": "notebookCellListFocused && !inputFocus" },
{ "key": "cmd+k cmd+c", "command": "notebook.cell.expandCellInput",
"when": "notebookCellInputIsCollapsed && notebookCellListFocused" },
{ "key": "cmd+k t", "command": "notebook.cell.expandCellOutput",
"when": "notebookCellListFocused && notebookCellOutputIsCollapsed" },
{ "key": "ctrl+cmd+down", "command": "notebook.cell.focusInOutput",
"when": "notebookCellHasOutputs && notebookEditorFocused" },
{ "key": "ctrl+cmd+up", "command": "notebook.cell.focusOutOutput",
"when": "notebookEditorFocused" },
{ "key": "shift+cmd+enter", "command": "notebook.cell.insertCodeCellAbove",
"when": "notebookCellListFocused && !inputFocus" },
{ "key": "cmd+enter", "command": "notebook.cell.insertCodeCellBelow",
"when": "notebookCellListFocused && !inputFocus" },
{ "key": "ctrl+shift+alt+j", "command": "notebook.cell.joinAbove",
"when": "notebookEditorFocused" },
{ "key": "ctrl+alt+j", "command": "notebook.cell.joinBelow",
"when": "notebookEditorFocused" },
{ "key": "alt+down", "command": "notebook.cell.moveDown",
"when": "notebookEditorFocused && !inputFocus" },
{ "key": "alt+up", "command": "notebook.cell.moveUp",
"when": "notebookEditorFocused && !inputFocus" },
{ "key": "cmd+k shift+cmd+\\", "command": "notebook.cell.split",
"when": "notebookCellEditable && notebookEditable && notebookEditorFocused" },
{ "key": "ctrl+l", "command": "notebook.centerActiveCell",
"when": "notebookEditorFocused" },
{ "key": "cmd+f", "command": "notebook.find",
"when": "notebookEditorFocused || !editorFocus && activeEditor == 'workbench.editor.notebook'" },
{ "key": "cmd+down", "command": "notebook.focusBottom",
"when": "notebookEditorFocused && !inputFocus" },
{ "key": "ctrl+cmd+down", "command": "notebook.focusNextEditor",
"when": "notebookEditorFocused && notebookOutputFocused" },
{ "key": "cmd+up", "command": "notebook.focusTop",
"when": "notebookEditorFocused && !inputFocus" },
{ "key": "left", "command": "notebook.fold",
"when": "notebookEditorFocused && !inputFocus && activeEditor == 'workbench.editor.notebook'" },
{ "key": "alt+cmd+[", "command": "notebook.fold",
"when": "notebookEditorFocused && !inputFocus && activeEditor == 'workbench.editor.notebook'" },
{ "key": "shift+alt+f", "command": "notebook.format",
"when": "notebookEditable && !editorTextFocus && activeEditor == 'workbench.editor.notebook'" },
{ "key": "escape", "command": "notebook.hideFind",
"when": "notebookEditorFocused && notebookFindWidgetFocused" },
{ "key": "right", "command": "notebook.unfold",
"when": "notebookEditorFocused && !inputFocus && activeEditor == 'workbench.editor.notebook'" },
{ "key": "alt+cmd+]", "command": "notebook.unfold",
"when": "notebookEditorFocused && !inputFocus && activeEditor == 'workbench.editor.notebook'" },
{ "key": "cmd+backspace", "command": "notification.clear",
"when": "notificationFocus" },
{ "key": "left", "command": "notification.collapse",
"when": "notificationFocus" },
{ "key": "right", "command": "notification.expand",
"when": "notificationFocus" },
{ "key": "enter", "command": "notification.toggle",
"when": "notificationFocus" },
{ "key": "space", "command": "notification.toggle",
"when": "notificationFocus" },
{ "key": "home", "command": "notifications.focusFirstToast",
"when": "notificationFocus && notificationToastsVisible" },
{ "key": "pageup", "command": "notifications.focusFirstToast",
"when": "notificationFocus && notificationToastsVisible" },
{ "key": "end", "command": "notifications.focusLastToast",
"when": "notificationFocus && notificationToastsVisible" },
{ "key": "pagedown", "command": "notifications.focusLastToast",
"when": "notificationFocus && notificationToastsVisible" },
{ "key": "down", "command": "notifications.focusNextToast",
"when": "notificationFocus && notificationToastsVisible" },
{ "key": "up", "command": "notifications.focusPreviousToast",
"when": "notificationFocus && notificationToastsVisible" },
{ "key": "cmd+c", "command": "problems.action.copy",
"when": "problemFocus" },
{ "key": "cmd+f", "command": "problems.action.focusFilter",
"when": "focusedView == 'workbench.panel.markers.view'" },
{ "key": "cmd+down", "command": "problems.action.focusProblemsFromFilter",
"when": "problemsFilterFocus" },
{ "key": "cmd+down", "command": "problems.action.open",
"when": "problemFocus" },
{ "key": "enter", "command": "problems.action.open",
"when": "problemFocus" },
{ "key": "ctrl+enter", "command": "problems.action.openToSide",
"when": "problemFocus" },
{ "key": "cmd+.", "command": "problems.action.showQuickFixes",
"when": "problemFocus" },
{ "key": "space", "command": "refactorPreview.toggleCheckedState",
"when": "listFocus && refactorPreview.enabled && !inputFocus" },
{ "key": "alt+cmd+r", "command": "revealFileInOS",
"when": "!editorFocus" },
{ "key": "cmd+down", "command": "revealReference",
"when": "listFocus && referenceSearchVisible && !inputFocus" },
{ "key": "enter", "command": "revealReference",
"when": "listFocus && referenceSearchVisible && !inputFocus" },
{ "key": "alt+cmd+s", "command": "saveAll" },
{ "key": "cmd+enter", "command": "scm.acceptInput",
"when": "scmRepository" },
{ "key": "alt+down", "command": "scm.forceViewNextCommit",
"when": "scmRepository" },
{ "key": "alt+up", "command": "scm.forceViewPreviousCommit",
"when": "scmRepository" },
{ "key": "down", "command": "scm.viewNextCommit",
"when": "scmInputIsInLastPosition && scmRepository && !suggestWidgetVisible" },
{ "key": "up", "command": "scm.viewPreviousCommit",
"when": "scmInputIsInFirstPosition && scmRepository && !suggestWidgetVisible" },
{ "key": "escape", "command": "search.action.cancel",
"when": "listFocus && searchViewletVisible && !inputFocus && searchState != '0'" },
{ "key": "cmd+c", "command": "search.action.copyMatch",
"when": "fileMatchOrMatchFocus" },
{ "key": "alt+cmd+c", "command": "search.action.copyPath",
"when": "fileMatchOrFolderMatchWithResourceFocus" },
{ "key": "f4", "command": "search.action.focusNextSearchResult",
"when": "hasSearchResult || inSearchEditor" },
{ "key": "shift+f4", "command": "search.action.focusPreviousSearchResult",
"when": "hasSearchResult || inSearchEditor" },
{ "key": "cmd+up", "command": "search.action.focusSearchFromResults",
"when": "firstMatchFocus && searchViewletVisible" },
{ "key": "cmd+enter", "command": "search.action.openInEditor",
"when": "hasSearchResult && searchViewletFocus" },
{ "key": "cmd+down", "command": "search.action.openResult",
"when": "fileMatchOrMatchFocus && searchViewletVisible" },
{ "key": "enter", "command": "search.action.openResult",
"when": "fileMatchOrMatchFocus && searchViewletVisible" },
{ "key": "ctrl+enter", "command": "search.action.openResultToSide",
"when": "fileMatchOrMatchFocus && searchViewletVisible" },
{ "key": "cmd+backspace", "command": "search.action.remove",
"when": "fileMatchOrMatchFocus && searchViewletVisible" },
{ "key": "shift+cmd+1", "command": "search.action.replace",
"when": "matchFocus && replaceActive && searchViewletVisible" },
{ "key": "alt+cmd+enter", "command": "search.action.replaceAll",
"when": "replaceActive && searchViewletVisible && !findWidgetVisible" },
{ "key": "shift+cmd+enter", "command": "search.action.replaceAllInFile",
"when": "fileMatchFocus && replaceActive && searchViewletVisible" },
{ "key": "shift+cmd+1", "command": "search.action.replaceAllInFile",
"when": "fileMatchFocus && replaceActive && searchViewletVisible" },
{ "key": "shift+cmd+enter", "command": "search.action.replaceAllInFolder",
"when": "folderMatchFocus && replaceActive && searchViewletVisible" },
{ "key": "shift+cmd+1", "command": "search.action.replaceAllInFolder",
"when": "folderMatchFocus && replaceActive && searchViewletVisible" },
{ "key": "cmd+down", "command": "search.focus.nextInputBox",
"when": "inSearchEditor && inputBoxFocus || inputBoxFocus && searchViewletVisible" },
{ "key": "cmd+up", "command": "search.focus.previousInputBox",
"when": "inSearchEditor && inputBoxFocus || inputBoxFocus && searchViewletVisible && !searchInputBoxFocus" },
{ "key": "shift+cmd+l", "command": "selectAllSearchEditorMatches",
"when": "inSearchEditor" },
{ "key": "escape", "command": "settings.action.focusLevelUp",
"when": "inSettingsEditor && !inSettingsJSONEditor && !inSettingsSearch" },
{ "key": "enter", "command": "settings.action.focusSettingControl",
"when": "settingRowFocus" },
{ "key": "down", "command": "settings.action.focusSettingsFromSearch",
"when": "inSettingsSearch && !suggestWidgetVisible" },
{ "key": "enter", "command": "settings.action.focusSettingsList",
"when": "inSettingsEditor && settingsTocRowFocus" },
{ "key": "left", "command": "settings.action.focusTOC",
"when": "inSettingsEditor && settingRowFocus" },
{ "key": "shift+f9", "command": "settings.action.showContextMenu",
"when": "inSettingsEditor" },
{ "key": "cmd+; cmd+x", "command": "testing.cancelRun" },
{ "key": "cmd+; cmd+a", "command": "testing.debugAll" },
{ "key": "cmd+; cmd+c", "command": "testing.debugAtCursor",
"when": "editorTextFocus" },
{ "key": "cmd+; cmd+f", "command": "testing.debugCurrentFile",
"when": "editorTextFocus" },
{ "key": "cmd+; cmd+e", "command": "testing.debugFailTests" },
{ "key": "cmd+; cmd+l", "command": "testing.debugLastRun" },
{ "key": "cmd+; m", "command": "testing.openOutputPeek" },
{ "key": "cmd+; e", "command": "testing.reRunFailTests" },
{ "key": "cmd+; l", "command": "testing.reRunLastRun" },
{ "key": "cmd+; a", "command": "testing.runAll" },
{ "key": "cmd+; c", "command": "testing.runAtCursor",
"when": "editorTextFocus" },
{ "key": "cmd+; f", "command": "testing.runCurrentFile",
"when": "editorTextFocus" },
{ "key": "cmd+; cmd+o", "command": "testing.showMostRecentOutput" },
{ "key": "alt+cmd+c", "command": "toggleSearchCaseSensitive",
"when": "searchViewletFocus && !fileMatchOrFolderMatchFocus" },
{ "key": "alt+cmd+c", "command": "toggleSearchEditorCaseSensitive",
"when": "inSearchEditor && searchInputBoxFocus" },
{ "key": "alt+cmd+l", "command": "toggleSearchEditorContextLines",
"when": "inSearchEditor" },
{ "key": "alt+cmd+r", "command": "toggleSearchEditorRegex",
"when": "inSearchEditor && searchInputBoxFocus" },
{ "key": "alt+cmd+w", "command": "toggleSearchEditorWholeWord",
"when": "inSearchEditor && searchInputBoxFocus" },
{ "key": "alt+cmd+p", "command": "toggleSearchPreserveCase",
"when": "searchViewletFocus" },
{ "key": "alt+cmd+r", "command": "toggleSearchRegex",
"when": "searchViewletFocus" },
{ "key": "alt+cmd+w", "command": "toggleSearchWholeWord",
"when": "searchViewletFocus" },
{ "key": "cmd+w", "command": "workbench.action.closeActiveEditor" },
{ "key": "cmd+k cmd+w", "command": "workbench.action.closeAllEditors" },
{ "key": "cmd+k shift+cmd+w", "command": "workbench.action.closeAllGroups" },
{ "key": "cmd+k w", "command": "workbench.action.closeEditorsInGroup" },
{ "key": "cmd+k f", "command": "workbench.action.closeFolder",
"when": "emptyWorkspaceSupport" },
{ "key": "cmd+w", "command": "workbench.action.closeGroup",
"when": "activeEditorGroupEmpty && multipleEditorGroups" },
{ "key": "alt+cmd+t", "command": "workbench.action.closeOtherEditors" },
{ "key": "shift+escape", "command": "workbench.action.closeQuickOpen",
"when": "inQuickOpen" },
{ "key": "escape", "command": "workbench.action.closeQuickOpen",
"when": "inQuickOpen" },
{ "key": "cmd+k u", "command": "workbench.action.closeUnmodifiedEditors" },
{ "key": "shift+cmd+w", "command": "workbench.action.closeWindow" },
{ "key": "alt+f5", "command": "workbench.action.compareEditor.nextChange",
"when": "textCompareEditorVisible" },
{ "key": "shift+alt+f5", "command": "workbench.action.compareEditor.previousChange",
"when": "textCompareEditorVisible" },
{ "key": "shift+f5", "command": "workbench.action.debug.disconnect",
"when": "focusedSessionIsAttach && inDebugMode" },
{ "key": "shift+cmd+f5", "command": "workbench.action.debug.restart",
"when": "inDebugMode" },
{ "key": "ctrl+f5", "command": "workbench.action.debug.run",
"when": "debuggersAvailable && debugState != 'initializing'" },
{ "key": "f5", "command": "workbench.action.debug.start",
"when": "debuggersAvailable && debugState == 'inactive'" },
{ "key": "shift+f11", "command": "workbench.action.debug.stepOut",
"when": "debugState == 'stopped'" },
{ "key": "f10", "command": "workbench.action.debug.stepOver",
"when": "debugState == 'stopped'" },
{ "key": "shift+f5", "command": "workbench.action.debug.stop",
"when": "inDebugMode && !focusedSessionIsAttach" },
{ "key": "cmd+k m", "command": "workbench.action.editor.changeLanguageMode",
"when": "!notebookEditorFocused" },
{ "key": "cmd+k p", "command": "workbench.action.files.copyPathOfActiveFile" },
{ "key": "cmd+n", "command": "workbench.action.files.newUntitledFile" },
{ "key": "cmd+o", "command": "workbench.action.files.openFileFolder" },
{ "key": "cmd+o", "command": "workbench.action.files.openLocalFileFolder",
"when": "remoteFileDialogVisible" },
{ "key": "cmd+k r", "command": "workbench.action.files.revealActiveFileInWindows" },
{ "key": "cmd+s", "command": "workbench.action.files.save" },
{ "key": "shift+cmd+s", "command": "workbench.action.files.saveAs" },
{ "key": "shift+cmd+s", "command": "workbench.action.files.saveLocalFile",
"when": "remoteFileDialogVisible" },
{ "key": "cmd+k s", "command": "workbench.action.files.saveWithoutFormatting" },
{ "key": "cmd+k o", "command": "workbench.action.files.showOpenedFileInNewWindow",
"when": "emptyWorkspaceSupport" },
{ "key": "shift+cmd+f", "command": "workbench.action.findInFiles" },
{ "key": "cmd+k cmd+up", "command": "workbench.action.focusAboveGroup" },
{ "key": "cmd+k cmd+down", "command": "workbench.action.focusBelowGroup" },
{ "key": "cmd+8", "command": "workbench.action.focusEighthEditorGroup" },
{ "key": "cmd+5", "command": "workbench.action.focusFifthEditorGroup" },
{ "key": "cmd+1", "command": "workbench.action.focusFirstEditorGroup" },
{ "key": "cmd+4", "command": "workbench.action.focusFourthEditorGroup" },
{ "key": "cmd+k cmd+left", "command": "workbench.action.focusLeftGroup" },
{ "key": "f6", "command": "workbench.action.focusNextPart" },
{ "key": "shift+f6", "command": "workbench.action.focusPreviousPart" },
{ "key": "cmd+k cmd+right", "command": "workbench.action.focusRightGroup" },
{ "key": "cmd+2", "command": "workbench.action.focusSecondEditorGroup" },
{ "key": "cmd+7", "command": "workbench.action.focusSeventhEditorGroup" },
{ "key": "cmd+0", "command": "workbench.action.focusSideBar" },
{ "key": "cmd+6", "command": "workbench.action.focusSixthEditorGroup" },
{ "key": "cmd+3", "command": "workbench.action.focusThirdEditorGroup" },
{ "key": "ctrl+g", "command": "workbench.action.gotoLine" },
{ "key": "shift+cmd+o", "command": "workbench.action.gotoSymbol" },
{ "key": "escape", "command": "workbench.action.hideInterfaceOverview",
"when": "interfaceOverviewVisible" },
{ "key": "down", "command": "workbench.action.interactivePlayground.arrowDown",
"when": "interactivePlaygroundFocus && !editorTextFocus" },
{ "key": "up", "command": "workbench.action.interactivePlayground.arrowUp",
"when": "interactivePlaygroundFocus && !editorTextFocus" },
{ "key": "pagedown", "command": "workbench.action.interactivePlayground.pageDown",
"when": "interactivePlaygroundFocus && !editorTextFocus" },
{ "key": "pageup", "command": "workbench.action.interactivePlayground.pageUp",
"when": "interactivePlaygroundFocus && !editorTextFocus" },
{ "key": "cmd+k enter", "command": "workbench.action.keepEditor" },
{ "key": "cmd+k cmd+r", "command": "workbench.action.keybindingsReference" },
{ "key": "cmd+9", "command": "workbench.action.lastEditorInGroup" },
{ "key": "ctrl+0", "command": "workbench.action.lastEditorInGroup" },
{ "key": "cmd+k down", "command": "workbench.action.moveActiveEditorGroupDown" },
{ "key": "cmd+k left", "command": "workbench.action.moveActiveEditorGroupLeft" },
{ "key": "cmd+k right", "command": "workbench.action.moveActiveEditorGroupRight" },
{ "key": "cmd+k up", "command": "workbench.action.moveActiveEditorGroupUp" },
{ "key": "cmd+k shift+cmd+left", "command": "workbench.action.moveEditorLeftInGroup" },
{ "key": "cmd+k shift+cmd+right", "command": "workbench.action.moveEditorRightInGroup" },
{ "key": "ctrl+cmd+1", "command": "workbench.action.moveEditorToFirstGroup" },
{ "key": "ctrl+cmd+9", "command": "workbench.action.moveEditorToLastGroup" },
{ "key": "ctrl+cmd+right", "command": "workbench.action.moveEditorToNextGroup" },
{ "key": "ctrl+cmd+left", "command": "workbench.action.moveEditorToPreviousGroup" },
{ "key": "ctrl+-", "command": "workbench.action.navigateBack" },
{ "key": "ctrl+shift+-", "command": "workbench.action.navigateForward" },
{ "key": "cmd+k cmd+q", "command": "workbench.action.navigateToLastEditLocation" },
{ "key": "shift+cmd+n", "command": "workbench.action.newWindow" },
{ "key": "shift+cmd+]", "command": "workbench.action.nextEditor" },
{ "key": "alt+cmd+right", "command": "workbench.action.nextEditor" },
{ "key": "cmd+k alt+cmd+right", "command": "workbench.action.nextEditorInGroup" },
{ "key": "ctrl+1", "command": "workbench.action.openEditorAtIndex1" },
{ "key": "ctrl+2", "command": "workbench.action.openEditorAtIndex2" },
{ "key": "ctrl+3", "command": "workbench.action.openEditorAtIndex3" },
{ "key": "ctrl+4", "command": "workbench.action.openEditorAtIndex4" },
{ "key": "ctrl+5", "command": "workbench.action.openEditorAtIndex5" },
{ "key": "ctrl+6", "command": "workbench.action.openEditorAtIndex6" },
{ "key": "ctrl+7", "command": "workbench.action.openEditorAtIndex7" },
{ "key": "ctrl+8", "command": "workbench.action.openEditorAtIndex8" },
{ "key": "ctrl+9", "command": "workbench.action.openEditorAtIndex9" },
{ "key": "cmd+k cmd+s", "command": "workbench.action.openGlobalKeybindings" },
{ "key": "ctrl+r", "command": "workbench.action.openRecent" },
{ "key": "cmd+,", "command": "workbench.action.openSettings" },
{ "key": "shift+cmd+u", "command": "workbench.action.output.toggleOutput",
"when": "workbench.panel.output.active" },
{ "key": "cmd+k shift+enter", "command": "workbench.action.pinEditor",
"when": "!activeEditorIsPinned" },
{ "key": "shift+cmd+[", "command": "workbench.action.previousEditor" },
{ "key": "alt+cmd+left", "command": "workbench.action.previousEditor" },
{ "key": "cmd+k alt+cmd+left", "command": "workbench.action.previousEditorInGroup" },
{ "key": "cmd+p", "command": "workbench.action.quickOpen" },
{ "key": "ctrl+shift+tab", "command": "workbench.action.quickOpenLeastRecentlyUsedEditorInGroup" },
{ "key": "ctrl+tab", "command": "workbench.action.quickOpenPreviousRecentlyUsedEditorInGroup" },
{ "key": "ctrl+q", "command": "workbench.action.quickOpenView" },
{ "key": "cmd+q", "command": "workbench.action.quit" },
{ "key": "shift+cmd+t", "command": "workbench.action.reopenClosedEditor" },
{ "key": "shift+cmd+h", "command": "workbench.action.replaceInFiles" },
{ "key": "shift+cmd+j", "command": "workbench.action.search.toggleQueryDetails",
"when": "inSearchEditor || searchViewletFocus" },
{ "key": "cmd+k cmd+t", "command": "workbench.action.selectTheme" },
{ "key": "alt+cmd+tab", "command": "workbench.action.showAllEditors" },
{ "key": "cmd+t", "command": "workbench.action.showAllSymbols" },
{ "key": "f1", "command": "workbench.action.showCommands" },
{ "key": "shift+cmd+p", "command": "workbench.action.showCommands" },
{ "key": "cmd+\\", "command": "workbench.action.splitEditor" },
{ "key": "cmd+k cmd+\\", "command": "workbench.action.splitEditorOrthogonal" },
{ "key": "ctrl+w", "command": "workbench.action.switchWindow" },
{ "key": "shift+cmd+b", "command": "workbench.action.tasks.build" },
{ "key": "escape", "command": "workbench.action.terminal.clearSelection",
"when": "terminalFocus && terminalProcessSupported && terminalTextSelected && !terminalFindVisible" },
{ "key": "cmd+c", "command": "workbench.action.terminal.copySelection",
"when": "terminalFocus && terminalProcessSupported && terminalTextSelected && terminalTextSelected" },
{ "key": "f3", "command": "workbench.action.terminal.findNext",
"when": "terminalFindFocused && terminalProcessSupported || terminalFocus && terminalProcessSupported" },
{ "key": "cmd+g", "command": "workbench.action.terminal.findNext",
"when": "terminalFindFocused && terminalProcessSupported || terminalFocus && terminalProcessSupported" },
{ "key": "shift+enter", "command": "workbench.action.terminal.findNext",
"when": "terminalFindFocused && terminalProcessSupported" },
{ "key": "shift+f3", "command": "workbench.action.terminal.findPrevious",
"when": "terminalFindFocused && terminalProcessSupported || terminalFocus && terminalProcessSupported" },
{ "key": "shift+cmd+g", "command": "workbench.action.terminal.findPrevious",
"when": "terminalFindFocused && terminalProcessSupported || terminalFocus && terminalProcessSupported" },
{ "key": "enter", "command": "workbench.action.terminal.findPrevious",
"when": "terminalFindFocused && terminalProcessSupported" },
{ "key": "cmd+f", "command": "workbench.action.terminal.focusFind",
"when": "terminalFindFocused && terminalProcessSupported || terminalFocus && terminalProcessSupported" },
{ "key": "shift+cmd+]", "command": "workbench.action.terminal.focusNext",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "alt+cmd+down", "command": "workbench.action.terminal.focusNextPane",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "alt+cmd+right", "command": "workbench.action.terminal.focusNextPane",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "shift+cmd+[", "command": "workbench.action.terminal.focusPrevious",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "alt+cmd+up", "command": "workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "alt+cmd+left", "command": "workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "shift+cmd+\\", "command": "workbench.action.terminal.focusTabs",
"when": "terminalFocus && terminalProcessSupported || terminalProcessSupported && terminalTabsFocus" },
{ "key": "shift+escape", "command": "workbench.action.terminal.hideFind",
"when": "terminalFindVisible && terminalFocus && terminalProcessSupported" },
{ "key": "escape", "command": "workbench.action.terminal.hideFind",
"when": "terminalFindVisible && terminalFocus && terminalProcessSupported" },
{ "key": "delete", "command": "workbench.action.terminal.killInstance",
"when": "terminalIsOpen && terminalTabsFocus || terminalProcessSupported && terminalTabsFocus" },
{ "key": "cmd+backspace", "command": "workbench.action.terminal.killInstance",
"when": "terminalIsOpen && terminalTabsFocus || terminalProcessSupported && terminalTabsFocus" },
{ "key": "escape", "command": "workbench.action.terminal.navigationModeExit",
"when": "accessibilityModeEnabled && terminalA11yTreeFocus && terminalProcessSupported" },
{ "key": "cmd+down", "command": "workbench.action.terminal.navigationModeFocusNext",
"when": "accessibilityModeEnabled && terminalA11yTreeFocus && terminalProcessSupported || accessibilityModeEnabled && terminalFocus && terminalProcessSupported" },
{ "key": "cmd+up", "command": "workbench.action.terminal.navigationModeFocusPrevious",
"when": "accessibilityModeEnabled && terminalA11yTreeFocus && terminalProcessSupported || accessibilityModeEnabled && terminalFocus && terminalProcessSupported" },
{ "key": "ctrl+shift+`", "command": "workbench.action.terminal.new",
"when": "terminalProcessSupported" },
{ "key": "shift+cmd+c", "command": "workbench.action.terminal.openNativeConsole",
"when": "!terminalFocus" },
{ "key": "cmd+v", "command": "workbench.action.terminal.paste",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "enter", "command": "workbench.action.terminal.renameInstance",
"when": "terminalProcessSupported && terminalTabsFocus && terminalTabsSingularSelection" },
{ "key": "ctrl+cmd+down", "command": "workbench.action.terminal.resizePaneDown",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "ctrl+cmd+left", "command": "workbench.action.terminal.resizePaneLeft",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "ctrl+cmd+right", "command": "workbench.action.terminal.resizePaneRight",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "ctrl+cmd+up", "command": "workbench.action.terminal.resizePaneUp",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "alt+cmd+pagedown", "command": "workbench.action.terminal.scrollDown",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "pagedown", "command": "workbench.action.terminal.scrollDownPage",
"when": "terminalFocus && terminalProcessSupported && !terminalAltBufferActive" },
{ "key": "cmd+end", "command": "workbench.action.terminal.scrollToBottom",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "cmd+down", "command": "workbench.action.terminal.scrollToNextCommand",
"when": "terminalFocus && terminalProcessSupported && !accessibilityModeEnabled" },
{ "key": "cmd+up", "command": "workbench.action.terminal.scrollToPreviousCommand",
"when": "terminalFocus && terminalProcessSupported && !accessibilityModeEnabled" },
{ "key": "cmd+home", "command": "workbench.action.terminal.scrollToTop",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "alt+cmd+pageup", "command": "workbench.action.terminal.scrollUp",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "pageup", "command": "workbench.action.terminal.scrollUpPage",
"when": "terminalFocus && terminalProcessSupported && !terminalAltBufferActive" },
{ "key": "cmd+a", "command": "workbench.action.terminal.selectAll",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "shift+cmd+down", "command": "workbench.action.terminal.selectToNextCommand",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "shift+cmd+up", "command": "workbench.action.terminal.selectToPreviousCommand",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "alt+backspace", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus",
"args": {"text":"\u0017"} },
{ "key": "alt+delete", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus",
"args": {"text":"\u001bd"} },
{ "key": "cmd+backspace", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus",
"args": {"text":"\u0015"} },
{ "key": "cmd+left", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus",
"args": {"text":"\u0001"} },
{ "key": "cmd+right", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus",
"args": {"text":"\u0005"} },
{ "key": "ctrl+shift+5", "command": "workbench.action.terminal.split",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "cmd+\\", "command": "workbench.action.terminal.split",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "ctrl+shift+5", "command": "workbench.action.terminal.splitInstance",
"when": "terminalProcessSupported && terminalTabsFocus" },
{ "key": "cmd+\\", "command": "workbench.action.terminal.splitInstance",
"when": "terminalProcessSupported && terminalTabsFocus" },
{ "key": "alt+cmd+c", "command": "workbench.action.terminal.toggleFindCaseSensitive",
"when": "terminalFindFocused && terminalProcessSupported || terminalFocus && terminalProcessSupported" },
{ "key": "alt+cmd+r", "command": "workbench.action.terminal.toggleFindRegex",
"when": "terminalFindFocused && terminalProcessSupported || terminalFocus && terminalProcessSupported" },
{ "key": "alt+cmd+w", "command": "workbench.action.terminal.toggleFindWholeWord",
"when": "terminalFindFocused && terminalProcessSupported || terminalFocus && terminalProcessSupported" },
{ "key": "ctrl+`", "command": "workbench.action.terminal.toggleTerminal",
"when": "terminal.active" },
{ "key": "alt+cmd+0", "command": "workbench.action.toggleEditorGroupLayout" },
{ "key": "ctrl+cmd+f", "command": "workbench.action.toggleFullScreen",
"when": "!isIOS" },
{ "key": "cmd+j", "command": "workbench.action.togglePanel" },
{ "key": "cmd+b", "command": "workbench.action.toggleSidebarVisibility" },
{ "key": "ctrl+cmd+w", "command": "workbench.action.toggleTabsVisibility" },
{ "key": "cmd+k z", "command": "workbench.action.toggleZenMode" },
{ "key": "cmd+k shift+enter", "command": "workbench.action.unpinEditor",
"when": "activeEditorIsPinned" },
{ "key": "cmd+numpad_add", "command": "workbench.action.zoomIn" },
{ "key": "shift+cmd+=", "command": "workbench.action.zoomIn" },
{ "key": "cmd+=", "command": "workbench.action.zoomIn" },
{ "key": "cmd+numpad_subtract", "command": "workbench.action.zoomOut" },
{ "key": "shift+cmd+-", "command": "workbench.action.zoomOut" },
{ "key": "cmd+-", "command": "workbench.action.zoomOut" },
{ "key": "cmd+numpad0", "command": "workbench.action.zoomReset" },
{ "key": "shift+cmd+m", "command": "workbench.actions.view.problems",
"when": "workbench.panel.markers.view.active" },
{ "key": "escape", "command": "workbench.banner.focusBanner",
"when": "bannerFocused" },
{ "key": "down", "command": "workbench.banner.focusNextAction",
"when": "bannerFocused" },
{ "key": "right", "command": "workbench.banner.focusNextAction",
"when": "bannerFocused" },
{ "key": "up", "command": "workbench.banner.focusPreviousAction",
"when": "bannerFocused" },
{ "key": "left", "command": "workbench.banner.focusPreviousAction",
"when": "bannerFocused" },
{ "key": "shift+cmd+y", "command": "workbench.debug.action.toggleRepl",
"when": "workbench.panel.repl.view.active" },
{ "key": "cmd+k cmd+m", "command": "workbench.extensions.action.showRecommendedKeymapExtensions" },
{ "key": "cmd+k c", "command": "workbench.files.action.compareWithClipboard" },
{ "key": "cmd+k d", "command": "workbench.files.action.compareWithSaved" },
{ "key": "cmd+k e", "command": "workbench.files.action.focusOpenEditorsView",
"when": "workbench.explorer.openEditorsView.active" },
{ "key": "escape", "command": "workbench.statusBar.clearFocus",
"when": "statusBarFocused" },
{ "key": "home", "command": "workbench.statusBar.focusFirst",
"when": "statusBarFocused" },
{ "key": "end", "command": "workbench.statusBar.focusLast",
"when": "statusBarFocused" },
{ "key": "down", "command": "workbench.statusBar.focusNext",
"when": "statusBarFocused" },
{ "key": "right", "command": "workbench.statusBar.focusNext",
"when": "statusBarFocused" },
{ "key": "up", "command": "workbench.statusBar.focusPrevious",
"when": "statusBarFocused" },
{ "key": "left", "command": "workbench.statusBar.focusPrevious",
"when": "statusBarFocused" },
{ "key": "shift+cmd+d", "command": "workbench.view.debug",
"when": "viewContainer.workbench.view.debug.enabled" },
{ "key": "shift+cmd+e", "command": "workbench.view.explorer",
"when": "viewContainer.workbench.view.explorer.enabled" },
{ "key": "shift+cmd+x", "command": "workbench.view.extensions",
"when": "viewContainer.workbench.view.extensions.enabled" },
{ "key": "ctrl+shift+g", "command": "workbench.view.scm",
"when": "workbench.scm.active" },
{ "key": "shift+cmd+f", "command": "workbench.view.search",
"when": "workbench.view.search.active && neverMatch =~ /doesNotMatch/" },
{ "key": "alt+right", "command": "breadcrumbs.focusNextWithPicker",
"when": "breadcrumbsActive && breadcrumbsVisible && listFocus && !inputFocus" },
{ "key": "alt+left", "command": "breadcrumbs.focusPreviousWithPicker",
"when": "breadcrumbsActive && breadcrumbsVisible && listFocus && !inputFocus" },
{ "key": "escape", "command": "breadcrumbs.selectEditor",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "cmd+k down", "command": "views.moveViewDown",
"when": "focusedView != ''" },
{ "key": "cmd+k left", "command": "views.moveViewLeft",
"when": "focusedView != ''" },
{ "key": "cmd+k right", "command": "views.moveViewRight",
"when": "focusedView != ''" },
{ "key": "cmd+k up", "command": "views.moveViewUp",
"when": "focusedView != ''" },
{ "key": "cmd+k", "command": "workbench.action.terminal.clear",
"when": "terminalFocus && terminalProcessSupported" },
{ "key": "f6", "command": "workbench.action.debug.pause",
"when": "debugState == 'running'" },
{ "key": "enter", "command": "debug.renameWatchExpression",
"when": "watchExpressionsFocused" },
{ "key": "enter", "command": "debug.setVariable",
"when": "variablesFocused" },
{ "key": "space", "command": "debug.toggleBreakpoint",
"when": "breakpointsFocused && !inputFocus" },
{ "key": "alt+cmd+backspace", "command": "deleteFile",
"when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceReadonly && !inputFocus" },
{ "key": "cmd+backspace", "command": "deleteFile",
"when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceMoveableToTrash && !explorerResourceReadonly && !inputFocus" },
{ "key": "escape", "command": "editor.closeCallHierarchy",
"when": "callHierarchyVisible && !config.editor.stablePeek" },
{ "key": "cmd+down", "command": "explorer.openAndPassFocus",
"when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsFolder && !inputFocus" },
{ "key": "escape", "command": "filesExplorer.cancelCut",
"when": "explorerResourceCut && explorerViewletVisible && filesExplorerFocus && !inputFocus" },
{ "key": "cmd+c", "command": "filesExplorer.copy",
"when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsRoot && !inputFocus" },
{ "key": "cmd+x", "command": "filesExplorer.cut",
"when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus" },
{ "key": "space", "command": "filesExplorer.openFilePreserveFocus",
"when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsFolder && !inputFocus" },
{ "key": "cmd+v", "command": "filesExplorer.paste",
"when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceReadonly && !inputFocus" },
{ "key": "home", "command": "firstCompressedFolder",
"when": "explorerViewletCompressedFocus && explorerViewletVisible && filesExplorerFocus && !explorerViewletCompressedFirstFocus && !inputFocus" },
{ "key": "end", "command": "lastCompressedFolder",
"when": "explorerViewletCompressedFocus && explorerViewletVisible && filesExplorerFocus && !explorerViewletCompressedLastFocus && !inputFocus" },
{ "key": "delete", "command": "moveFileToTrash",
"when": "explorerResourceMoveableToTrash && explorerViewletVisible && filesExplorerFocus && !explorerResourceReadonly && !inputFocus" },
{ "key": "cmd+backspace", "command": "moveFileToTrash",
"when": "explorerResourceMoveableToTrash && explorerViewletVisible && filesExplorerFocus && !explorerResourceReadonly && !inputFocus" },
{ "key": "right", "command": "nextCompressedFolder",
"when": "explorerViewletCompressedFocus && explorerViewletVisible && filesExplorerFocus && !explorerViewletCompressedLastFocus && !inputFocus" },
{ "key": "left", "command": "previousCompressedFolder",
"when": "explorerViewletCompressedFocus && explorerViewletVisible && filesExplorerFocus && !explorerViewletCompressedFirstFocus && !inputFocus" },
{ "key": "delete", "command": "remote.tunnel.closeInline",
"when": "tunnelCloseable && tunnelViewFocus" },
{ "key": "cmd+backspace", "command": "remote.tunnel.closeInline",
"when": "tunnelCloseable && tunnelViewFocus" },
{ "key": "cmd+c", "command": "remote.tunnel.copyAddressInline",
"when": "tunnelViewFocus && tunnelType == 'Detected' && tunnelViewMultiSelection == 'undefined' || tunnelViewFocus && tunnelType == 'Forwarded' && tunnelViewMultiSelection == 'undefined'" },
{ "key": "enter", "command": "remote.tunnel.label",
"when": "tunnelViewFocus && tunnelType == 'Forwarded' && tunnelViewMultiSelection == 'undefined'" },
{ "key": "enter", "command": "renameFile",
"when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus" },
{ "key": "f5", "command": "workbench.action.debug.continue",
"when": "debugState == 'stopped'" },
{ "key": "f11", "command": "workbench.action.debug.stepInto",
"when": "debugState != 'inactive'" },
{ "key": "shift+escape", "command": "closeReferenceSearch",
"when": "referenceSearchVisible && !config.editor.stablePeek" },
{ "key": "escape", "command": "closeReferenceSearch",
"when": "referenceSearchVisible && !config.editor.stablePeek" },
{ "key": "escape", "command": "notifications.hideList",
"when": "notificationCenterVisible" },
{ "key": "ctrl+-", "command": "workbench.action.quickInputBack",
"when": "inQuickOpen" },
{ "key": "ctrl+tab", "command": "workbench.action.quickOpenNavigateNextInEditorPicker",
"when": "inEditorsPicker && inQuickOpen" },
{ "key": "cmd+p", "command": "workbench.action.quickOpenNavigateNextInFilePicker",
"when": "inFilesPicker && inQuickOpen" },
{ "key": "ctrl+r", "command": "workbench.action.quickOpenNavigateNextInRecentFilesPicker",
"when": "inQuickOpen && inRecentFilesPicker" },
{ "key": "ctrl+q", "command": "workbench.action.quickOpenNavigateNextInViewPicker",
"when": "inQuickOpen && inViewsPicker" },
{ "key": "ctrl+shift+tab", "command": "workbench.action.quickOpenNavigatePreviousInEditorPicker",
"when": "inEditorsPicker && inQuickOpen" },
{ "key": "shift+cmd+p", "command": "workbench.action.quickOpenNavigatePreviousInFilePicker",
"when": "inFilesPicker && inQuickOpen" },
{ "key": "ctrl+shift+r", "command": "workbench.action.quickOpenNavigatePreviousInRecentFilesPicker",
"when": "inQuickOpen && inRecentFilesPicker" },
{ "key": "ctrl+shift+q", "command": "workbench.action.quickOpenNavigatePreviousInViewPicker",
"when": "inQuickOpen && inViewsPicker" },
{ "key": "ctrl+n", "command": "workbench.action.quickOpenSelectNext",
"when": "inQuickOpen" },
{ "key": "ctrl+p", "command": "workbench.action.quickOpenSelectPrevious",
"when": "inQuickOpen" },
{ "key": "cmd+r", "command": "workbench.action.reloadWindow",
"when": "isDevelopment" },
{ "key": "shift+cmd+f", "command": "workbench.action.terminal.searchWorkspace",
"when": "terminalFocus && terminalProcessSupported && terminalProcessSupported && terminalTextSelected" },
{ "key": "alt+cmd+i", "command": "workbench.action.toggleDevTools",
"when": "isDevelopment" },
{ "key": "escape", "command": "notifications.hideToasts",
"when": "notificationFocus && notificationToastsVisible" },
{ "key": "f10", "command": "extension.node-debug.startWithStopOnEntry",
"when": "!inDebugMode && debugConfigurationType == 'node' || !inDebugMode && debugConfigurationType == 'pwa-extensionHost' || !inDebugMode && debugConfigurationType == 'pwa-node'" },
{ "key": "cmd+k alt+cmd+s", "command": "git.stageSelectedRanges",
"when": "isInDiffEditor" },
{ "key": "shift+cmd+v", "command": "markdown.showPreview",
"when": "!notebookEditorFocused && editorLangId == 'markdown'" },
{ "key": "shift+alt+f12", "command": "references-view.findReferences",
"when": "editorHasReferenceProvider" },
{ "key": "f11", "command": "extension.node-debug.startWithStopOnEntry",
"when": "!inDebugMode && debugConfigurationType == 'node' || !inDebugMode && debugConfigurationType == 'pwa-extensionHost' || !inDebugMode && debugConfigurationType == 'pwa-node'" },
{ "key": "cmd+k cmd+n", "command": "git.unstageSelectedRanges",
"when": "isInDiffEditor" },
{ "key": "cmd+k v", "command": "markdown.showPreviewToSide",
"when": "!notebookEditorFocused && editorLangId == 'markdown'" },
{ "key": "f4", "command": "references-view.next",
"when": "reference-list.hasResult && references-view.canNavigate" },
{ "key": "cmd+k cmd+r", "command": "git.revertSelectedRanges",
"when": "isInDiffEditor" },
{ "key": "shift+f4", "command": "references-view.prev",
"when": "reference-list.hasResult && references-view.canNavigate" },
{ "key": "shift+alt+h", "command": "references-view.showCallHierarchy",
"when": "editorHasCallHierarchyProvider" },
{ "key": "cmd+l cmd+c", "command": "extension.liveServer.goOffline",
"when": "editorTextFocus" },
{ "key": "shift+cmd+r", "command": "extension.snippetSearch",
"when": "editorTextFocus" },
{ "key": "cmd+l cmd+o", "command": "extension.liveServer.goOnline",
"when": "editorTextFocus" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment