microsoft / vscode

Visual Studio Code
https://code.visualstudio.com
MIT License
162.71k stars 28.7k forks source link

[VSCI] Custom keymaps don't work #75677

Closed visualcookie closed 5 years ago

visualcookie commented 5 years ago

Steps to Reproduce:

  1. Download e.g. Atom Keymap and enable it
  2. Try pressing CMD+W (normally should close currently active Tab)

Does this issue occur when all extensions are disabled?: Yes

nickcampbell18 commented 5 years ago

Does CMD + n work for you either? I didn't even install an extension today, and both of these keybindings just disappeared suddenly.

I'm on version 7f53e50cbf316dff94fbbe5406d8f352dac99a6b.

visualcookie commented 5 years ago

I know what happened there. Someone deleted the keyboard shortcuts on the default keyboad shortcut JSON file.

@nickcampbell18 For now I just copy and pasted the default keyboard shortcuts from the stable release.

nickcampbell18 commented 5 years ago

I don't have the stable release installed, would you mind pasting those lines on this ticket please?

visualcookie commented 5 years ago

@nickcampbell18 Sure. Here you go:

// Override key bindings by placing them into your key bindings file.
[
{ "key": "escape escape",         "command": "workbench.action.exitZenMode",
                                     "when": "inZenMode" },
{ "key": "shift+escape",          "command": "closeReferenceSearchEditor",
                                     "when": "inReferenceSearchEditor && !config.editor.stablePeek" },
{ "key": "escape",                "command": "closeReferenceSearchEditor",
                                     "when": "inReferenceSearchEditor && !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" },
{ "key": "end",                   "command": "cursorEnd",
                                     "when": "textInputFocus" },
{ "key": "shift+cmd+right",       "command": "cursorEndSelect",
                                     "when": "textInputFocus" },
{ "key": "shift+end",             "command": "cursorEndSelect",
                                     "when": "textInputFocus" },
{ "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+a",                "command": "cursorLineStart",
                                     "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 && !editorReadonly" },
{ "key": "ctrl+h",                "command": "deleteLeft",
                                     "when": "textInputFocus && !editorReadonly" },
{ "key": "shift+backspace",       "command": "deleteLeft",
                                     "when": "textInputFocus && !editorReadonly" },
{ "key": "backspace",             "command": "deleteLeft",
                                     "when": "textInputFocus && !editorReadonly" },
{ "key": "ctrl+delete",           "command": "deleteRight",
                                     "when": "textInputFocus && !editorReadonly" },
{ "key": "ctrl+d",                "command": "deleteRight",
                                     "when": "textInputFocus && !editorReadonly" },
{ "key": "delete",                "command": "deleteRight",
                                     "when": "textInputFocus && !editorReadonly" },
{ "key": "cmd+a",                 "command": "editor.action.selectAll",
                                     "when": "textInputFocus" },
{ "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": "cmd+c",                 "command": "problems.action.copy",
                                     "when": "problemFocus" },
{ "key": "cmd+f",                 "command": "problems.action.focusFilter",
                                     "when": "problemsViewFocus" },
{ "key": "cmd+down",              "command": "problems.action.focusProblemsFromFilter",
                                     "when": "problemsFilterFocus" },
{ "key": "shift+cmd+z",           "command": "redo",
                                     "when": "textInputFocus && !editorReadonly" },
{ "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",
                                     "when": "textInputFocus && !editorReadonly" },
{ "key": "shift+escape",          "command": "removeSecondaryCursors",
                                     "when": "editorHasMultipleSelections && textInputFocus" },
{ "key": "escape",                "command": "removeSecondaryCursors",
                                     "when": "editorHasMultipleSelections && textInputFocus" },
{ "key": "cmd+f",                 "command": "actions.find" },
{ "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": "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": "alt+left",              "command": "cursorWordStartLeft",
                                     "when": "textInputFocus" },
{ "key": "shift+alt+left",        "command": "cursorWordStartLeftSelect",
                                     "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": "cmd+f2",                "command": "editor.action.changeAll",
                                     "when": "editorTextFocus && !editorReadonly" },
{ "key": "cmd+c",                 "command": "editor.action.clipboardCopyAction",
                                     "when": "textInputFocus" },
{ "key": "cmd+x",                 "command": "editor.action.clipboardCutAction",
                                     "when": "textInputFocus && !editorReadonly" },
{ "key": "cmd+v",                 "command": "editor.action.clipboardPasteAction",
                                     "when": "textInputFocus && !editorReadonly" },
{ "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": "cmd+f",                 "command": "editor.action.extensioneditor.showfind",
                                     "when": "activeEditor == 'workbench.editor.extension'" },
{ "key": "shift+alt+f",           "command": "editor.action.formatDocument",
                                     "when": "editorHasDocumentFormattingProvider && editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly" },
{ "key": "shift+alt+f",           "command": "editor.action.formatDocument.none",
                                     "when": "editorTextFocus && !editorHasDocumentFormattingProvider && !editorHasDocumentFormattingProvider && !editorReadonly" },
{ "key": "cmd+k cmd+f",           "command": "editor.action.formatSelection",
                                     "when": "editorHasDocumentSelectionFormattingProvider && editorHasDocumentSelectionFormattingProvider && editorTextFocus && !editorReadonly" },
{ "key": "cmd+f12",               "command": "editor.action.goToImplementation",
                                     "when": "editorHasImplementationProvider && editorTextFocus && !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": "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": "alt+f8",                "command": "editor.action.marker.next",
                                     "when": "editorTextFocus && !editorReadonly" },
{ "key": "f8",                    "command": "editor.action.marker.nextInFiles",
                                     "when": "editorFocus && !editorReadonly" },
{ "key": "shift+alt+f8",          "command": "editor.action.marker.prev",
                                     "when": "editorTextFocus && !editorReadonly" },
{ "key": "shift+f8",              "command": "editor.action.marker.prevInFiles",
                                     "when": "editorFocus && !editorReadonly" },
{ "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": "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 && !isInEmbeddedEditor" },
{ "key": "shift+f3",              "command": "editor.action.previousMatchFindAction",
                                     "when": "editorFocus" },
{ "key": "shift+cmd+g",           "command": "editor.action.previousMatchFindAction",
                                     "when": "editorFocus" },
{ "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": "shift+f12",             "command": "editor.action.referenceSearch.trigger",
                                     "when": "editorHasReferenceProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor" },
{ "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": "shift+cmd+l",           "command": "editor.action.selectHighlights",
                                     "when": "editorFocus" },
{ "key": "alt+f1",                "command": "editor.action.showAccessibilityHelp",
                                     "when": "editorFocus" },
{ "key": "shift+f10",             "command": "editor.action.showContextMenu",
                                     "when": "textInputFocus" },
{ "key": "cmd+k cmd+i",           "command": "editor.action.showHover",
                                     "when": "editorTextFocus" },
{ "key": "ctrl+shift+cmd+right",  "command": "editor.action.smartSelect.expand",
                                     "when": "editorTextFocus" },
{ "key": "ctrl+shift+cmd+left",   "command": "editor.action.smartSelect.shrink",
                                     "when": "editorTextFocus" },
{ "key": "alt+cmd+f",             "command": "editor.action.startFindReplaceAction" },
{ "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": "ctrl+space",            "command": "editor.action.triggerSuggest",
                                     "when": "editorHasCompletionItemProvider && textInputFocus && !editorReadonly" },
{ "key": "cmd+k cmd+x",           "command": "editor.action.trimTrailingWhitespace",
                                     "when": "editorTextFocus && !editorReadonly" },
{ "key": "cmd+c",                 "command": "editor.action.webvieweditor.copy",
                                     "when": "!editorFocus && !inputFocus && activeEditor == 'WebviewEditor'" },
{ "key": "cmd+x",                 "command": "editor.action.webvieweditor.cut",
                                     "when": "!editorFocus && !inputFocus && activeEditor == 'WebviewEditor'" },
{ "key": "escape",                "command": "editor.action.webvieweditor.hideFind",
                                     "when": "webviewFindWidgetVisible && !editorFocus && activeEditor == 'WebviewEditor'" },
{ "key": "cmd+v",                 "command": "editor.action.webvieweditor.paste",
                                     "when": "!editorFocus && !inputFocus && activeEditor == 'WebviewEditor'" },
{ "key": "shift+cmd+z",           "command": "editor.action.webvieweditor.redo",
                                     "when": "!editorFocus && !inputFocus && activeEditor == 'WebviewEditor'" },
{ "key": "cmd+a",                 "command": "editor.action.webvieweditor.selectAll",
                                     "when": "!editorFocus && !inputFocus && activeEditor == 'WebviewEditor'" },
{ "key": "cmd+f",                 "command": "editor.action.webvieweditor.showFind",
                                     "when": "!editorFocus && activeEditor == 'WebviewEditor'" },
{ "key": "cmd+z",                 "command": "editor.action.webvieweditor.undo",
                                     "when": "!editorFocus && !inputFocus && 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": "cmd+k cmd+i",           "command": "editor.debug.action.showDebugHover",
                                     "when": "editorTextFocus && inDebugMode" },
{ "key": "f9",                    "command": "editor.debug.action.toggleBreakpoint",
                                     "when": "editorTextFocus" },
{ "key": "tab",                   "command": "editor.emmet.action.expandAbbreviation",
                                     "when": "config.emmet.triggerExpansionOnTab && editorTextFocus && !editorReadonly && !editorTabMovesFocus" },
{ "key": "alt+cmd+[",             "command": "editor.fold",
                                     "when": "editorTextFocus" },
{ "key": "cmd+k cmd+0",           "command": "editor.foldAll",
                                     "when": "editorTextFocus" },
{ "key": "cmd+k cmd+/",           "command": "editor.foldAllBlockComments",
                                     "when": "editorTextFocus" },
{ "key": "cmd+k cmd+8",           "command": "editor.foldAllMarkerRegions",
                                     "when": "editorTextFocus" },
{ "key": "cmd+k cmd+1",           "command": "editor.foldLevel1",
                                     "when": "editorTextFocus" },
{ "key": "cmd+k cmd+2",           "command": "editor.foldLevel2",
                                     "when": "editorTextFocus" },
{ "key": "cmd+k cmd+3",           "command": "editor.foldLevel3",
                                     "when": "editorTextFocus" },
{ "key": "cmd+k cmd+4",           "command": "editor.foldLevel4",
                                     "when": "editorTextFocus" },
{ "key": "cmd+k cmd+5",           "command": "editor.foldLevel5",
                                     "when": "editorTextFocus" },
{ "key": "cmd+k cmd+6",           "command": "editor.foldLevel6",
                                     "when": "editorTextFocus" },
{ "key": "cmd+k cmd+7",           "command": "editor.foldLevel7",
                                     "when": "editorTextFocus" },
{ "key": "cmd+k cmd+[",           "command": "editor.foldRecursively",
                                     "when": "editorTextFocus" },
{ "key": "f12",                   "command": "editor.gotoNextSymbolFromResult",
                                     "when": "hasSymbols && config.editor.gotoLocation.multiple == 'goto'" },
{ "key": "escape",                "command": "editor.gotoNextSymbolFromResult.cancel",
                                     "when": "hasSymbols" },
{ "key": "alt+cmd+]",             "command": "editor.unfold",
                                     "when": "editorTextFocus" },
{ "key": "cmd+k cmd+j",           "command": "editor.unfoldAll",
                                     "when": "editorTextFocus" },
{ "key": "cmd+k cmd+9",           "command": "editor.unfoldAllMarkerRegions",
                                     "when": "editorTextFocus" },
{ "key": "cmd+k cmd+]",           "command": "editor.unfoldRecursively",
                                     "when": "editorTextFocus" },
{ "key": "tab",                   "command": "insertSnippet",
                                     "when": "editorTextFocus && hasSnippetCompletions && !editorTabMovesFocus && !inSnippetMode" },
{ "key": "ctrl+enter",            "command": "openReferenceToSide",
                                     "when": "referenceSearchTreeFocused && referenceSearchVisible" },
{ "key": "enter",                 "command": "repl.action.acceptInput",
                                     "when": "inDebugRepl && textInputFocus" },
{ "key": "cmd+f",                 "command": "repl.action.filter",
                                     "when": "inDebugRepl && textInputFocus" },
{ "key": "escape",                "command": "settings.action.clearSearchResults",
                                     "when": "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": "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" },
{ "key": "escape",                "command": "closeFindWidget",
                                     "when": "editorFocus && findWidgetVisible" },
{ "key": "alt+cmd+enter",         "command": "editor.action.replaceAll",
                                     "when": "editorFocus && findWidgetVisible" },
{ "key": "shift+cmd+1",           "command": "editor.action.replaceOne",
                                     "when": "editorFocus && findWidgetVisible" },
{ "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": "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": "f4",                    "command": "goToNextReferenceFromEmbeddedEditor",
                                     "when": "inReferenceSearchEditor" },
{ "key": "shift+f4",              "command": "goToPreviousReferenceFromEmbeddedEditor",
                                     "when": "inReferenceSearchEditor" },
{ "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": "tab",                   "command": "acceptSelectedSuggestion",
                                     "when": "suggestWidgetVisible && textInputFocus" },
{ "key": "enter",                 "command": "acceptSelectedSuggestionOnEnter",
                                     "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 && !hasOtherSuggestions && !inSnippetMode && !suggestWidgetVisible && config.editor.tabCompletion == 'on'" },
{ "key": "tab",                   "command": "insertNextSuggestion",
                                     "when": "hasOtherSuggestions && textInputFocus && !inSnippetMode && !suggestWidgetVisible && config.editor.tabCompletion == 'on'" },
{ "key": "shift+tab",             "command": "insertPrevSuggestion",
                                     "when": "hasOtherSuggestions && 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+escape",          "command": "cancelRenameInput",
                                     "when": "editorFocus && renameInputVisible" },
{ "key": "escape",                "command": "cancelRenameInput",
                                     "when": "editorFocus && renameInputVisible" },
{ "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 && !breakpointSelected" },
{ "key": "cmd+backspace",         "command": "debug.removeWatchExpression",
                                     "when": "watchExpressionsFocused && !expressionSelected" },
{ "key": "shift+f9",              "command": "editor.debug.action.toggleInlineBreakpoint",
                                     "when": "editorTextFocus" },
{ "key": "shift+alt+h",           "command": "editor.showCallHierarchy",
                                     "when": "editorHasCallHierarchyProvider && editorTextFocus && !inReferenceSearchEditor" },
{ "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": "escape",                "command": "keybindings.editor.clearSearchResults",
                                     "when": "inKeybindings && inKeybindingsSearch" },
{ "key": "cmd+c",                 "command": "keybindings.editor.copyKeybindingEntry",
                                     "when": "inKeybindings && keybindingFocus" },
{ "key": "cmd+k cmd+k",           "command": "keybindings.editor.defineKeybinding",
                                     "when": "inKeybindings && keybindingFocus" },
{ "key": "cmd+k cmd+e",           "command": "keybindings.editor.defineWhenExpression",
                                     "when": "inKeybindings && keybindingFocus" },
{ "key": "down",                  "command": "keybindings.editor.focusKeybindings",
                                     "when": "inKeybindings && inKeybindingsSearch" },
{ "key": "alt+cmd+k",             "command": "keybindings.editor.recordSearchKeys",
                                     "when": "inKeybindings && inKeybindingsSearch" },
{ "key": "cmd+k 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.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": "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": "ctrl+enter",            "command": "problems.action.openToSide",
                                     "when": "problemFocus" },
{ "key": "cmd+.",                 "command": "problems.action.showQuickFixes",
                                     "when": "problemFocus" },
{ "key": "alt+cmd+r",             "command": "revealFileInOS",
                                     "when": "!editorFocus" },
{ "key": "cmd+enter",             "command": "scm.acceptInput",
                                     "when": "scmRepository" },
{ "key": "escape",                "command": "search.action.cancel",
                                     "when": "listFocus && searchViewletVisible && !inputFocus" },
{ "key": "cmd+c",                 "command": "search.action.copyMatch",
                                     "when": "fileMatchOrMatchFocus" },
{ "key": "alt+cmd+c",             "command": "search.action.copyPath",
                                     "when": "fileMatchOrFolderMatchFocus" },
{ "key": "f4",                    "command": "search.action.focusNextSearchResult",
                                     "when": "hasSearchResult" },
{ "key": "shift+f4",              "command": "search.action.focusPreviousSearchResult",
                                     "when": "hasSearchResult" },
{ "key": "cmd+up",                "command": "search.action.focusSearchFromResults",
                                     "when": "firstMatchFocus && 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": "inputBoxFocus && searchViewletVisible" },
{ "key": "cmd+up",                "command": "search.focus.previousInputBox",
                                     "when": "inputBoxFocus && searchViewletVisible && !searchInputBoxFocus" },
{ "key": "down",                  "command": "settings.action.focusSettingsFromSearch",
                                     "when": "inSettingsSearch && !suggestWidgetVisible" },
{ "key": "enter",                 "command": "settings.action.focusSettingsList",
                                     "when": "inSettingsEditor && settingsTocRowFocus" },
{ "key": "shift+f9",              "command": "settings.action.showContextMenu",
                                     "when": "inSettingsEditor" },
{ "key": "alt+cmd+c",             "command": "toggleSearchCaseSensitive",
                                     "when": "searchViewletFocus && searchViewletVisible && !fileMatchOrFolderMatchFocus" },
{ "key": "alt+cmd+r",             "command": "toggleSearchRegex",
                                     "when": "searchViewletFocus && searchViewletVisible" },
{ "key": "alt+cmd+w",             "command": "toggleSearchWholeWord",
                                     "when": "searchViewletFocus && searchViewletVisible" },
{ "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" },
{ "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": "cmd+w",                 "command": "workbench.action.closeWindow",
                                     "when": "!editorIsOpen && !multipleEditorGroups" },
{ "key": "alt+f5",                "command": "workbench.action.compareEditor.nextChange",
                                     "when": "textCompareEditorVisible" },
{ "key": "shift+alt+f5",          "command": "workbench.action.compareEditor.previousChange",
                                     "when": "textCompareEditorVisible" },
{ "key": "f5",                    "command": "workbench.action.debug.continue",
                                     "when": "inDebugMode" },
{ "key": "f6",                    "command": "workbench.action.debug.pause",
                                     "when": "debugState == 'running'" },
{ "key": "shift+cmd+f5",          "command": "workbench.action.debug.restart",
                                     "when": "inDebugMode" },
{ "key": "ctrl+f5",               "command": "workbench.action.debug.run",
                                     "when": "!inDebugMode" },
{ "key": "f5",                    "command": "workbench.action.debug.start",
                                     "when": "!inDebugMode" },
{ "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" },
{ "key": "cmd+k m",               "command": "workbench.action.editor.changeLanguageMode" },
{ "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": "alt+cmd+s",             "command": "workbench.action.files.saveAll" },
{ "key": "shift+cmd+s",           "command": "workbench.action.files.saveAs" },
{ "key": "cmd+k s",               "command": "workbench.action.files.saveWithoutFormatting" },
{ "key": "cmd+k o",               "command": "workbench.action.files.showOpenedFileInNewWindow" },
{ "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": "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": "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+tab",              "command": "workbench.action.openNextRecentlyUsedEditorInGroup" },
{ "key": "ctrl+shift+tab",        "command": "workbench.action.openPreviousRecentlyUsedEditorInGroup" },
{ "key": "ctrl+r",                "command": "workbench.action.openRecent" },
{ "key": "cmd+,",                 "command": "workbench.action.openSettings" },
{ "key": "shift+cmd+u",           "command": "workbench.action.output.toggleOutput" },
{ "key": "shift+cmd+[",           "command": "workbench.action.previousEditor" },
{ "key": "alt+cmd+left",          "command": "workbench.action.previousEditor" },
{ "key": "cmd+p",                 "command": "workbench.action.quickOpen" },
{ "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": "searchViewletVisible" },
{ "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 && terminalTextSelected && !terminalFindWidgetVisible" },
{ "key": "cmd+c",                 "command": "workbench.action.terminal.copySelection",
                                     "when": "terminalFocus && terminalTextSelected" },
{ "key": "cmd+backspace",         "command": "workbench.action.terminal.deleteToLineStart",
                                     "when": "terminalFocus" },
{ "key": "alt+backspace",         "command": "workbench.action.terminal.deleteWordLeft",
                                     "when": "terminalFocus" },
{ "key": "alt+delete",            "command": "workbench.action.terminal.deleteWordRight",
                                     "when": "terminalFocus" },
{ "key": "f3",                    "command": "workbench.action.terminal.findNext",
                                     "when": "terminalFindWidgetFocused" },
{ "key": "cmd+g",                 "command": "workbench.action.terminal.findNext",
                                     "when": "terminalFindWidgetFocused" },
{ "key": "f3",                    "command": "workbench.action.terminal.findNextTerminalFocus",
                                     "when": "terminalFocus" },
{ "key": "cmd+g",                 "command": "workbench.action.terminal.findNextTerminalFocus",
                                     "when": "terminalFocus" },
{ "key": "shift+f3",              "command": "workbench.action.terminal.findPrevious",
                                     "when": "terminalFindWidgetFocused" },
{ "key": "shift+cmd+g",           "command": "workbench.action.terminal.findPrevious",
                                     "when": "terminalFindWidgetFocused" },
{ "key": "shift+f3",              "command": "workbench.action.terminal.findPreviousTerminalFocus",
                                     "when": "terminalFocus" },
{ "key": "shift+cmd+g",           "command": "workbench.action.terminal.findPreviousTerminalFocus",
                                     "when": "terminalFocus" },
{ "key": "cmd+f",                 "command": "workbench.action.terminal.focusFindWidget",
                                     "when": "terminalFindWidgetFocused" },
{ "key": "cmd+f",                 "command": "workbench.action.terminal.focusFindWidget",
                                     "when": "terminalFocus" },
{ "key": "alt+cmd+down",          "command": "workbench.action.terminal.focusNextPane",
                                     "when": "terminalFocus" },
{ "key": "alt+cmd+right",         "command": "workbench.action.terminal.focusNextPane",
                                     "when": "terminalFocus" },
{ "key": "alt+cmd+up",            "command": "workbench.action.terminal.focusPreviousPane",
                                     "when": "terminalFocus" },
{ "key": "alt+cmd+left",          "command": "workbench.action.terminal.focusPreviousPane",
                                     "when": "terminalFocus" },
{ "key": "shift+escape",          "command": "workbench.action.terminal.hideFindWidget",
                                     "when": "terminalFindWidgetVisible && terminalFocus" },
{ "key": "escape",                "command": "workbench.action.terminal.hideFindWidget",
                                     "when": "terminalFindWidgetVisible && terminalFocus" },
{ "key": "cmd+right",             "command": "workbench.action.terminal.moveToLineEnd",
                                     "when": "terminalFocus" },
{ "key": "cmd+left",              "command": "workbench.action.terminal.moveToLineStart",
                                     "when": "terminalFocus" },
{ "key": "ctrl+shift+`",          "command": "workbench.action.terminal.new" },
{ "key": "shift+cmd+c",           "command": "workbench.action.terminal.openNativeConsole",
                                     "when": "!terminalFocus" },
{ "key": "ctrl+cmd+down",         "command": "workbench.action.terminal.resizePaneDown",
                                     "when": "terminalFocus" },
{ "key": "ctrl+cmd+left",         "command": "workbench.action.terminal.resizePaneLeft",
                                     "when": "terminalFocus" },
{ "key": "ctrl+cmd+right",        "command": "workbench.action.terminal.resizePaneRight",
                                     "when": "terminalFocus" },
{ "key": "ctrl+cmd+up",           "command": "workbench.action.terminal.resizePaneUp",
                                     "when": "terminalFocus" },
{ "key": "alt+cmd+pagedown",      "command": "workbench.action.terminal.scrollDown",
                                     "when": "terminalFocus" },
{ "key": "pagedown",              "command": "workbench.action.terminal.scrollDownPage",
                                     "when": "terminalFocus" },
{ "key": "cmd+end",               "command": "workbench.action.terminal.scrollToBottom",
                                     "when": "terminalFocus" },
{ "key": "cmd+down",              "command": "workbench.action.terminal.scrollToNextCommand",
                                     "when": "terminalFocus" },
{ "key": "cmd+up",                "command": "workbench.action.terminal.scrollToPreviousCommand",
                                     "when": "terminalFocus" },
{ "key": "cmd+home",              "command": "workbench.action.terminal.scrollToTop",
                                     "when": "terminalFocus" },
{ "key": "alt+cmd+pageup",        "command": "workbench.action.terminal.scrollUp",
                                     "when": "terminalFocus" },
{ "key": "pageup",                "command": "workbench.action.terminal.scrollUpPage",
                                     "when": "terminalFocus" },
{ "key": "cmd+a",                 "command": "workbench.action.terminal.selectAll",
                                     "when": "terminalFocus" },
{ "key": "shift+cmd+down",        "command": "workbench.action.terminal.selectToNextCommand",
                                     "when": "terminalFocus" },
{ "key": "shift+cmd+up",          "command": "workbench.action.terminal.selectToPreviousCommand",
                                     "when": "terminalFocus" },
{ "key": "ctrl+shift+5",          "command": "workbench.action.terminal.split",
                                     "when": "terminalFocus" },
{ "key": "cmd+\\",                "command": "workbench.action.terminal.split",
                                     "when": "terminalFocus" },
{ "key": "alt+cmd+c",             "command": "workbench.action.terminal.toggleFindCaseSensitive",
                                     "when": "terminalFindWidgetFocused" },
{ "key": "alt+cmd+c",             "command": "workbench.action.terminal.toggleFindCaseSensitiveTerminalFocus",
                                     "when": "terminalFocus" },
{ "key": "alt+cmd+r",             "command": "workbench.action.terminal.toggleFindRegex",
                                     "when": "terminalFindWidgetFocused" },
{ "key": "alt+cmd+r",             "command": "workbench.action.terminal.toggleFindRegexTerminalFocus",
                                     "when": "terminalFocus" },
{ "key": "alt+cmd+w",             "command": "workbench.action.terminal.toggleFindWholeWord",
                                     "when": "terminalFindWidgetFocused" },
{ "key": "alt+cmd+w",             "command": "workbench.action.terminal.toggleFindWholeWordTerminalFocus",
                                     "when": "terminalFocus" },
{ "key": "ctrl+`",                "command": "workbench.action.terminal.toggleTerminal" },
{ "key": "alt+cmd+0",             "command": "workbench.action.toggleEditorGroupLayout" },
{ "key": "ctrl+cmd+f",            "command": "workbench.action.toggleFullScreen" },
{ "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+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" },
{ "key": "shift+cmd+y",           "command": "workbench.debug.action.toggleRepl" },
{ "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": "shift+cmd+d",           "command": "workbench.view.debug" },
{ "key": "shift+cmd+e",           "command": "workbench.view.explorer" },
{ "key": "shift+cmd+x",           "command": "workbench.view.extensions" },
{ "key": "ctrl+shift+g",          "command": "workbench.view.scm" },
{ "key": "shift+cmd+f",           "command": "workbench.view.search",
                                     "when": "!searchViewletVisible" },
{ "key": "escape",                "command": "breadcrumbs.selectEditor",
                                     "when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "cmd+k",                 "command": "workbench.action.terminal.clear",
                                     "when": "terminalFocus" },
{ "key": "enter",                 "command": "debug.renameWatchExpression",
                                     "when": "watchExpressionsFocused" },
{ "key": "enter",                 "command": "debug.setVariable",
                                     "when": "variablesFocused" },
{ "key": "space",                 "command": "debug.toggleBreakpoint",
                                     "when": "breakpointsFocused && !inputFocus" },
{ "key": "cmd+backspace",         "command": "deleteFile",
                                     "when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsRoot && !explorerResourceMoveableToTrash && !explorerResourceReadonly && !inputFocus" },
{ "key": "alt+cmd+backspace",     "command": "deleteFile",
                                     "when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus" },
{ "key": "escape",                "command": "editor.closeCallHierarchy",
                                     "when": "callHierarchyVisible && !config.editor.stablePeek" },
{ "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 && !inputFocus" },
{ "key": "cmd+v",                 "command": "filesExplorer.paste",
                                     "when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceReadonly && !inputFocus" },
{ "key": "cmd+backspace",         "command": "moveFileToTrash",
                                     "when": "explorerResourceMoveableToTrash && explorerViewletVisible && filesExplorerFocus && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus" },
{ "key": "enter",                 "command": "renameFile",
                                     "when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus" },
{ "key": "f11",                   "command": "workbench.action.debug.stepInto",
                                     "when": "debugState == 'stopped'" },
{ "key": "shift+escape",          "command": "closeReferenceSearch",
                                     "when": "referenceSearchVisible && !config.editor.stablePeek" },
{ "key": "escape",                "command": "closeReferenceSearch",
                                     "when": "referenceSearchVisible && !config.editor.stablePeek" },
{ "key": "f4",                    "command": "goToNextReference",
                                     "when": "referenceSearchVisible" },
{ "key": "shift+f4",              "command": "goToPreviousReference",
                                     "when": "referenceSearchVisible" },
{ "key": "escape",                "command": "notifications.hideList",
                                     "when": "notificationCenterVisible" },
{ "key": "escape",                "command": "notifications.hideToasts",
                                     "when": "notificationToastsVisible" },
{ "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": "alt+cmd+i",             "command": "workbench.action.toggleDevTools",
                                     "when": "isDevelopment" },
{ "key": "cmd+f4",                "command": "extension.node-debug.pickLoadedScript",
                                     "when": "debugType == 'node'" },
{ "key": "cmd+f4",                "command": "extension.node-debug.pickLoadedScript",
                                     "when": "debugType == 'node2'" },
{ "key": "shift+cmd+v",           "command": "markdown.showPreview",
                                     "when": "editorLangId == 'markdown'" },
{ "key": "shift+alt+f12",         "command": "references-view.find",
                                     "when": "editorHasReferenceProvider" },
{ "key": "f10",                   "command": "extension.node-debug.startWithStopOnEntry",
                                     "when": "!inDebugMode && debugConfigurationType == 'node'" },
{ "key": "cmd+k v",               "command": "markdown.showPreviewToSide",
                                     "when": "editorLangId == 'markdown'" },
{ "key": "f4",                    "command": "references-view.next",
                                     "when": "reference-list.hasResult" },
{ "key": "f11",                   "command": "extension.node-debug.startWithStopOnEntry",
                                     "when": "!inDebugMode && debugConfigurationType == 'node'" },
{ "key": "shift+f4",              "command": "references-view.prev",
                                     "when": "reference-list.hasResult" },
{ "key": "ctrl+numpad1 ctrl+numpad1", "command": "artisan.make.command" },
{ "key": "a",                     "command": "explorer.newFile",
                                     "when": "filesExplorerFocus && !inputFocus" },
{ "key": "alt+cmd+c",             "command": "extension.css2react",
                                     "when": "editorTextFocus" },
{ "key": "cmd+l cmd+c",           "command": "extension.liveServer.goOffline",
                                     "when": "editorTextFocus" },
{ "key": "alt+left",              "command": "gitlens.key.left",
                                     "when": "gitlens:key:left" },
{ "key": "alt+cmd+f",             "command": "liveshare.follow",
                                     "when": "liveshare:hasCollaborators && !liveshare:isFollowing" },
{ "key": "cmd+r l",               "command": "npm-script.showOutput" },
{ "key": "shift+cmd+1",           "command": "numberedBookmarks.toggleBookmark1",
                                     "when": "editorTextFocus" },
{ "key": "shift+cmd+q",           "command": "sqlite.runDocumentQuery",
                                     "when": "editorLangId =~ /(sql|sqlite)/" },
{ "key": "shift+alt+s o",         "command": "svgviewer.open" },
{ "key": "ctrl+shift+cmd+f",      "command": "workbench.action.toggleZenMode" },
{ "key": "ctrl+numpad1 ctrl+numpad2", "command": "artisan.make.controller" },
{ "key": "shift+a",               "command": "explorer.newFolder",
                                     "when": "filesExplorerFocus && !inputFocus" },
{ "key": "cmd+l cmd+o",           "command": "extension.liveServer.goOnline",
                                     "when": "editorTextFocus" },
{ "key": "alt+right",             "command": "gitlens.key.right",
                                     "when": "gitlens:key:right" },
{ "key": "alt+cmd+/",             "command": "liveshare.followToTheSide",
                                     "when": "liveshare:hasCollaborators" },
{ "key": "cmd+r shift+r",         "command": "npm-script.run" },
{ "key": "shift+cmd+2",           "command": "numberedBookmarks.toggleBookmark2",
                                     "when": "editorTextFocus" },
{ "key": "shift+alt+s e",         "command": "svgviewer.saveas" },
{ "key": "cmd+w",                 "command": "workbench.action.closeActiveEditor" },
{ "key": "ctrl+numpad1 ctrl+numpad3", "command": "artisan.make.event" },
{ "key": "cmd+1",                 "command": "explorer.openToSide",
                                     "when": "filesExplorerFocus && !inputFocus" },
{ "key": "alt+,",                 "command": "gitlens.key.,",
                                     "when": "gitlens:key:," },
{ "key": "alt+cmd+f",             "command": "liveshare.unfollow",
                                     "when": "liveshare:hasCollaborators && liveshare:isFollowing" },
{ "key": "cmd+r r",               "command": "npm-script.rerun-last-script" },
{ "key": "shift+cmd+3",           "command": "numberedBookmarks.toggleBookmark3",
                                     "when": "editorTextFocus" },
{ "key": "shift+alt+s x",         "command": "svgviewer.saveassize" },
{ "key": "shift+cmd+[",           "command": "workbench.action.previousEditor" },
{ "key": "ctrl+numpad1 ctrl+numpad4", "command": "artisan.make.job" },
{ "key": "alt+.",                 "command": "gitlens.key..",
                                     "when": "gitlens:key:." },
{ "key": "alt+cmd+j",             "command": "liveshare.join",
                                     "when": "liveshare:state != 'Joined' && liveshare:state != 'Shared'" },
{ "key": "backspace",             "command": "moveFileToTrash",
                                     "when": "filesExplorerFocus && !inputFocus" },
{ "key": "cmd+r shift+x",         "command": "npm-script.terminate-script" },
{ "key": "shift+cmd+4",           "command": "numberedBookmarks.toggleBookmark4",
                                     "when": "editorTextFocus" },
{ "key": "shift+alt+s c",         "command": "svgviewer.copydui" },
{ "key": "shift+cmd+]",           "command": "workbench.action.nextEditor" },
{ "key": "ctrl+numpad1 ctrl+numpad5", "command": "artisan.make.listener" },
{ "key": "cmd+c",                 "command": "filesExplorer.copy",
                                     "when": "filesExplorerFocus && !inputFocus" },
{ "key": "escape",                "command": "gitlens.key.escape",
                                     "when": "editorTextFocus && gitlens:key:escape && !findWidgetVisible && !isInEmbeddedEditor && !renameInputVisible && !suggestWidgetVisible" },
{ "key": "cmd+r t",               "command": "npm-script.test" },
{ "key": "shift+cmd+5",           "command": "numberedBookmarks.toggleBookmark5",
                                     "when": "editorTextFocus" },
{ "key": "shift+alt+s v",         "command": "svgviewer.openexport" },
{ "key": "alt+cmd+s",             "command": "workbench.action.files.saveAll" },
{ "key": "ctrl+numpad1 ctrl+numpad6", "command": "artisan.make.mail" },
{ "key": "alt+b",                 "command": "gitlens.toggleFileBlame",
                                     "when": "editorTextFocus && config.gitlens.keymap == 'alternate' && gitlens:activeFileStatus =~ /blameable/" },
{ "key": "h",                     "command": "list.collapse",
                                     "when": "filesExplorerFocus && !inputFocus" },
{ "key": "shift+cmd+6",           "command": "numberedBookmarks.toggleBookmark6",
                                     "when": "editorTextFocus" },
{ "key": "cmd+k cmd+b",           "command": "workbench.action.toggleSidebarVisibility" },
{ "key": "ctrl+numpad1 ctrl+numpad7", "command": "artisan.make.middleware" },
{ "key": "shift+alt+b",           "command": "gitlens.toggleCodeLens",
                                     "when": "editorTextFocus && gitlens:canToggleCodeLens && gitlens:enabled && config.gitlens.keymap == 'alternate'" },
{ "key": "l",                     "command": "list.expand",
                                     "when": "filesExplorerFocus && !inputFocus" },
{ "key": "shift+cmd+7",           "command": "numberedBookmarks.toggleBookmark7",
                                     "when": "editorTextFocus" },
{ "key": "ctrl+alt+up",           "command": "scrollLineUp",
                                     "when": "editorTextFocus" },
{ "key": "ctrl+numpad1 ctrl+numpad8", "command": "artisan.make.migration" },
{ "key": "alt+-",                 "command": "gitlens.showLastQuickPick",
                                     "when": "gitlens:enabled && config.gitlens.keymap == 'alternate'" },
{ "key": "j",                     "command": "list.focusDown",
                                     "when": "filesExplorerFocus && !inputFocus" },
{ "key": "shift+cmd+8",           "command": "numberedBookmarks.toggleBookmark8",
                                     "when": "editorTextFocus" },
{ "key": "ctrl+alt+down",         "command": "scrollLineDown",
                                     "when": "editorTextFocus" },
{ "key": "ctrl+numpad1 ctrl+numpad9", "command": "artisan.make.model" },
{ "key": "alt+/",                 "command": "gitlens.showCommitSearch",
                                     "when": "gitlens:enabled && config.gitlens.keymap == 'alternate'" },
{ "key": "k",                     "command": "list.focusUp",
                                     "when": "filesExplorerFocus && !inputFocus" },
{ "key": "shift+cmd+9",           "command": "numberedBookmarks.toggleBookmark9",
                                     "when": "editorTextFocus" },
{ "key": "cmd+t",                 "command": "workbench.action.quickOpen" },
{ "key": "ctrl+numpad1 ctrl+numpad0", "command": "artisan.make.notification" },
{ "key": "alt+h",                 "command": "gitlens.showQuickFileHistory",
                                     "when": "gitlens:enabled && config.gitlens.keymap == 'alternate'" },
{ "key": "cmd+1",                 "command": "numberedBookmarks.jumpToBookmark1",
                                     "when": "editorTextFocus" },
{ "key": "cmd+r",                 "command": "workbench.action.gotoSymbol" },
{ "key": "ctrl+shift+cmd+f",      "command": "workbench.action.toggleZenMode" },
{ "key": "ctrl+numpad1 ctrl+numpad_divide", "command": "artisan.make.policy" },
{ "key": "ctrl+cmd+down",         "command": "editor.action.moveLinesDownAction",
                                     "when": "editorTextFocus" },
{ "key": "shift+alt+h",           "command": "gitlens.showQuickRepoHistory",
                                     "when": "gitlens:enabled && config.gitlens.keymap == 'alternate'" },
{ "key": "cmd+2",                 "command": "numberedBookmarks.jumpToBookmark2",
                                     "when": "editorTextFocus" },
{ "key": "cmd+r",                 "command": "workbench.action.gotoSymbol" },
{ "key": "ctrl+numpad1 ctrl+numpad_multiply", "command": "artisan.make.provider" },
{ "key": "alt+cmd+down",          "command": "editor.action.goToDeclaration" },
{ "key": "ctrl+cmd+up",           "command": "editor.action.moveLinesUpAction",
                                     "when": "editorTextFocus" },
{ "key": "alt+s",                 "command": "gitlens.showQuickRepoStatus",
                                     "when": "gitlens:enabled && config.gitlens.keymap == 'alternate'" },
{ "key": "cmd+3",                 "command": "numberedBookmarks.jumpToBookmark3",
                                     "when": "editorTextFocus" },
{ "key": "ctrl+numpad1 ctrl+numpad_subtract", "command": "artisan.make.request" },
{ "key": "shift+cmd+d",           "command": "editor.action.copyLinesDownAction",
                                     "when": "editorTextFocus" },
{ "key": "alt+c",                 "command": "gitlens.showQuickCommitFileDetails",
                                     "when": "editorTextFocus && gitlens:enabled && config.gitlens.keymap == 'alternate'" },
{ "key": "cmd+4",                 "command": "numberedBookmarks.jumpToBookmark4",
                                     "when": "editorTextFocus" },
{ "key": "ctrl+-",                "command": "workbench.action.navigateBack" },
{ "key": "ctrl+numpad1 ctrl+numpad_add", "command": "artisan.make.seeder" },
{ "key": "ctrl+shift+k",          "command": "editor.action.deleteLines",
                                     "when": "editorTextFocus" },
{ "key": "alt+.",                 "command": "gitlens.diffWithNext",
                                     "when": "editorTextFocus && !isInDiffEditor && config.gitlens.keymap == 'alternate' && gitlens:activeFileStatus =~ /revision/" },
{ "key": "cmd+5",                 "command": "numberedBookmarks.jumpToBookmark5",
                                     "when": "editorTextFocus" },
{ "key": "ctrl+shift+-",          "command": "workbench.action.navigateForward" },
{ "key": "ctrl+numpad2 ctrl+numpad1", "command": "artisan.migrate" },
{ "key": "cmd+g",                 "command": "editor.action.nextMatchFindAction",
                                     "when": "editorTextFocus" },
{ "key": "alt+.",                 "command": "gitlens.diffWithNextInDiff",
                                     "when": "isInDiffEditor && config.gitlens.keymap == 'alternate' && gitlens:activeFileStatus =~ /revision/" },
{ "key": "cmd+6",                 "command": "numberedBookmarks.jumpToBookmark6",
                                     "when": "editorTextFocus" },
{ "key": "cmd+k cmd+b",           "command": "workbench.action.toggleSidebarVisibility" },
{ "key": "ctrl+numpad2 ctrl+numpad2", "command": "artisan.migrate.install" },
{ "key": "f4",                    "command": "editor.action.nextMatchFindAction",
                                     "when": "editorTextFocus" },
{ "key": "alt+,",                 "command": "gitlens.diffWithPrevious",
                                     "when": "editorTextFocus && !isInDiffEditor && config.gitlens.keymap == 'alternate' && gitlens:activeFileStatus =~ /tracked/" },
{ "key": "cmd+7",                 "command": "numberedBookmarks.jumpToBookmark7",
                                     "when": "editorTextFocus" },
{ "key": "cmd+\\",                "command": "workbench.action.toggleSidebarVisibility" },
{ "key": "ctrl+numpad2 ctrl+numpad3", "command": "artisan.migrate.refresh" },
{ "key": "shift+f4",              "command": "editor.action.previousMatchFindAction",
                                     "when": "editorTextFocus" },
{ "key": "alt+,",                 "command": "gitlens.diffWithPreviousInDiff",
                                     "when": "isInDiffEditor && config.gitlens.keymap == 'alternate' && gitlens:activeFileStatus =~ /tracked/" },
{ "key": "cmd+8",                 "command": "numberedBookmarks.jumpToBookmark8",
                                     "when": "editorTextFocus" },
{ "key": "cmd+k left",            "command": "workbench.action.splitEditor" },
{ "key": "ctrl+numpad2 ctrl+numpad4", "command": "artisan.migrate.reset" },
{ "key": "ctrl+cmd+up",           "command": "editor.action.moveLinesUpAction",
                                     "when": "editorTextFocus" },
{ "key": "shift+alt+,",           "command": "gitlens.diffLineWithPrevious",
                                     "when": "editorTextFocus && config.gitlens.keymap == 'alternate' && gitlens:activeFileStatus =~ /tracked/" },
{ "key": "cmd+9",                 "command": "numberedBookmarks.jumpToBookmark9",
                                     "when": "editorTextFocus" },
{ "key": "cmd+t",                 "command": "workbench.action.quickOpen" },
{ "key": "ctrl+numpad2 ctrl+numpad5", "command": "artisan.migrate.rollback" },
{ "key": "ctrl+alt+b",            "command": "editor.action.formatDocument" },
{ "key": "ctrl+cmd+down",         "command": "editor.action.moveLinesDownAction",
                                     "when": "editorTextFocus" },
{ "key": "shift+alt+.",           "command": "gitlens.diffWithWorking",
                                     "when": "editorTextFocus && !isInDiffEditor && config.gitlens.keymap == 'alternate' && gitlens:activeFileStatus =~ /revision/" },
{ "key": "ctrl+numpad2 ctrl+numpad6", "command": "artisan.migrate.status" },
{ "key": "alt+cmd+/",             "command": "editor.action.commentLine",
                                     "when": "editorTextFocus" },
{ "key": "shift+alt+.",           "command": "gitlens.diffWithWorkingInDiff",
                                     "when": "isInDiffEditor && config.gitlens.keymap == 'alternate' && gitlens:activeFileStatus =~ /revision/" },
{ "key": "cmd+b",                 "command": "workbench.action.quickOpenNavigateNext",
                                     "when": "inQuickOpen" },
{ "key": "ctrl+numpad2 ctrl+numpad7", "command": "artisan.migrate.fresh" },
{ "key": "alt+w",                 "command": "gitlens.diffLineWithWorking",
                                     "when": "editorTextFocus && config.gitlens.keymap == 'alternate' && gitlens:activeFileStatus =~ /tracked/" },
{ "key": "ctrl+shift+l",          "command": "workbench.action.editor.changeLanguageMode" },
{ "key": "cmd+k cmd+up",          "command": "workbench.action.splitEditor" },
{ "key": "ctrl+numpad3 ctrl+numpad1", "command": "artisan.cache.clear" },
{ "key": "alt+cmd+g b",           "command": "gitlens.toggleFileBlame",
                                     "when": "editorTextFocus && config.gitlens.keymap == 'chorded' && gitlens:activeFileStatus =~ /blameable/" },
{ "key": "ctrl+shift+m",          "command": "markdown.showPreviewToSide" },
{ "key": "alt+cmd+2",             "command": "workbench.action.splitEditor" },
{ "key": "ctrl+numpad3 ctrl+numpad2", "command": "artisan.cache.table" },
{ "key": "alt+cmd+g shift+b",     "command": "gitlens.toggleCodeLens",
                                     "when": "editorTextFocus && gitlens:canToggleCodeLens && gitlens:enabled && config.gitlens.keymap == 'chorded'" },
{ "key": "cmd+k cmd+down",        "command": "workbench.action.closeActiveEditor" },
{ "key": "ctrl+alt+cmd+l",        "command": "workbench.action.reloadWindow" },
{ "key": "ctrl+numpad4 ctrl+numpad1", "command": "artisan.route.cache" },
{ "key": "ctrl+shift+o",          "command": "editor.action.openLink" },
{ "key": "alt+cmd+[",             "command": "editor.fold",
                                     "when": "editorFocus" },
{ "key": "alt+cmd+g -",           "command": "gitlens.showLastQuickPick",
                                     "when": "gitlens:enabled && config.gitlens.keymap == 'chorded'" },
{ "key": "ctrl+numpad4 ctrl+numpad2", "command": "artisan.route.clear" },
{ "key": "alt+cmd+]",             "command": "editor.unfold",
                                     "when": "editorFocus" },
{ "key": "alt+cmd+g /",           "command": "gitlens.showCommitSearch",
                                     "when": "gitlens:enabled && config.gitlens.keymap == 'chorded'" },
{ "key": "alt+cmd+i",             "command": "workbench.action.toggleDevTools" },
{ "key": "ctrl+numpad4 ctrl+numpad3", "command": "artisan.route.refresh" },
{ "key": "shift+alt+s",           "command": "editor.action.showSnippets" },
{ "key": "cmd+k cmd+0",           "command": "editor.unfoldAll",
                                     "when": "editorFocus" },
{ "key": "alt+cmd+g h",           "command": "gitlens.showQuickFileHistory",
                                     "when": "gitlens:enabled && config.gitlens.keymap == 'chorded'" },
{ "key": "ctrl+numpad5 ctrl+numpad1", "command": "artisan.config.cache" },
{ "key": "alt+f12",               "command": "editor.action.showContextMenu",
                                     "when": "editorTextFocus" },
{ "key": "alt+cmd+g shift+h",     "command": "gitlens.showQuickRepoHistory",
                                     "when": "gitlens:enabled && config.gitlens.keymap == 'chorded'" },
{ "key": "ctrl+shift+o",          "command": "workbench.action.files.openFolder" },
{ "key": "ctrl+numpad5 ctrl+numpad2", "command": "artisan.config.clear" },
{ "key": "shift+cmd+d",           "command": "editor.action.copyLinesDownAction",
                                     "when": "editorFocus" },
{ "key": "alt+cmd+g s",           "command": "gitlens.showQuickRepoStatus",
                                     "when": "gitlens:enabled && config.gitlens.keymap == 'chorded'" },
{ "key": "shift+cmd+o",           "command": "workbench.action.files.openFileFolder" },
{ "key": "ctrl+numpad5 ctrl+numpad3", "command": "artisan.config.refresh" },
{ "key": "ctrl+m",                "command": "editor.action.jumpToBracket",
                                     "when": "editorTextFocus" },
{ "key": "cmd+l",                 "command": "expandLineSelection",
                                     "when": "editorFocus" },
{ "key": "alt+cmd+g c",           "command": "gitlens.showQuickCommitFileDetails",
                                     "when": "editorTextFocus && gitlens:enabled && config.gitlens.keymap == 'chorded'" },
{ "key": "cmd+d",                 "command": "editor.action.addSelectionToNextFindMatch",
                                     "when": "editorFocus" },
{ "key": "cmd+l",                 "command": "expandLineSelection",
                                     "when": "editorTextFocus" },
{ "key": "alt+cmd+g .",           "command": "gitlens.diffWithNext",
                                     "when": "editorTextFocus && !isInDiffEditor && config.gitlens.keymap == 'chorded' && gitlens:activeFileStatus =~ /revision/" },
{ "key": "ctrl+shift+up",         "command": "cursorColumnSelectUp",
                                     "when": "editorTextFocus" },
{ "key": "ctrl+m",                "command": "editor.action.jumpToBracket",
                                     "when": "editorFocus" },
{ "key": "alt+cmd+g .",           "command": "gitlens.diffWithNextInDiff",
                                     "when": "isInDiffEditor && config.gitlens.keymap == 'chorded' && gitlens:activeFileStatus =~ /revision/" },
{ "key": "ctrl+shift+down",       "command": "cursorColumnSelectDown",
                                     "when": "editorTextFocus" },
{ "key": "alt+cmd+/",             "command": "editor.action.blockComment",
                                     "when": "editorFocus" },
{ "key": "alt+cmd+g ,",           "command": "gitlens.diffWithPrevious",
                                     "when": "editorTextFocus && !isInDiffEditor && config.gitlens.keymap == 'chorded' && gitlens:activeFileStatus =~ /tracked/" },
{ "key": "ctrl+alt+b",            "command": "editor.action.format",
                                     "when": "editorHasFormattingProvider && editorTextFocus && !editorReadonly" },
{ "key": "alt+cmd+f",             "command": "editor.action.startFindReplaceAction" },
{ "key": "alt+cmd+g ,",           "command": "gitlens.diffWithPreviousInDiff",
                                     "when": "isInDiffEditor && config.gitlens.keymap == 'chorded' && gitlens:activeFileStatus =~ /tracked/" },
{ "key": "ctrl+shift+k",          "command": "editor.action.deleteLines",
                                     "when": "editorFocus" },
{ "key": "alt+cmd+g shift+,",     "command": "gitlens.diffLineWithPrevious",
                                     "when": "editorTextFocus && config.gitlens.keymap == 'chorded' && gitlens:activeFileStatus =~ /tracked/" },
{ "key": "ctrl+alt+t",            "command": "workbench.action.terminal.toggleTerminal" },
{ "key": "ctrl+shift+up",         "command": "editor.action.insertCursorAbove",
                                     "when": "editorTextFocus" },
{ "key": "alt+cmd+g shift+.",     "command": "gitlens.diffWithWorking",
                                     "when": "editorTextFocus && !isInDiffEditor && config.gitlens.keymap == 'chorded' && gitlens:activeFileStatus =~ /revision/" },
{ "key": "ctrl+cmd+f",            "command": "workbench.action.toggleFullScreen" },
{ "key": "ctrl+shift+down",       "command": "editor.action.insertCursorBelow",
                                     "when": "editorTextFocus" },
{ "key": "alt+cmd+g shift+.",     "command": "gitlens.diffWithWorkingInDiff",
                                     "when": "isInDiffEditor && config.gitlens.keymap == 'chorded' && gitlens:activeFileStatus =~ /revision/" },
{ "key": "cmd+r",                 "command": "workbench.action.gotoSymbol" },
{ "key": "ctrl+shift+pageup",     "command": "cursorColumnSelectPageUp",
                                     "when": "editorTextFocus" },
{ "key": "alt+cmd+[",             "command": "editor.fold",
                                     "when": "editorTextFocus" },
{ "key": "alt+cmd+g w",           "command": "gitlens.diffLineWithWorking",
                                     "when": "editorTextFocus && config.gitlens.keymap == 'chorded' && gitlens:activeFileStatus =~ /tracked/" },
{ "key": "ctrl+shift+pagedown",   "command": "cursorColumnSelectPageDown",
                                     "when": "editorTextFocus" },
{ "key": "alt+cmd+]",             "command": "editor.unfold",
                                     "when": "editorTextFocus" },
{ "key": "ctrl+shift+g",          "command": "workbench.view.scm",
                                     "when": "gitlens:enabled && config.gitlens.keymap == 'chorded'" },
{ "key": "shift+cmd+l",           "command": "editor.action.insertCursorAtEndOfEachLineSelected",
                                     "when": "editorTextFocus" },
{ "key": "shift+alt+cmd+[",       "command": "editor.foldAll",
                                     "when": "editorTextFocus" },
{ "key": "shift+alt+cmd+]",       "command": "editor.unfoldAll",
                                     "when": "editorTextFocus" },
{ "key": "cmd+1",                 "command": "workbench.action.openEditorAtIndex1" },
{ "key": "shift+cmd+7",           "command": "editor.action.commentLine",
                                     "when": "editorTextFocus" },
{ "key": "cmd+2",                 "command": "workbench.action.openEditorAtIndex2" },
{ "key": "cmd+3",                 "command": "workbench.action.openEditorAtIndex3" },
{ "key": "cmd+=",                 "command": "workbench.action.zoomIn" },
{ "key": "cmd+4",                 "command": "workbench.action.openEditorAtIndex4" },
{ "key": "cmd+-",                 "command": "workbench.action.zoomOut" },
{ "key": "cmd+k cmd+1",           "command": "editor.foldLevel1",
                                     "when": "editorTextFocus" },
{ "key": "cmd+5",                 "command": "workbench.action.openEditorAtIndex5" },
{ "key": "cmd+k cmd+2",           "command": "editor.foldLevel2",
                                     "when": "editorTextFocus" },
{ "key": "cmd+6",                 "command": "workbench.action.openEditorAtIndex6" },
{ "key": "cmd+k cmd+3",           "command": "editor.foldLevel3",
                                     "when": "editorTextFocus" },
{ "key": "cmd+7",                 "command": "workbench.action.openEditorAtIndex7" },
{ "key": "cmd+k cmd+4",           "command": "editor.foldLevel4",
                                     "when": "editorTextFocus" },
{ "key": "cmd+8",                 "command": "workbench.action.openEditorAtIndex8" },
{ "key": "cmd+k cmd+5",           "command": "editor.foldLevel5",
                                     "when": "editorTextFocus" },
{ "key": "cmd+9",                 "command": "workbench.action.openEditorAtIndex9" },
{ "key": "ctrl+cmd+g",            "command": "editor.action.selectHighlights",
                                     "when": "editorFocus" },
{ "key": "ctrl+pagedown",         "command": "workbench.action.nextEditor" },
{ "key": "ctrl+pageup",           "command": "workbench.action.previousEditor" },
{ "key": "shift+cmd+r",           "command": "workbench.action.showAllSymbols" },
{ "key": "ctrl+alt+left",         "command": "cursorWordStartLeft",
                                     "when": "editorTextFocus" },
{ "key": "ctrl+cmd+g",            "command": "editor.action.selectHighlights",
                                     "when": "editorFocus" },
{ "key": "ctrl+alt+right",        "command": "cursorWordEndRight",
                                     "when": "editorTextFocus" },
{ "key": "shift+cmd+l",           "command": "editor.action.insertCursorAtEndOfEachLineSelected",
                                     "when": "editorHasSelection && editorTextFocus" },
{ "key": "ctrl+shift+alt+left",   "command": "cursorWordStartLeftSelect",
                                     "when": "editorTextFocus" },
{ "key": "cmd+-",                 "command": "workbench.action.zoomOut" },
{ "key": "ctrl+shift+alt+right",  "command": "cursorWordEndRightSelect",
                                     "when": "editorTextFocus" },
{ "key": "cmd+1",                 "command": "workbench.action.openEditorAtIndex1" },
{ "key": "cmd+j",                 "command": "editor.action.joinLines",
                                     "when": "editorTextFocus" },
{ "key": "cmd+2",                 "command": "workbench.action.openEditorAtIndex2" },
{ "key": "cmd+k cmd+u",           "command": "editor.action.transformToUppercase",
                                     "when": "editorTextFocus" },
{ "key": "cmd+3",                 "command": "workbench.action.openEditorAtIndex3" },
{ "key": "cmd+k cmd+l",           "command": "editor.action.transformToLowercase",
                                     "when": "editorTextFocus" },
{ "key": "cmd+4",                 "command": "workbench.action.openEditorAtIndex4" },
{ "key": "cmd+5",                 "command": "workbench.action.openEditorAtIndex5" },
{ "key": "cmd+k a",               "command": "workbench.action.showErrorsWarnings" },
{ "key": "cmd+k n",               "command": "editor.action.marker.next",
                                     "when": "editorFocus" },
{ "key": "cmd+6",                 "command": "workbench.action.openEditorAtIndex6" },
{ "key": "cmd+k p",               "command": "editor.action.marker.prev",
                                     "when": "editorFocus" },
{ "key": "cmd+7",                 "command": "workbench.action.openEditorAtIndex7" },
{ "key": "ctrl+1",                "command": "workbench.action.focusFirstEditorGroup",
                                     "when": "editorFocus" },
{ "key": "cmd+8",                 "command": "workbench.action.openEditorAtIndex8" },
{ "key": "ctrl+2",                "command": "workbench.action.focusSecondEditorGroup",
                                     "when": "editorFocus" },
{ "key": "cmd+9",                 "command": "workbench.action.openEditorAtIndex9" },
{ "key": "ctrl+3",                "command": "workbench.action.focusThirdEditorGroup",
                                     "when": "editorFocus" },
{ "key": "alt+cmd+\\",            "command": "workbench.files.action.showActiveFileInExplorer" },
{ "key": "ctrl+shift+c",          "command": "workbench.action.files.copyPathOfActiveFile",
                                     "when": "!terminalFocus" },
{ "key": "cmd+p",                 "command": "workbench.action.quickOpenPreviousEditor" },
{ "key": "cmd+k cmd+k",           "command": "deleteAllRight",
                                     "when": "editorTextFocus && !editorReadonly" },
{ "key": "cmd+,",                 "command": "workbench.action.openGlobalSettings" },
{ "key": "shift+cmd+space",       "command": "editor.action.smartSelect.grow",
                                     "when": "editorTextFocus" },
{ "key": "cmd+b",                 "command": "workbench.action.showAllEditors" },
{ "key": "ctrl+shift+cmd+f",      "command": "workbench.action.toggleZenMode" },
{ "key": "cmd+y",                 "command": "redo" },
{ "key": "cmd+j",                 "command": "editor.action.joinLines" },
{ "key": "cmd+p",                 "command": "workbench.action.quickOpenPreviousEditor" },
{ "key": "/",                     "command": "list.toggleKeyboardNavigation",
                                     "when": "listFocus && listSupportsKeyboardNavigation && !inputFocus" }
]

// Here are other available commands: 
// - EditorConfig.generate
// - HookyQR.beautify
// - HookyQR.beautifyFile
// - acceptSnippet
// - addRootFolder
// - artisan.clearCompiled
// - artisan.event.generate
// - artisan.key.generate
// - artisan.list
// - artisan.make.factory
// - artisan.make.resource
// - artisan.make.test
// - artisan.optimize
// - artisan.route.list
// - artisan.run.command
// - artisan.startServer
// - artisan.startServerUseDefaults
// - artisan.stopServer
// - artisan.view.clear
// - bracket-pair-colorizer.expandBracketSelection
// - bracket-pair-colorizer.undoBracketSelection
// - breadcrumbs.toggle
// - columnSelect
// - compareFiles
// - compareSelected
// - compositionEnd
// - compositionStart
// - createCursor
// - cursorWordEndLeft
// - cursorWordEndLeftSelect
// - cursorWordLeft
// - cursorWordLeftSelect
// - cursorWordPartStartLeft
// - cursorWordPartStartLeftSelect
// - cursorWordRight
// - cursorWordRightSelect
// - cursorWordStartRight
// - cursorWordStartRightSelect
// - cut
// - debug.addConfiguration
// - debug.copyStackTrace
// - debug.enableOrDisableBreakpoint
// - debug.installAdditionalDebuggers
// - debug.startFromConfig
// - default:compositionEnd
// - default:compositionStart
// - default:cut
// - default:paste
// - default:redo
// - default:replacePreviousChar
// - default:type
// - default:undo
// - deleteWordEndLeft
// - deleteWordEndRight
// - deleteWordStartLeft
// - deleteWordStartRight
// - discord.allowJoinRequests
// - discord.allowSpectate
// - discord.disable
// - discord.disableJoinRequests
// - discord.disableSpectate
// - discord.enable
// - discord.reconnect
// - duplicate.execute
// - editor.action.addCursorsToBottom
// - editor.action.addCursorsToTop
// - editor.action.addSelectionToPreviousFindMatch
// - editor.action.clearoutput
// - editor.action.clipboardCopyWithSyntaxHighlightingAction
// - editor.action.detectIndentation
// - editor.action.findReferences
// - editor.action.fixAll
// - editor.action.fontZoomIn
// - editor.action.fontZoomOut
// - editor.action.fontZoomReset
// - editor.action.forceRetokenize
// - editor.action.formatDocument.multiple
// - editor.action.formatSelection.multiple
// - editor.action.goToTypeDefinition
// - editor.action.indentUsingSpaces
// - editor.action.indentUsingTabs
// - editor.action.indentationToSpaces
// - editor.action.indentationToTabs
// - editor.action.inspectTMScopes
// - editor.action.measureExtHostLatency
// - editor.action.moveCarretLeftAction
// - editor.action.moveCarretRightAction
// - editor.action.moveSelectionToPreviousFindMatch
// - editor.action.nextCommentThreadAction
// - editor.action.openDeclarationToTheSide
// - editor.action.peekDeclaration
// - editor.action.peekTypeDefinition
// - editor.action.previewDeclaration
// - editor.action.reindentlines
// - editor.action.reindentselectedlines
// - editor.action.revealDeclaration
// - editor.action.selectToBracket
// - editor.action.sortLinesAscending
// - editor.action.sortLinesDescending
// - editor.action.toggleMinimap
// - editor.action.toggleRenderControlCharacter
// - editor.action.toggleRenderWhitespace
// - editor.action.transformToTitlecase
// - editor.action.transpose
// - editor.action.wordHighlight.trigger
// - editor.debug.action.conditionalBreakpoint
// - editor.debug.action.goToNextBreakpoint
// - editor.debug.action.goToPreviousBreakpoint
// - editor.debug.action.runToCursor
// - editor.debug.action.selectionToRepl
// - editor.debug.action.selectionToWatch
// - editor.debug.action.toggleLogPoint
// - editor.emmet.action.balanceIn
// - editor.emmet.action.balanceOut
// - editor.emmet.action.decrementNumberByOne
// - editor.emmet.action.decrementNumberByOneTenth
// - editor.emmet.action.decrementNumberByTen
// - editor.emmet.action.evaluateMathExpression
// - editor.emmet.action.incrementNumberByOne
// - editor.emmet.action.incrementNumberByOneTenth
// - editor.emmet.action.incrementNumberByTen
// - editor.emmet.action.matchTag
// - editor.emmet.action.mergeLines
// - editor.emmet.action.nextEditPoint
// - editor.emmet.action.prevEditPoint
// - editor.emmet.action.reflectCSSValue
// - editor.emmet.action.removeTag
// - editor.emmet.action.selectNextItem
// - editor.emmet.action.selectPrevItem
// - editor.emmet.action.splitJoinTag
// - editor.emmet.action.toggleComment
// - editor.emmet.action.updateImageSize
// - editor.emmet.action.updateTag
// - editor.emmet.action.wrapIndividualLinesWithAbbreviation
// - editor.emmet.action.wrapWithAbbreviation
// - editorconfig._triggerSuggestAfterDelay
// - emmet.expandAbbreviation
// - eslint.createConfig
// - eslint.disable
// - eslint.enable
// - eslint.executeAutofix
// - eslint.showOutputChannel
// - extension.colorHighlight
// - extension.importFromSublime
// - extension.liveServer.changeWorkspace
// - extension.node-debug.attachNodeProcess
// - extension.node-debug.toggleAutoAttach
// - extension.node-debug.toggleSkippingFile
// - extension.node-debug2.toggleSkippingFile
// - extension.open
// - extension.reactPureToClass
// - extension.stayClassy
// - extensions.builtInBasicsExtensionsList.focus
// - extensions.builtInExtensionsList.focus
// - extensions.builtInThemesExtensionsList.focus
// - extensions.disabledExtensionList.focus
// - extensions.disabledExtensionList2.focus
// - extensions.enabledExtensionList.focus
// - extensions.enabledExtensionList2.focus
// - extensions.listView.focus
// - extensions.otherrecommendedList.focus
// - extensions.popularExtensionsList.focus
// - extensions.recommendedList.focus
// - extensions.vscode-local.default.focus
// - extensions.vscode-local.installed.focus
// - extensions.vscode-local.outdated.focus
// - extensions.workspaceRecommendedList.focus
// - filesExplorer.findInWorkspace
// - flow.logClientDebugInfo
// - flow.restartClient
// - flow.showOutputChannel
// - flow.showStatus
// - flow.toggleCoverage
// - git._syncAll
// - git.addRemote
// - git.branch
// - git.branchFrom
// - git.checkout
// - git.clean
// - git.cleanAll
// - git.clone
// - git.close
// - git.commit
// - git.commitAll
// - git.commitAllAmend
// - git.commitAllSigned
// - git.commitEmpty
// - git.commitStaged
// - git.commitStagedAmend
// - git.commitStagedSigned
// - git.commitWithInput
// - git.createTag
// - git.deleteBranch
// - git.fetch
// - git.fetchAll
// - git.fetchPrune
// - git.ignore
// - git.init
// - git.merge
// - git.openChange
// - git.openFile
// - git.openFile2
// - git.openHEADFile
// - git.openRepository
// - git.openResource
// - git.publish
// - git.pull
// - git.pullFrom
// - git.pullRebase
// - git.push
// - git.pushForce
// - git.pushTo
// - git.pushToForce
// - git.pushWithTags
// - git.pushWithTagsForce
// - git.refresh
// - git.removeRemote
// - git.renameBranch
// - git.restoreCommitTemplate
// - git.revertChange
// - git.revertSelectedRanges
// - git.showOutput
// - git.stage
// - git.stageAll
// - git.stageChange
// - git.stageSelectedRanges
// - git.stash
// - git.stashApply
// - git.stashApplyLatest
// - git.stashIncludeUntracked
// - git.stashPop
// - git.stashPopLatest
// - git.sync
// - git.syncRebase
// - git.undoCommit
// - git.unstage
// - git.unstageAll
// - git.unstageSelectedRanges
// - gitlens.clearFileAnnotations
// - gitlens.closeUnchangedFiles
// - gitlens.computingFileAnnotations
// - gitlens.copyMessageToClipboard
// - gitlens.copyRemoteFileUrlToClipboard
// - gitlens.copyShaToClipboard
// - gitlens.diffDirectory
// - gitlens.diffDirectoryWithHead
// - gitlens.diffHeadWith
// - gitlens.diffHeadWithBranch
// - gitlens.diffWith
// - gitlens.diffWithBranch
// - gitlens.diffWithRef
// - gitlens.diffWithRevision
// - gitlens.diffWorkingWith
// - gitlens.diffWorkingWithBranch
// - gitlens.externalDiff
// - gitlens.externalDiffAll
// - gitlens.fetchRepositories
// - gitlens.inviteToLiveShare
// - gitlens.openBranchInRemote
// - gitlens.openBranchesInRemote
// - gitlens.openChangedFiles
// - gitlens.openCommitInRemote
// - gitlens.openFileInRemote
// - gitlens.openFileRevision
// - gitlens.openFileRevisionFrom
// - gitlens.openFileRevisionFromBranch
// - gitlens.openInRemote
// - gitlens.openRepoInRemote
// - gitlens.openWorkingFile
// - gitlens.pullRepositories
// - gitlens.pushRepositories
// - gitlens.resetSuppressedWarnings
// - gitlens.showCommitInView
// - gitlens.showCompareView
// - gitlens.showFileHistoryInView
// - gitlens.showFileHistoryView
// - gitlens.showLineHistoryView
// - gitlens.showQuickBranchHistory
// - gitlens.showQuickCommitDetails
// - gitlens.showQuickRevisionDetails
// - gitlens.showQuickStashList
// - gitlens.showRepositoriesView
// - gitlens.showSearchView
// - gitlens.showSettingsPage
// - gitlens.showSettingsPage#compare-view
// - gitlens.showSettingsPage#file-history-view
// - gitlens.showSettingsPage#line-history-view
// - gitlens.showSettingsPage#repositories-view
// - gitlens.showSettingsPage#search-commits-view
// - gitlens.showWelcomePage
// - gitlens.stashApply
// - gitlens.stashDelete
// - gitlens.stashSave
// - gitlens.stashSaveFiles
// - gitlens.supportGitLens
// - gitlens.switchMode
// - gitlens.toggleFileHeatmap
// - gitlens.toggleFileRecentChanges
// - gitlens.toggleLineBlame
// - gitlens.toggleReviewMode
// - gitlens.toggleZenMode
// - gitlens.views.applyChanges
// - gitlens.views.checkout
// - gitlens.views.closeRepository
// - gitlens.views.compare.clear
// - gitlens.views.compare.compareWithSelected
// - gitlens.views.compare.pinComparison
// - gitlens.views.compare.refresh
// - gitlens.views.compare.selectForCompare
// - gitlens.views.compare.setFilesLayoutToAuto
// - gitlens.views.compare.setFilesLayoutToList
// - gitlens.views.compare.setFilesLayoutToTree
// - gitlens.views.compare.setKeepResultsToOff
// - gitlens.views.compare.setKeepResultsToOn
// - gitlens.views.compare.swapComparison
// - gitlens.views.compare.unpinComparison
// - gitlens.views.compare:explorer.focus
// - gitlens.views.compare:gitlens.focus
// - gitlens.views.compare:scm.focus
// - gitlens.views.compareAncestryWithWorking
// - gitlens.views.compareFileWithSelected
// - gitlens.views.compareWithHead
// - gitlens.views.compareWithRemote
// - gitlens.views.compareWithSelected
// - gitlens.views.compareWithWorking
// - gitlens.views.contributor.addCoauthoredBy
// - gitlens.views.contributor.copyToClipboard
// - gitlens.views.dismissNode
// - gitlens.views.executeNodeCallback
// - gitlens.views.expandNode
// - gitlens.views.exploreRepoRevision
// - gitlens.views.fetch
// - gitlens.views.fileHistory.changeBase
// - gitlens.views.fileHistory.refresh
// - gitlens.views.fileHistory.setEditorFollowingOff
// - gitlens.views.fileHistory.setEditorFollowingOn
// - gitlens.views.fileHistory.setRenameFollowingOff
// - gitlens.views.fileHistory.setRenameFollowingOn
// - gitlens.views.fileHistory:explorer.focus
// - gitlens.views.fileHistory:gitlens.focus
// - gitlens.views.fileHistory:scm.focus
// - gitlens.views.lineHistory.changeBase
// - gitlens.views.lineHistory.refresh
// - gitlens.views.lineHistory.setEditorFollowingOff
// - gitlens.views.lineHistory.setEditorFollowingOn
// - gitlens.views.lineHistory.setRenameFollowingOff
// - gitlens.views.lineHistory.setRenameFollowingOn
// - gitlens.views.lineHistory:explorer.focus
// - gitlens.views.lineHistory:gitlens.focus
// - gitlens.views.lineHistory:scm.focus
// - gitlens.views.openChangedFileChanges
// - gitlens.views.openChangedFileChangesWithWorking
// - gitlens.views.openChangedFileRevisions
// - gitlens.views.openChangedFiles
// - gitlens.views.openChanges
// - gitlens.views.openChangesWithWorking
// - gitlens.views.openDirectoryDiff
// - gitlens.views.openDirectoryDiffWithWorking
// - gitlens.views.openFile
// - gitlens.views.openFileRevision
// - gitlens.views.openFileRevisionInRemote
// - gitlens.views.openInTerminal
// - gitlens.views.pull
// - gitlens.views.push
// - gitlens.views.pushWithForce
// - gitlens.views.refreshNode
// - gitlens.views.repositories.refresh
// - gitlens.views.repositories.setAutoRefreshToOff
// - gitlens.views.repositories.setAutoRefreshToOn
// - gitlens.views.repositories.setFilesLayoutToAuto
// - gitlens.views.repositories.setFilesLayoutToList
// - gitlens.views.repositories.setFilesLayoutToTree
// - gitlens.views.repositories:explorer.focus
// - gitlens.views.repositories:gitlens.focus
// - gitlens.views.repositories:scm.focus
// - gitlens.views.search.clear
// - gitlens.views.search.refresh
// - gitlens.views.search.searchCommits
// - gitlens.views.search.setFilesLayoutToAuto
// - gitlens.views.search.setFilesLayoutToList
// - gitlens.views.search.setFilesLayoutToTree
// - gitlens.views.search.setKeepResultsToOff
// - gitlens.views.search.setKeepResultsToOn
// - gitlens.views.search:explorer.focus
// - gitlens.views.search:gitlens.focus
// - gitlens.views.search:scm.focus
// - gitlens.views.selectFileForCompare
// - gitlens.views.selectForCompare
// - gitlens.views.setAsDefault
// - gitlens.views.showAllChildren
// - gitlens.views.showMoreChildren
// - gitlens.views.stageDirectory
// - gitlens.views.stageFile
// - gitlens.views.star
// - gitlens.views.terminalCheckoutBranch
// - gitlens.views.terminalCheckoutCommit
// - gitlens.views.terminalCherryPickCommit
// - gitlens.views.terminalCreateBranch
// - gitlens.views.terminalCreateTag
// - gitlens.views.terminalDeleteBranch
// - gitlens.views.terminalDeleteTag
// - gitlens.views.terminalMergeBranch
// - gitlens.views.terminalPushCommit
// - gitlens.views.terminalRebaseBranch
// - gitlens.views.terminalRebaseBranchToRemote
// - gitlens.views.terminalRebaseCommit
// - gitlens.views.terminalRemoveRemote
// - gitlens.views.terminalResetCommit
// - gitlens.views.terminalRevertCommit
// - gitlens.views.terminalSquashBranchIntoCommit
// - gitlens.views.unsetAsDefault
// - gitlens.views.unstageDirectory
// - gitlens.views.unstageFile
// - gitlens.views.unstar
// - javascript.goToProjectConfig
// - javascript.reloadProjects
// - keybindings.editor.copyCommandKeybindingEntry
// - keybindings.editor.resetKeybinding
// - keybindings.editor.showConflicts
// - keybindings.editor.showDefaultKeybindings
// - keybindings.editor.showUserKeybindings
// - lastCursorLineSelect
// - lastCursorLineSelectDrag
// - lastCursorWordSelect
// - layoutEditorGroups
// - list.focusFirstChild
// - list.focusLastChild
// - list.toggleFilterOnType
// - liveshare.activityBar.copyServerURL
// - liveshare.activityBar.makeTerminalReadOnly
// - liveshare.activityBar.makeTerminalReadWrite
// - liveshare.activityBar.openServerInBrowser
// - liveshare.activityBar.openTerminal
// - liveshare.activityBar.removeTerminal
// - liveshare.activityBar.shareServer
// - liveshare.activityBar.shareTerminal
// - liveshare.activityBar.unshareServer
// - liveshare.activityBar.user.decrease
// - liveshare.activityBar.user.elevate
// - liveshare.changePresenceAvailable
// - liveshare.changePresenceAway
// - liveshare.changePresenceBusy
// - liveshare.changePresenceDoNotDisturb
// - liveshare.changePresenceInvisible
// - liveshare.changeSelfPresenceFromAvailable
// - liveshare.changeSelfPresenceFromAway
// - liveshare.changeSelfPresenceFromBusy
// - liveshare.changeSelfPresenceFromDoNotDisturb
// - liveshare.collaboration.link.copy
// - liveshare.collaboration.link.copyFromActivityBar
// - liveshare.collaboration.link.copyFromFileTreeExplorer
// - liveshare.comments.cancelEditComment
// - liveshare.comments.createThread
// - liveshare.comments.deleteComment
// - liveshare.comments.deleteThread
// - liveshare.comments.editComment
// - liveshare.comments.reply
// - liveshare.comments.saveComment
// - liveshare.contacts.focus
// - liveshare.debug
// - liveshare.end
// - liveshare.endFromActivityBar
// - liveshare.endFromFileTreeExplorer
// - liveshare.exportLogs
// - liveshare.fileTreeExplorer.copyServerURL
// - liveshare.fileTreeExplorer.makeTerminalReadOnly
// - liveshare.fileTreeExplorer.makeTerminalReadWrite
// - liveshare.fileTreeExplorer.openServerInBrowser
// - liveshare.fileTreeExplorer.openTerminal
// - liveshare.fileTreeExplorer.removeTerminal
// - liveshare.fileTreeExplorer.shareServer
// - liveshare.fileTreeExplorer.shareTerminal
// - liveshare.fileTreeExplorer.unshareServer
// - liveshare.fileTreeExplorer.user.decrease
// - liveshare.fileTreeExplorer.user.elevate
// - liveshare.focusParticipants
// - liveshare.focusParticipantsFromActivityBar
// - liveshare.focusParticipantsFromFileTreeExplorer
// - liveshare.followFromActivityBar
// - liveshare.followFromFileTreeExplorer
// - liveshare.followToTheSideFromActivityBar
// - liveshare.followToTheSideFromTreeExplorer
// - liveshare.help
// - liveshare.help.focus
// - liveshare.inviteAvailableContacts
// - liveshare.inviteNoUserJoinByEmail
// - liveshare.inviteSearchContacts
// - liveshare.inviteUserJoin
// - liveshare.inviteUserJoinByEmail
// - liveshare.joinFromActivityBar
// - liveshare.launcherSetup
// - liveshare.leave
// - liveshare.leaveFromActivityBar
// - liveshare.leaveFromFileTreeExplorer
// - liveshare.listParticipants
// - liveshare.listServers
// - liveshare.listTerminals
// - liveshare.moreInfo
// - liveshare.openLink
// - liveshare.provideFeedback
// - liveshare.removeInvitedContactFromActivityBar
// - liveshare.removeInvitedContactFromFileTreeExplorer
// - liveshare.removeParticipant
// - liveshare.removeParticipantFromActivityBar
// - liveshare.removeParticipantFromFileTreeExplorer
// - liveshare.removeRecentContact
// - liveshare.reportAProblem
// - liveshare.resetLanguageServices
// - liveshare.scc.clean
// - liveshare.scc.cleanAll
// - liveshare.scc.openChange
// - liveshare.scc.openFile
// - liveshare.scc.openFile2
// - liveshare.scc.revertChange
// - liveshare.selectPresenceProvider
// - liveshare.session.explorer.focus
// - liveshare.session.focus
// - liveshare.shareServer
// - liveshare.shareTerminal
// - liveshare.signInAndReload
// - liveshare.signin
// - liveshare.signin.browser
// - liveshare.signin.token
// - liveshare.signout
// - liveshare.start
// - liveshare.startFromActivityBar
// - liveshare.startFromFileTreeExplorer
// - liveshare.startReadOnly
// - liveshare.startReadOnlyFromActivityBar
// - liveshare.startReadOnlyFromFileTreeExplorer
// - liveshare.unfollowFromActivityBar
// - liveshare.unfollowFromFileTreeExplorer
// - liveshare.unshareServer
// - markdown.preview.refresh
// - markdown.preview.toggleLock
// - markdown.showLockedPreviewToSide
// - markdown.showPreviewSecuritySelector
// - markdown.showSource
// - material-icon-theme.activateIcons
// - material-icon-theme.changeFolderColor
// - material-icon-theme.changeFolderTheme
// - material-icon-theme.changeOpacity
// - material-icon-theme.changeSaturation
// - material-icon-theme.restoreDefaultConfig
// - material-icon-theme.toggleExplorerArrows
// - material-icon-theme.toggleGrayscale
// - material-icon-theme.toggleIconPacks
// - merge-conflict.accept.all-both
// - merge-conflict.accept.all-current
// - merge-conflict.accept.all-incoming
// - merge-conflict.accept.both
// - merge-conflict.accept.current
// - merge-conflict.accept.incoming
// - merge-conflict.accept.selection
// - merge-conflict.compare
// - merge-conflict.next
// - merge-conflict.previous
// - notifications.clearAll
// - notifications.focusToasts
// - notifications.showList
// - notifications.toggleList
// - npm-intellisense.import
// - npm-script.audit
// - npm-script.build
// - npm-script.init
// - npm-script.install
// - npm-script.start
// - npm.debugScript
// - npm.focus
// - npm.openScript
// - npm.refresh
// - npm.runInstall
// - npm.runScript
// - npm.runSelectedScript
// - numberedBookmarks.clear
// - numberedBookmarks.clearFromAllFiles
// - numberedBookmarks.jumpToBookmark0
// - numberedBookmarks.list
// - numberedBookmarks.listFromAllFiles
// - numberedBookmarks.toggleBookmark0
// - numberedBookmarks.whatsNew
// - openInTerminal
// - outline.focus
// - paste
// - perfview.show
// - php.untrustValidationExecutable
// - polacode.activate
// - prettier.open-output
// - problems.action.copyMessage
// - problems.action.copyRelatedInformationMessage
// - problems.action.showMultilineMessage
// - problems.action.showSinglelineMessage
// - references-view.clear
// - references-view.clearHistory
// - references-view.copy
// - references-view.copyAll
// - references-view.copyPath
// - references-view.pickFromHistory
// - references-view.refind
// - references-view.refresh
// - references-view.remove
// - references-view.tree.focus
// - remote.showActions
// - removeRootFolder
// - repl.action.copyAll
// - replacePreviousChar
// - revealInExplorer
// - saveAll
// - search.action.clearHistory
// - search.action.clearSearchResults
// - search.action.collapseSearchResults
// - search.action.copyAll
// - search.action.focusSearchList
// - search.action.refreshSearchResults
// - search.action.toggleSearchViewPosition
// - selectAll
// - selectFirstSuggestion
// - selectForCompare
// - selectLastSuggestion
// - setContext
// - setSelection
// - settings.filterByModified
// - settings.filterByOnline
// - settings.switchToJSON
// - sqlite.explorer.add
// - sqlite.explorer.copyName
// - sqlite.explorer.copyPath
// - sqlite.explorer.copyRelativePath
// - sqlite.explorer.focus
// - sqlite.explorer.refresh
// - sqlite.explorer.remove
// - sqlite.newQuery
// - sqlite.newQueryInsert
// - sqlite.newQuerySelect
// - sqlite.quickQuery
// - sqlite.runSqliteMasterQuery
// - sqlite.runTableQuery
// - sqlite.showOutputChannel
// - sqlite.useDatabase
// - todohighlight.listAnnotations
// - todohighlight.showOutputChannel
// - todohighlight.toggleHighlight
// - toggle.diff.ignoreTrimWhitespace
// - toggle.diff.renderSideBySide
// - toggleEscapeSequenceLogging
// - typescript.goToProjectConfig
// - typescript.openTsServerLog
// - typescript.reloadProjects
// - typescript.restartTsServer
// - typescript.selectTypeScriptVersion
// - update.showCurrentReleaseNotes
// - vetur.generateGrammar
// - vetur.showCorrespondingVirtualFile
// - vscode-exports-autocomplete.refreshCache
// - workbench.action.acceptSelectedQuickOpenItem
// - workbench.action.addComment
// - workbench.action.addRootFolder
// - workbench.action.clearCommandHistory
// - workbench.action.clearEditorHistory
// - workbench.action.clearRecentFiles
// - workbench.action.closeEditorInAllGroups
// - workbench.action.closeEditorsAndGroup
// - workbench.action.closeEditorsInOtherGroups
// - workbench.action.closeEditorsToTheLeft
// - workbench.action.closeEditorsToTheRight
// - workbench.action.closePanel
// - workbench.action.configureLanguageBasedSettings
// - workbench.action.configureLocale
// - workbench.action.debug.configure
// - workbench.action.debug.disconnect
// - workbench.action.debug.restartFrame
// - workbench.action.debug.reverseContinue
// - workbench.action.debug.selectandstart
// - workbench.action.debug.stepBack
// - workbench.action.debug.terminateThread
// - workbench.action.decreaseViewSize
// - workbench.action.duplicateWorkspaceInNewWindow
// - workbench.action.editor.changeEOL
// - workbench.action.editor.changeEncoding
// - workbench.action.editorLayoutSingle
// - workbench.action.editorLayoutThreeColumns
// - workbench.action.editorLayoutThreeRows
// - workbench.action.editorLayoutTwoByTwoGrid
// - workbench.action.editorLayoutTwoColumns
// - workbench.action.editorLayoutTwoColumnsBottom
// - workbench.action.editorLayoutTwoRows
// - workbench.action.editorLayoutTwoRowsRight
// - workbench.action.evenEditorWidths
// - workbench.action.files.openFileFolderInNewWindow
// - workbench.action.files.openFileInNewWindow
// - workbench.action.files.openFolderInNewWindow
// - workbench.action.files.revert
// - workbench.action.files.saveFiles
// - workbench.action.firstEditorInGroup
// - workbench.action.focusActiveEditorGroup
// - workbench.action.focusCommentsPanel
// - workbench.action.focusLastEditorGroup
// - workbench.action.focusNextGroup
// - workbench.action.focusPanel
// - workbench.action.focusPreviousGroup
// - workbench.action.focusQuickOpen
// - workbench.action.generateColorTheme
// - workbench.action.increaseViewSize
// - workbench.action.inspectContextKeys
// - workbench.action.inspectKeyMappings
// - workbench.action.installCommandLine
// - workbench.action.joinAllGroups
// - workbench.action.joinTwoGroups
// - workbench.action.logStorage
// - workbench.action.maximizeEditor
// - workbench.action.mergeAllWindowTabs
// - workbench.action.minimizeOtherEditors
// - workbench.action.moveEditorToAboveGroup
// - workbench.action.moveEditorToBelowGroup
// - workbench.action.moveEditorToLeftGroup
// - workbench.action.moveEditorToRightGroup
// - workbench.action.moveWindowTabToNewWindow
// - workbench.action.navigateDown
// - workbench.action.navigateEditorGroups
// - workbench.action.navigateLast
// - workbench.action.navigateLeft
// - workbench.action.navigateRight
// - workbench.action.navigateUp
// - workbench.action.newGroupAbove
// - workbench.action.newGroupBelow
// - workbench.action.newGroupLeft
// - workbench.action.newGroupRight
// - workbench.action.newWindowTab
// - workbench.action.nextEditorInGroup
// - workbench.action.nextPanelView
// - workbench.action.nextSideBarView
// - workbench.action.openActiveLogOutputFile
// - workbench.action.openDefaultKeybindingsFile
// - workbench.action.openDocumentationUrl
// - workbench.action.openEditorAtIndex
// - workbench.action.openFolderSettings
// - workbench.action.openGlobalKeybindingsFile
// - workbench.action.openIntroductoryVideosUrl
// - workbench.action.openIssueReporter
// - workbench.action.openLicenseUrl
// - workbench.action.openLogFile
// - workbench.action.openLogsFolder
// - workbench.action.openNewsletterSignupUrl
// - workbench.action.openNextRecentlyUsedEditor
// - workbench.action.openPreviousEditorFromHistory
// - workbench.action.openPreviousRecentlyUsedEditor
// - workbench.action.openPrivacyStatementUrl
// - workbench.action.openProcessExplorer
// - workbench.action.openRawDefaultSettings
// - workbench.action.openRemoteSettings
// - workbench.action.openRequestFeatureUrl
// - workbench.action.openSettings2
// - workbench.action.openSettingsJson
// - workbench.action.openSnippets
// - workbench.action.openTipsAndTricksUrl
// - workbench.action.openTwitterUrl
// - workbench.action.openView
// - workbench.action.openWorkspace
// - workbench.action.openWorkspaceConfigFile
// - workbench.action.openWorkspaceInNewWindow
// - workbench.action.openWorkspaceSettings
// - workbench.action.previousEditorInGroup
// - workbench.action.previousPanelView
// - workbench.action.previousSideBarView
// - workbench.action.problems.focus
// - workbench.action.quickOpenNavigateNextInTerminalPicker
// - workbench.action.quickOpenNavigatePrevious
// - workbench.action.quickOpenNavigatePreviousInTerminalPicker
// - workbench.action.quickOpenRecent
// - workbench.action.quickOpenTerm
// - workbench.action.quickPickManyToggle
// - workbench.action.quickSwitchWindow
// - workbench.action.reloadWindowWithExtensionsDisabled
// - workbench.action.removeFromEditorHistory
// - workbench.action.removeRootFolder
// - workbench.action.reportPerformanceIssueUsingReporter
// - workbench.action.revertAndCloseActiveEditor
// - workbench.action.saveWorkspaceAs
// - workbench.action.selectIconTheme
// - workbench.action.setLogLevel
// - workbench.action.showAboutDialog
// - workbench.action.showEditorsInActiveGroup
// - workbench.action.showEditorsInGroup
// - workbench.action.showEmmetCommands
// - workbench.action.showInteractivePlayground
// - workbench.action.showInterfaceOverview
// - workbench.action.showLogs
// - workbench.action.showNextWindowTab
// - workbench.action.showPreviousWindowTab
// - workbench.action.showRuntimeExtensions
// - workbench.action.showWelcomePage
// - workbench.action.splitEditorDown
// - workbench.action.splitEditorLeft
// - workbench.action.splitEditorRight
// - workbench.action.splitEditorUp
// - workbench.action.tasks.allowAutomaticRunning
// - workbench.action.tasks.configureDefaultBuildTask
// - workbench.action.tasks.configureDefaultTestTask
// - workbench.action.tasks.configureTaskRunner
// - workbench.action.tasks.disallowAutomaticRunning
// - workbench.action.tasks.reRunTask
// - workbench.action.tasks.restartTask
// - workbench.action.tasks.runTask
// - workbench.action.tasks.showLog
// - workbench.action.tasks.showTasks
// - workbench.action.tasks.terminate
// - workbench.action.tasks.test
// - workbench.action.tasks.toggleProblems
// - workbench.action.terminal.allowWorkspaceShell
// - workbench.action.terminal.disallowWorkspaceShell
// - workbench.action.terminal.focus
// - workbench.action.terminal.focusAtIndex1
// - workbench.action.terminal.focusAtIndex2
// - workbench.action.terminal.focusAtIndex3
// - workbench.action.terminal.focusAtIndex4
// - workbench.action.terminal.focusAtIndex5
// - workbench.action.terminal.focusAtIndex6
// - workbench.action.terminal.focusAtIndex7
// - workbench.action.terminal.focusAtIndex8
// - workbench.action.terminal.focusAtIndex9
// - workbench.action.terminal.focusNext
// - workbench.action.terminal.focusPrevious
// - workbench.action.terminal.kill
// - workbench.action.terminal.newInActiveWorkspace
// - workbench.action.terminal.paste
// - workbench.action.terminal.rename
// - workbench.action.terminal.runActiveFile
// - workbench.action.terminal.runSelectedText
// - workbench.action.terminal.selectToNextLine
// - workbench.action.terminal.selectToPreviousLine
// - workbench.action.terminal.splitInActiveWorkspace
// - workbench.action.toggleActivityBarVisibility
// - workbench.action.toggleAutoSave
// - workbench.action.toggleCenteredLayout
// - workbench.action.toggleEditorVisibility
// - workbench.action.toggleMaximizedPanel
// - workbench.action.toggleMultiCursorModifier
// - workbench.action.togglePanelPosition
// - workbench.action.toggleScreencastMode
// - workbench.action.toggleSharedProcess
// - workbench.action.toggleSidebarPosition
// - workbench.action.toggleStatusbarVisibility
// - workbench.action.toggleWindowTabsBar
// - workbench.action.uninstallCommandLine
// - workbench.action.url.openUrl
// - workbench.action.webview.openDeveloperTools
// - workbench.action.webview.reloadWebviewAction
// - workbench.debug.action.focusBreakpointsView
// - workbench.debug.action.focusCallStackView
// - workbench.debug.action.focusRepl
// - workbench.debug.action.focusVariablesView
// - workbench.debug.action.focusWatchView
// - workbench.debug.loadedScriptsView.focus
// - workbench.debug.panel.action.clearReplAction
// - workbench.debug.viewlet.action.addFunctionBreakpointAction
// - workbench.debug.viewlet.action.disableAllBreakpoints
// - workbench.debug.viewlet.action.enableAllBreakpoints
// - workbench.debug.viewlet.action.reapplyBreakpointsAction
// - workbench.debug.viewlet.action.removeAllBreakpoints
// - workbench.explorer.emptyView.focus
// - workbench.extensions.action.addToWorkspaceFolderIgnoredRecommendations
// - workbench.extensions.action.addToWorkspaceFolderRecommendations
// - workbench.extensions.action.addToWorkspaceIgnoredRecommendations
// - workbench.extensions.action.addToWorkspaceRecommendations
// - workbench.extensions.action.checkForUpdates
// - workbench.extensions.action.configureWorkspaceFolderRecommendedExtensions
// - workbench.extensions.action.configureWorkspaceRecommendedExtensions
// - workbench.extensions.action.debugExtensionHost
// - workbench.extensions.action.disableAll
// - workbench.extensions.action.disableAllWorkspace
// - workbench.extensions.action.disableAutoUpdate
// - workbench.extensions.action.enableAll
// - workbench.extensions.action.enableAllWorkspace
// - workbench.extensions.action.enableAutoUpdate
// - workbench.extensions.action.extensionHostProfile
// - workbench.extensions.action.install.specificVersion
// - workbench.extensions.action.installExtensions
// - workbench.extensions.action.installVSIX
// - workbench.extensions.action.listBuiltInExtensions
// - workbench.extensions.action.listOutdatedExtensions
// - workbench.extensions.action.openExtensionsFolder
// - workbench.extensions.action.reinstall
// - workbench.extensions.action.saveExtensionHostProfile
// - workbench.extensions.action.showAzureExtensions
// - workbench.extensions.action.showDisabledExtensions
// - workbench.extensions.action.showEnabledExtensions
// - workbench.extensions.action.showExtensionsForLanguage
// - workbench.extensions.action.showExtensionsWithIds
// - workbench.extensions.action.showInstalledExtensions
// - workbench.extensions.action.showLanguageExtensions
// - workbench.extensions.action.showPopularExtensions
// - workbench.extensions.action.showRecommendedExtensions
// - workbench.extensions.action.stopExtensionHostProfile
// - workbench.extensions.action.updateAllExtensions
// - workbench.extensions.installMissingDepenencies
// - workbench.files.action.acceptLocalChanges
// - workbench.files.action.collapseExplorerFolders
// - workbench.files.action.compareFileWith
// - workbench.files.action.focusFilesExplorer
// - workbench.files.action.refreshFilesExplorer
// - workbench.files.action.revertLocalChanges
// - workbench.files.action.saveAllInGroup
// - workbench.output.action.clearOutput
// - workbench.view.extension.gitlens
// - workbench.view.extension.liveshare
// - workbench.view.extension.references-view
// - workbench.view.extension.test
// - workbench.view.search.focus
synoptase commented 5 years ago

Yup, they're gone since i updated today.

rebornix commented 5 years ago

Thanks all for the feedback and bug report. Fix is in and a new insiders build is on the way. To workaround this issue temporarily, you can use Settings Editor to rebind the keybindings.

rebornix commented 5 years ago

It's already fixed in latest Insiders. Thanks for all for the feedback and patience.