Skip to content

Instantly share code, notes, and snippets.

@DK013
Created October 24, 2024 09:12
Show Gist options
  • Save DK013/fb25fbf463137c4ecc69c54b875511c1 to your computer and use it in GitHub Desktop.
Save DK013/fb25fbf463137c4ecc69c54b875511c1 to your computer and use it in GitHub Desktop.
// Override key bindings by placing them into your key bindings file.
[
{ "key": "escape escape", "command": "workbench.action.exitZenMode",
"when": "inZenMode" },
{ "key": "shift+escape", "command": "closeReferenceSearch",
"when": "inReferenceSearchEditor && !config.editor.stablePeek" },
{ "key": "escape", "command": "closeReferenceSearch",
"when": "inReferenceSearchEditor && !config.editor.stablePeek" },
{ "key": "escape", "command": "editor.closeTestPeek",
"when": "testing.isInPeek && !config.editor.stablePeek || testing.isPeekVisible && !config.editor.stablePeek" },
{ "key": "shift+escape", "command": "cancelSelection",
"when": "editorHasSelection && textInputFocus" },
{ "key": "escape", "command": "cancelSelection",
"when": "editorHasSelection && textInputFocus" },
{ "key": "ctrl+end", "command": "cursorBottom",
"when": "textInputFocus" },
{ "key": "ctrl+shift+end", "command": "cursorBottomSelect",
"when": "textInputFocus" },
{ "key": "ctrl+shift+alt+down", "command": "cursorColumnSelectDown",
"when": "textInputFocus" },
{ "key": "ctrl+shift+alt+left", "command": "cursorColumnSelectLeft",
"when": "textInputFocus" },
{ "key": "ctrl+shift+alt+pagedown", "command": "cursorColumnSelectPageDown",
"when": "textInputFocus" },
{ "key": "ctrl+shift+alt+pageup", "command": "cursorColumnSelectPageUp",
"when": "textInputFocus" },
{ "key": "ctrl+shift+alt+right", "command": "cursorColumnSelectRight",
"when": "textInputFocus" },
{ "key": "ctrl+shift+alt+up", "command": "cursorColumnSelectUp",
"when": "textInputFocus" },
{ "key": "down", "command": "cursorDown",
"when": "textInputFocus" },
{ "key": "ctrl+shift+down", "command": "cursorDownSelect",
"when": "textInputFocus" },
{ "key": "shift+down", "command": "cursorDownSelect",
"when": "textInputFocus" },
{ "key": "end", "command": "cursorEnd",
"when": "textInputFocus",
"args": {"sticky":false} },
{ "key": "shift+end", "command": "cursorEndSelect",
"when": "textInputFocus",
"args": {"sticky":false} },
{ "key": "home", "command": "cursorHome",
"when": "textInputFocus" },
{ "key": "shift+home", "command": "cursorHomeSelect",
"when": "textInputFocus" },
{ "key": "left", "command": "cursorLeft",
"when": "textInputFocus" },
{ "key": "shift+left", "command": "cursorLeftSelect",
"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": "right", "command": "cursorRight",
"when": "textInputFocus" },
{ "key": "shift+right", "command": "cursorRightSelect",
"when": "textInputFocus" },
{ "key": "ctrl+home", "command": "cursorTop",
"when": "textInputFocus" },
{ "key": "ctrl+shift+home", "command": "cursorTopSelect",
"when": "textInputFocus" },
{ "key": "up", "command": "cursorUp",
"when": "textInputFocus" },
{ "key": "ctrl+shift+up", "command": "cursorUpSelect",
"when": "textInputFocus" },
{ "key": "shift+up", "command": "cursorUpSelect",
"when": "textInputFocus" },
{ "key": "shift+backspace", "command": "deleteLeft",
"when": "textInputFocus" },
{ "key": "backspace", "command": "deleteLeft",
"when": "textInputFocus" },
{ "key": "delete", "command": "deleteRight",
"when": "textInputFocus" },
{ "key": "ctrl+a", "command": "editor.action.selectAll" },
{ "key": "ctrl+l", "command": "expandLineSelection",
"when": "textInputFocus" },
{ "key": "ctrl+down", "command": "inlineChat.arrowOutDown",
"when": "inlineChatFocused && inlineChatHasProvider && inlineChatInnerCursorLast && !accessibilityModeEnabled && !isEmbeddedDiffEditor" },
{ "key": "ctrl+up", "command": "inlineChat.arrowOutUp",
"when": "inlineChatFocused && inlineChatHasProvider && inlineChatInnerCursorFirst && !accessibilityModeEnabled && !isEmbeddedDiffEditor" },
{ "key": "shift+tab", "command": "outdent",
"when": "editorTextFocus && !editorReadonly && !editorTabMovesFocus" },
{ "key": "ctrl+shift+z", "command": "redo" },
{ "key": "ctrl+y", "command": "redo" },
{ "key": "ctrl+down", "command": "scrollLineDown",
"when": "textInputFocus" },
{ "key": "ctrl+up", "command": "scrollLineUp",
"when": "textInputFocus" },
{ "key": "alt+pagedown", "command": "scrollPageDown",
"when": "textInputFocus" },
{ "key": "alt+pageup", "command": "scrollPageUp",
"when": "textInputFocus" },
{ "key": "tab", "command": "tab",
"when": "editorTextFocus && !editorReadonly && !editorTabMovesFocus" },
{ "key": "ctrl+z", "command": "undo" },
{ "key": "shift+down", "command": "cursorColumnSelectDown",
"when": "editorColumnSelection && textInputFocus" },
{ "key": "shift+left", "command": "cursorColumnSelectLeft",
"when": "editorColumnSelection && textInputFocus" },
{ "key": "shift+pagedown", "command": "cursorColumnSelectPageDown",
"when": "editorColumnSelection && textInputFocus" },
{ "key": "shift+pageup", "command": "cursorColumnSelectPageUp",
"when": "editorColumnSelection && textInputFocus" },
{ "key": "shift+right", "command": "cursorColumnSelectRight",
"when": "editorColumnSelection && textInputFocus" },
{ "key": "shift+up", "command": "cursorColumnSelectUp",
"when": "editorColumnSelection && textInputFocus" },
{ "key": "shift+escape", "command": "removeSecondaryCursors",
"when": "editorHasMultipleSelections && textInputFocus" },
{ "key": "escape", "command": "removeSecondaryCursors",
"when": "editorHasMultipleSelections && textInputFocus" },
{ "key": "ctrl+down", "command": "notebook.cell.chat.arrowOutDown",
"when": "inlineChatFocused && inlineChatInnerCursorLast && notebookCellChatFocused && !accessibilityModeEnabled && !notebookCellEditorFocused" },
{ "key": "ctrl+up", "command": "notebook.cell.chat.arrowOutUp",
"when": "inlineChatFocused && inlineChatInnerCursorFirst && notebookCellChatFocused && !accessibilityModeEnabled && !notebookCellEditorFocused" },
{ "key": "ctrl+up", "command": "notebook.cell.focusChatWidget",
"when": "editorTextFocus && inputFocus && notebookEditorFocused && !accessibilityModeEnabled && !isEmbeddedDiffEditor && notebookEditorCursorAtBoundary != 'bottom' && notebookEditorCursorAtBoundary != 'none'" },
{ "key": "ctrl+down", "command": "notebook.cell.focusNextChatWidget",
"when": "editorTextFocus && inputFocus && isCompositeNotebook && !accessibilityModeEnabled && !isEmbeddedDiffEditor && !notebookCellEditorFocused && notebookEditorCursorAtBoundary != 'none' && notebookEditorCursorAtBoundary != 'top' || editorTextFocus && inputFocus && notebookCellEditorFocused && !accessibilityModeEnabled && !isCompositeNotebook && !isEmbeddedDiffEditor && notebookEditorCursorAtBoundary != 'none' && notebookEditorCursorAtBoundary != 'top'" },
{ "key": "ctrl+down", "command": "inlineChat.focus",
"when": "editorTextFocus && inlineChatVisible && !accessibilityModeEnabled && !inlineChatFocused && !isEmbeddedDiffEditor && inlineChatOuterCursorPosition == 'above'" },
{ "key": "ctrl+up", "command": "inlineChat.focus",
"when": "editorTextFocus && inlineChatVisible && !accessibilityModeEnabled && !inlineChatFocused && !isEmbeddedDiffEditor && inlineChatOuterCursorPosition == 'below'" },
{ "key": "escape", "command": "notebook.cell.chat.acceptChanges",
"when": "inlineChatFocused && notebookCellChatFocused && notebookChatUserDidEdit && !notebookCellEditorFocused" },
{ "key": "down", "command": "notebook.cell.chat.nextFromHistory",
"when": "inlineChatFocused && notebookCellChatFocused" },
{ "key": "up", "command": "notebook.cell.chat.previousFromHistory",
"when": "inlineChatFocused && notebookCellChatFocused" },
{ "key": "f12", "command": "goToNextReference",
"when": "inReferenceSearchEditor || referenceSearchVisible" },
{ "key": "f4", "command": "goToNextReference",
"when": "inReferenceSearchEditor || referenceSearchVisible" },
{ "key": "shift+f12", "command": "goToPreviousReference",
"when": "inReferenceSearchEditor || referenceSearchVisible" },
{ "key": "shift+f4", "command": "goToPreviousReference",
"when": "inReferenceSearchEditor || referenceSearchVisible" },
{ "key": "ctrl+enter", "command": "refactorPreview.apply",
"when": "refactorPreview.enabled && refactorPreview.hasCheckedChanges && focusedView == 'refactorPreview'" },
{ "key": "alt+enter", "command": "testing.editFocusedTest",
"when": "focusedView == 'workbench.view.testing'" },
{ "key": "escape", "command": "notebook.cell.quitEdit",
"when": "inputFocus && notebookEditorFocused && !editorHasMultipleSelections && !editorHasSelection && !editorHoverVisible && !inlineChatFocused" },
{ "key": "ctrl+alt+enter", "command": "notebook.cell.quitEdit",
"when": "inputFocus && notebookEditorFocused && !inlineChatFocused && notebookCellType == 'markup'" },
{ "key": "escape", "command": "inlineChat.discard",
"when": "inlineChatHasProvider && inlineChatVisible && !inlineChatUserDidEdit" },
{ "key": "ctrl+f", "command": "actions.find",
"when": "editorFocus || editorIsOpen" },
{ "key": "enter", "command": "breakpointWidget.action.acceptInput",
"when": "breakpointWidgetVisible && inBreakpointWidget" },
{ "key": "ctrl+up", "command": "chat.action.focus",
"when": "chatCursorAtTop && inChatInput && !quickChatHasFocus" },
{ "key": "ctrl+up", "command": "chat.action.focus",
"when": "inChatInput && isLinux && !quickChatHasFocus || inChatInput && isWindows && !quickChatHasFocus" },
{ "key": "shift+escape", "command": "closeBreakpointWidget",
"when": "breakpointWidgetVisible && textInputFocus" },
{ "key": "escape", "command": "closeBreakpointWidget",
"when": "breakpointWidgetVisible && textInputFocus" },
{ "key": "ctrl+u", "command": "cursorUndo",
"when": "textInputFocus" },
{ "key": "ctrl+right", "command": "cursorWordEndRight",
"when": "textInputFocus && !accessibilityModeEnabled" },
{ "key": "ctrl+shift+right", "command": "cursorWordEndRightSelect",
"when": "textInputFocus && !accessibilityModeEnabled" },
{ "key": "ctrl+left", "command": "cursorWordLeft",
"when": "textInputFocus && !accessibilityModeEnabled" },
{ "key": "ctrl+shift+left", "command": "cursorWordLeftSelect",
"when": "textInputFocus && !accessibilityModeEnabled" },
{ "key": "ctrl+backspace", "command": "deleteWordLeft",
"when": "textInputFocus && !editorReadonly" },
{ "key": "ctrl+delete", "command": "deleteWordRight",
"when": "textInputFocus && !editorReadonly" },
{ "key": "f7", "command": "editor.action.accessibleDiffViewer.next",
"when": "isInDiffEditor" },
{ "key": "shift+f7", "command": "editor.action.accessibleDiffViewer.prev",
"when": "isInDiffEditor" },
{ "key": "ctrl+k ctrl+c", "command": "editor.action.addCommentLine",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+d", "command": "editor.action.addSelectionToNextFindMatch",
"when": "editorFocus" },
{ "key": "shift+alt+.", "command": "editor.action.autoFix",
"when": "textInputFocus && !editorReadonly && supportedCodeAction =~ /(\\s|^)quickfix\\b/" },
{ "key": "shift+alt+a", "command": "editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "escape", "command": "editor.action.cancelSelectionAnchor",
"when": "editorTextFocus && selectionAnchorSet" },
{ "key": "ctrl+f2", "command": "editor.action.changeAll",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+insert", "command": "editor.action.clipboardCopyAction" },
{ "key": "ctrl+c", "command": "editor.action.clipboardCopyAction" },
{ "key": "shift+delete", "command": "editor.action.clipboardCutAction" },
{ "key": "ctrl+x", "command": "editor.action.clipboardCutAction" },
{ "key": "shift+insert", "command": "editor.action.clipboardPasteAction" },
{ "key": "ctrl+v", "command": "editor.action.clipboardPasteAction" },
{ "key": "ctrl+/", "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": "ctrl+shift+k", "command": "editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly" },
{ "key": "alt+f3", "command": "editor.action.dirtydiff.next",
"when": "editorTextFocus && !textCompareEditorActive" },
{ "key": "shift+alt+f3", "command": "editor.action.dirtydiff.previous",
"when": "editorTextFocus && !textCompareEditorActive" },
{ "key": "enter", "command": "editor.action.extensioneditor.findNext",
"when": "webviewFindWidgetFocused && !editorFocus && activeEditor == 'workbench.editor.extension'" },
{ "key": "shift+enter", "command": "editor.action.extensioneditor.findPrevious",
"when": "webviewFindWidgetFocused && !editorFocus && activeEditor == 'workbench.editor.extension'" },
{ "key": "ctrl+f", "command": "editor.action.extensioneditor.showfind",
"when": "!editorFocus && activeEditor == 'workbench.editor.extension'" },
{ "key": "shift+alt+f", "command": "editor.action.formatDocument",
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly && !inCompositeEditor" },
{ "key": "shift+alt+f", "command": "editor.action.formatDocument.none",
"when": "editorTextFocus && !editorHasDocumentFormattingProvider && !editorReadonly" },
{ "key": "ctrl+k ctrl+f", "command": "editor.action.formatSelection",
"when": "editorHasDocumentSelectionFormattingProvider && editorTextFocus && !editorReadonly" },
{ "key": "ctrl+down", "command": "editor.action.goToBottomHover",
"when": "editorHoverFocused" },
{ "key": "end", "command": "editor.action.goToBottomHover",
"when": "editorHoverFocused" },
{ "key": "enter", "command": "editor.action.goToFocusedStickyScrollLine",
"when": "stickyScrollFocused" },
{ "key": "ctrl+f12", "command": "editor.action.goToImplementation",
"when": "editorHasImplementationProvider && editorTextFocus" },
{ "key": "shift+f12", "command": "editor.action.goToReferences",
"when": "editorHasReferenceProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor" },
{ "key": "ctrl+up", "command": "editor.action.goToTopHover",
"when": "editorHoverFocused" },
{ "key": "home", "command": "editor.action.goToTopHover",
"when": "editorHoverFocused" },
{ "key": "escape", "command": "editor.action.hideColorPicker",
"when": "standaloneColorPickerVisible" },
{ "key": "ctrl+shift+.", "command": "editor.action.inPlaceReplace.down",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+shift+,", "command": "editor.action.inPlaceReplace.up",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+]", "command": "editor.action.indentLines",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "escape", "command": "editor.action.inlineEdit.reject",
"when": "inlineEditVisible && !editorReadonly" },
{ "key": "escape", "command": "editor.action.inlineSuggest.hide",
"when": "inlineEditIsVisible || inlineSuggestionVisible" },
{ "key": "alt+]", "command": "editor.action.inlineSuggest.showNext",
"when": "inlineSuggestionVisible && !editorReadonly" },
{ "key": "alt+[", "command": "editor.action.inlineSuggest.showPrevious",
"when": "inlineSuggestionVisible && !editorReadonly" },
{ "key": "enter", "command": "editor.action.insertColorWithStandaloneColorPicker",
"when": "standaloneColorPickerFocused" },
{ "key": "ctrl+alt+up", "command": "editor.action.insertCursorAbove",
"when": "editorTextFocus" },
{ "key": "shift+alt+i", "command": "editor.action.insertCursorAtEndOfEachLineSelected",
"when": "editorTextFocus" },
{ "key": "ctrl+alt+down", "command": "editor.action.insertCursorBelow",
"when": "editorTextFocus" },
{ "key": "ctrl+enter", "command": "editor.action.insertLineAfter",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+shift+enter", "command": "editor.action.insertLineBefore",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+shift+\\", "command": "editor.action.jumpToBracket",
"when": "editorTextFocus" },
{ "key": "ctrl+shift+f2", "command": "editor.action.linkedEditing",
"when": "editorHasRenameProvider && editorTextFocus && !editorReadonly" },
{ "key": "alt+f8", "command": "editor.action.marker.next",
"when": "editorFocus" },
{ "key": "f8", "command": "editor.action.marker.nextInFiles",
"when": "editorFocus" },
{ "key": "shift+alt+f8", "command": "editor.action.marker.prev",
"when": "editorFocus" },
{ "key": "shift+f8", "command": "editor.action.marker.prevInFiles",
"when": "editorFocus" },
{ "key": "alt+down", "command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "alt+up", "command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+k ctrl+d", "command": "editor.action.moveSelectionToNextFindMatch",
"when": "editorFocus" },
{ "key": "alt+f9", "command": "editor.action.nextCommentThreadAction" },
{ "key": "alt+f10", "command": "editor.action.nextCommentedRangeAction",
"when": "activeEditorHasCommentingRange" },
{ "key": "ctrl+k ctrl+alt+down", "command": "editor.action.nextCommentingRange",
"when": "accessibilityModeEnabled && commentFocused || accessibilityModeEnabled && editorFocus || accessibilityHelpIsShown && accessibilityModeEnabled && accessibleViewCurrentProviderId == 'comments'" },
{ "key": "f3", "command": "editor.action.nextMatchFindAction",
"when": "editorFocus" },
{ "key": "enter", "command": "editor.action.nextMatchFindAction",
"when": "editorFocus && findInputFocussed" },
{ "key": "ctrl+f3", "command": "editor.action.nextSelectionMatchFindAction",
"when": "editorFocus" },
{ "key": "shift+alt+o", "command": "editor.action.organizeImports",
"when": "textInputFocus && !editorReadonly && supportedCodeAction =~ /(\\s|^)source\\.organizeImports\\b/" },
{ "key": "ctrl+[", "command": "editor.action.outdentLines",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "alt+down", "command": "editor.action.pageDownHover",
"when": "editorHoverFocused" },
{ "key": "pagedown", "command": "editor.action.pageDownHover",
"when": "editorHoverFocused" },
{ "key": "alt+up", "command": "editor.action.pageUpHover",
"when": "editorHoverFocused" },
{ "key": "pageup", "command": "editor.action.pageUpHover",
"when": "editorHoverFocused" },
{ "key": "alt+f12", "command": "editor.action.peekDefinition",
"when": "editorHasDefinitionProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor" },
{ "key": "ctrl+shift+f12", "command": "editor.action.peekImplementation",
"when": "editorHasImplementationProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor" },
{ "key": "shift+alt+f9", "command": "editor.action.previousCommentThreadAction" },
{ "key": "shift+alt+f10", "command": "editor.action.previousCommentedRangeAction",
"when": "activeEditorHasCommentingRange" },
{ "key": "ctrl+k ctrl+alt+up", "command": "editor.action.previousCommentingRange",
"when": "accessibilityModeEnabled && commentFocused || accessibilityModeEnabled && editorFocus || accessibilityHelpIsShown && accessibilityModeEnabled && accessibleViewCurrentProviderId == 'comments'" },
{ "key": "shift+f3", "command": "editor.action.previousMatchFindAction",
"when": "editorFocus" },
{ "key": "shift+enter", "command": "editor.action.previousMatchFindAction",
"when": "editorFocus && findInputFocussed" },
{ "key": "ctrl+shift+f3", "command": "editor.action.previousSelectionMatchFindAction",
"when": "editorFocus" },
{ "key": "ctrl+.", "command": "editor.action.quickFix",
"when": "editorHasCodeActionsProvider && textInputFocus && !editorReadonly" },
{ "key": "ctrl+shift+r", "command": "editor.action.refactor",
"when": "editorHasCodeActionsProvider && textInputFocus && !editorReadonly" },
{ "key": "ctrl+alt+backspace", "command": "editor.action.removeBrackets",
"when": "editorTextFocus" },
{ "key": "ctrl+k ctrl+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" },
{ "key": "ctrl+f12", "command": "editor.action.revealDefinition",
"when": "editorHasDefinitionProvider && editorTextFocus && isWeb" },
{ "key": "ctrl+k f12", "command": "editor.action.revealDefinitionAside",
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" },
{ "key": "ctrl+k ctrl+f12", "command": "editor.action.revealDefinitionAside",
"when": "editorHasDefinitionProvider && editorTextFocus && isWeb && !isInEmbeddedEditor" },
{ "key": "down", "command": "editor.action.scrollDownHover",
"when": "editorHoverFocused" },
{ "key": "left", "command": "editor.action.scrollLeftHover",
"when": "editorHoverFocused" },
{ "key": "right", "command": "editor.action.scrollRightHover",
"when": "editorHoverFocused" },
{ "key": "up", "command": "editor.action.scrollUpHover",
"when": "editorHoverFocused" },
{ "key": "escape", "command": "editor.action.selectEditor",
"when": "stickyScrollFocused" },
{ "key": "ctrl+k ctrl+k", "command": "editor.action.selectFromAnchorToCursor",
"when": "editorTextFocus && selectionAnchorSet" },
{ "key": "ctrl+shift+l", "command": "editor.action.selectHighlights",
"when": "editorFocus" },
{ "key": "down", "command": "editor.action.selectNextStickyScrollLine",
"when": "stickyScrollFocused" },
{ "key": "up", "command": "editor.action.selectPreviousStickyScrollLine",
"when": "stickyScrollFocused" },
{ "key": "ctrl+k ctrl+b", "command": "editor.action.setSelectionAnchor",
"when": "editorTextFocus" },
{ "key": "shift+f10", "command": "editor.action.showContextMenu",
"when": "textInputFocus" },
{ "key": "ctrl+k ctrl+i", "command": "editor.action.showHover",
"when": "editorTextFocus" },
{ "key": "shift+alt+right", "command": "editor.action.smartSelect.expand",
"when": "editorTextFocus" },
{ "key": "shift+alt+left", "command": "editor.action.smartSelect.shrink",
"when": "editorTextFocus" },
{ "key": "ctrl+h", "command": "editor.action.startFindReplaceAction",
"when": "editorFocus || editorIsOpen" },
{ "key": "ctrl+enter", "command": "editor.action.submitComment",
"when": "commentEditorFocused" },
{ "key": "ctrl+m", "command": "editor.action.toggleTabFocusMode" },
{ "key": "alt+z", "command": "editor.action.toggleWordWrap" },
{ "key": "ctrl+shift+space", "command": "editor.action.triggerParameterHints",
"when": "editorHasSignatureHelpProvider && editorTextFocus" },
{ "key": "ctrl+i", "command": "editor.action.triggerSuggest",
"when": "editorHasCompletionItemProvider && textInputFocus && !editorReadonly && !suggestWidgetVisible" },
{ "key": "ctrl+space", "command": "editor.action.triggerSuggest",
"when": "editorHasCompletionItemProvider && textInputFocus && !editorReadonly && !suggestWidgetVisible" },
{ "key": "ctrl+k ctrl+x", "command": "editor.action.trimTrailingWhitespace",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "enter", "command": "editor.action.webvieweditor.findNext",
"when": "webviewFindWidgetFocused && !editorFocus && activeEditor == 'WebviewEditor'" },
{ "key": "shift+enter", "command": "editor.action.webvieweditor.findPrevious",
"when": "webviewFindWidgetFocused && !editorFocus && activeEditor == 'WebviewEditor'" },
{ "key": "escape", "command": "editor.action.webvieweditor.hideFind",
"when": "webviewFindWidgetVisible && !editorFocus && activeEditor == 'WebviewEditor'" },
{ "key": "ctrl+f", "command": "editor.action.webvieweditor.showFind",
"when": "webviewFindWidgetEnabled && !editorFocus && activeEditor == 'WebviewEditor'" },
{ "key": "f7", "command": "editor.action.wordHighlight.next",
"when": "editorTextFocus && hasWordHighlights" },
{ "key": "shift+f7", "command": "editor.action.wordHighlight.prev",
"when": "editorTextFocus && hasWordHighlights" },
{ "key": "escape", "command": "editor.cancelOperation",
"when": "cancellableOperation" },
{ "key": "ctrl+.", "command": "editor.changeDropType",
"when": "dropWidgetVisible" },
{ "key": "ctrl+.", "command": "editor.changePasteType",
"when": "pasteWidgetVisible" },
{ "key": "ctrl+k ctrl+,", "command": "editor.createFoldingRangeFromSelection",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "escape", "command": "editor.debug.action.closeExceptionWidget",
"when": "exceptionWidgetVisible" },
{ "key": "ctrl+k ctrl+i", "command": "editor.debug.action.showDebugHover",
"when": "editorTextFocus && inDebugMode" },
{ "key": "f9", "command": "editor.debug.action.toggleBreakpoint",
"when": "debuggersAvailable && disassemblyViewFocus || debuggersAvailable && editorTextFocus" },
{ "key": "tab", "command": "editor.emmet.action.expandAbbreviation",
"when": "config.emmet.triggerExpansionOnTab && editorTextFocus && !editorReadonly && !editorTabMovesFocus" },
{ "key": "ctrl+shift+[", "command": "editor.fold",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+0", "command": "editor.foldAll",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+/", "command": "editor.foldAllBlockComments",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+-", "command": "editor.foldAllExcept",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+8", "command": "editor.foldAllMarkerRegions",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+1", "command": "editor.foldLevel1",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+2", "command": "editor.foldLevel2",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+3", "command": "editor.foldLevel3",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+4", "command": "editor.foldLevel4",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+5", "command": "editor.foldLevel5",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+6", "command": "editor.foldLevel6",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+7", "command": "editor.foldLevel7",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+[", "command": "editor.foldRecursively",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "f12", "command": "editor.gotoNextSymbolFromResult",
"when": "hasSymbols" },
{ "key": "escape", "command": "editor.gotoNextSymbolFromResult.cancel",
"when": "hasSymbols" },
{ "key": "escape", "command": "editor.hideDropWidget",
"when": "dropWidgetVisible" },
{ "key": "escape", "command": "editor.hidePasteWidget",
"when": "pasteWidgetVisible" },
{ "key": "ctrl+k ctrl+.", "command": "editor.removeManualFoldingRanges",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+l", "command": "editor.toggleFold",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+shift+l", "command": "editor.toggleFoldRecursively",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+shift+]", "command": "editor.unfold",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+j", "command": "editor.unfoldAll",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+=", "command": "editor.unfoldAllExcept",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+9", "command": "editor.unfoldAllMarkerRegions",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "ctrl+k ctrl+]", "command": "editor.unfoldRecursively",
"when": "editorTextFocus && foldingEnabled" },
{ "key": "escape", "command": "inlayHints.stopReadingLineWithHint",
"when": "isReadingLineWithInlayHints" },
{ "key": "tab", "command": "insertSnippet",
"when": "editorTextFocus && hasSnippetCompletions && !editorTabMovesFocus && !inSnippetMode" },
{ "key": "ctrl+enter", "command": "interactive.execute",
"when": "activeEditor == 'workbench.editor.interactive'" },
{ "key": "shift+enter", "command": "interactive.execute",
"when": "config.interactiveWindow.executeWithShiftEnter && activeEditor == 'workbench.editor.interactive'" },
{ "key": "enter", "command": "interactive.execute",
"when": "!config.interactiveWindow.executeWithShiftEnter && activeEditor == 'workbench.editor.interactive'" },
{ "key": "escape", "command": "notebook.cell.chat.discard",
"when": "inlineChatFocused && notebookCellChatFocused && !notebookCellEditorFocused && !notebookChatUserDidEdit" },
{ "key": "pagedown", "command": "notebook.cell.cursorPageDown",
"when": "editorTextFocus && inputFocus && notebookEditorFocused" },
{ "key": "shift+pagedown", "command": "notebook.cell.cursorPageDownSelect",
"when": "editorTextFocus && inputFocus && notebookEditorFocused && !notebookOutputFocused" },
{ "key": "pageup", "command": "notebook.cell.cursorPageUp",
"when": "editorTextFocus && inputFocus && notebookEditorFocused" },
{ "key": "shift+pageup", "command": "notebook.cell.cursorPageUpSelect",
"when": "editorTextFocus && inputFocus && notebookEditorFocused && !notebookOutputFocused" },
{ "key": "ctrl+alt+enter", "command": "notebook.cell.execute",
"when": "notebookCellListFocused && notebookMissingKernelExtension && !notebookCellExecuting && notebookCellType == 'code' || !notebookCellExecuting && notebookCellType == 'code' && notebookCellListFocused || inlineChatFocused && notebookCellChatFocused && notebookKernelCount > 0 || !notebookCellExecuting && notebookCellType == 'code' && notebookCellListFocused || inlineChatFocused && notebookCellChatFocused && notebookKernelSourceCount > 0 || inlineChatFocused && notebookCellChatFocused && notebookMissingKernelExtension && !notebookCellExecuting && notebookCellType == 'code'" },
{ "key": "alt+enter", "command": "notebook.cell.executeAndInsertBelow",
"when": "notebookCellListFocused && notebookCellType == 'markup' || notebookCellListFocused && notebookMissingKernelExtension && !notebookCellExecuting && notebookCellType == 'code' || notebookCellListFocused && !notebookCellExecuting && notebookCellType == 'code' && notebookKernelCount > 0 || notebookCellListFocused && !notebookCellExecuting && notebookCellType == 'code' && notebookKernelSourceCount > 0" },
{ "key": "shift+enter", "command": "notebook.cell.executeAndSelectBelow",
"when": "notebookCellListFocused && !inlineChatFocused && notebookCellType == 'markup' || notebookCellListFocused && notebookMissingKernelExtension && !inlineChatFocused && !notebookCellExecuting && notebookCellType == 'code' || notebookCellListFocused && !inlineChatFocused && !notebookCellExecuting && notebookCellType == 'code' && notebookKernelCount > 0 || notebookCellListFocused && !inlineChatFocused && !notebookCellExecuting && notebookCellType == 'code' && notebookKernelSourceCount > 0" },
{ "key": "ctrl+shift+v", "command": "notebook.cell.pasteAbove",
"when": "notebookEditorFocused && !inputFocus" },
{ "key": "down", "command": "notebook.focusNextEditor",
"when": "config.notebook.navigation.allowNavigateToSurroundingCells && editorTextFocus && inputFocus && notebookEditorFocused && !accessibilityModeEnabled && !isEmbeddedDiffEditor && notebookEditorCursorAtBoundary != 'none' && notebookEditorCursorAtBoundary != 'top'" },
{ "key": "up", "command": "notebook.focusPreviousEditor",
"when": "config.notebook.navigation.allowNavigateToSurroundingCells && editorTextFocus && inputFocus && notebookEditorFocused && !accessibilityModeEnabled && !isEmbeddedDiffEditor && notebookEditorCursorAtBoundary != 'bottom' && notebookEditorCursorAtBoundary != 'none'" },
{ "key": "shift+alt+f", "command": "notebook.formatCell",
"when": "editorHasDocumentFormattingProvider && editorTextFocus && inCompositeEditor && notebookEditable && !editorReadonly && activeEditor == 'workbench.editor.notebook'" },
{ "key": "ctrl+enter", "command": "openReferenceToSide",
"when": "listFocus && referenceSearchVisible && !inputFocus && !treeElementCanCollapse && !treeElementCanExpand && !treestickyScrollFocused" },
{ "key": "enter", "command": "repl.action.acceptInput",
"when": "inDebugRepl && textInputFocus" },
{ "key": "ctrl+f", "command": "repl.action.filter",
"when": "inDebugRepl && textInputFocus" },
{ "key": "ctrl+alt+f", "command": "repl.action.find",
"when": "inDebugRepl || inDebugRepl && focusedView == 'workbench.panel.repl.view'" },
{ "key": "ctrl+enter", "command": "repl.execute",
"when": "activeEditor == 'workbench.editor.repl'" },
{ "key": "shift+enter", "command": "repl.execute",
"when": "config.interactiveWindow.executeWithShiftEnter && activeEditor == 'workbench.editor.repl'" },
{ "key": "enter", "command": "repl.execute",
"when": "!config.interactiveWindow.executeWithShiftEnter && activeEditor == 'workbench.editor.repl'" },
{ "key": "ctrl+shift+r", "command": "rerunSearchEditorSearch",
"when": "inSearchEditor" },
{ "key": "escape", "command": "search.action.focusQueryEditorWidget",
"when": "inSearchEditor" },
{ "key": "ctrl+shift+backspace", "command": "search.searchEditor.action.deleteFileResults",
"when": "inSearchEditor" },
{ "key": "escape", "command": "settings.action.clearSearchResults",
"when": "inSettingsEditor && inSettingsSearch" },
{ "key": "down", "command": "settings.action.focusSettingsFile",
"when": "inSettingsSearch && !suggestWidgetVisible" },
{ "key": "ctrl+f", "command": "settings.action.search",
"when": "inSettingsEditor" },
{ "key": "ctrl+/", "command": "toggleExplainMode",
"when": "suggestWidgetVisible" },
{ "key": "ctrl+k f2", "command": "togglePeekWidgetFocus",
"when": "inReferenceSearchEditor || referenceSearchVisible" },
{ "key": "escape", "command": "welcome.goBack",
"when": "inWelcome && activeEditor == 'gettingStartedPage'" },
{ "key": "ctrl+k ctrl+alt+c", "command": "workbench.action.addComment" },
{ "key": "ctrl+/", "command": "workbench.action.chat.attachContext",
"when": "inChatInput && chatLocation == 'panel' || config.chat.experimental.variables.editor && inChatInput && chatLocation == 'editor' || config.chat.experimental.variables.notebook && inChatInput && chatLocation == 'notebook' || config.chat.experimental.variables.terminal && inChatInput && chatLocation == 'terminal'" },
{ "key": "ctrl+alt+enter", "command": "workbench.action.chat.runInTerminal",
"when": "accessibleViewInCodeBlock && chatIsEnabled || chatIsEnabled && inChat" },
{ "key": "enter", "command": "workbench.action.chat.submit",
"when": "chatInputHasText && inChatInput && !chatSessionRequestInProgress" },
{ "key": "ctrl+enter", "command": "workbench.action.chat.submitSecondaryAgent",
"when": "chatInputHasText && inChatInput && !chatInputHasAgent && !chatSessionRequestInProgress" },
{ "key": "alt+f5", "command": "workbench.action.editor.nextChange",
"when": "editorTextFocus && !textCompareEditorActive" },
{ "key": "shift+alt+f5", "command": "workbench.action.editor.previousChange",
"when": "editorTextFocus && !textCompareEditorActive" },
{ "key": "shift+escape", "command": "workbench.action.hideComment",
"when": "commentEditorFocused" },
{ "key": "escape", "command": "workbench.action.hideComment",
"when": "commentEditorFocused" },
{ "key": "tab", "command": "editor.action.inlineEdit.accept",
"when": "cursorAtInlineEdit && inlineEditVisible && !editorReadonly" },
{ "key": "ctrl+alt+=", "command": "editor.action.inlineEdit.jumpTo",
"when": "inlineEditVisible && !cursorAtInlineEdit && !editorReadonly" },
{ "key": "ctrl+alt+=", "command": "editor.action.inlineEdit.trigger",
"when": "!editorReadonly && !inlineEditVisible" },
{ "key": "ctrl+right", "command": "editor.action.inlineSuggest.acceptNextWord",
"when": "inlineSuggestionVisible && !editorReadonly" },
{ "key": "alt+f8", "command": "testing.goToNextMessage",
"when": "editorFocus && testing.isPeekVisible" },
{ "key": "shift+alt+f8", "command": "testing.goToPreviousMessage",
"when": "editorFocus && testing.isPeekVisible" },
{ "key": "shift+escape", "command": "closeFindWidget",
"when": "editorFocus && findWidgetVisible && !isComposing" },
{ "key": "escape", "command": "closeFindWidget",
"when": "editorFocus && findWidgetVisible && !isComposing" },
{ "key": "ctrl+alt+enter", "command": "editor.action.replaceAll",
"when": "editorFocus && findWidgetVisible" },
{ "key": "ctrl+shift+1", "command": "editor.action.replaceOne",
"when": "editorFocus && findWidgetVisible" },
{ "key": "enter", "command": "editor.action.replaceOne",
"when": "editorFocus && findWidgetVisible && replaceInputFocussed" },
{ "key": "alt+enter", "command": "editor.action.selectAllMatches",
"when": "editorFocus && findWidgetVisible" },
{ "key": "alt+c", "command": "toggleFindCaseSensitive",
"when": "editorFocus" },
{ "key": "alt+l", "command": "toggleFindInSelection",
"when": "editorFocus" },
{ "key": "alt+r", "command": "toggleFindRegex",
"when": "editorFocus" },
{ "key": "alt+w", "command": "toggleFindWholeWord",
"when": "editorFocus" },
{ "key": "alt+p", "command": "togglePreserveCase",
"when": "editorFocus" },
{ "key": "ctrl+alt+=", "command": "editor.action.inlineEdit.jumpBack",
"when": "cursorAtInlineEdit && !editorReadonly" },
{ "key": "ctrl+enter", "command": "notebook.cell.chat.acceptChanges",
"when": "inlineChatFocused && notebookCellChatFocused && !notebookCellEditorFocused" },
{ "key": "tab", "command": "jumpToNextSnippetPlaceholder",
"when": "hasNextTabstop && inSnippetMode && textInputFocus" },
{ "key": "shift+tab", "command": "jumpToPrevSnippetPlaceholder",
"when": "hasPrevTabstop && inSnippetMode && textInputFocus" },
{ "key": "escape", "command": "leaveEditorMessage",
"when": "messageVisible" },
{ "key": "shift+escape", "command": "leaveSnippet",
"when": "inSnippetMode && textInputFocus" },
{ "key": "escape", "command": "leaveSnippet",
"when": "inSnippetMode && textInputFocus" },
{ "key": "shift+escape", "command": "closeDirtyDiff",
"when": "dirtyDiffVisible" },
{ "key": "escape", "command": "closeDirtyDiff",
"when": "dirtyDiffVisible" },
{ "key": "shift+escape", "command": "closeMarkersNavigation",
"when": "editorFocus && markersNavigationVisible" },
{ "key": "escape", "command": "closeMarkersNavigation",
"when": "editorFocus && markersNavigationVisible" },
{ "key": "escape", "command": "notifications.hideToasts",
"when": "notificationToastsVisible" },
{ "key": "shift+escape", "command": "closeParameterHints",
"when": "editorFocus && parameterHintsVisible" },
{ "key": "escape", "command": "closeParameterHints",
"when": "editorFocus && parameterHintsVisible" },
{ "key": "alt+down", "command": "showNextParameterHint",
"when": "editorFocus && parameterHintsMultipleSignatures && parameterHintsVisible" },
{ "key": "down", "command": "showNextParameterHint",
"when": "editorFocus && parameterHintsMultipleSignatures && parameterHintsVisible" },
{ "key": "alt+up", "command": "showPrevParameterHint",
"when": "editorFocus && parameterHintsMultipleSignatures && parameterHintsVisible" },
{ "key": "up", "command": "showPrevParameterHint",
"when": "editorFocus && parameterHintsMultipleSignatures && parameterHintsVisible" },
{ "key": "shift+tab", "command": "acceptAlternativeSelectedSuggestion",
"when": "suggestWidgetHasFocusedSuggestion && suggestWidgetVisible && textInputFocus" },
{ "key": "shift+enter", "command": "acceptAlternativeSelectedSuggestion",
"when": "suggestWidgetHasFocusedSuggestion && suggestWidgetVisible && textInputFocus" },
{ "key": "tab", "command": "acceptSelectedSuggestion",
"when": "suggestWidgetHasFocusedSuggestion && suggestWidgetVisible && textInputFocus" },
{ "key": "enter", "command": "acceptSelectedSuggestion",
"when": "acceptSuggestionOnEnter && suggestWidgetHasFocusedSuggestion && suggestWidgetVisible && suggestionMakesTextEdit && textInputFocus" },
{ "key": "ctrl+i", "command": "focusSuggestion",
"when": "suggestWidgetVisible && textInputFocus && !suggestWidgetHasFocusedSuggestion" },
{ "key": "ctrl+space", "command": "focusSuggestion",
"when": "suggestWidgetVisible && textInputFocus && !suggestWidgetHasFocusedSuggestion" },
{ "key": "shift+escape", "command": "hideSuggestWidget",
"when": "suggestWidgetVisible && textInputFocus" },
{ "key": "escape", "command": "hideSuggestWidget",
"when": "suggestWidgetVisible && textInputFocus" },
{ "key": "tab", "command": "insertBestCompletion",
"when": "atEndOfWord && textInputFocus && !hasOtherSuggestions && !inSnippetMode && !suggestWidgetVisible && config.editor.tabCompletion == 'on'" },
{ "key": "tab", "command": "insertNextSuggestion",
"when": "hasOtherSuggestions && textInputFocus && !inSnippetMode && !suggestWidgetVisible && config.editor.tabCompletion == 'on'" },
{ "key": "shift+tab", "command": "insertPrevSuggestion",
"when": "hasOtherSuggestions && textInputFocus && !inSnippetMode && !suggestWidgetVisible && config.editor.tabCompletion == 'on'" },
{ "key": "ctrl+pagedown", "command": "selectNextPageSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus || suggestWidgetVisible && textInputFocus && !suggestWidgetHasFocusedSuggestion" },
{ "key": "pagedown", "command": "selectNextPageSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus || suggestWidgetVisible && textInputFocus && !suggestWidgetHasFocusedSuggestion" },
{ "key": "ctrl+down", "command": "selectNextSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus || suggestWidgetVisible && textInputFocus && !suggestWidgetHasFocusedSuggestion" },
{ "key": "down", "command": "selectNextSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus || suggestWidgetVisible && textInputFocus && !suggestWidgetHasFocusedSuggestion" },
{ "key": "ctrl+pageup", "command": "selectPrevPageSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus || suggestWidgetVisible && textInputFocus && !suggestWidgetHasFocusedSuggestion" },
{ "key": "pageup", "command": "selectPrevPageSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus || suggestWidgetVisible && textInputFocus && !suggestWidgetHasFocusedSuggestion" },
{ "key": "ctrl+up", "command": "selectPrevSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus || suggestWidgetVisible && textInputFocus && !suggestWidgetHasFocusedSuggestion" },
{ "key": "up", "command": "selectPrevSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus || suggestWidgetVisible && textInputFocus && !suggestWidgetHasFocusedSuggestion" },
{ "key": "ctrl+i", "command": "toggleSuggestionDetails",
"when": "suggestWidgetHasFocusedSuggestion && suggestWidgetVisible && textInputFocus" },
{ "key": "ctrl+space", "command": "toggleSuggestionDetails",
"when": "suggestWidgetHasFocusedSuggestion && suggestWidgetVisible && textInputFocus" },
{ "key": "ctrl+alt+space", "command": "toggleSuggestionFocus",
"when": "suggestWidgetVisible && textInputFocus" },
{ "key": "enter", "command": "acceptRenameInput",
"when": "editorFocus && renameInputVisible && !isComposing" },
{ "key": "ctrl+enter", "command": "acceptRenameInputWithPreview",
"when": "config.editor.rename.enablePreview && editorFocus && renameInputVisible && !isComposing" },
{ "key": "shift+escape", "command": "cancelLinkedEditingInput",
"when": "LinkedEditingInputVisible && editorTextFocus" },
{ "key": "escape", "command": "cancelLinkedEditingInput",
"when": "LinkedEditingInputVisible && editorTextFocus" },
{ "key": "shift+escape", "command": "cancelRenameInput",
"when": "editorFocus && renameInputVisible" },
{ "key": "escape", "command": "cancelRenameInput",
"when": "editorFocus && renameInputVisible" },
{ "key": "down", "command": "focusNextRenameSuggestion",
"when": "renameInputVisible" },
{ "key": "up", "command": "focusPreviousRenameSuggestion",
"when": "renameInputVisible" },
{ "key": "ctrl+shift+l", "command": "addCursorsAtSearchResults",
"when": "fileMatchOrMatchFocus && searchViewletVisible" },
{ "key": "ctrl+shift+;", "command": "breadcrumbs.focus",
"when": "breadcrumbsPossible && breadcrumbsVisible" },
{ "key": "ctrl+shift+.", "command": "breadcrumbs.focusAndSelect",
"when": "breadcrumbsPossible && breadcrumbsVisible" },
{ "key": "ctrl+right", "command": "breadcrumbs.focusNext",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "right", "command": "breadcrumbs.focusNext",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "ctrl+left", "command": "breadcrumbs.focusPrevious",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "left", "command": "breadcrumbs.focusPrevious",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "ctrl+enter", "command": "breadcrumbs.revealFocused",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "space", "command": "breadcrumbs.revealFocused",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "ctrl+enter", "command": "breadcrumbs.revealFocusedFromTreeAside",
"when": "breadcrumbsActive && breadcrumbsVisible && listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "down", "command": "breadcrumbs.selectFocused",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "enter", "command": "breadcrumbs.selectFocused",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "ctrl+shift+.", "command": "breadcrumbs.toggleToOn",
"when": "!config.breadcrumbs.enabled" },
{ "key": "ctrl+down", "command": "chat.action.focus",
"when": "inChat && inChatInput && quickChatHasFocus" },
{ "key": "escape", "command": "closeReplaceInFilesWidget",
"when": "replaceInputBoxFocus && searchViewletVisible" },
{ "key": "escape", "command": "commentsClearFilterText",
"when": "commentsFilterFocus" },
{ "key": "ctrl+f", "command": "commentsFocusFilter",
"when": "focusedView == 'workbench.panel.comments'" },
{ "key": "ctrl+down", "command": "commentsFocusViewFromFilter",
"when": "commentsFilterFocus" },
{ "key": "shift+alt+c", "command": "copyFilePath",
"when": "!editorFocus" },
{ "key": "shift+alt+c", "command": "copyFilePath",
"when": "editorFocus" },
{ "key": "ctrl+k ctrl+shift+c", "command": "copyRelativeFilePath",
"when": "!editorFocus" },
{ "key": "ctrl+k ctrl+shift+c", "command": "copyRelativeFilePath",
"when": "editorFocus" },
{ "key": "ctrl+left", "command": "cursorWordAccessibilityLeft",
"when": "accessibilityModeEnabled && isWindows && textInputFocus && focusedView == 'workbench.panel.output'" },
{ "key": "ctrl+shift+left", "command": "cursorWordAccessibilityLeftSelect",
"when": "accessibilityModeEnabled && isWindows && textInputFocus && focusedView == 'workbench.panel.output'" },
{ "key": "ctrl+right", "command": "cursorWordAccessibilityRight",
"when": "accessibilityModeEnabled && isWindows && textInputFocus && focusedView == 'workbench.panel.output'" },
{ "key": "ctrl+shift+right", "command": "cursorWordAccessibilityRightSelect",
"when": "accessibilityModeEnabled && isWindows && textInputFocus && focusedView == 'workbench.panel.output'" },
{ "key": "alt+enter", "command": "debug.openBreakpointToSide",
"when": "breakpointsFocused" },
{ "key": "ctrl+enter", "command": "debug.openBreakpointToSide",
"when": "breakpointsFocused" },
{ "key": "ctrl+f5", "command": "debug.openView",
"when": "!debuggersAvailable" },
{ "key": "f5", "command": "debug.openView",
"when": "!debuggersAvailable" },
{ "key": "delete", "command": "debug.removeBreakpoint",
"when": "breakpointsFocused && !breakpointInputFocused" },
{ "key": "delete", "command": "debug.removeWatchExpression",
"when": "watchExpressionsFocused && !expressionSelected" },
{ "key": "alt+-", "command": "decreaseSearchEditorContextLines",
"when": "inSearchEditor" },
{ "key": "alt+f1", "command": "editor.action.accessibilityHelp",
"when": "!accessibilityHelpIsShown" },
{ "key": "alt+a", "command": "editor.action.accessibilityHelpConfigureAssignedKeybindings",
"when": "accessibilityHelpIsShown && accessibleViewHasAssignedKeybindings" },
{ "key": "alt+k", "command": "editor.action.accessibilityHelpConfigureKeybindings",
"when": "accessibilityHelpIsShown && accessibleViewHasUnassignedKeybindings" },
{ "key": "alt+h", "command": "editor.action.accessibilityHelpOpenHelpLink",
"when": "accessibilityHelpIsShown" },
{ "key": "alt+f2", "command": "editor.action.accessibleView" },
{ "key": "ctrl+/", "command": "editor.action.accessibleViewAcceptInlineCompletion",
"when": "accessibleViewIsShown && accessibleViewCurrentProviderId == 'inlineCompletions'" },
{ "key": "alt+f6", "command": "editor.action.accessibleViewDisableHint",
"when": "accessibilityHelpIsShown && accessibleViewVerbosityEnabled || accessibleViewIsShown && accessibleViewVerbosityEnabled" },
{ "key": "alt+]", "command": "editor.action.accessibleViewNext",
"when": "accessibleViewIsShown && accessibleViewSupportsNavigation" },
{ "key": "ctrl+alt+pagedown", "command": "editor.action.accessibleViewNextCodeBlock",
"when": "accessibleViewContainsCodeBlocks && accessibleViewCurrentProviderId == 'panelChat'" },
{ "key": "alt+[", "command": "editor.action.accessibleViewPrevious",
"when": "accessibleViewIsShown && accessibleViewSupportsNavigation" },
{ "key": "ctrl+alt+pageup", "command": "editor.action.accessibleViewPreviousCodeBlock",
"when": "accessibleViewContainsCodeBlocks && accessibleViewCurrentProviderId == 'panelChat'" },
{ "key": "ctrl+k ctrl+k", "command": "editor.action.defineKeybinding",
"when": "resource == 'vscode-userdata:/c%3A/Users/DK/AppData/Roaming/Code/User/keybindings.json'" },
{ "key": "tab", "command": "editor.action.inlineSuggest.commit",
"when": "inlineSuggestionHasIndentationLessThanTabSize && inlineSuggestionVisible && !editorHoverFocused && !editorTabMovesFocus && !suggestWidgetVisible || cursorAtInlineEdit && inlineEditIsVisible && !editor.hasSelection && !editorHoverFocused && !editorTabMovesFocus && !suggestWidgetVisible || inlineEditIsVisible && inlineSuggestionHasIndentationLessThanTabSize && inlineSuggestionVisible && !editorHoverFocused && !editorTabMovesFocus && !suggestWidgetVisible || cursorAtInlineEdit && inlineEditIsVisible && inlineSuggestionVisible && !editor.hasSelection && !editorHoverFocused && !editorTabMovesFocus && !suggestWidgetVisible" },
{ "key": "shift+f9", "command": "editor.debug.action.toggleInlineBreakpoint",
"when": "editorTextFocus" },
{ "key": "shift+alt+d", "command": "editor.detectLanguage",
"when": "editorTextFocus && !notebookEditable" },
{ "key": "shift+enter", "command": "editor.refocusCallHierarchy",
"when": "callHierarchyVisible" },
{ "key": "shift+enter", "command": "editor.refocusTypeHierarchy",
"when": "typeHierarchyVisible" },
{ "key": "shift+alt+h", "command": "editor.showCallHierarchy",
"when": "editorHasCallHierarchyProvider && editorTextFocus && !inReferenceSearchEditor" },
{ "key": "shift+alt+h", "command": "editor.showIncomingCalls",
"when": "callHierarchyVisible && callHierarchyDirection == 'outgoingCalls'" },
{ "key": "shift+alt+h", "command": "editor.showOutgoingCalls",
"when": "callHierarchyVisible && callHierarchyDirection == 'incomingCalls'" },
{ "key": "shift+alt+h", "command": "editor.showSubtypes",
"when": "typeHierarchyVisible && typeHierarchyDirection == 'supertypes'" },
{ "key": "shift+alt+h", "command": "editor.showSupertypes",
"when": "typeHierarchyVisible && typeHierarchyDirection == 'subtypes'" },
{ "key": "ctrl+enter", "command": "explorer.openToSide",
"when": "explorerViewletFocus && foldersViewVisible && !inputFocus" },
{ "key": "shift+alt+f", "command": "filesExplorer.findInFolder",
"when": "explorerResourceIsFolder && filesExplorerFocus && foldersViewVisible && !inputFocus" },
{ "key": "alt+down", "command": "history.showNext",
"when": "historyNavigationForwardsEnabled && historyNavigationWidgetFocus && !isComposing && !suggestWidgetVisible" },
{ "key": "down", "command": "history.showNext",
"when": "historyNavigationForwardsEnabled && historyNavigationWidgetFocus && !isComposing && !suggestWidgetVisible" },
{ "key": "alt+up", "command": "history.showPrevious",
"when": "historyNavigationBackwardsEnabled && historyNavigationWidgetFocus && !isComposing && !suggestWidgetVisible" },
{ "key": "up", "command": "history.showPrevious",
"when": "historyNavigationBackwardsEnabled && historyNavigationWidgetFocus && !isComposing && !suggestWidgetVisible" },
{ "key": "down", "command": "iconSelectBox.focusDown",
"when": "iconSelectBoxFocus" },
{ "key": "right", "command": "iconSelectBox.focusNext",
"when": "iconSelectBoxFocus && iconSelectBoxInputEmpty || iconSelectBoxFocus && !iconSelectBoxInputFocus" },
{ "key": "left", "command": "iconSelectBox.focusPrevious",
"when": "iconSelectBoxFocus && iconSelectBoxInputEmpty || iconSelectBoxFocus && !iconSelectBoxInputFocus" },
{ "key": "up", "command": "iconSelectBox.focusUp",
"when": "iconSelectBoxFocus" },
{ "key": "enter", "command": "iconSelectBox.selectFocused",
"when": "iconSelectBoxFocus" },
{ "key": "alt+=", "command": "increaseSearchEditorContextLines",
"when": "inSearchEditor" },
{ "key": "escape", "command": "inlineChat.close",
"when": "inlineChatHasProvider && inlineChatVisible" },
{ "key": "escape", "command": "inlineChat.discardHunkChange",
"when": "inlineChatHasProvider && inlineChatVisible && inlineChatResponseType == 'messagesAndEdits'" },
{ "key": "ctrl+i", "command": "inlineChat.holdForSpeech",
"when": "hasSpeechProvider && inlineChatHasProvider && inlineChatVisible && textInputFocus" },
{ "key": "f7", "command": "inlineChat.moveToNextHunk",
"when": "inlineChatHasProvider && inlineChatVisible" },
{ "key": "shift+f7", "command": "inlineChat.moveToPreviousHunk",
"when": "inlineChatHasProvider && inlineChatVisible" },
{ "key": "ctrl+r", "command": "inlineChat.regenerate",
"when": "inlineChatHasProvider && inlineChatVisible" },
{ "key": "ctrl+k i", "command": "inlineChat.start",
"when": "editorFocus && inlineChatHasProvider && inlineChatPossible && !editorReadonly" },
{ "key": "ctrl+i", "command": "inlineChat.start",
"when": "editorFocus && inlineChatHasProvider && inlineChatPossible && !editorReadonly" },
{ "key": "ctrl+z", "command": "inlineChat.unstash",
"when": "inlineChatHasStashedSession && !editorReadonly" },
{ "key": "ctrl+down", "command": "inlineChat.viewInChat",
"when": "inChatInput && inlineChatHasProvider && inlineChatVisible" },
{ "key": "ctrl+up", "command": "interactive.history.focus",
"when": "isCompositeNotebook && isLinux && !notebookEditorFocused || isCompositeNotebook && isWindows && !notebookEditorFocused" },
{ "key": "down", "command": "interactive.history.next",
"when": "isCompositeNotebook && !notebookEditorFocused && !suggestWidgetVisible && interactiveInputCursorAtBoundary != 'none' && interactiveInputCursorAtBoundary != 'top'" },
{ "key": "up", "command": "interactive.history.previous",
"when": "isCompositeNotebook && !notebookEditorFocused && !suggestWidgetVisible && interactiveInputCursorAtBoundary != 'bottom' && interactiveInputCursorAtBoundary != 'none'" },
{ "key": "ctrl+end", "command": "interactive.scrollToBottom",
"when": "activeEditor == 'workbench.editor.interactive'" },
{ "key": "ctrl+home", "command": "interactive.scrollToTop",
"when": "activeEditor == 'workbench.editor.interactive'" },
{ "key": "enter", "command": "keybindings.editor.acceptWhenExpression",
"when": "inKeybindings && whenFocus && !suggestWidgetVisible" },
{ "key": "ctrl+k ctrl+a", "command": "keybindings.editor.addKeybinding",
"when": "inKeybindings && keybindingFocus" },
{ "key": "escape", "command": "keybindings.editor.clearSearchResults",
"when": "inKeybindings && inKeybindingsSearch" },
{ "key": "ctrl+c", "command": "keybindings.editor.copyKeybindingEntry",
"when": "inKeybindings && keybindingFocus && !whenFocus" },
{ "key": "enter", "command": "keybindings.editor.defineKeybinding",
"when": "inKeybindings && keybindingFocus && !whenFocus" },
{ "key": "ctrl+k ctrl+e", "command": "keybindings.editor.defineWhenExpression",
"when": "inKeybindings && keybindingFocus" },
{ "key": "ctrl+down", "command": "keybindings.editor.focusKeybindings",
"when": "inKeybindings && inKeybindingsSearch" },
{ "key": "alt+k", "command": "keybindings.editor.recordSearchKeys",
"when": "inKeybindings && inKeybindingsSearch" },
{ "key": "escape", "command": "keybindings.editor.rejectWhenExpression",
"when": "inKeybindings && whenFocus && !suggestWidgetVisible" },
{ "key": "delete", "command": "keybindings.editor.removeKeybinding",
"when": "inKeybindings && keybindingFocus && !inputFocus" },
{ "key": "ctrl+f", "command": "keybindings.editor.searchKeybindings",
"when": "inKeybindings" },
{ "key": "alt+p", "command": "keybindings.editor.toggleSortByPrecedence",
"when": "inKeybindings" },
{ "key": "escape", "command": "list.clear",
"when": "listFocus && listHasSelectionOrFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "escape", "command": "list.closeFind",
"when": "listFocus && treeFindOpen" },
{ "key": "left", "command": "list.collapse",
"when": "listFocus && treeElementCanCollapse && !inputFocus && !treestickyScrollFocused || listFocus && treeElementHasParent && !inputFocus && !treestickyScrollFocused" },
{ "key": "ctrl+left", "command": "list.collapseAll",
"when": "listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "right", "command": "list.expand",
"when": "listFocus && treeElementCanExpand && !inputFocus && !treestickyScrollFocused || listFocus && treeElementHasChild && !inputFocus && !treestickyScrollFocused" },
{ "key": "shift+down", "command": "list.expandSelectionDown",
"when": "listFocus && listSupportsMultiselect && !inputFocus && !treestickyScrollFocused" },
{ "key": "shift+up", "command": "list.expandSelectionUp",
"when": "listFocus && listSupportsMultiselect && !inputFocus && !treestickyScrollFocused" },
{ "key": "f3", "command": "list.find",
"when": "listFocus && listSupportsFind" },
{ "key": "ctrl+alt+f", "command": "list.find",
"when": "listFocus && listSupportsFind" },
{ "key": "alt+down", "command": "list.focusAnyDown",
"when": "listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "alt+home", "command": "list.focusAnyFirst",
"when": "listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "alt+end", "command": "list.focusAnyLast",
"when": "listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "alt+up", "command": "list.focusAnyUp",
"when": "listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "down", "command": "list.focusDown",
"when": "listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "home", "command": "list.focusFirst",
"when": "listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "end", "command": "list.focusLast",
"when": "listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "pagedown", "command": "list.focusPageDown",
"when": "listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "pageup", "command": "list.focusPageUp",
"when": "listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "up", "command": "list.focusUp",
"when": "listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "ctrl+down", "command": "list.scrollDown",
"when": "listFocus && !inputFocus && !treestickyScrollFocused && listScrollAtBoundary != 'both' && listScrollAtBoundary != 'bottom'" },
{ "key": "ctrl+up", "command": "list.scrollUp",
"when": "listFocus && !inputFocus && !treestickyScrollFocused && listScrollAtBoundary != 'both' && listScrollAtBoundary != 'top'" },
{ "key": "enter", "command": "list.select",
"when": "listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "ctrl+a", "command": "list.selectAll",
"when": "listFocus && listSupportsMultiselect && !inputFocus && !treestickyScrollFocused" },
{ "key": "ctrl+k ctrl+i", "command": "list.showHover",
"when": "listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "space", "command": "list.toggleExpand",
"when": "listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "ctrl+shift+enter", "command": "list.toggleSelection",
"when": "listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "backspace", "command": "noteMultiCursor.deleteLeft",
"when": "config.notebook.multiCursor.enabled && isNotebookMultiSelect && activeEditor == 'workbench.editor.notebook' && notebookMultiSelectCursorState == '1' || config.notebook.multiCursor.enabled && isNotebookMultiSelect && activeEditor == 'workbench.editor.notebook' && notebookMultiSelectCursorState == '2'" },
{ "key": "delete", "command": "noteMultiCursor.deleteRight",
"when": "config.notebook.multiCursor.enabled && isNotebookMultiSelect && activeEditor == 'workbench.editor.notebook' && notebookMultiSelectCursorState == '1' || config.notebook.multiCursor.enabled && isNotebookMultiSelect && activeEditor == 'workbench.editor.notebook' && notebookMultiSelectCursorState == '2'" },
{ "key": "escape", "command": "noteMultiCursor.exit",
"when": "config.notebook.multiCursor.enabled && isNotebookMultiSelect && activeEditor == 'workbench.editor.notebook'" },
{ "key": "ctrl+d", "command": "notebook.addFindMatchToSelection",
"when": "config.notebook.multiCursor.enabled && notebookCellEditorFocused && activeEditor == 'workbench.editor.notebook'" },
{ "key": "y", "command": "notebook.cell.changeToCode",
"when": "notebookEditorFocused && !inputFocus && !notebookOutputFocused && activeEditor == 'workbench.editor.notebook' && notebookCellType == 'markup'" },
{ "key": "m", "command": "notebook.cell.changeToMarkdown",
"when": "notebookEditorFocused && !inputFocus && !notebookOutputFocused && activeEditor == 'workbench.editor.notebook' && notebookCellType == 'code'" },
{ "key": "enter", "command": "notebook.cell.chat.accept",
"when": "inlineChatFocused && notebookCellChatFocused && !notebookCellEditorFocused" },
{ "key": "ctrl+enter", "command": "notebook.cell.chat.acceptChanges",
"when": "notebookEditorFocused && !inputFocus && !notebookCellEditorFocused && notebookChatOuterFocusPosition == 'below'" },
{ "key": "ctrl+down", "command": "notebook.cell.chat.focus",
"when": "notebookEditorFocused && !inputFocus && notebookChatOuterFocusPosition == 'above'" },
{ "key": "ctrl+up", "command": "notebook.cell.chat.focus",
"when": "notebookEditorFocused && !inputFocus && notebookChatOuterFocusPosition == 'below'" },
{ "key": "ctrl+down", "command": "notebook.cell.chat.focusNextCell",
"when": "inlineChatFocused && notebookCellChatFocused" },
{ "key": "ctrl+up", "command": "notebook.cell.chat.focusPreviousCell",
"when": "inlineChatFocused && notebookCellChatFocused" },
{ "key": "ctrl+k i", "command": "notebook.cell.chat.start",
"when": "config.notebook.experimental.cellChat && notebookChatAgentRegistered && notebookEditable && notebookEditorFocused && !inputFocus || config.notebook.experimental.generate && notebookChatAgentRegistered && notebookEditable && notebookEditorFocused && !inputFocus" },
{ "key": "ctrl+i", "command": "notebook.cell.chat.start",
"when": "config.notebook.experimental.cellChat && notebookChatAgentRegistered && notebookEditable && notebookEditorFocused && !inputFocus || config.notebook.experimental.generate && notebookChatAgentRegistered && notebookEditable && notebookEditorFocused && !inputFocus" },
{ "key": "alt+delete", "command": "notebook.cell.clearOutputs",
"when": "notebookCellEditable && notebookCellHasOutputs && notebookEditable && notebookEditorFocused && !inputFocus" },
{ "key": "ctrl+k ctrl+c", "command": "notebook.cell.collapseCellInput",
"when": "notebookCellListFocused && !inputFocus && !notebookCellInputIsCollapsed" },
{ "key": "ctrl+k t", "command": "notebook.cell.collapseCellOutput",
"when": "notebookCellHasOutputs && notebookCellListFocused && !inputFocus && !notebookCellOutputIsCollapsed" },
{ "key": "shift+alt+down", "command": "notebook.cell.copyDown",
"when": "notebookEditorFocused && !inputFocus" },
{ "key": "shift+alt+up", "command": "notebook.cell.copyUp",
"when": "notebookEditorFocused && !inputFocus" },
{ "key": "delete", "command": "notebook.cell.delete",
"when": "notebookEditorFocused && !inputFocus && !notebookOutputInputFocused" },
{ "key": "shift+alt+d", "command": "notebook.cell.detectLanguage",
"when": "notebookCellEditable && notebookEditable" },
{ "key": "enter", "command": "notebook.cell.edit",
"when": "notebookCellListFocused && notebookEditable && !editorHoverFocused && !inputFocus && !notebookOutputInputFocused" },
{ "key": "ctrl+k ctrl+c", "command": "notebook.cell.expandCellInput",
"when": "notebookCellInputIsCollapsed && notebookCellListFocused" },
{ "key": "ctrl+k t", "command": "notebook.cell.expandCellOutput",
"when": "notebookCellListFocused && notebookCellOutputIsCollapsed" },
{ "key": "ctrl+shift+down", "command": "notebook.cell.focusInOutput",
"when": "notebookCellHasOutputs && notebookEditorFocused" },
{ "key": "ctrl+down", "command": "notebook.cell.focusInOutput",
"when": "isWindows && notebookCellHasOutputs && notebookEditorFocused && !isCompositeNotebook" },
{ "key": "ctrl+shift+up", "command": "notebook.cell.focusOutOutput",
"when": "notebookEditorFocused && notebookOutputFocused" },
{ "key": "ctrl+shift+enter", "command": "notebook.cell.insertCodeCellAbove",
"when": "notebookCellListFocused && !inputFocus" },
{ "key": "ctrl+enter", "command": "notebook.cell.insertCodeCellBelow",
"when": "notebookCellListFocused && !inputFocus && notebookChatOuterFocusPosition == ''" },
{ "key": "shift+alt+win+j", "command": "notebook.cell.joinAbove",
"when": "notebookEditorFocused" },
{ "key": "alt+win+j", "command": "notebook.cell.joinBelow",
"when": "notebookEditorFocused" },
{ "key": "alt+down", "command": "notebook.cell.moveDown",
"when": "notebookEditorFocused && !inputFocus" },
{ "key": "alt+up", "command": "notebook.cell.moveUp",
"when": "notebookEditorFocused && !inputFocus" },
{ "key": "ctrl+.", "command": "notebook.cell.openFailureActions",
"when": "notebookCellFocused && notebookCellHasErrorDiagnostics && !notebookCellEditorFocused" },
{ "key": "ctrl+k ctrl+shift+\\", "command": "notebook.cell.split",
"when": "editorTextFocus && notebookCellEditable && notebookEditable && notebookEditorFocused" },
{ "key": "ctrl+k y", "command": "notebook.cell.toggleOutputScrolling",
"when": "notebookCellHasOutputs && notebookCellListFocused && !inputFocus" },
{ "key": "ctrl+l", "command": "notebook.centerActiveCell",
"when": "notebookEditorFocused" },
{ "key": "ctrl+/", "command": "notebook.commentSelectedCells",
"when": "notebookEditable && notebookEditorFocused && !inputFocus" },
{ "key": "alt+f3", "command": "notebook.diff.action.next",
"when": "activeEditor == 'workbench.editor.notebookTextDiffEditor'" },
{ "key": "shift+alt+f3", "command": "notebook.diff.action.previous",
"when": "activeEditor == 'workbench.editor.notebookTextDiffEditor'" },
{ "key": "ctrl+f", "command": "notebook.find",
"when": "notebookEditorFocused && !editorFocus && activeEditor == 'workbench.editor.interactive' || notebookEditorFocused && !editorFocus && activeEditor == 'workbench.editor.notebook'" },
{ "key": "ctrl+end", "command": "notebook.focusBottom",
"when": "notebookEditorFocused && !inputFocus" },
{ "key": "down", "command": "notebook.focusNextEditor",
"when": "config.notebook.navigation.allowNavigateToSurroundingCells && notebookCursorNavigationMode && notebookEditorFocused && !accessibilityModeEnabled && !isEmbeddedDiffEditor && !notebookCellMarkdownEditMode && notebookCellType == 'markup'" },
{ "key": "ctrl+down", "command": "notebook.focusNextEditor",
"when": "notebookEditorFocused && notebookOutputFocused" },
{ "key": "up", "command": "notebook.focusPreviousEditor",
"when": "config.notebook.navigation.allowNavigateToSurroundingCells && notebookCursorNavigationMode && notebookEditorFocused && !accessibilityModeEnabled && !isEmbeddedDiffEditor && !notebookCellMarkdownEditMode && notebookCellType == 'markup'" },
{ "key": "ctrl+home", "command": "notebook.focusTop",
"when": "notebookEditorFocused && !inputFocus" },
{ "key": "left", "command": "notebook.fold",
"when": "notebookEditorFocused && !inputFocus && activeEditor == 'workbench.editor.notebook'" },
{ "key": "ctrl+shift+[", "command": "notebook.fold",
"when": "notebookEditorFocused && !inputFocus && activeEditor == 'workbench.editor.notebook'" },
{ "key": "shift+alt+f", "command": "notebook.format",
"when": "notebookEditable && !editorTextFocus && activeEditor == 'workbench.editor.notebook'" },
{ "key": "escape", "command": "notebook.hideFind",
"when": "notebookEditorFocused && notebookFindWidgetFocused" },
{ "key": "right", "command": "notebook.unfold",
"when": "notebookEditorFocused && !inputFocus && activeEditor == 'workbench.editor.notebook'" },
{ "key": "ctrl+shift+]", "command": "notebook.unfold",
"when": "notebookEditorFocused && !inputFocus && activeEditor == 'workbench.editor.notebook'" },
{ "key": "ctrl+shift+a", "command": "notification.acceptPrimaryAction",
"when": "notificationFocus || notificationToastsVisible" },
{ "key": "delete", "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+k ctrl+shift+n", "command": "notifications.showList" },
{ "key": "escape", "command": "problems.action.clearFilterText",
"when": "problemsFilterFocus" },
{ "key": "ctrl+c", "command": "problems.action.copy",
"when": "problemsVisibility && !relatedInformationFocus && focusedView == 'workbench.panel.markers.view'" },
{ "key": "ctrl+f", "command": "problems.action.focusFilter",
"when": "focusedView == 'workbench.panel.markers.view'" },
{ "key": "ctrl+down", "command": "problems.action.focusProblemsFromFilter",
"when": "problemsFilterFocus" },
{ "key": "enter", "command": "problems.action.open",
"when": "problemFocus" },
{ "key": "ctrl+enter", "command": "problems.action.openToSide",
"when": "problemFocus" },
{ "key": "ctrl+.", "command": "problems.action.showQuickFixes",
"when": "problemFocus" },
{ "key": "ctrl+alt+home", "command": "quickInput.first",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "ctrl+home", "command": "quickInput.first",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "ctrl+alt+end", "command": "quickInput.last",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "ctrl+end", "command": "quickInput.last",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "ctrl+down", "command": "quickInput.next",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "down", "command": "quickInput.next",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "ctrl+alt+down", "command": "quickInput.nextSeparator",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "alt+down", "command": "quickInput.nextSeparatorWithQuickAccessFallback",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "ctrl+alt+pagedown", "command": "quickInput.pageNext",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "ctrl+pagedown", "command": "quickInput.pageNext",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "alt+pagedown", "command": "quickInput.pageNext",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "pagedown", "command": "quickInput.pageNext",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "ctrl+alt+pageup", "command": "quickInput.pagePrevious",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "ctrl+pageup", "command": "quickInput.pagePrevious",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "alt+pageup", "command": "quickInput.pagePrevious",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "pageup", "command": "quickInput.pagePrevious",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "ctrl+up", "command": "quickInput.previous",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "up", "command": "quickInput.previous",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "ctrl+alt+up", "command": "quickInput.previousSeparator",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "alt+up", "command": "quickInput.previousSeparatorWithQuickAccessFallback",
"when": "inQuickInput && quickInputType == 'quickPick'" },
{ "key": "space", "command": "refactorPreview.toggleCheckedState",
"when": "listFocus && refactorPreview.enabled && !inputFocus && !treestickyScrollFocused" },
{ "key": "shift+alt+r", "command": "revealFileInOS",
"when": "!editorFocus" },
{ "key": "enter", "command": "revealReference",
"when": "listFocus && referenceSearchVisible && !inputFocus && !treeElementCanCollapse && !treeElementCanExpand && !treestickyScrollFocused" },
{ "key": "ctrl+k s", "command": "saveAll" },
{ "key": "ctrl+enter", "command": "scm.acceptInput",
"when": "scmRepository" },
{ "key": "escape", "command": "scm.clearInput",
"when": "scmRepository && !suggestWidgetVisible" },
{ "key": "alt+down", "command": "scm.forceViewNextCommit",
"when": "scmRepository" },
{ "key": "alt+up", "command": "scm.forceViewPreviousCommit",
"when": "scmRepository" },
{ "key": "down", "command": "scm.viewNextCommit",
"when": "scmInputIsInLastPosition && scmRepository && !suggestWidgetVisible" },
{ "key": "up", "command": "scm.viewPreviousCommit",
"when": "scmInputIsInFirstPosition && scmRepository && !suggestWidgetVisible" },
{ "key": "escape", "command": "search.action.cancel",
"when": "listFocus && searchViewletVisible && !inputFocus && !treestickyScrollFocused && searchState != '0'" },
{ "key": "ctrl+c", "command": "search.action.copyMatch",
"when": "fileMatchOrMatchFocus" },
{ "key": "shift+alt+c", "command": "search.action.copyPath",
"when": "fileMatchOrFolderMatchWithResourceFocus" },
{ "key": "f4", "command": "search.action.focusNextSearchResult",
"when": "hasSearchResult || inSearchEditor" },
{ "key": "shift+f4", "command": "search.action.focusPreviousSearchResult",
"when": "hasSearchResult || inSearchEditor" },
{ "key": "ctrl+up", "command": "search.action.focusSearchFromResults",
"when": "accessibilityModeEnabled && searchViewletVisible || firstMatchFocus && searchViewletVisible" },
{ "key": "alt+enter", "command": "search.action.openInEditor",
"when": "hasSearchResult && searchViewletFocus" },
{ "key": "enter", "command": "search.action.openResult",
"when": "fileMatchOrMatchFocus && searchViewletVisible" },
{ "key": "ctrl+enter", "command": "search.action.openResultToSide",
"when": "fileMatchOrMatchFocus && searchViewletVisible" },
{ "key": "delete", "command": "search.action.remove",
"when": "fileMatchOrMatchFocus && searchViewletVisible" },
{ "key": "ctrl+shift+1", "command": "search.action.replace",
"when": "isEditableItem && matchFocus && replaceActive && searchViewletVisible" },
{ "key": "ctrl+alt+enter", "command": "search.action.replaceAll",
"when": "replaceActive && searchViewletVisible && !findWidgetVisible" },
{ "key": "ctrl+shift+enter", "command": "search.action.replaceAllInFile",
"when": "fileMatchFocus && isEditableItem && replaceActive && searchViewletVisible" },
{ "key": "ctrl+shift+1", "command": "search.action.replaceAllInFile",
"when": "fileMatchFocus && isEditableItem && replaceActive && searchViewletVisible" },
{ "key": "ctrl+shift+enter", "command": "search.action.replaceAllInFolder",
"when": "folderMatchFocus && isEditableItem && replaceActive && searchViewletVisible" },
{ "key": "ctrl+shift+1", "command": "search.action.replaceAllInFolder",
"when": "folderMatchFocus && isEditableItem && replaceActive && searchViewletVisible" },
{ "key": "shift+alt+f", "command": "search.action.restrictSearchToFolder",
"when": "folderMatchWithResourceFocus && searchViewletVisible" },
{ "key": "ctrl+down", "command": "search.focus.nextInputBox",
"when": "inSearchEditor && inputBoxFocus || inputBoxFocus && searchViewletVisible" },
{ "key": "ctrl+up", "command": "search.focus.previousInputBox",
"when": "inSearchEditor && inputBoxFocus || inputBoxFocus && searchViewletVisible && !searchInputBoxFocus" },
{ "key": "ctrl+shift+l", "command": "selectAllSearchEditorMatches",
"when": "inSearchEditor" },
{ "key": "escape", "command": "settings.action.focusLevelUp",
"when": "inSettingsEditor && !inSettingsJSONEditor && !inSettingsSearch" },
{ "key": "enter", "command": "settings.action.focusSettingControl",
"when": "inSettingsEditor && settingRowFocus" },
{ "key": "down", "command": "settings.action.focusSettingsFromSearch",
"when": "inSettingsSearch && !suggestWidgetVisible" },
{ "key": "enter", "command": "settings.action.focusSettingsList",
"when": "inSettingsEditor && settingsTocRowFocus" },
{ "key": "left", "command": "settings.action.focusTOC",
"when": "inSettingsEditor && settingRowFocus" },
{ "key": "shift+f9", "command": "settings.action.showContextMenu",
"when": "inSettingsEditor" },
{ "key": "ctrl+; ctrl+x", "command": "testing.cancelRun" },
{ "key": "ctrl+; ctrl+shift+a", "command": "testing.coverageAll" },
{ "key": "ctrl+; ctrl+shift+c", "command": "testing.coverageAtCursor",
"when": "editorTextFocus" },
{ "key": "ctrl+; ctrl+shift+f", "command": "testing.coverageCurrentFile",
"when": "editorTextFocus" },
{ "key": "ctrl+; ctrl+shift+l", "command": "testing.coverageLastRun" },
{ "key": "ctrl+; ctrl+a", "command": "testing.debugAll" },
{ "key": "ctrl+; ctrl+c", "command": "testing.debugAtCursor",
"when": "editorTextFocus" },
{ "key": "ctrl+; ctrl+f", "command": "testing.debugCurrentFile",
"when": "editorTextFocus" },
{ "key": "ctrl+; ctrl+e", "command": "testing.debugFailTests" },
{ "key": "ctrl+; ctrl+l", "command": "testing.debugLastRun" },
{ "key": "ctrl+; ctrl+m", "command": "testing.openOutputPeek" },
{ "key": "ctrl+; e", "command": "testing.reRunFailTests" },
{ "key": "ctrl+; l", "command": "testing.reRunLastRun" },
{ "key": "ctrl+; ctrl+r", "command": "testing.refreshTests",
"when": "testing.canRefresh" },
{ "key": "ctrl+; a", "command": "testing.runAll" },
{ "key": "ctrl+; c", "command": "testing.runAtCursor",
"when": "editorTextFocus" },
{ "key": "ctrl+; f", "command": "testing.runCurrentFile",
"when": "editorTextFocus" },
{ "key": "ctrl+; ctrl+o", "command": "testing.showMostRecentOutput",
"when": "testing.hasAnyResults" },
{ "key": "ctrl+; ctrl+shift+i", "command": "testing.toggleInlineCoverage" },
{ "key": "ctrl+; ctrl+i", "command": "testing.toggleInlineTestOutput" },
{ "key": "alt+h", "command": "testing.toggleTestingPeekHistory",
"when": "testing.isPeekVisible" },
{ "key": "alt+c", "command": "toggleSearchCaseSensitive",
"when": "searchViewletFocus" },
{ "key": "alt+c", "command": "toggleSearchEditorCaseSensitive",
"when": "inSearchEditor && searchInputBoxFocus" },
{ "key": "alt+l", "command": "toggleSearchEditorContextLines",
"when": "inSearchEditor" },
{ "key": "alt+r", "command": "toggleSearchEditorRegex",
"when": "inSearchEditor && searchInputBoxFocus" },
{ "key": "alt+w", "command": "toggleSearchEditorWholeWord",
"when": "inSearchEditor && searchInputBoxFocus" },
{ "key": "alt+p", "command": "toggleSearchPreserveCase",
"when": "searchViewletFocus" },
{ "key": "alt+r", "command": "toggleSearchRegex",
"when": "searchViewletFocus" },
{ "key": "alt+w", "command": "toggleSearchWholeWord",
"when": "searchViewletFocus" },
{ "key": "ctrl+alt+win+n", "command": "welcome.showNewFileEntries" },
{ "key": "ctrl+down", "command": "widgetNavigation.focusNext",
"when": "inputFocus && navigableContainerFocused || navigableContainerFocused && treestickyScrollFocused || navigableContainerFocused && !listFocus || navigableContainerFocused && listScrollAtBoundary == 'both' || navigableContainerFocused && listScrollAtBoundary == 'bottom'" },
{ "key": "ctrl+up", "command": "widgetNavigation.focusPrevious",
"when": "inputFocus && navigableContainerFocused || navigableContainerFocused && treestickyScrollFocused || navigableContainerFocused && !listFocus || navigableContainerFocused && listScrollAtBoundary == 'both' || navigableContainerFocused && listScrollAtBoundary == 'top'" },
{ "key": "alt+backspace", "command": "workbench.action.chat.cancel" },
{ "key": "ctrl+down", "command": "workbench.action.chat.focusInput",
"when": "inChat && !inChatInput && !quickChatHasFocus" },
{ "key": "ctrl+up", "command": "workbench.action.chat.focusInput",
"when": "inChat && quickChatHasFocus && !inChatInput" },
{ "key": "ctrl+i", "command": "workbench.action.chat.holdToVoiceChatInChatView",
"when": "chatIsEnabled && hasSpeechProvider && !chatSessionRequestInProgress && !editorFocus && !inChatInput && !inlineChatFocused && !notebookEditorFocused" },
{ "key": "ctrl+l", "command": "workbench.action.chat.newChat",
"when": "chatIsEnabled && inChat" },
{ "key": "ctrl+alt+pagedown", "command": "workbench.action.chat.nextCodeBlock",
"when": "chatIsEnabled && inChat" },
{ "key": "ctrl+f9", "command": "workbench.action.chat.nextFileTree",
"when": "chatIsEnabled && inChat" },
{ "key": "ctrl+alt+i", "command": "workbench.action.chat.open" },
{ "key": "ctrl+alt+pageup", "command": "workbench.action.chat.previousCodeBlock",
"when": "chatIsEnabled && inChat" },
{ "key": "ctrl+shift+f9", "command": "workbench.action.chat.previousFileTree",
"when": "chatIsEnabled && inChat" },
{ "key": "delete", "command": "workbench.action.chat.remove",
"when": "inChat && !inChatInput" },
{ "key": "ctrl+shift+enter", "command": "workbench.action.chat.sendToNewChat",
"when": "chatInputHasText && inChatInput && !chatSessionRequestInProgress" },
{ "key": "ctrl+i", "command": "workbench.action.chat.startVoiceChat",
"when": "chatIsEnabled && hasSpeechProvider && inChatInput && !chatSessionRequestInProgress && !editorFocus && !notebookEditorFocused && !scopedVoiceChatGettingReady && !speechToTextInProgress && !terminalChatActiveRequest || chatIsEnabled && hasSpeechProvider && inlineChatFocused && !chatSessionRequestInProgress && !editorFocus && !notebookEditorFocused && !scopedVoiceChatGettingReady && !speechToTextInProgress && !terminalChatActiveRequest" },
{ "key": "ctrl+i", "command": "workbench.action.chat.stopListeningAndSubmit",
"when": "inChatInput && voiceChatInProgress && scopedVoiceChatInProgress == 'editor' || inChatInput && voiceChatInProgress && scopedVoiceChatInProgress == 'inline' || inChatInput && voiceChatInProgress && scopedVoiceChatInProgress == 'quick' || inChatInput && voiceChatInProgress && scopedVoiceChatInProgress == 'terminal' || inChatInput && voiceChatInProgress && scopedVoiceChatInProgress == 'view' || inlineChatFocused && voiceChatInProgress && scopedVoiceChatInProgress == 'editor' || inlineChatFocused && voiceChatInProgress && scopedVoiceChatInProgress == 'inline' || inlineChatFocused && voiceChatInProgress && scopedVoiceChatInProgress == 'quick' || inlineChatFocused && voiceChatInProgress && scopedVoiceChatInProgress == 'terminal' || inlineChatFocused && voiceChatInProgress && scopedVoiceChatInProgress == 'view'" },
{ "key": "ctrl+w", "command": "workbench.action.closeActiveEditor" },
{ "key": "ctrl+f4", "command": "workbench.action.closeActiveEditor" },
{ "key": "ctrl+k ctrl+w", "command": "workbench.action.closeAllEditors" },
{ "key": "ctrl+k ctrl+shift+w", "command": "workbench.action.closeAllGroups" },
{ "key": "ctrl+k w", "command": "workbench.action.closeEditorsInGroup" },
{ "key": "ctrl+k f", "command": "workbench.action.closeFolder",
"when": "emptyWorkspaceSupport && workbenchState != 'empty'" },
{ "key": "ctrl+w", "command": "workbench.action.closeGroup",
"when": "activeEditorGroupEmpty && multipleEditorGroups" },
{ "key": "ctrl+f4", "command": "workbench.action.closeGroup",
"when": "activeEditorGroupEmpty && multipleEditorGroups" },
{ "key": "shift+escape", "command": "workbench.action.closeQuickOpen",
"when": "inQuickOpen" },
{ "key": "escape", "command": "workbench.action.closeQuickOpen",
"when": "inQuickOpen" },
{ "key": "ctrl+k u", "command": "workbench.action.closeUnmodifiedEditors" },
{ "key": "ctrl+shift+w", "command": "workbench.action.closeWindow" },
{ "key": "alt+f4", "command": "workbench.action.closeWindow" },
{ "key": "alt+f5", "command": "workbench.action.compareEditor.nextChange",
"when": "textCompareEditorVisible" },
{ "key": "ctrl+k shift+o", "command": "workbench.action.compareEditor.openSide",
"when": "inDiffEditor" },
{ "key": "shift+alt+f5", "command": "workbench.action.compareEditor.previousChange",
"when": "textCompareEditorVisible" },
{ "key": "ctrl+k o", "command": "workbench.action.copyEditorToNewWindow",
"when": "activeEditor" },
{ "key": "shift+f5", "command": "workbench.action.debug.disconnect",
"when": "focusedSessionIsAttach && inDebugMode" },
{ "key": "ctrl+shift+f5", "command": "workbench.action.debug.restart",
"when": "inDebugMode" },
{ "key": "ctrl+f5", "command": "workbench.action.debug.run",
"when": "debuggersAvailable && debugState != 'initializing'" },
{ "key": "f5", "command": "workbench.action.debug.start",
"when": "debuggersAvailable && debugState == 'inactive'" },
{ "key": "ctrl+f11", "command": "workbench.action.debug.stepIntoTarget",
"when": "inDebugMode && stepIntoTargetsSupported && debugState == 'stopped'" },
{ "key": "shift+f11", "command": "workbench.action.debug.stepOut",
"when": "debugState == 'stopped'" },
{ "key": "f10", "command": "workbench.action.debug.stepOver",
"when": "debugState == 'stopped'" },
{ "key": "shift+f5", "command": "workbench.action.debug.stop",
"when": "inDebugMode && !focusedSessionIsAttach" },
{ "key": "ctrl+k m", "command": "workbench.action.editor.changeLanguageMode",
"when": "!notebookEditorFocused" },
{ "key": "alt+`", "command": "workbench.action.editorDictation.start",
"when": "hasSpeechProvider && !editorReadonly && !speechToTextInProgress" },
{ "key": "ctrl+alt+v", "command": "workbench.action.editorDictation.start",
"when": "hasSpeechProvider && !editorReadonly && !speechToTextInProgress" },
{ "key": "ctrl+k p", "command": "workbench.action.files.copyPathOfActiveFile" },
{ "key": "ctrl+n", "command": "workbench.action.files.newUntitledFile" },
{ "key": "ctrl+o", "command": "workbench.action.files.openFile",
"when": "true" },
{ "key": "ctrl+o", "command": "workbench.action.files.openFileFolder",
"when": "isMacNative && openFolderWorkspaceSupport" },
{ "key": "ctrl+k ctrl+o", "command": "workbench.action.files.openFolder",
"when": "openFolderWorkspaceSupport" },
{ "key": "ctrl+o", "command": "workbench.action.files.openFolderViaWorkspace",
"when": "!openFolderWorkspaceSupport && workbenchState == 'workspace'" },
{ "key": "ctrl+o", "command": "workbench.action.files.openLocalFile",
"when": "remoteFileDialogVisible" },
{ "key": "ctrl+k ctrl+o", "command": "workbench.action.files.openLocalFolder",
"when": "remoteFileDialogVisible" },
{ "key": "ctrl+k r", "command": "workbench.action.files.revealActiveFileInWindows" },
{ "key": "ctrl+s", "command": "workbench.action.files.save" },
{ "key": "ctrl+shift+s", "command": "workbench.action.files.saveAs" },
{ "key": "ctrl+shift+s", "command": "workbench.action.files.saveLocalFile",
"when": "remoteFileDialogVisible" },
{ "key": "ctrl+k ctrl+shift+s", "command": "workbench.action.files.saveWithoutFormatting" },
{ "key": "ctrl+shift+f", "command": "workbench.action.findInFiles" },
{ "key": "ctrl+k ctrl+up", "command": "workbench.action.focusAboveGroup" },
{ "key": "ctrl+k ctrl+down", "command": "workbench.action.focusBelowGroup" },
{ "key": "ctrl+8", "command": "workbench.action.focusEighthEditorGroup" },
{ "key": "ctrl+5", "command": "workbench.action.focusFifthEditorGroup" },
{ "key": "ctrl+1", "command": "workbench.action.focusFirstEditorGroup" },
{ "key": "ctrl+4", "command": "workbench.action.focusFourthEditorGroup" },
{ "key": "ctrl+k ctrl+left", "command": "workbench.action.focusLeftGroup" },
{ "key": "f6", "command": "workbench.action.focusNextPart" },
{ "key": "shift+f6", "command": "workbench.action.focusPreviousPart" },
{ "key": "ctrl+k ctrl+right", "command": "workbench.action.focusRightGroup" },
{ "key": "ctrl+2", "command": "workbench.action.focusSecondEditorGroup" },
{ "key": "ctrl+7", "command": "workbench.action.focusSeventhEditorGroup" },
{ "key": "ctrl+0", "command": "workbench.action.focusSideBar" },
{ "key": "ctrl+6", "command": "workbench.action.focusSixthEditorGroup" },
{ "key": "ctrl+3", "command": "workbench.action.focusThirdEditorGroup" },
{ "key": "ctrl+g", "command": "workbench.action.gotoLine" },
{ "key": "ctrl+shift+o", "command": "workbench.action.gotoSymbol",
"when": "!accessibilityHelpIsShown && !accessibleViewIsShown" },
{ "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": "ctrl+k ctrl+shift+\\", "command": "workbench.action.joinEditorInGroup",
"when": "sideBySideEditorActive" },
{ "key": "ctrl+k enter", "command": "workbench.action.keepEditor" },
{ "key": "ctrl+k ctrl+r", "command": "workbench.action.keybindingsReference" },
{ "key": "ctrl+9", "command": "workbench.action.lastEditorInGroup" },
{ "key": "alt+0", "command": "workbench.action.lastEditorInGroup" },
{ "key": "ctrl+k down", "command": "workbench.action.moveActiveEditorGroupDown" },
{ "key": "ctrl+k left", "command": "workbench.action.moveActiveEditorGroupLeft" },
{ "key": "ctrl+k right", "command": "workbench.action.moveActiveEditorGroupRight" },
{ "key": "ctrl+k up", "command": "workbench.action.moveActiveEditorGroupUp" },
{ "key": "ctrl+shift+pageup", "command": "workbench.action.moveEditorLeftInGroup" },
{ "key": "ctrl+shift+pagedown", "command": "workbench.action.moveEditorRightInGroup" },
{ "key": "shift+alt+1", "command": "workbench.action.moveEditorToFirstGroup" },
{ "key": "shift+alt+9", "command": "workbench.action.moveEditorToLastGroup" },
{ "key": "ctrl+alt+right", "command": "workbench.action.moveEditorToNextGroup" },
{ "key": "ctrl+alt+left", "command": "workbench.action.moveEditorToPreviousGroup" },
{ "key": "alt+left", "command": "workbench.action.navigateBack",
"when": "canNavigateBack" },
{ "key": "alt+right", "command": "workbench.action.navigateForward",
"when": "canNavigateForward" },
{ "key": "ctrl+k ctrl+q", "command": "workbench.action.navigateToLastEditLocation" },
{ "key": "ctrl+shift+n", "command": "workbench.action.newWindow" },
{ "key": "ctrl+pagedown", "command": "workbench.action.nextEditor" },
{ "key": "ctrl+k ctrl+pagedown", "command": "workbench.action.nextEditorInGroup" },
{ "key": "alt+1", "command": "workbench.action.openEditorAtIndex1" },
{ "key": "alt+2", "command": "workbench.action.openEditorAtIndex2" },
{ "key": "alt+3", "command": "workbench.action.openEditorAtIndex3" },
{ "key": "alt+4", "command": "workbench.action.openEditorAtIndex4" },
{ "key": "alt+5", "command": "workbench.action.openEditorAtIndex5" },
{ "key": "alt+6", "command": "workbench.action.openEditorAtIndex6" },
{ "key": "alt+7", "command": "workbench.action.openEditorAtIndex7" },
{ "key": "alt+8", "command": "workbench.action.openEditorAtIndex8" },
{ "key": "alt+9", "command": "workbench.action.openEditorAtIndex9" },
{ "key": "ctrl+k ctrl+s", "command": "workbench.action.openGlobalKeybindings" },
{ "key": "ctrl+r", "command": "workbench.action.openRecent" },
{ "key": "ctrl+,", "command": "workbench.action.openSettings" },
{ "key": "ctrl+shift+u", "command": "workbench.action.output.toggleOutput",
"when": "workbench.panel.output.active" },
{ "key": "ctrl+k shift+enter", "command": "workbench.action.pinEditor",
"when": "!activeEditorIsPinned" },
{ "key": "ctrl+pageup", "command": "workbench.action.previousEditor" },
{ "key": "ctrl+k ctrl+pageup", "command": "workbench.action.previousEditorInGroup" },
{ "key": "ctrl+e", "command": "workbench.action.quickOpen" },
{ "key": "ctrl+p", "command": "workbench.action.quickOpen" },
{ "key": "ctrl+shift+tab", "command": "workbench.action.quickOpenLeastRecentlyUsedEditorInGroup",
"when": "!activeEditorGroupEmpty" },
{ "key": "ctrl+tab", "command": "workbench.action.quickOpenPreviousRecentlyUsedEditorInGroup",
"when": "!activeEditorGroupEmpty" },
{ "key": "ctrl+q", "command": "workbench.action.quickOpenView" },
{ "key": "ctrl+shift+i", "command": "workbench.action.quickchat.toggle",
"when": "chatIsEnabled" },
{ "key": "ctrl+alt+o", "command": "workbench.action.remote.showMenu" },
{ "key": "ctrl+shift+t", "command": "workbench.action.reopenClosedEditor" },
{ "key": "ctrl+shift+h", "command": "workbench.action.replaceInFiles" },
{ "key": "ctrl+shift+j", "command": "workbench.action.search.toggleQueryDetails",
"when": "inSearchEditor || searchViewletFocus" },
{ "key": "ctrl+k ctrl+t", "command": "workbench.action.selectTheme" },
{ "key": "ctrl+k ctrl+p", "command": "workbench.action.showAllEditors" },
{ "key": "ctrl+t", "command": "workbench.action.showAllSymbols" },
{ "key": "f1", "command": "workbench.action.showCommands" },
{ "key": "ctrl+shift+p", "command": "workbench.action.showCommands" },
{ "key": "ctrl+\\", "command": "workbench.action.splitEditor" },
{ "key": "ctrl+k ctrl+\\", "command": "workbench.action.splitEditorDown" },
{ "key": "ctrl+k ctrl+shift+\\", "command": "workbench.action.splitEditorInGroup",
"when": "activeEditorCanSplitInGroup" },
{ "key": "ctrl+k ctrl+\\", "command": "workbench.action.splitEditorLeft" },
{ "key": "ctrl+k ctrl+\\", "command": "workbench.action.splitEditorOrthogonal" },
{ "key": "ctrl+k ctrl+\\", "command": "workbench.action.splitEditorRight" },
{ "key": "ctrl+k ctrl+\\", "command": "workbench.action.splitEditorUp" },
{ "key": "ctrl+shift+b", "command": "workbench.action.tasks.build",
"when": "taskCommandsRegistered" },
{ "key": "shift+escape", "command": "workbench.action.terminal.chat.close",
"when": "terminalChatFocus && terminalChatVisible" },
{ "key": "escape", "command": "workbench.action.terminal.chat.close",
"when": "terminalChatFocus && terminalChatVisible" },
{ "key": "ctrl+i", "command": "workbench.action.terminal.chat.focusInput",
"when": "terminalChatFocus && !inlineChatFocused" },
{ "key": "ctrl+up", "command": "workbench.action.terminal.chat.focusInput",
"when": "terminalChatFocus && !inlineChatFocused" },
{ "key": "ctrl+down", "command": "workbench.action.terminal.chat.focusResponse",
"when": "terminalChatFocus" },
{ "key": "ctrl+alt+enter", "command": "workbench.action.terminal.chat.insertCommand",
"when": "terminalChatResponseContainsCodeBlock && terminalHasBeenCreated && !terminalChatActiveRequest && !terminalChatResponseContainsMultipleCodeBlocks || terminalChatResponseContainsCodeBlock && terminalProcessSupported && !terminalChatActiveRequest && !terminalChatResponseContainsMultipleCodeBlocks" },
{ "key": "alt+enter", "command": "workbench.action.terminal.chat.insertCommand",
"when": "terminalChatResponseContainsCodeBlock && terminalHasBeenCreated && !terminalChatActiveRequest && !terminalChatResponseContainsMultipleCodeBlocks || terminalChatResponseContainsCodeBlock && terminalProcessSupported && !terminalChatActiveRequest && !terminalChatResponseContainsMultipleCodeBlocks" },
{ "key": "ctrl+alt+enter", "command": "workbench.action.terminal.chat.insertFirstCommand",
"when": "terminalChatResponseContainsMultipleCodeBlocks && terminalHasBeenCreated && !terminalChatActiveRequest || terminalChatResponseContainsMultipleCodeBlocks && terminalProcessSupported && !terminalChatActiveRequest" },
{ "key": "alt+enter", "command": "workbench.action.terminal.chat.insertFirstCommand",
"when": "terminalChatResponseContainsMultipleCodeBlocks && terminalHasBeenCreated && !terminalChatActiveRequest || terminalChatResponseContainsMultipleCodeBlocks && terminalProcessSupported && !terminalChatActiveRequest" },
{ "key": "enter", "command": "workbench.action.terminal.chat.makeRequest",
"when": "terminalChatFocus && terminalHasBeenCreated && !inlineChatEmpty && !terminalChatActiveRequest || terminalChatFocus && terminalProcessSupported && !inlineChatEmpty && !terminalChatActiveRequest" },
{ "key": "down", "command": "workbench.action.terminal.chat.nextFromHistory",
"when": "terminalChatFocus" },
{ "key": "up", "command": "workbench.action.terminal.chat.previousFromHistory",
"when": "terminalChatFocus" },
{ "key": "ctrl+enter", "command": "workbench.action.terminal.chat.runCommand",
"when": "terminalChatResponseContainsCodeBlock && terminalHasBeenCreated && !terminalChatActiveRequest && !terminalChatResponseContainsMultipleCodeBlocks || terminalChatResponseContainsCodeBlock && terminalProcessSupported && !terminalChatActiveRequest && !terminalChatResponseContainsMultipleCodeBlocks" },
{ "key": "ctrl+enter", "command": "workbench.action.terminal.chat.runFirstCommand",
"when": "terminalChatResponseContainsMultipleCodeBlocks && terminalHasBeenCreated && !terminalChatActiveRequest || terminalChatResponseContainsMultipleCodeBlocks && terminalProcessSupported && !terminalChatActiveRequest" },
{ "key": "escape", "command": "workbench.action.terminal.clearSelection",
"when": "terminalFocusInAny && terminalHasBeenCreated && terminalTextSelected && !terminalFindVisible || terminalFocusInAny && terminalProcessSupported && terminalTextSelected && !terminalFindVisible" },
{ "key": "ctrl+c", "command": "workbench.action.terminal.copyAndClearSelection",
"when": "terminalTextSelectedInFocused || terminalFocus && terminalHasBeenCreated && terminalTextSelected || terminalFocus && terminalProcessSupported && terminalTextSelected || terminalFocus && terminalTextSelected && terminalTextSelectedInFocused || terminalHasBeenCreated && terminalTextSelected && terminalTextSelectedInFocused || terminalProcessSupported && terminalTextSelected && terminalTextSelectedInFocused" },
{ "key": "ctrl+shift+c", "command": "workbench.action.terminal.copySelection",
"when": "terminalTextSelectedInFocused || terminalFocus && terminalHasBeenCreated && terminalTextSelected || terminalFocus && terminalProcessSupported && terminalTextSelected || terminalFocus && terminalTextSelected && terminalTextSelectedInFocused || terminalHasBeenCreated && terminalTextSelected && terminalTextSelectedInFocused || terminalProcessSupported && terminalTextSelected && terminalTextSelectedInFocused" },
{ "key": "f3", "command": "workbench.action.terminal.findNext",
"when": "terminalFindFocused && terminalHasBeenCreated || terminalFindFocused && terminalProcessSupported || terminalFocusInAny && terminalHasBeenCreated || terminalFocusInAny && terminalProcessSupported" },
{ "key": "shift+enter", "command": "workbench.action.terminal.findNext",
"when": "terminalFindInputFocused && terminalHasBeenCreated || terminalFindInputFocused && terminalProcessSupported" },
{ "key": "shift+f3", "command": "workbench.action.terminal.findPrevious",
"when": "terminalFindFocused && terminalHasBeenCreated || terminalFindFocused && terminalProcessSupported || terminalFocusInAny && terminalHasBeenCreated || terminalFocusInAny && terminalProcessSupported" },
{ "key": "enter", "command": "workbench.action.terminal.findPrevious",
"when": "terminalFindInputFocused && terminalHasBeenCreated || terminalFindInputFocused && terminalProcessSupported" },
{ "key": "ctrl+down", "command": "workbench.action.terminal.focus",
"when": "accessibilityModeEnabled && accessibleViewOnLastLine && terminalHasBeenCreated && accessibleViewCurrentProviderId == 'terminal' || accessibilityModeEnabled && accessibleViewOnLastLine && terminalProcessSupported && accessibleViewCurrentProviderId == 'terminal'" },
{ "key": "ctrl+up", "command": "workbench.action.terminal.focusAccessibleBuffer",
"when": "accessibilityModeEnabled && terminalFocus && terminalHasBeenCreated || accessibilityModeEnabled && terminalFocus && terminalProcessSupported" },
{ "key": "alt+f2", "command": "workbench.action.terminal.focusAccessibleBuffer",
"when": "accessibilityModeEnabled && terminalFocus && terminalHasBeenCreated || accessibilityModeEnabled && terminalFocus && terminalProcessSupported" },
{ "key": "ctrl+f", "command": "workbench.action.terminal.focusFind",
"when": "terminalFindFocused && terminalHasBeenCreated || terminalFindFocused && terminalProcessSupported || terminalFocusInAny && terminalHasBeenCreated || terminalFocusInAny && terminalProcessSupported" },
{ "key": "ctrl+k ctrl+i", "command": "workbench.action.terminal.focusHover",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalIsOpen || terminalFocus && terminalProcessSupported || terminalHasBeenCreated && terminalTabsFocus || terminalIsOpen && terminalTabsFocus || terminalProcessSupported && terminalTabsFocus" },
{ "key": "ctrl+pagedown", "command": "workbench.action.terminal.focusNext",
"when": "terminalFocus && terminalHasBeenCreated && !terminalEditorFocus || terminalFocus && terminalProcessSupported && !terminalEditorFocus" },
{ "key": "alt+down", "command": "workbench.action.terminal.focusNextPane",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported" },
{ "key": "alt+right", "command": "workbench.action.terminal.focusNextPane",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported" },
{ "key": "ctrl+pageup", "command": "workbench.action.terminal.focusPrevious",
"when": "terminalFocus && terminalHasBeenCreated && !terminalEditorFocus || terminalFocus && terminalProcessSupported && !terminalEditorFocus" },
{ "key": "alt+up", "command": "workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported" },
{ "key": "alt+left", "command": "workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported" },
{ "key": "ctrl+shift+\\", "command": "workbench.action.terminal.focusTabs",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported || terminalHasBeenCreated && terminalTabsFocus || terminalProcessSupported && terminalTabsFocus" },
{ "key": "ctrl+g", "command": "workbench.action.terminal.goToRecentDirectory",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported" },
{ "key": "shift+escape", "command": "workbench.action.terminal.hideFind",
"when": "terminalFindVisible && terminalFocusInAny && terminalHasBeenCreated || terminalFindVisible && terminalFocusInAny && terminalProcessSupported" },
{ "key": "escape", "command": "workbench.action.terminal.hideFind",
"when": "terminalFindVisible && terminalFocusInAny && terminalHasBeenCreated || terminalFindVisible && terminalFocusInAny && terminalProcessSupported" },
{ "key": "delete", "command": "workbench.action.terminal.killActiveTab",
"when": "terminalHasBeenCreated && terminalTabsFocus || terminalIsOpen && terminalTabsFocus || terminalProcessSupported && terminalTabsFocus" },
{ "key": "ctrl+w", "command": "workbench.action.terminal.killEditor",
"when": "terminalEditorFocus && terminalFocus && terminalHasBeenCreated || terminalEditorFocus && terminalFocus && terminalProcessSupported" },
{ "key": "ctrl+f4", "command": "workbench.action.terminal.killEditor",
"when": "terminalEditorFocus && terminalFocus && terminalHasBeenCreated || terminalEditorFocus && terminalFocus && terminalProcessSupported" },
{ "key": "ctrl+shift+`", "command": "workbench.action.terminal.new",
"when": "terminalProcessSupported || terminalWebExtensionContributedProfile" },
{ "key": "ctrl+shift+c", "command": "workbench.action.terminal.openNativeConsole",
"when": "!terminalFocus" },
{ "key": "ctrl+shift+v", "command": "workbench.action.terminal.paste",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported" },
{ "key": "ctrl+v", "command": "workbench.action.terminal.paste",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported" },
{ "key": "f2", "command": "workbench.action.terminal.renameActiveTab",
"when": "terminalHasBeenCreated && terminalTabsFocus && terminalTabsSingularSelection || terminalProcessSupported && terminalTabsFocus && terminalTabsSingularSelection" },
{ "key": "ctrl+r", "command": "workbench.action.terminal.runRecentCommand",
"when": "accessibilityModeEnabled && terminalFocus && terminalHasBeenCreated || accessibilityModeEnabled && terminalFocus && terminalProcessSupported || accessibilityModeEnabled && accessibleViewIsShown && terminalHasBeenCreated && accessibleViewCurrentProviderId == 'terminal' || accessibilityModeEnabled && accessibleViewIsShown && terminalProcessSupported && accessibleViewCurrentProviderId == 'terminal'" },
{ "key": "ctrl+alt+r", "command": "workbench.action.terminal.runRecentCommand",
"when": "terminalFocus && terminalHasBeenCreated && !accessibilityModeEnabled || terminalFocus && terminalProcessSupported && !accessibilityModeEnabled" },
{ "key": "ctrl+alt+pagedown", "command": "workbench.action.terminal.scrollDown",
"when": "terminalFocusInAny && terminalHasBeenCreated && !terminalAltBufferActive || terminalFocusInAny && terminalProcessSupported && !terminalAltBufferActive" },
{ "key": "shift+pagedown", "command": "workbench.action.terminal.scrollDownPage",
"when": "terminalFocusInAny && terminalHasBeenCreated && !terminalAltBufferActive || terminalFocusInAny && terminalProcessSupported && !terminalAltBufferActive" },
{ "key": "ctrl+end", "command": "workbench.action.terminal.scrollToBottom",
"when": "terminalFocusInAny && terminalHasBeenCreated && !terminalAltBufferActive || terminalFocusInAny && terminalProcessSupported && !terminalAltBufferActive" },
{ "key": "ctrl+end", "command": "workbench.action.terminal.scrollToBottomAccessibleView",
"when": "accessibleViewIsShown && terminalHasBeenCreated && accessibleViewCurrentProviderId == 'terminal' || accessibleViewIsShown && terminalProcessSupported && accessibleViewCurrentProviderId == 'terminal'" },
{ "key": "ctrl+down", "command": "workbench.action.terminal.scrollToNextCommand",
"when": "terminalFocus && terminalHasBeenCreated && !accessibilityModeEnabled || terminalFocus && terminalProcessSupported && !accessibilityModeEnabled" },
{ "key": "ctrl+up", "command": "workbench.action.terminal.scrollToPreviousCommand",
"when": "terminalFocus && terminalHasBeenCreated && !accessibilityModeEnabled || terminalFocus && terminalProcessSupported && !accessibilityModeEnabled" },
{ "key": "ctrl+home", "command": "workbench.action.terminal.scrollToTop",
"when": "terminalFocusInAny && terminalHasBeenCreated && !terminalAltBufferActive || terminalFocusInAny && terminalProcessSupported && !terminalAltBufferActive" },
{ "key": "ctrl+home", "command": "workbench.action.terminal.scrollToTopAccessibleView",
"when": "accessibleViewIsShown && terminalHasBeenCreated && accessibleViewCurrentProviderId == 'terminal' || accessibleViewIsShown && terminalProcessSupported && accessibleViewCurrentProviderId == 'terminal'" },
{ "key": "ctrl+alt+pageup", "command": "workbench.action.terminal.scrollUp",
"when": "terminalFocusInAny && terminalHasBeenCreated && !terminalAltBufferActive || terminalFocusInAny && terminalProcessSupported && !terminalAltBufferActive" },
{ "key": "shift+pageup", "command": "workbench.action.terminal.scrollUpPage",
"when": "terminalFocusInAny && terminalHasBeenCreated && !terminalAltBufferActive || terminalFocusInAny && terminalProcessSupported && !terminalAltBufferActive" },
{ "key": "ctrl+shift+down", "command": "workbench.action.terminal.selectToNextCommand",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported" },
{ "key": "ctrl+shift+up", "command": "workbench.action.terminal.selectToPreviousCommand",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported" },
{ "key": "ctrl+v", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus && !accessibilityModeEnabled && terminalShellType == 'pwsh'",
"args": {"text":"\u0016"} },
{ "key": "ctrl+space", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus && terminalShellIntegrationEnabled && !accessibilityModeEnabled && terminalShellType == 'pwsh'",
"args": {"text":"\u001b[24~a"} },
{ "key": "alt+space", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus && terminalShellIntegrationEnabled && !accessibilityModeEnabled && terminalShellType == 'pwsh'",
"args": {"text":"\u001b[24~b"} },
{ "key": "shift+enter", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus && terminalShellIntegrationEnabled && !accessibilityModeEnabled && terminalShellType == 'pwsh'",
"args": {"text":"\u001b[24~c"} },
{ "key": "ctrl+alt+r", "command": "workbench.action.terminal.sendSequence",
"when": "accessibilityModeEnabled && terminalFocus",
"args": {"text":"\u0012"} },
{ "key": "ctrl+alt+g", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus",
"args": {"text":"\u0007"} },
{ "key": "ctrl+backspace", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus",
"args": {"text":"\u0017"} },
{ "key": "ctrl+backspace", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus && terminalShellType == 'cmd'",
"args": {"text":"\b"} },
{ "key": "ctrl+delete", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus",
"args": {"text":"\u001bd"} },
{ "key": "ctrl+shift+2", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus",
"args": {"text":"\u0000"} },
{ "key": "ctrl+shift+6", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus",
"args": {"text":"\u001e"} },
{ "key": "ctrl+/", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus",
"args": {"text":"\u001f"} },
{ "key": "ctrl+space", "command": "workbench.action.terminal.sendSequence",
"when": "config.terminal.integrated.suggest.enabled && terminalFocus && terminalShellIntegrationEnabled && !accessibilityModeEnabled && terminalShellType == 'pwsh'",
"args": {"text":"\u001b[24~e"} },
{ "key": "ctrl+.", "command": "workbench.action.terminal.showQuickFixes",
"when": "terminalFocus" },
{ "key": "alt+z", "command": "workbench.action.terminal.sizeToContentWidth",
"when": "terminalFocus && terminalHasBeenCreated && terminalIsOpen || terminalFocus && terminalIsOpen && terminalProcessSupported" },
{ "key": "ctrl+shift+5", "command": "workbench.action.terminal.split",
"when": "terminalFocus && terminalProcessSupported || terminalFocus && terminalWebExtensionContributedProfile" },
{ "key": "ctrl+shift+5", "command": "workbench.action.terminal.splitActiveTab",
"when": "terminalProcessSupported && terminalTabsFocus" },
{ "key": "alt+c", "command": "workbench.action.terminal.toggleFindCaseSensitive",
"when": "terminalFindVisible && terminalHasBeenCreated || terminalFindVisible && terminalProcessSupported" },
{ "key": "alt+r", "command": "workbench.action.terminal.toggleFindRegex",
"when": "terminalFindVisible && terminalHasBeenCreated || terminalFindVisible && terminalProcessSupported" },
{ "key": "alt+w", "command": "workbench.action.terminal.toggleFindWholeWord",
"when": "terminalFindVisible && terminalHasBeenCreated || terminalFindVisible && terminalProcessSupported" },
{ "key": "ctrl+`", "command": "workbench.action.terminal.toggleTerminal",
"when": "terminal.active" },
{ "key": "ctrl+alt+b", "command": "workbench.action.toggleAuxiliaryBar" },
{ "key": "shift+alt+0", "command": "workbench.action.toggleEditorGroupLayout" },
{ "key": "f11", "command": "workbench.action.toggleFullScreen",
"when": "!isIOS" },
{ "key": "ctrl+k ctrl+m", "command": "workbench.action.toggleMaximizeEditorGroup",
"when": "editorPartMaximizedEditorGroup || editorPartMultipleEditorGroups" },
{ "key": "ctrl+j", "command": "workbench.action.togglePanel" },
{ "key": "ctrl+b", "command": "workbench.action.toggleSidebarVisibility" },
{ "key": "ctrl+k z", "command": "workbench.action.toggleZenMode",
"when": "!isAuxiliaryWindowFocusedContext" },
{ "key": "ctrl+k shift+enter", "command": "workbench.action.unpinEditor",
"when": "activeEditorIsPinned" },
{ "key": "ctrl+numpad_add", "command": "workbench.action.zoomIn" },
{ "key": "ctrl+shift+=", "command": "workbench.action.zoomIn" },
{ "key": "ctrl+=", "command": "workbench.action.zoomIn" },
{ "key": "ctrl+numpad_subtract", "command": "workbench.action.zoomOut" },
{ "key": "ctrl+shift+-", "command": "workbench.action.zoomOut" },
{ "key": "ctrl+-", "command": "workbench.action.zoomOut" },
{ "key": "ctrl+numpad0", "command": "workbench.action.zoomReset" },
{ "key": "ctrl+shift+m", "command": "workbench.actions.view.problems",
"when": "workbench.panel.markers.view.active" },
{ "key": "escape", "command": "workbench.banner.focusBanner",
"when": "bannerFocused" },
{ "key": "down", "command": "workbench.banner.focusNextAction",
"when": "bannerFocused" },
{ "key": "right", "command": "workbench.banner.focusNextAction",
"when": "bannerFocused" },
{ "key": "up", "command": "workbench.banner.focusPreviousAction",
"when": "bannerFocused" },
{ "key": "left", "command": "workbench.banner.focusPreviousAction",
"when": "bannerFocused" },
{ "key": "ctrl+shift+y", "command": "workbench.debug.action.toggleRepl",
"when": "workbench.panel.repl.view.active" },
{ "key": "ctrl+k c", "command": "workbench.files.action.compareWithClipboard" },
{ "key": "ctrl+k d", "command": "workbench.files.action.compareWithSaved" },
{ "key": "ctrl+k e", "command": "workbench.files.action.focusOpenEditorsView",
"when": "workbench.explorer.openEditorsView.active" },
{ "key": "escape", "command": "workbench.statusBar.clearFocus",
"when": "statusBarFocused" },
{ "key": "home", "command": "workbench.statusBar.focusFirst",
"when": "statusBarFocused" },
{ "key": "end", "command": "workbench.statusBar.focusLast",
"when": "statusBarFocused" },
{ "key": "down", "command": "workbench.statusBar.focusNext",
"when": "statusBarFocused" },
{ "key": "right", "command": "workbench.statusBar.focusNext",
"when": "statusBarFocused" },
{ "key": "up", "command": "workbench.statusBar.focusPrevious",
"when": "statusBarFocused" },
{ "key": "left", "command": "workbench.statusBar.focusPrevious",
"when": "statusBarFocused" },
{ "key": "ctrl+shift+d", "command": "workbench.view.debug",
"when": "viewContainer.workbench.view.debug.enabled" },
{ "key": "ctrl+shift+e", "command": "workbench.view.explorer",
"when": "viewContainer.workbench.view.explorer.enabled" },
{ "key": "ctrl+shift+x", "command": "workbench.view.extensions",
"when": "viewContainer.workbench.view.extensions.enabled" },
{ "key": "ctrl+shift+g", "command": "workbench.view.scm",
"when": "workbench.scm.active" },
{ "key": "ctrl+shift+f", "command": "workbench.view.search",
"when": "workbench.view.search.active && neverMatch =~ /doesNotMatch/" },
{ "key": "ctrl+right", "command": "breadcrumbs.focusNextWithPicker",
"when": "breadcrumbsActive && breadcrumbsVisible && listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "ctrl+left", "command": "breadcrumbs.focusPreviousWithPicker",
"when": "breadcrumbsActive && breadcrumbsVisible && listFocus && !inputFocus && !treestickyScrollFocused" },
{ "key": "escape", "command": "breadcrumbs.selectEditor",
"when": "breadcrumbsActive && breadcrumbsVisible" },
{ "key": "tab", "command": "editor.action.inlineSuggest.jump",
"when": "inlineEditIsVisible && !cursorAtInlineEdit && !editor.hasSelection && !editorHoverFocused && !editorTabMovesFocus && !suggestWidgetVisible" },
{ "key": "f3", "command": "list.find.replInputFocus",
"when": "view == 'workbench.panel.repl.view'" },
{ "key": "ctrl+alt+f", "command": "list.find.replInputFocus",
"when": "view == 'workbench.panel.repl.view'" },
{ "key": "down", "command": "notebook.cell.nullAction",
"when": "notebookOutputInputFocused" },
{ "key": "up", "command": "notebook.cell.nullAction",
"when": "notebookOutputInputFocused" },
{ "key": "ctrl+a", "command": "notebook.cell.output.selectAll",
"when": "notebookEditorFocused && notebookOutputFocused" },
{ "key": "ctrl+pagedown", "command": "notebook.focusNextEditor",
"when": "accessibilityModeEnabled && notebookCellEditorFocused" },
{ "key": "ctrl+pageup", "command": "notebook.focusPreviousEditor",
"when": "accessibilityModeEnabled && notebookCellEditorFocused" },
{ "key": "ctrl+k down", "command": "views.moveViewDown",
"when": "focusedView != ''" },
{ "key": "ctrl+k left", "command": "views.moveViewLeft",
"when": "focusedView != ''" },
{ "key": "ctrl+k right", "command": "views.moveViewRight",
"when": "focusedView != ''" },
{ "key": "ctrl+k up", "command": "views.moveViewUp",
"when": "focusedView != ''" },
{ "key": "ctrl+pagedown", "command": "workbench.action.debug.nextConsole",
"when": "inDebugRepl" },
{ "key": "ctrl+pageup", "command": "workbench.action.debug.prevConsole",
"when": "inDebugRepl" },
{ "key": "tab", "command": "workbench.action.terminal.acceptSelectedSuggestion",
"when": "terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible || terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible" },
{ "key": "enter", "command": "workbench.action.terminal.acceptSelectedSuggestionEnter",
"when": "terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible && config.terminal.integrated.suggest.runOnEnter != 'ignore' || terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible && config.terminal.integrated.suggest.runOnEnter != 'ignore'" },
{ "key": "escape", "command": "workbench.action.terminal.hideSuggestWidget",
"when": "terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible || terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible" },
{ "key": "ctrl+shift+o", "command": "workbench.action.terminal.openDetectedLink",
"when": "terminalFocus && terminalHasBeenCreated" },
{ "key": "ctrl+shift+g", "command": "workbench.action.terminal.openDetectedLink",
"when": "accessibleViewIsShown && terminalHasBeenCreated && accessibleViewCurrentProviderId == 'terminal'" },
{ "key": "pagedown", "command": "workbench.action.terminal.selectNextPageSuggestion",
"when": "terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible || terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible" },
{ "key": "down", "command": "workbench.action.terminal.selectNextSuggestion",
"when": "terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible || terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible" },
{ "key": "pageup", "command": "workbench.action.terminal.selectPrevPageSuggestion",
"when": "terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible || terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible" },
{ "key": "up", "command": "workbench.action.terminal.selectPrevSuggestion",
"when": "terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible || terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible" },
{ "key": "f6", "command": "workbench.action.debug.pause",
"when": "debugState == 'running'" },
{ "key": "alt+down", "command": "workbench.action.terminal.accessibleBufferGoToNextCommand",
"when": "accessibleViewIsShown && accessibleViewCurrentProviderId == 'terminal' || accessibleViewIsShown && terminalHasBeenCreated && accessibleViewCurrentProviderId == 'terminal' || accessibleViewIsShown && terminalProcessSupported && accessibleViewCurrentProviderId == 'terminal'" },
{ "key": "alt+up", "command": "workbench.action.terminal.accessibleBufferGoToPreviousCommand",
"when": "accessibleViewIsShown && terminalHasBeenCreated && accessibleViewCurrentProviderId == 'terminal' || accessibleViewIsShown && terminalProcessSupported && accessibleViewCurrentProviderId == 'terminal'" },
{ "key": "f2", "command": "debug.renameWatchExpression",
"when": "watchExpressionsFocused" },
{ "key": "f2", "command": "debug.setVariable",
"when": "variablesFocused" },
{ "key": "space", "command": "debug.toggleBreakpoint",
"when": "breakpointsFocused && !inputFocus" },
{ "key": "ctrl+up", "command": "interactive.history.focus",
"when": "isCompositeNotebook && !notebookEditorFocused && interactiveInputCursorAtBoundary != 'bottom' && interactiveInputCursorAtBoundary != 'none'" },
{ "key": "ctrl+down", "command": "interactive.input.focus",
"when": "isCompositeNotebook && notebookEditorFocused" },
{ "key": "escape", "command": "notebook.cell.quitEdit",
"when": "notebookEditorFocused && notebookOutputFocused" },
{ "key": "ctrl+v", "command": "filesExplorer.paste",
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceReadonly && !inputFocus && !treeFindOpen" },
{ "key": "shift+delete", "command": "deleteFile",
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceReadonly && !inputFocus && !treeFindOpen" },
{ "key": "delete", "command": "deleteFile",
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceMoveableToTrash && !explorerResourceReadonly && !inputFocus && !treeFindOpen" },
{ "key": "ctrl+shift+.", "command": "editor.action.accessibleViewGoToSymbol",
"when": "accessibilityHelpIsShown && accessibleViewGoToSymbolSupported || accessibleViewGoToSymbolSupported && accessibleViewIsShown" },
{ "key": "ctrl+shift+o", "command": "editor.action.accessibleViewGoToSymbol",
"when": "accessibilityHelpIsShown && accessibleViewGoToSymbolSupported || accessibleViewGoToSymbolSupported && accessibleViewIsShown" },
{ "key": "ctrl+e", "command": "editor.action.toggleScreenReaderAccessibilityMode",
"when": "accessibilityHelpIsShown" },
{ "key": "shift+alt+f1", "command": "editor.action.toggleScreenReaderAccessibilityMode" },
{ "key": "escape", "command": "editor.closeCallHierarchy",
"when": "callHierarchyVisible && !config.editor.stablePeek" },
{ "key": "escape", "command": "editor.closeTypeHierarchy",
"when": "typeHierarchyVisible && !config.editor.stablePeek" },
{ "key": "enter", "command": "explorer.openAndPassFocus",
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsFolder && !inputFocus" },
{ "key": "escape", "command": "filesExplorer.cancelCut",
"when": "explorerResourceCut && filesExplorerFocus && foldersViewVisible && !inputFocus" },
{ "key": "ctrl+c", "command": "filesExplorer.copy",
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsRoot && !inputFocus" },
{ "key": "ctrl+x", "command": "filesExplorer.cut",
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus && !treeFindOpen" },
{ "key": "space", "command": "filesExplorer.openFilePreserveFocus",
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsFolder && !inputFocus" },
{ "key": "home", "command": "firstCompressedFolder",
"when": "explorerViewletCompressedFocus && filesExplorerFocus && foldersViewVisible && !explorerViewletCompressedFirstFocus && !inputFocus" },
{ "key": "ctrl+enter", "command": "inlineChat.acceptChanges",
"when": "inlineChatHasProvider && inlineChatVisible && !inlineChatDocumentChanged || inlineChatHasProvider && inlineChatVisible && config.inlineChat.mode != 'preview'" },
{ "key": "end", "command": "lastCompressedFolder",
"when": "explorerViewletCompressedFocus && filesExplorerFocus && foldersViewVisible && !explorerViewletCompressedLastFocus && !inputFocus" },
{ "key": "delete", "command": "moveFileToTrash",
"when": "explorerResourceMoveableToTrash && filesExplorerFocus && foldersViewVisible && !explorerResourceReadonly && !inputFocus && !treeFindOpen" },
{ "key": "right", "command": "nextCompressedFolder",
"when": "explorerViewletCompressedFocus && filesExplorerFocus && foldersViewVisible && !explorerViewletCompressedLastFocus && !inputFocus" },
{ "key": "left", "command": "previousCompressedFolder",
"when": "explorerViewletCompressedFocus && filesExplorerFocus && foldersViewVisible && !explorerViewletCompressedFirstFocus && !inputFocus" },
{ "key": "delete", "command": "remote.tunnel.closeInline",
"when": "tunnelCloseable && tunnelViewFocus" },
{ "key": "ctrl+c", "command": "remote.tunnel.copyAddressInline",
"when": "tunnelViewFocus && tunnelType == 'Detected' && tunnelViewMultiSelection == 'undefined' || tunnelViewFocus && tunnelType == 'Forwarded' && tunnelViewMultiSelection == 'undefined'" },
{ "key": "f2", "command": "remote.tunnel.label",
"when": "tunnelViewFocus && tunnelType == 'Forwarded' && tunnelViewMultiSelection == 'undefined'" },
{ "key": "f2", "command": "renameFile",
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus" },
{ "key": "f5", "command": "workbench.action.debug.continue",
"when": "debugState == 'stopped'" },
{ "key": "f11", "command": "workbench.action.debug.stepInto",
"when": "debugState != 'inactive'" },
{ "key": "shift+escape", "command": "closeReferenceSearch",
"when": "editorTextFocus && referenceSearchVisible && !config.editor.stablePeek || referenceSearchVisible && !config.editor.stablePeek && !inputFocus" },
{ "key": "escape", "command": "closeReferenceSearch",
"when": "editorTextFocus && referenceSearchVisible && !config.editor.stablePeek || referenceSearchVisible && !config.editor.stablePeek && !inputFocus" },
{ "key": "left", "command": "list.stickyScroll.collapse",
"when": "treestickyScrollFocused" },
{ "key": "enter", "command": "list.stickyScrollselect",
"when": "treestickyScrollFocused" },
{ "key": "space", "command": "list.stickyScrolltoggleExpand",
"when": "treestickyScrollFocused" },
{ "key": "escape", "command": "notifications.hideList",
"when": "notificationCenterVisible" },
{ "key": "ctrl+alt+right", "command": "quickInput.acceptInBackground",
"when": "cursorAtEndOfQuickInputBox && inQuickInput && quickInputType == 'quickPick' || inQuickInput && !inputFocus && quickInputType == 'quickPick'" },
{ "key": "ctrl+right", "command": "quickInput.acceptInBackground",
"when": "cursorAtEndOfQuickInputBox && inQuickInput && quickInputType == 'quickPick' || inQuickInput && !inputFocus && quickInputType == 'quickPick'" },
{ "key": "alt+right", "command": "quickInput.acceptInBackground",
"when": "cursorAtEndOfQuickInputBox && inQuickInput && quickInputType == 'quickPick' || inQuickInput && !inputFocus && quickInputType == 'quickPick'" },
{ "key": "right", "command": "quickInput.acceptInBackground",
"when": "cursorAtEndOfQuickInputBox && inQuickInput && quickInputType == 'quickPick' || inQuickInput && !inputFocus && quickInputType == 'quickPick'" },
{ "key": "alt+left", "command": "workbench.action.quickInputBack",
"when": "inQuickOpen" },
{ "key": "ctrl+tab", "command": "workbench.action.quickOpenNavigateNextInEditorPicker",
"when": "inEditorsPicker && inQuickOpen" },
{ "key": "ctrl+e", "command": "workbench.action.quickOpenNavigateNextInFilePicker",
"when": "inFilesPicker && inQuickOpen" },
{ "key": "ctrl+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": "ctrl+shift+e", "command": "workbench.action.quickOpenNavigatePreviousInFilePicker",
"when": "inFilesPicker && inQuickOpen" },
{ "key": "ctrl+shift+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+r", "command": "workbench.action.reloadWindow",
"when": "isDevelopment" },
{ "key": "ctrl+shift+f", "command": "workbench.action.terminal.searchWorkspace",
"when": "terminalFocus && terminalProcessSupported && terminalTextSelected" },
{ "key": "ctrl+shift+i", "command": "workbench.action.toggleDevTools",
"when": "isDevelopment" },
{ "key": "escape", "command": "notifications.hideToasts",
"when": "notificationFocus && notificationToastsVisible" },
{ "key": "escape", "command": "workbench.action.chat.stopListening",
"when": "voiceChatInProgress && scopedVoiceChatInProgress == 'editor' || voiceChatInProgress && scopedVoiceChatInProgress == 'inline' || voiceChatInProgress && scopedVoiceChatInProgress == 'quick' || voiceChatInProgress && scopedVoiceChatInProgress == 'terminal' || voiceChatInProgress && scopedVoiceChatInProgress == 'view'" },
{ "key": "escape", "command": "workbench.action.chat.stopReadChatItemAloud",
"when": "scopedChatSynthesisInProgress" },
{ "key": "escape", "command": "workbench.action.editorDictation.stop",
"when": "editorDictation.inProgress" },
{ "key": "escape", "command": "workbench.action.speech.stopReadAloud",
"when": "scopedChatSynthesisInProgress && textToSpeechInProgress" },
{ "key": "f10", "command": "extension.node-debug.startWithStopOnEntry",
"when": "!inDebugMode && debugConfigurationType == 'node' || !inDebugMode && debugConfigurationType == 'pwa-extensionHost' || !inDebugMode && debugConfigurationType == 'pwa-node'" },
{ "key": "ctrl+k ctrl+alt+s", "command": "git.stageSelectedRanges",
"when": "isInDiffEditor && !operationInProgress" },
{ "key": "ctrl+shift+v", "command": "markdown.showPreview",
"when": "!notebookEditorFocused && editorLangId == 'markdown'" },
{ "key": "shift+alt+f12", "command": "references-view.findReferences",
"when": "editorHasReferenceProvider" },
{ "key": "f11", "command": "extension.node-debug.startWithStopOnEntry",
"when": "!inDebugMode && activeViewlet == 'workbench.view.debug' && debugConfigurationType == 'node' || !inDebugMode && activeViewlet == 'workbench.view.debug' && debugConfigurationType == 'pwa-extensionHost' || !inDebugMode && activeViewlet == 'workbench.view.debug' && debugConfigurationType == 'pwa-node'" },
{ "key": "ctrl+k ctrl+n", "command": "git.unstageSelectedRanges",
"when": "isInDiffEditor && !operationInProgress" },
{ "key": "ctrl+k v", "command": "markdown.showPreviewToSide",
"when": "!notebookEditorFocused && editorLangId == 'markdown'" },
{ "key": "f4", "command": "references-view.next",
"when": "reference-list.hasResult && references-view.canNavigate" },
{ "key": "ctrl+k ctrl+r", "command": "git.revertSelectedRanges",
"when": "isInDiffEditor && !operationInProgress" },
{ "key": "shift+f4", "command": "references-view.prev",
"when": "reference-list.hasResult && references-view.canNavigate" },
{ "key": "shift+alt+h", "command": "references-view.showCallHierarchy",
"when": "editorHasCallHierarchyProvider" },
{ "key": "alt+o", "command": "C_Cpp.SwitchHeaderSource",
"when": "editorTextFocus && editorLangId =~ /^(c|(cuda-)?cpp)$/ && !(config.C_Cpp.intelliSenseEngine =~ /^[dD]isabled$/)" },
{ "key": "ctrl+f1", "command": "PowerShell.ShowHelp",
"when": "editorTextFocus && editorLangId == 'powershell'" },
{ "key": "ctrl+shift+v", "command": "aws.previewStateMachine",
"when": "editorTextFocus && isCloud9 && editorLangId == 'asl' || editorTextFocus && isCloud9 && editorLangId == 'asl-yaml' || editorTextFocus && !aws.isWebExtHost && editorLangId == 'asl' || editorTextFocus && !aws.isWebExtHost && editorLangId == 'asl-yaml'" },
{ "key": "ctrl+enter", "command": "cloudcode.duetAI.generateCode",
"when": "authLoggedIn && config.cloudcode.duetAI.enable && editorTextFocus && !inGeminiDiffView && !isInDiffEditor",
"args": {"source":"keybind"} },
{ "key": "f7", "command": "cmake.build",
"when": "cmake:enableFullFeatureSet && !cmake:hideBuildCommand" },
{ "key": "escape", "command": "console-ninja.resetUncovered",
"when": "console-ninja.pro && console-ninja.started && console-ninja.uncoveredToggled && editorTextFocus" },
{ "key": "f6", "command": "cordova.build",
"when": "isWorkspaceTrusted && !inDebugMode || !config.security.workspace.trust.enabled && !inDebugMode" },
{ "key": "f4", "command": "dart.showTypeHierarchy",
"when": "!dart-code:isLsp && editorLangId == 'dart'" },
{ "key": "ctrl+'", "command": "editor.togglequotes" },
{ "key": "shift+alt+f", "command": "extension.beautifySql",
"when": "editorTextFocus && !editorReadonly && editorLangId =~ /sql/" },
{ "key": "alt+l alt+c", "command": "extension.liveServer.goOffline",
"when": "editorTextFocus" },
{ "key": "ctrl+f4", "command": "extension.node-debug.pickLoadedScript",
"when": "debugType == 'edge'" },
{ "key": "f10", "command": "extension.php-debug.startWithStopOnEntry",
"when": "!inDebugMode && debugConfigurationType == 'php'" },
{ "key": "ctrl+q", "command": "extension.querySQL" },
{ "key": "ctrl+win+up", "command": "figma.selectPreviousLayer",
"when": "figma.extensionOpen" },
{ "key": "ctrl+shift+s", "command": "ftp.save" },
{ "key": "alt+h", "command": "git.viewFileHistory" },
{ "key": "ctrl+enter", "command": "github.copilot.generate",
"when": "editorTextFocus && github.copilot.activated && !commentEditorFocused && !inInteractiveInput && !interactiveEditorFocused" },
{ "key": "left", "command": "gitlens.key.left",
"when": "gitlens:key:left" },
{ "key": "win+i", "command": "inlineChat.startWithCurrentLine",
"when": "editorFocus && github.copilot.chat.editor.enableLineTrigger && inlineChatHasProvider && !editorReadonly && !inlineChatVisible" },
{ "key": "alt+r", "command": "ionic-official.run",
"when": "explorerViewletVisible" },
{ "key": "shift+alt+u", "command": "java.projectConfiguration.update",
"when": "editorFocus" },
{ "key": "shift+alt+r", "command": "java.view.package.revealFileInOS",
"when": "focusedView == 'javaProjectExplorer' && java:serverMode == 'Standard'" },
{ "key": "shift+f1", "command": "java.welcome" },
{ "key": "shift+enter", "command": "jupyter.execSelectionInteractive",
"when": "editorTextFocus && isWorkspaceTrusted && jupyter.ownsSelection && !findInputFocussed && !isCompositeNotebook && !notebookEditorFocused && !replaceInputFocussed && editorLangId == 'python'" },
{ "key": "ctrl+shift+alt+l", "command": "kill-console-log.kill",
"when": "editorTextFocus" },
{ "key": "ctrl+alt+f", "command": "liveshare.follow",
"when": "liveshare:hasCollaborators && !liveshare:isFollowing" },
{ "key": "ctrl+k y", "command": "mark-sharp.switch-editor-mode",
"when": "activeWebviewPanelId == 'msharp.customEditor' || editorLangId == 'markdown'" },
{ "key": "ctrl+shift+alt+m", "command": "markdown-editor.openEditor",
"when": "editorTextFocus && editorLangId == 'markdown'" },
{ "key": "ctrl+k v", "command": "markdown-preview-enhanced.openPreviewToTheSide",
"when": "editorLangId == 'markdown'" },
{ "key": "ctrl+alt+s", "command": "mdb.runSelectedPlaygroundBlocks",
"when": "mdb.isPlayground" },
{ "key": "ctrl+shift+e", "command": "mssql.runQuery",
"when": "editorTextFocus && editorLangId == 'sql'" },
{ "key": "f", "command": "notebook.find",
"when": "notebookEditorFocused && !inputFocus && !notebookOutputInputFocused" },
{ "key": "ctrl+shift+f9", "command": "o.showOutput" },
{ "key": "ctrl+alt+b", "command": "platformio-ide.build",
"when": "pioProjectReady && pioProjectTasksReady" },
{ "key": "f8", "command": "prolog.linter.nextErrLine" },
{ "key": "f5", "command": "prompty.runPrompt",
"when": "resourceExtname == '.prompty'" },
{ "key": "shift+enter", "command": "python.execSelectionInTerminal",
"when": "editorTextFocus && !findInputFocussed && !isCompositeNotebook && !jupyter.ownsSelection && !notebookEditorFocused && !replaceInputFocussed && editorLangId == 'python'" },
{ "key": "enter", "command": "pythonIndent.newlineAndIndent",
"when": "editorTextFocus && !editorHasMultipleSelections && !neovim.mode && !suggestWidgetVisible && !vim.active && editorLangId == 'python'" },
{ "key": "ctrl+k q", "command": "quokka.makeQuokkaFromExistingFile",
"when": "!quokka.isLiveShareClient && !terminalFocus" },
{ "key": "shift+alt+r", "command": "remote-wsl.revealInExplorer",
"when": "editorFocus && remoteName == 'wsl'" },
{ "key": "backspace", "command": "svgeditor.delete",
"when": "svgeditorWebviewFocus" },
{ "key": "ctrl+'", "command": "unity-tools.OpenDocs",
"when": "editorTextFocus && editorLangId == 'csharp'" },
{ "key": "ctrl+enter", "command": "workbench.action.chat.applyInEditor",
"when": "accessibleViewInCodeBlock && chatIsEnabled || chatIsEnabled && inChat && !inChatInput" },
{ "key": "ctrl+enter", "command": "workbench.action.chat.insertCodeBlock",
"when": "accessibleViewInCodeBlock && chatIsEnabled || chatIsEnabled && inChat && !inChatInput" },
{ "key": "ctrl+i", "command": "workbench.action.terminal.chat.start",
"when": "terminalChatAgentRegistered && terminalFocusInAny && terminalHasBeenCreated || terminalChatAgentRegistered && terminalFocusInAny && terminalProcessSupported" },
{ "key": "ctrl+shift+a", "command": "workbench.view.extension.azure",
"when": "viewContainer.workbench.view.extension.azure.enabled" },
{ "key": "ctrl+shift+r", "command": "workbench.view.extension.thunder-client",
"when": "viewContainer.workbench.view.extension.thunder-client.enabled" },
{ "key": "ctrl+alt+x", "command": "xd.toggle" },
{ "key": "ctrl+shift+alt+x", "command": "xmlTools.evaluateXPath" },
{ "key": "ctrl+t", "command": "yandex.translate.selectedText",
"when": "editorTextFocus" },
{ "key": "shift+alt+e", "command": "PowerShell.ExpandAlias",
"when": "editorTextFocus && editorLangId == 'powershell'" },
{ "key": "ctrl+i", "command": "cloudcode.duetAI.showinEditor",
"when": "authLoggedIn && config.cloudcode.duetAI.enable && editorTextFocus && shouldRegisterInEditorCommand && !inGeminiDiffView && !isInDiffEditor" },
{ "key": "shift+f7", "command": "cmake.buildWithTarget",
"when": "cmake:enableFullFeatureSet && !cmake:hideBuildCommand" },
{ "key": "ctrl+f5", "command": "cordova.run",
"when": "isWorkspaceTrusted && !inDebugMode || !config.security.workspace.trust.enabled && !inDebugMode" },
{ "key": "ctrl+f5", "command": "dart.hotReload",
"when": "dart-code:isInDartDebugSession && inDebugMode && debugType == 'dart' || dart-code:service.reloadSources && inDebugMode && debugType == 'dart'" },
{ "key": "ctrl+shift+r ctrl+i", "command": "editor.action.codeAction",
"when": "editorTextFocus && editorLangId =~ /^(c|(cuda-)?cpp)$/ && !(config.C_Cpp.intelliSenseEngine =~ /^[dD]isabled$/)",
"args": {"kind":"refactor.inline.macro","apply":"first"} },
{ "key": "shift+alt+l", "command": "extension.beautifySqlddl",
"when": "editorTextFocus && !editorReadonly && editorLangId =~ /sql/" },
{ "key": "alt+l alt+o", "command": "extension.liveServer.goOnline",
"when": "editorTextFocus" },
{ "key": "f11", "command": "extension.php-debug.startWithStopOnEntry",
"when": "!inDebugMode && activeViewlet == 'workbench.view.debug' && debugConfigurationType == 'php'" },
{ "key": "alt+q", "command": "extension.queryBuild" },
{ "key": "ctrl+win+down", "command": "figma.selectNextLayer",
"when": "figma.extensionOpen" },
{ "key": "ctrl+shift+o", "command": "ftp.open" },
{ "key": "ctrl+/", "command": "github.copilot.acceptCursorPanelSolution",
"when": "github.copilot.activated && github.copilot.panelVisible && activeWebviewPanelId == 'GitHub Copilot Suggestions'" },
{ "key": "alt+left", "command": "gitlens.key.alt+left",
"when": "gitlens:key:alt+left" },
{ "key": "alt+d", "command": "ionic-official.debug",
"when": "explorerViewletVisible" },
{ "key": "shift+alt+c", "command": "java.view.package.copyFilePath",
"when": "focusedView == 'javaProjectExplorer' && java:serverMode == 'Standard'" },
{ "key": "shift+alt+b", "command": "java.workspace.compile" },
{ "key": "shift+enter", "command": "jupyter.runcurrentcelladvance",
"when": "editorTextFocus && isWorkspaceTrusted && jupyter.hascodecells && !editorHasSelection && !isCompositeNotebook && !notebookEditorFocused" },
{ "key": "ctrl+shift+alt+g", "command": "kill-console-log.eliminate",
"when": "editorTextFocus" },
{ "key": "k", "command": "list.focusUp",
"when": "notebookEditorFocused && !inputFocus && !notebookOutputInputFocused" },
{ "key": "ctrl+alt+/", "command": "liveshare.followToTheSide",
"when": "liveshare:hasCollaborators" },
{ "key": "ctrl+shift+v", "command": "markdown-preview-enhanced.openPreview",
"when": "editorLangId == 'markdown'" },
{ "key": "ctrl+alt+r", "command": "mdb.runAllPlaygroundBlocks",
"when": "mdb.isPlayground" },
{ "key": "ctrl+shift+c", "command": "mssql.connect",
"when": "editorTextFocus && editorLangId == 'sql'" },
{ "key": "ctrl+alt+u", "command": "platformio-ide.upload",
"when": "pioProjectReady && pioProjectTasksReady" },
{ "key": "shift+f8", "command": "prolog.linter.prevErrLine" },
{ "key": "shift+enter", "command": "python.execInREPL",
"when": "config.python.REPL.sendToNativeREPL && editorTextFocus && !accessibilityModeEnabled && !isCompositeNotebook && !jupyter.ownsSelection && !notebookEditorFocused && editorLangId == 'python'" },
{ "key": "enter", "command": "pythonIndent.newlineAndIndent",
"when": "editorTextFocus && vim.active && !editorHasMultipleSelections && !suggestWidgetVisible && editorLangId == 'python' && vim.mode =~ /(Insert|Replace|SurroundInputMode)/" },
{ "key": "ctrl+k j", "command": "quokka.createJavaScriptFile",
"when": "!quokka.isLiveShareClient && !terminalFocus" },
{ "key": "delete", "command": "svgeditor.delete",
"when": "svgeditorWebviewFocus" },
{ "key": "ctrl+u", "command": "thunder-client.import-curl",
"when": "activeWebviewPanelId == 'tc.env-view' || activeWebviewPanelId == 'tc.request-view'" },
{ "key": "ctrl+shift+'", "command": "unity-tools.SearchDocs",
"when": "editorTextFocus && editorLangId == 'csharp'" },
{ "key": "ctrl+shift+x", "command": "xd.search" },
{ "key": "ctrl+shift+alt+b", "command": "xmlTools.formatAsXml" },
{ "key": "ctrl+alt+t", "command": "yandex.translate.androidStrings",
"when": "editorTextFocus" },
{ "key": "shift+alt+s", "command": "PowerShell.ShowAdditionalCommands",
"when": "editorTextFocus && editorLangId == 'powershell'" },
{ "key": "alt+a", "command": "_cloudcode.duetAI.codelens.accept",
"when": "authLoggedIn && cloudcode.duetAI.documentMatch && config.cloudcode.duetAI.enable && inGeminiDiffView && isInDiffEditor" },
{ "key": "shift+f5", "command": "cmake.debugTarget",
"when": "cmake:enableFullFeatureSet && inCMakeProject && !cmake:hideDebugCommand && !inDebugMode" },
{ "key": "ctrl+shift+f5", "command": "dart.rerunLastDebugSession",
"when": "dart-code:anyProjectLoaded && dart-code:hasLastDebugConfig && !inDebugMode" },
{ "key": "ctrl+shift+r ctrl+e", "command": "editor.action.codeAction",
"when": "editorTextFocus && editorLangId =~ /^(c|(cuda-)?cpp)$/ && !(config.C_Cpp.intelliSenseEngine =~ /^[dD]isabled$/)",
"args": {"kind":"refactor.extract.function","apply":"first"} },
{ "key": "shift+alt+;", "command": "extension.extractDdl",
"when": "editorTextFocus && !editorReadonly && editorLangId =~ /sql/" },
{ "key": "ctrl+shift+e", "command": "extension.querySelectedSQL",
"when": "editorHasSelection && editorTextFocus && editorLangId == 'sql'" },
{ "key": "ctrl+win+right", "command": "figma.expandLayer",
"when": "figma.extensionOpen" },
{ "key": "ctrl+alt+d", "command": "ftp.diff" },
{ "key": "alt+[", "command": "github.copilot.previousPanelSolution",
"when": "github.copilot.activated && github.copilot.panelVisible && activeWebviewPanelId == 'GitHub Copilot Suggestions'" },
{ "key": "ctrl+left", "command": "gitlens.key.ctrl+left",
"when": "gitlens:key:ctrl+left" },
{ "key": "alt+b", "command": "ionic-official.build",
"when": "explorerViewletVisible" },
{ "key": "ctrl+shift+v", "command": "java.action.clipboardPasteAction",
"when": "javaLSReady && editorLangId == 'java'" },
{ "key": "ctrl+k ctrl+shift+c", "command": "java.view.package.copyRelativeFilePath",
"when": "focusedView == 'javaProjectExplorer' && java:serverMode == 'Standard'" },
{ "key": "ctrl+enter", "command": "jupyter.runcurrentcell",
"when": "editorTextFocus && isWorkspaceTrusted && jupyter.hascodecells && !editorHasSelection && !isCompositeNotebook && !notebookEditorFocused" },
{ "key": "ctrl+shift+alt+p", "command": "kill-console-log.eradicate",
"when": "editorTextFocus" },
{ "key": "j", "command": "list.focusDown",
"when": "notebookEditorFocused && !inputFocus && !notebookOutputInputFocused" },
{ "key": "ctrl+alt+f", "command": "liveshare.unfollow",
"when": "liveshare:hasCollaborators && liveshare:isFollowing" },
{ "key": "ctrl+shift+enter", "command": "markdown-preview-enhanced.runAllCodeChunks",
"when": "editorLangId == 'markdown'" },
{ "key": "ctrl+s", "command": "mdb.saveMongoDBDocument",
"when": "resourceScheme == 'VIEW_DOCUMENT_SCHEME'" },
{ "key": "ctrl+shift+d", "command": "mssql.disconnect",
"when": "editorTextFocus && editorLangId == 'sql'" },
{ "key": "ctrl+alt+s", "command": "platformio-ide.serialMonitor",
"when": "pioProjectReady" },
{ "key": "alt+x x", "command": "prolog.exportPredicate" },
{ "key": "enter", "command": "python.execInREPLEnter",
"when": "!config.interactiveWindow.executeWithShiftEnter && !inlineChatFocused && activeEditor == 'workbench.editor.repl'" },
{ "key": "enter", "command": "pythonIndent.newlineAndIndent",
"when": "editorTextFocus && !editorHasMultipleSelections && !suggestWidgetVisible && editorLangId == 'python' && neovim.mode == 'insert'" },
{ "key": "ctrl+k t", "command": "quokka.createTypeScriptFile",
"when": "!quokka.isLiveShareClient && !terminalFocus" },
{ "key": "ctrl+d", "command": "svgeditor.duplicate",
"when": "svgeditorWebviewFocus" },
{ "key": "ctrl+e", "command": "thunder-client.change-env",
"when": "activeWebviewPanelId == 'tc.env-view' || activeWebviewPanelId == 'tc.request-view' || activeWebviewPanelId == 'tc.runcol-view'" },
{ "key": "ctrl+alt+j", "command": "yandex.translate.jsonStrings",
"when": "editorTextFocus" },
{ "key": "f8", "command": "PowerShell.RunSelection",
"when": "editorTextFocus && editorLangId == 'powershell'" },
{ "key": "alt+d", "command": "_cloudcode.duetAI.codelens.reject",
"when": "authLoggedIn && cloudcode.duetAI.documentMatch && config.cloudcode.duetAI.enable && inGeminiDiffView && isInDiffEditor" },
{ "key": "ctrl+f5", "command": "cmake.launchTarget",
"when": "cmake:enableFullFeatureSet && !cmake:hideDebugCommand && !inDebugMode" },
{ "key": "ctrl+alt+d", "command": "dart.openDevTools",
"when": "dart-code:anyProjectLoaded" },
{ "key": "ctrl+win+left", "command": "figma.selectParentLayer",
"when": "figma.extensionOpen" },
{ "key": "alt+]", "command": "github.copilot.nextPanelSolution",
"when": "github.copilot.activated && github.copilot.panelVisible && activeWebviewPanelId == 'GitHub Copilot Suggestions'" },
{ "key": "right", "command": "gitlens.key.right",
"when": "gitlens:key:right" },
{ "key": "ctrl+shift+v", "command": "java.action.filesExplorerPasteAction",
"when": "config.editor.pasteAs.enabled && explorerViewletFocus" },
{ "key": "f2", "command": "java.view.package.renameFile",
"when": "focusedView == 'javaProjectExplorer' && java:serverMode == 'Standard'" },
{ "key": "alt+enter", "command": "jupyter.runcurrentcellandaddbelow",
"when": "editorTextFocus && jupyter.hascodecells && !editorHasSelection && !notebookEditorFocused" },
{ "key": "ctrl+alt+j", "command": "liveshare.join",
"when": "liveshare:state != 'Joined' && liveshare:state != 'Shared'" },
{ "key": "shift+enter", "command": "markdown-preview-enhanced.runCodeChunk",
"when": "editorLangId == 'markdown'" },
{ "key": "a", "command": "notebook.cell.insertCodeCellAboveAndFocusContainer",
"when": "notebookEditorFocused && !inputFocus && !notebookOutputInputFocused" },
{ "key": "alt+x l", "command": "prolog.load.document" },
{ "key": "enter", "command": "python.execInInteractiveWindowEnter",
"when": "!config.interactiveWindow.executeWithShiftEnter && !inlineChatFocused && activeEditor == 'workbench.editor.interactive'" },
{ "key": "ctrl+k l", "command": "quokka.createFile",
"when": "!quokka.isLiveShareClient && !terminalFocus" },
{ "key": "=", "command": "svgeditor.zoomIn",
"when": "svgeditorWebviewFocus" },
{ "key": "ctrl+alt+d", "command": "workbench.view.extension.objectExplorer",
"when": "viewContainer.workbench.view.extension.objectExplorer.enabled" },
{ "key": "ctrl+shift+t", "command": "yandex.translate.chooseLanguages" },
{ "key": "escape", "command": "cloudcode.duetAI.rejectCompletion",
"when": "authLoggedIn && config.cloudcode.duetAI.enable && inlineSuggestionVisible" },
{ "key": "alt+\\", "command": "editor.action.inlineSuggest.trigger",
"when": "config.github.copilot.inlineSuggest.enable && editorTextFocus && !editorHasSelection && !inlineSuggestionsVisible" },
{ "key": "ctrl+alt+j", "command": "editor.action.insertSnippet",
"when": "editorTextFocus && !editorReadonly && editorLangId == 'powershell'" },
{ "key": "alt+right", "command": "gitlens.key.alt+right",
"when": "gitlens:key:alt+right" },
{ "key": "escape", "command": "interactive.input.clear",
"when": "isCompositeNotebook && !LinkedEditingInputVisible && !accessibilityHelpWidgetVisible && !breakpointWidgetVisible && !editorHasMultipleSelections && !editorHasSelection && !editorHoverVisible && !exceptionWidgetVisible && !findWidgetVisible && !inSnippetMode && !inlineChatVisible && !isComposing && !markersNavigationVisible && !notebookEditorFocused && !notificationToastsVisible && !parameterHintsVisible && !renameInputVisible && !selectionAnchorSet && !suggestWidgetVisible" },
{ "key": "ctrl+shift+alt+s", "command": "java.action.doCleanup",
"when": "javaLSReady && editorLangId == 'java'" },
{ "key": "delete", "command": "java.view.package.moveFileToTrash",
"when": "explorerResourceMoveableToTrash && focusedView == 'javaProjectExplorer' && java:serverMode == 'Standard'" },
{ "key": "ctrl+shift+s", "command": "markdown-preview-enhanced.syncPreview",
"when": "editorLangId == 'markdown'" },
{ "key": "ctrl+c", "command": "mssql.copyObjectName",
"when": "sideBarFocus && activeViewlet == 'workbench.view.extension.objectExplorer'" },
{ "key": "b", "command": "notebook.cell.insertCodeCellBelowAndFocusContainer",
"when": "notebookEditorFocused && !inputFocus && !notebookOutputInputFocused" },
{ "key": "alt+x q", "command": "prolog.query.goal" },
{ "key": "ctrl+r", "command": "python.refreshTensorBoard",
"when": "python.hasActiveTensorBoardSession" },
{ "key": "ctrl+k e", "command": "quokka.stopCurrent",
"when": "quokka.hasActiveSession && !quokka.isLiveShareClient && !terminalFocus" },
{ "key": "-", "command": "svgeditor.zoomOut",
"when": "svgeditorWebviewFocus" },
{ "key": "ctrl+right", "command": "gitlens.key.ctrl+right",
"when": "gitlens:key:ctrl+right" },
{ "key": "delete", "command": "java.view.package.deleteFilePermanently",
"when": "!explorerResourceMoveableToTrash && focusedView == 'javaProjectExplorer' && java:serverMode == 'Standard'" },
{ "key": "ctrl+; s", "command": "jupyter.insertCellBelowPosition",
"when": "editorTextFocus && isWorkspaceTrusted && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused" },
{ "key": "d d", "command": "notebook.cell.delete",
"when": "notebookEditorFocused && !inputFocus && !notebookOutputInputFocused" },
{ "key": "ctrl+k v", "command": "quokka.showValue",
"when": "quokka.hasActiveSession && quokka.isActiveEditorRunningQuokka && !quokka.isLiveShareClient && !terminalFocus" },
{ "key": "ctrl+g", "command": "svgeditor.group",
"when": "svgeditorWebviewFocus" },
{ "key": "alt+,", "command": "gitlens.key.alt+,",
"when": "gitlens:key:," },
{ "key": "ctrl+; b", "command": "jupyter.insertCellBelow",
"when": "editorTextFocus && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused" },
{ "key": "ctrl+u", "command": "svgeditor.ungroup",
"when": "svgeditorWebviewFocus" },
{ "key": "z", "command": "undo",
"when": "notebookEditorFocused && !inputFocus && !notebookOutputInputFocused" },
{ "key": "alt+.", "command": "gitlens.key.alt+.",
"when": "gitlens:key:." },
{ "key": "ctrl+; a", "command": "jupyter.insertCellAbove",
"when": "editorTextFocus && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused" },
{ "key": "f8", "command": "svgeditor.font",
"when": "svgeditorWebviewFocus" },
{ "key": "s", "command": "workbench.action.files.save",
"when": "notebookEditorFocused && !inputFocus && !notebookOutputInputFocused" },
{ "key": "alt+enter", "command": "gitlens.key.alt+enter",
"when": "gitlens:key:alt+enter" },
{ "key": "ctrl+; x", "command": "jupyter.deleteCells",
"when": "editorTextFocus && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused" },
{ "key": "c", "command": "notebook.cell.copy",
"when": "notebookEditorFocused && !inputFocus && !notebookOutputInputFocused" },
{ "key": "ctrl+k x", "command": "quokka.copyValue",
"when": "quokka.hasActiveSession && quokka.isActiveEditorRunningQuokka && !quokka.isLiveShareClient && !terminalFocus" },
{ "key": "pageup", "command": "svgeditor.bringForward",
"when": "svgeditorWebviewFocus" },
{ "key": "ctrl+enter", "command": "gitlens.key.ctrl+enter",
"when": "gitlens:key:ctrl+enter" },
{ "key": "ctrl+shift+alt+[", "command": "jupyter.extendSelectionByCellAbove",
"when": "editorTextFocus && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused" },
{ "key": "x", "command": "notebook.cell.cut",
"when": "notebookEditorFocused && !inputFocus && !notebookOutputInputFocused" },
{ "key": "ctrl+k i", "command": "quokka.installMissingPackageToQuokka",
"when": "quokka.hasActiveSession && !quokka.isLiveShareClient && !terminalFocus" },
{ "key": "pagedown", "command": "svgeditor.sendBackward",
"when": "svgeditorWebviewFocus" },
{ "key": "escape", "command": "gitlens.key.escape",
"when": "editorTextFocus && gitlens:key:escape && !codeActionMenuVisible && !findWidgetVisible && !isInEmbeddedEditor && !parameterHintsVisible && !quickFixWidgetVisible && !referenceSearchVisible && !renameInputVisible && !suggestWidgetVisible" },
{ "key": "ctrl+shift+alt+]", "command": "jupyter.extendSelectionByCellBelow",
"when": "editorTextFocus && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused" },
{ "key": "v", "command": "notebook.cell.paste",
"when": "notebookEditorFocused && !inputFocus && !notebookOutputInputFocused" },
{ "key": "escape", "command": "quokka.clearValue",
"when": "editorTextFocus && quokka.isActiveEditorRunningQuokka && quokka.lineHasRemovableInlineValues && !findWidgetVisible && !inReferenceSearchEditor && !parameterHintsVisible && !quickFixWidgetVisible && !referenceSearchVisible && !renameInputVisible && !suggestWidgetVisible && !vim.active || editorTextFocus && quokka.isActiveEditorRunningQuokka && quokka.lineHasRemovableInlineValues && !findWidgetVisible && !inReferenceSearchEditor && !parameterHintsVisible && !quickFixWidgetVisible && !referenceSearchVisible && !renameInputVisible && !suggestWidgetVisible && vim.mode == 'Normal'" },
{ "key": "ctrl+alt+numpad4", "command": "svgeditor.alignLeft",
"when": "svgeditorWebviewFocus" },
{ "key": "alt+/", "command": "gitlens.gitCommands",
"when": "!gitlens:disabled && config.gitlens.keymap == 'alternate'" },
{ "key": "ctrl+; u", "command": "jupyter.moveCellsUp",
"when": "editorTextFocus && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused" },
{ "key": "shift+l", "command": "notebook.toggleLineNumbers",
"when": "notebookEditorFocused && !inputFocus && !notebookOutputInputFocused" },
{ "key": "escape escape", "command": "quokka.clearFileValues",
"when": "editorTextFocus && quokka.fileHasRemovableInlineValues && quokka.isActiveEditorRunningQuokka && !editorHasSelection && !findWidgetVisible && !inReferenceSearchEditor && !parameterHintsVisible && !quickFixWidgetVisible && !quokka.lineHasRemovableInlineValues && !referenceSearchVisible && !renameInputVisible && !suggestWidgetVisible && !vim.active || editorTextFocus && quokka.fileHasRemovableInlineValues && quokka.isActiveEditorRunningQuokka && !editorHasSelection && !findWidgetVisible && !inReferenceSearchEditor && !parameterHintsVisible && !quickFixWidgetVisible && !quokka.lineHasRemovableInlineValues && !referenceSearchVisible && !renameInputVisible && !suggestWidgetVisible && vim.mode == 'Normal'" },
{ "key": "ctrl+alt+numpad6", "command": "svgeditor.alignRight",
"when": "svgeditorWebviewFocus" },
{ "key": "ctrl+shift+g /", "command": "gitlens.gitCommands",
"when": "!gitlens:disabled && config.gitlens.keymap == 'chorded'" },
{ "key": "ctrl+; d", "command": "jupyter.moveCellsDown",
"when": "editorTextFocus && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused" },
{ "key": "o", "command": "notebook.cell.toggleOutputs",
"when": "notebookEditorFocused && !inputFocus && !notebookOutputInputFocused" },
{ "key": "shift+f5", "command": "quokka.stopTraceNavigation",
"when": "activeEditor && quokka.isActiveEditorRunningQuokka && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient || activeEditor && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient && resourceScheme == 'quokka-code-timeline'" },
{ "key": "ctrl+alt+numpad2", "command": "svgeditor.alignBottom",
"when": "svgeditorWebviewFocus" },
{ "key": "alt+b", "command": "gitlens.toggleFileBlame",
"when": "editorTextFocus && config.gitlens.keymap == 'alternate' && resource in 'gitlens:tabs:blameable'" },
{ "key": "ctrl+; m", "command": "jupyter.changeCellToMarkdown",
"when": "editorTextFocus && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused" },
{ "key": "l", "command": "notebook.cell.toggleLineNumbers",
"when": "notebookEditorFocused && !inputFocus && !notebookOutputInputFocused" },
{ "key": "shift+f5", "command": "quokka.debug",
"when": "activeEditor && quokka.isActiveEditorRunningQuokka && !inDebugMode && !quokka.isLiveShareClient && !quokka.traceBeingNavigated || activeEditor && !inDebugMode && !quokka.isLiveShareClient && !quokka.traceBeingNavigated && resourceScheme == 'quokka-code-timeline'" },
{ "key": "ctrl+alt+numpad8", "command": "svgeditor.alignTop",
"when": "svgeditorWebviewFocus" },
{ "key": "ctrl+shift+g b", "command": "gitlens.toggleFileBlame",
"when": "editorTextFocus && config.gitlens.keymap == 'chorded' && resource in 'gitlens:tabs:blameable'" },
{ "key": "ctrl+; c", "command": "jupyter.changeCellToCode",
"when": "editorTextFocus && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused" },
{ "key": "ctrl+shift+-", "command": "notebook.cell.split",
"when": "editorTextFocus && inputFocus && notebookEditorFocused && !notebookOutputInputFocused" },
{ "key": "shift+alt+f5", "command": "quokka.debugAutoPlay",
"when": "activeEditor && quokka.isActiveEditorRunningQuokka && !inDebugMode && !quokka.isLiveShareClient && !quokka.traceBeingNavigated || activeEditor && !inDebugMode && !quokka.isLiveShareClient && !quokka.traceBeingNavigated && resourceScheme == 'quokka-code-timeline'" },
{ "key": "ctrl+shift+c", "command": "svgeditor.objectToPath",
"when": "svgeditorWebviewFocus" },
{ "key": "shift+alt+b", "command": "gitlens.toggleCodeLens",
"when": "editorTextFocus && !gitlens:disabled && !gitlens:disabledToggleCodeLens && config.gitlens.keymap == 'alternate'" },
{ "key": "ctrl+alt+]", "command": "jupyter.gotoNextCellInFile",
"when": "editorTextFocus && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused" },
{ "key": "ctrl+enter", "command": "notebook.cell.executeAndFocusContainer",
"when": "notebookCellListFocused || editorTextFocus && inputFocus && notebookEditorFocused" },
{ "key": "f11", "command": "quokka.playTraceNextStep",
"when": "activeEditor && quokka.isActiveEditorRunningQuokka && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient || activeEditor && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient && resourceScheme == 'quokka-code-timeline'" },
{ "key": "ctrl+]", "command": "svgeditor.rotateClockwise",
"when": "svgeditorWebviewFocus" },
{ "key": "ctrl+shift+g shift+b", "command": "gitlens.toggleCodeLens",
"when": "editorTextFocus && !gitlens:disabled && !gitlens:disabledToggleCodeLens && config.gitlens.keymap == 'chorded'" },
{ "key": "ctrl+alt+[", "command": "jupyter.gotoPrevCellInFile",
"when": "editorTextFocus && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused" },
{ "key": "shift+enter", "command": "notebook.cell.executeAndSelectBelow",
"when": "notebookCellListFocused && !interactiveEditorFocused && notebookCellType == 'code' || editorTextFocus && inputFocus && notebookEditorFocused && !interactiveEditorFocused" },
{ "key": "f5", "command": "quokka.playTraceForwardToSelection",
"when": "activeEditor && quokka.isActiveEditorRunningQuokka && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient || activeEditor && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient && resourceScheme == 'quokka-code-timeline'" },
{ "key": "ctrl+[", "command": "svgeditor.rotateCounterclockwise",
"when": "svgeditorWebviewFocus" },
{ "key": "alt+h", "command": "gitlens.showQuickFileHistory",
"when": "!gitlens:disabled && config.gitlens.keymap == 'alternate'" },
{ "key": "ctrl+alt+enter", "command": "interactive.acceptChanges",
"when": "interactiveEditorHasProvider && interactiveEditorVisible && !interactiveEditorDocumentChanged || interactiveEditorHasProvider && interactiveEditorVisible && config.interactiveEditor.editMode != 'preview'" },
{ "key": "ctrl+alt+\\", "command": "jupyter.selectCellContents",
"when": "editorTextFocus && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused" },
{ "key": "f8", "command": "quokka.playTraceForwardToBreakpoint",
"when": "activeEditor && quokka.isActiveEditorRunningQuokka && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient || activeEditor && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient && resourceScheme == 'quokka-code-timeline'" },
{ "key": "]", "command": "svgeditor.rotateClockwiseByTheAngleStep",
"when": "svgeditorWebviewFocus" },
{ "key": "ctrl+shift+g h", "command": "gitlens.showQuickFileHistory",
"when": "!gitlens:disabled && config.gitlens.keymap == 'chorded'" },
{ "key": "ctrl+shift+alt+\\", "command": "jupyter.selectCell",
"when": "editorTextFocus && jupyter.hascodecells && !jupyter.webExtension && !notebookEditorFocused" },
{ "key": "f10", "command": "quokka.playTraceNextStepOver",
"when": "activeEditor && quokka.isActiveEditorRunningQuokka && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient || activeEditor && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient && resourceScheme == 'quokka-code-timeline'" },
{ "key": "[", "command": "svgeditor.rotateCounterclockwiseByTheAngleStep",
"when": "svgeditorWebviewFocus" },
{ "key": "shift+alt+h", "command": "gitlens.showQuickRepoHistory",
"when": "!gitlens:disabled && config.gitlens.keymap == 'alternate'" },
{ "key": "ctrl+r", "command": "jupyter.refreshDataViewer",
"when": "isWorkspaceTrusted && jupyter.dataViewerActive" },
{ "key": "shift+f11", "command": "quokka.playTraceNextStepOut",
"when": "activeEditor && quokka.isActiveEditorRunningQuokka && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient || activeEditor && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient && resourceScheme == 'quokka-code-timeline'" },
{ "key": "ctrl+alt+h", "command": "svgeditor.centerVertical",
"when": "svgeditorWebviewFocus" },
{ "key": "ctrl+shift+g shift+h", "command": "gitlens.showQuickRepoHistory",
"when": "!gitlens:disabled && config.gitlens.keymap == 'chorded'" },
{ "key": "ctrl+shift+alt+enter", "command": "jupyter.runAndDebugCell",
"when": "isWorkspaceTrusted && jupyter.ispythonnotebook && !notebookKernel && notebookCellType == 'code' || isWorkspaceTrusted && jupyter.ispythonnotebook && notebookCellType == 'code' && notebookKernel =~ /^ms-toolsai.jupyter\\// && resource not in 'jupyter.notebookeditor.debugDocuments'" },
{ "key": "ctrl+f11", "command": "quokka.playTracePrevStep",
"when": "activeEditor && quokka.isActiveEditorRunningQuokka && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient || activeEditor && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient && resourceScheme == 'quokka-code-timeline'" },
{ "key": "ctrl+alt+t", "command": "svgeditor.centerHorizontal",
"when": "svgeditorWebviewFocus" },
{ "key": "alt+s", "command": "gitlens.showQuickRepoStatus",
"when": "!gitlens:disabled && config.gitlens.keymap == 'alternate'" },
{ "key": "f10", "command": "jupyter.runByLine",
"when": "isWorkspaceTrusted && jupyter.ispythonnotebook && !notebookKernel && notebookCellType == 'code' || isWorkspaceTrusted && jupyter.ispythonnotebook && notebookCellType == 'code' && notebookKernel =~ /^ms-toolsai.jupyter\\// && resource not in 'jupyter.notebookeditor.debugDocuments'" },
{ "key": "ctrl+f5", "command": "quokka.playTraceBackwardToSelection",
"when": "activeEditor && quokka.isActiveEditorRunningQuokka && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient || activeEditor && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient && resourceScheme == 'quokka-code-timeline'" },
{ "key": "ctrl+shift+g s", "command": "gitlens.showQuickRepoStatus",
"when": "!gitlens:disabled && config.gitlens.keymap == 'chorded'" },
{ "key": "f10", "command": "jupyter.runByLineNext",
"when": "notebookCellResource in 'jupyter.notebookeditor.runByLineCells'" },
{ "key": "ctrl+f8", "command": "quokka.playTraceBackwardToBreakpoint",
"when": "activeEditor && quokka.isActiveEditorRunningQuokka && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient || activeEditor && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient && resourceScheme == 'quokka-code-timeline'" },
{ "key": "alt+c", "command": "gitlens.showQuickCommitFileDetails",
"when": "editorTextFocus && !gitlens:disabled && config.gitlens.keymap == 'alternate'" },
{ "key": "ctrl+enter", "command": "jupyter.runByLineStop",
"when": "notebookCellResource in 'jupyter.notebookeditor.runByLineCells'" },
{ "key": "ctrl+f10", "command": "quokka.playTracePrevStepOver",
"when": "activeEditor && quokka.isActiveEditorRunningQuokka && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient || activeEditor && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient && resourceScheme == 'quokka-code-timeline'" },
{ "key": "ctrl+shift+g c", "command": "gitlens.showQuickCommitFileDetails",
"when": "editorTextFocus && !gitlens:disabled && config.gitlens.keymap == 'chorded'" },
{ "key": "ctrl+shift+f11", "command": "quokka.playTracePrevStepOut",
"when": "activeEditor && quokka.isActiveEditorRunningQuokka && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient || activeEditor && quokka.traceBeingNavigated && !inDebugMode && !quokka.isLiveShareClient && resourceScheme == 'quokka-code-timeline'" },
{ "key": "alt+,", "command": "gitlens.diffWithPrevious",
"when": "editorTextFocus && !isInDiffEditor && config.gitlens.keymap == 'alternate' && resource in 'gitlens:tabs:tracked'" },
{ "key": "ctrl+shift+g ,", "command": "gitlens.diffWithPrevious",
"when": "editorTextFocus && !isInDiffEditor && config.gitlens.keymap == 'chorded' && resource in 'gitlens:tabs:tracked'" },
{ "key": "alt+,", "command": "gitlens.diffWithPreviousInDiffLeft",
"when": "editorTextFocus && isInDiffEditor && !isInDiffRightEditor && config.gitlens.keymap == 'alternate' && resource in 'gitlens:tabs:tracked'" },
{ "key": "ctrl+shift+g ,", "command": "gitlens.diffWithPreviousInDiffLeft",
"when": "editorTextFocus && isInDiffEditor && !isInDiffRightEditor && config.gitlens.keymap == 'chorded' && resource in 'gitlens:tabs:tracked'" },
{ "key": "alt+,", "command": "gitlens.diffWithPreviousInDiffRight",
"when": "editorTextFocus && isInDiffRightEditor && config.gitlens.keymap == 'alternate' && resource in 'gitlens:tabs:tracked'" },
{ "key": "ctrl+shift+g ,", "command": "gitlens.diffWithPreviousInDiffRight",
"when": "editorTextFocus && isInDiffRightEditor && config.gitlens.keymap == 'chorded' && resource in 'gitlens:tabs:tracked'" },
{ "key": "alt+.", "command": "gitlens.diffWithNext",
"when": "editorTextFocus && gitlens:enabled && !isInDiffEditor && config.gitlens.keymap == 'alternate' && resourceScheme =~ /^(gitlens|git|pr)$/" },
{ "key": "ctrl+shift+g .", "command": "gitlens.diffWithNext",
"when": "editorTextFocus && gitlens:enabled && !isInDiffEditor && config.gitlens.keymap == 'chorded' && resourceScheme =~ /^(gitlens|git|pr)$/" },
{ "key": "alt+.", "command": "gitlens.diffWithNextInDiffLeft",
"when": "editorTextFocus && gitlens:enabled && isInDiffEditor && !isInDiffRightEditor && config.gitlens.keymap == 'alternate' && resourceScheme =~ /^(gitlens|git|pr)$/" },
{ "key": "ctrl+shift+g .", "command": "gitlens.diffWithNextInDiffLeft",
"when": "editorTextFocus && gitlens:enabled && isInDiffEditor && !isInDiffRightEditor && config.gitlens.keymap == 'chorded' && resourceScheme =~ /^(gitlens|git|pr)$/" },
{ "key": "alt+.", "command": "gitlens.diffWithNextInDiffRight",
"when": "editorTextFocus && gitlens:enabled && isInDiffRightEditor && config.gitlens.keymap == 'alternate' && resourceScheme =~ /^(gitlens|git|pr)$/" },
{ "key": "ctrl+shift+g .", "command": "gitlens.diffWithNextInDiffRight",
"when": "editorTextFocus && gitlens:enabled && isInDiffRightEditor && config.gitlens.keymap == 'chorded' && resourceScheme =~ /^(gitlens|git|pr)$/" },
{ "key": "shift+alt+.", "command": "gitlens.diffWithWorking",
"when": "editorTextFocus && gitlens:enabled && config.gitlens.keymap == 'alternate' && resourceScheme =~ /^(gitlens|git|pr)$/" },
{ "key": "ctrl+shift+g shift+.", "command": "gitlens.diffWithWorking",
"when": "editorTextFocus && gitlens:enabled && config.gitlens.keymap == 'chorded' && resourceScheme =~ /^(gitlens|git|pr)$/" },
{ "key": "shift+alt+,", "command": "gitlens.diffLineWithPrevious",
"when": "editorTextFocus && config.gitlens.keymap == 'alternate' && resource in 'gitlens:tabs:tracked'" },
{ "key": "ctrl+shift+g shift+,", "command": "gitlens.diffLineWithPrevious",
"when": "editorTextFocus && config.gitlens.keymap == 'chorded' && resource in 'gitlens:tabs:tracked'" },
{ "key": "ctrl+shift+g g", "command": "workbench.view.scm",
"when": "workbench.scm.active && !gitlens:disabled && config.gitlens.keymap == 'chorded'" },
{ "key": "ctrl+c", "command": "gitlens.views.branches.copy",
"when": "gitlens:enabled && focusedView =~ /^gitlens\\.views\\.branches/" },
{ "key": "ctrl+c", "command": "gitlens.views.commits.copy",
"when": "gitlens:enabled && focusedView =~ /^gitlens\\.views\\.commits/" },
{ "key": "ctrl+c", "command": "gitlens.views.contributors.copy",
"when": "gitlens:enabled && focusedView =~ /^gitlens\\.views\\.contributors/" },
{ "key": "ctrl+c", "command": "gitlens.views.drafts.copy",
"when": "gitlens:enabled && focusedView =~ /^gitlens\\.views\\.drafts/" },
{ "key": "ctrl+c", "command": "gitlens.views.fileHistory.copy",
"when": "gitlens:enabled && focusedView =~ /^gitlens\\.views\\.fileHistory/" },
{ "key": "ctrl+c", "command": "gitlens.views.lineHistory.copy",
"when": "gitlens:enabled && focusedView =~ /^gitlens\\.views\\.lineHistory/" },
{ "key": "ctrl+c", "command": "gitlens.views.pullRequest.copy",
"when": "gitlens:enabled && focusedView =~ /^gitlens\\.views\\.pullRequest/" },
{ "key": "ctrl+c", "command": "gitlens.views.remotes.copy",
"when": "gitlens:enabled && focusedView =~ /^gitlens\\.views\\.remotes/" },
{ "key": "ctrl+c", "command": "gitlens.views.repositories.copy",
"when": "gitlens:enabled && focusedView =~ /^gitlens\\.views\\.repositories/" },
{ "key": "ctrl+c", "command": "gitlens.views.stashes.copy",
"when": "gitlens:enabled && focusedView =~ /^gitlens\\.views\\.stashes/" },
{ "key": "ctrl+c", "command": "gitlens.views.searchAndCompare.copy",
"when": "gitlens:enabled && focusedView =~ /^gitlens\\.views\\.searchAndCompare\\b/" },
{ "key": "ctrl+c", "command": "gitlens.views.tags.copy",
"when": "gitlens:enabled && focusedView =~ /^gitlens\\.views\\.tags/" },
{ "key": "ctrl+c", "command": "gitlens.views.worktrees.copy",
"when": "gitlens:enabled && focusedView =~ /^gitlens\\.views\\.worktrees/" },
{ "key": "ctrl+c", "command": "gitlens.views.workspaces.copy",
"when": "gitlens:enabled && focusedView =~ /^gitlens\\.views\\.workspaces/" },
{ "key": "ctrl+.", "command": "acceptSelectedCodeAction",
"when": "codeActionMenuVisible" },
{ "key": "enter", "command": "acceptSelectedCodeAction",
"when": "codeActionMenuVisible" },
{ "key": "shift+escape", "command": "hideCodeActionWidget",
"when": "codeActionMenuVisible" },
{ "key": "escape", "command": "hideCodeActionWidget",
"when": "codeActionMenuVisible" },
{ "key": "ctrl+enter", "command": "previewSelectedCodeAction",
"when": "codeActionMenuVisible" },
{ "key": "ctrl+down", "command": "selectNextCodeAction",
"when": "codeActionMenuVisible" },
{ "key": "down", "command": "selectNextCodeAction",
"when": "codeActionMenuVisible" },
{ "key": "ctrl+up", "command": "selectPrevCodeAction",
"when": "codeActionMenuVisible" },
{ "key": "up", "command": "selectPrevCodeAction",
"when": "codeActionMenuVisible" },
{ "key": "escape", "command": "diffEditor.exitCompareMove",
"when": "comparingMovedCode" }
]
// Here are other available commands:
// - C_Cpp.AddDebugConfiguration
// - C_Cpp.BuildAndDebugFile
// - C_Cpp.BuildAndRunFile
// - C_Cpp.ConfigurationEditJSON
// - C_Cpp.ConfigurationEditUI
// - C_Cpp.ConfigurationProviderSelect
// - C_Cpp.ConfigurationSelect
// - C_Cpp.CreateDeclarationOrDefinition
// - C_Cpp.DisableErrorSquiggles
// - C_Cpp.EnableErrorSquiggles
// - C_Cpp.GenerateDoxygenComment
// - C_Cpp.GenerateEditorConfig
// - C_Cpp.GoToNextDirectiveInGroup
// - C_Cpp.GoToPrevDirectiveInGroup
// - C_Cpp.InstallCompiler
// - C_Cpp.LogDiagnostics
// - C_Cpp.RemoveAllCodeAnalysisProblems
// - C_Cpp.RescanCompilers
// - C_Cpp.RescanWorkspace
// - C_Cpp.ResetDatabase
// - C_Cpp.RestartIntelliSenseForFile
// - C_Cpp.RunCodeAnalysisOnActiveFile
// - C_Cpp.RunCodeAnalysisOnAllFiles
// - C_Cpp.RunCodeAnalysisOnOpenFiles
// - C_Cpp.SelectIntelliSenseConfiguration
// - C_Cpp.TakeSurvey
// - C_Cpp.ToggleDimInactiveRegions
// - C_Cpp.VcpkgClipboardInstallSuggested
// - C_Cpp.VcpkgOnlineHelpSuggested
// - C_Cpp.activeSshTarget
// - C_Cpp.addSshTarget
// - C_Cpp.referencesViewGroupByType
// - C_Cpp.referencesViewUngroupByType
// - C_Cpp.refreshCppSshTargetsView
// - C_Cpp.removeSshTarget
// - C_Cpp.selectActiveSshTarget
// - C_Cpp.selectSshTarget
// - C_Cpp.setActiveSshTarget
// - C_Cpp.sshTerminal
// - Connections.focus
// - Connections.resetViewLocation
// - CppReferencesView.focus
// - CppReferencesView.resetViewLocation
// - CppSshTargetsView.focus
// - CppSshTargetsView.resetViewLocation
// - PowerShell.ClosePanel
// - PowerShell.Debug.Start
// - PowerShell.DebugPesterTestsFromFile
// - PowerShell.DisableISEMode
// - PowerShell.EnableISEMode
// - PowerShell.GenerateBugReport
// - PowerShell.InsertCommand
// - PowerShell.InvokeRegisteredEditorCommand
// - PowerShell.OpenExamplesFolder
// - PowerShell.OpenInISE
// - PowerShell.OpenLogFolder
// - PowerShell.PositionPanelBottom
// - PowerShell.PositionPanelLeft
// - PowerShell.PowerShellFindModule
// - PowerShell.RefreshCommandsExplorer
// - PowerShell.RestartSession
// - PowerShell.RunPesterTestsFromFile
// - PowerShell.ShowLogs
// - PowerShell.ShowSessionConsole
// - PowerShell.ShowSessionMenu
// - PowerShell.ToggleISEMode
// - PowerShellCommands.focus
// - PowerShellCommands.resetViewLocation
// - Table.focus
// - Table.resetViewLocation
// - acceptSelectedSuggestionOnEnter
// - acceptSnippet
// - accessibility.announcement.help
// - actionforge.arrange-nodes
// - actionforge.fit-to-canvas
// - actionforge.graph.github.new
// - actionforge.switch-view
// - actions.findWithSelection
// - adbInterface.adbResetPorts
// - adbInterface.adbwificonnect
// - adbInterface.connectToDeviceFromList
// - adbInterface.disableFirebaseDebug
// - adbInterface.disconnectEverthing
// - adbInterface.enableFirebaseDebug
// - adbInterface.installAPKFile
// - adbInterface.killserver
// - adbInterface.resetCustomADBPath
// - adbInterface.setCustomADBPath
// - addRootFolder
// - angular.getTemplateTcb
// - angular.goToComponentWithTemplateFile
// - angular.goToTemplateForComponent
// - angular.openLogFile
// - angular.restartNgServer
// - apigee.api.filter
// - apigee.api.filter.clear
// - apigee.clone
// - apigee.container.add
// - apigee.container.delete
// - apigee.container.reset
// - apigee.container.start
// - apigee.container.stop
// - apigee.delete
// - apigee.design.api
// - apigee.design.api.walkthrough.open
// - apigee.emulator.copyurl
// - apigee.emulator.setup
// - apigee.emulator.setuptest
// - apigee.emulator.update
// - apigee.environments.create
// - apigee.environments.create.deployments
// - apigee.environments.create.flowhooks
// - apigee.environments.create.targetserver
// - apigee.environments.createMultiple
// - apigee.environments.deploy
// - apigee.explorer.refresh
// - apigee.proxies.createPolicy
// - apigee.proxies.createProxyBundle
// - apigee.proxies.createProxyEndpoint
// - apigee.proxies.createProxyMultiple
// - apigee.proxies.createSharedFlow
// - apigee.proxies.createSharedFlowBundle
// - apigee.proxies.createSharedFlowBundleMultiple
// - apigee.proxies.createTargetEndpoint
// - apigee.proxies.importProxyBundle
// - apigee.proxies.importSharedFlowBundle
// - apigee.proxies.walkthrough.open
// - apigee.rename
// - apigee.resource.create
// - apigee.resource.import
// - apigee.tests.createApp
// - apigee.tests.createDeveloper
// - apigee.tests.createMap
// - apigee.tests.createProduct
// - apigee.tests.createTestBundle
// - apigee.tests.multiple
// - apigee.tests.setupTest
// - apigee.trace.open
// - apigee.trace.start
// - apigee.workspace.create
// - apigee.workspace.edit
// - apigee.workspace.open
// - aws.accessanalyzer.iamPolicyChecks
// - aws.addSamDebugConfig
// - aws.amazonq.codewhisperer.focus
// - aws.amazonq.codewhisperer.removeView
// - aws.amazonq.codewhisperer.resetViewLocation
// - aws.amazonq.codewhisperer.toggleVisibility
// - aws.apig.copyUrl
// - aws.apig.invokeRemoteRestApi
// - aws.apprunner.copyServiceUrl
// - aws.apprunner.createService
// - aws.apprunner.createServiceFromEcr
// - aws.apprunner.deleteService
// - aws.apprunner.open
// - aws.apprunner.pauseService
// - aws.apprunner.resumeService
// - aws.apprunner.startDeployment
// - aws.cdk.focus
// - aws.cdk.refresh
// - aws.cdk.removeView
// - aws.cdk.renderStateMachineGraph
// - aws.cdk.resetViewLocation
// - aws.cdk.toggleVisibility
// - aws.cdk.viewDocs
// - aws.cloudFormation.newTemplate
// - aws.codecatalyst.cloneRepo
// - aws.codecatalyst.createDevEnv
// - aws.codecatalyst.focus
// - aws.codecatalyst.listCommands
// - aws.codecatalyst.manageConnections
// - aws.codecatalyst.openDevEnv
// - aws.codecatalyst.openOrg
// - aws.codecatalyst.openProject
// - aws.codecatalyst.openRepo
// - aws.codecatalyst.removeView
// - aws.codecatalyst.resetViewLocation
// - aws.codecatalyst.signout
// - aws.codecatalyst.toggleVisibility
// - aws.copyArn
// - aws.copyLambdaUrl
// - aws.copyLogResource
// - aws.copyName
// - aws.createNewThreatComposer
// - aws.cwl.changeFilterPattern
// - aws.cwl.changeTimeFilter
// - aws.cwl.searchLogGroup
// - aws.cwl.viewLogStream
// - aws.deleteCloudFormation
// - aws.deleteLambda
// - aws.deploySamApplication
// - aws.dev.openMenu
// - aws.dev.viewLogs
// - aws.doNothingCommand
// - aws.downloadLambda
// - aws.downloadSchemaItemCode
// - aws.downloadStateMachineDefinition
// - aws.ec2.copyInstanceId
// - aws.ec2.linkToLaunch
// - aws.ec2.openRemoteConnection
// - aws.ec2.openTerminal
// - aws.ec2.rebootInstance
// - aws.ec2.startInstance
// - aws.ec2.stopInstance
// - aws.ecr.copyRepositoryUri
// - aws.ecr.copyTagUri
// - aws.ecr.createRepository
// - aws.ecr.deleteRepository
// - aws.ecr.deleteTag
// - aws.ecs.disableEcsExec
// - aws.ecs.enableEcsExec
// - aws.ecs.openTaskInTerminal
// - aws.ecs.runCommandInContainer
// - aws.ecs.viewDocumentation
// - aws.executeStateMachine
// - aws.explorer.focus
// - aws.explorer.removeView
// - aws.explorer.resetViewLocation
// - aws.explorer.toggleVisibility
// - aws.invokeLambda
// - aws.iot.activateCert
// - aws.iot.attachCert
// - aws.iot.attachPolicy
// - aws.iot.copyEndpoint
// - aws.iot.createCert
// - aws.iot.createPolicy
// - aws.iot.createPolicyVersion
// - aws.iot.createThing
// - aws.iot.deactivateCert
// - aws.iot.deleteCert
// - aws.iot.deletePolicy
// - aws.iot.deletePolicyVersion
// - aws.iot.deleteThing
// - aws.iot.detachCert
// - aws.iot.detachPolicy
// - aws.iot.revokeCert
// - aws.iot.setDefaultPolicy
// - aws.iot.viewPolicyVersion
// - aws.lambda.createNewSamApp
// - aws.launchConfigForm
// - aws.listCommands
// - aws.newThreatComposerFile
// - aws.openInApplicationComposer
// - aws.openInApplicationComposerDialog
// - aws.quickStart
// - aws.redshift.deleteConnection
// - aws.redshift.editConnection
// - aws.refreshAwsExplorer
// - aws.renderStateMachineGraph
// - aws.resources.closeResource
// - aws.resources.configure
// - aws.resources.copyIdentifier
// - aws.resources.createResource
// - aws.resources.deleteResource
// - aws.resources.openResourcePreview
// - aws.resources.saveResource
// - aws.resources.updateResource
// - aws.resources.updateResourceInline
// - aws.resources.viewDocs
// - aws.s3.copyPath
// - aws.s3.createBucket
// - aws.s3.createFolder
// - aws.s3.deleteBucket
// - aws.s3.deleteFile
// - aws.s3.downloadFileAs
// - aws.s3.editFile
// - aws.s3.openFile
// - aws.s3.presignedURL
// - aws.s3.uploadFile
// - aws.s3.uploadFileToParent
// - aws.sam.newTemplate
// - aws.samcli.detect
// - aws.samcli.sync
// - aws.saveCurrentLogDataContent
// - aws.searchSchema
// - aws.searchSchemaPerRegistry
// - aws.showRegion
// - aws.ssmDocument.createLocalDocument
// - aws.ssmDocument.deleteDocument
// - aws.ssmDocument.openLocalDocument
// - aws.ssmDocument.openLocalDocumentJson
// - aws.ssmDocument.openLocalDocumentYaml
// - aws.ssmDocument.publishDocument
// - aws.ssmDocument.updateDocumentVersion
// - aws.stepfunctions.createStateMachineFromTemplate
// - aws.stepfunctions.publishStateMachine
// - aws.toggleSamCodeLenses
// - aws.toolkit.AmazonCommonAuth.focus
// - aws.toolkit.AmazonCommonAuth.resetViewLocation
// - aws.toolkit.aboutExtension
// - aws.toolkit.amazonq.extensionpage
// - aws.toolkit.amazonq.learnMore
// - aws.toolkit.auth.addConnection
// - aws.toolkit.auth.help
// - aws.toolkit.auth.manageConnections
// - aws.toolkit.auth.signout
// - aws.toolkit.auth.switchConnections
// - aws.toolkit.createIssueOnGitHub
// - aws.toolkit.credentials.edit
// - aws.toolkit.credentials.profile.create
// - aws.toolkit.github
// - aws.toolkit.help
// - aws.toolkit.login
// - aws.toolkit.submitFeedback
// - aws.toolkit.viewLogs
// - aws.toolkit.viewLogsAtMessage
// - aws.uploadLambda
// - aws.viewSchemaItem
// - azure-account.createAccount
// - azure-account.login
// - azure-account.loginToCloud
// - azure-account.loginWithDeviceCode
// - azure-account.logout
// - azure-account.manageAccount
// - azure-account.reportIssue
// - azure-account.selectSubscriptions
// - azure-account.selectTenant
// - azureActivityLog.focus
// - azureActivityLog.removeView
// - azureActivityLog.resetViewLocation
// - azureActivityLog.toggleVisibility
// - azureFocusView.focus
// - azureFocusView.refresh
// - azureFocusView.refreshTree
// - azureFocusView.resetViewLocation
// - azureFunctions.addBinding
// - azureFunctions.appSettings.add
// - azureFunctions.appSettings.decrypt
// - azureFunctions.appSettings.delete
// - azureFunctions.appSettings.download
// - azureFunctions.appSettings.edit
// - azureFunctions.appSettings.encrypt
// - azureFunctions.appSettings.rename
// - azureFunctions.appSettings.toggleSlotSetting
// - azureFunctions.appSettings.upload
// - azureFunctions.browseWebsite
// - azureFunctions.configureDeploymentSource
// - azureFunctions.connectToGitHub
// - azureFunctions.copyFunctionUrl
// - azureFunctions.createFunction
// - azureFunctions.createFunctionApp
// - azureFunctions.createFunctionAppAdvanced
// - azureFunctions.createNewProject
// - azureFunctions.createNewProjectWithDockerfile
// - azureFunctions.createSlot
// - azureFunctions.deleteFunction
// - azureFunctions.deleteFunctionApp
// - azureFunctions.deleteSlot
// - azureFunctions.deploy
// - azureFunctions.deployByFunctionAppId
// - azureFunctions.deployProject
// - azureFunctions.deploySlot
// - azureFunctions.disableFunction
// - azureFunctions.disconnectRepo
// - azureFunctions.enableFunction
// - azureFunctions.eventGrid.sendMockRequest
// - azureFunctions.executeFunction
// - azureFunctions.initProjectForVSCode
// - azureFunctions.installOrUpdateFuncCoreTools
// - azureFunctions.openInPortal
// - azureFunctions.openWalkthrough
// - azureFunctions.pickProcess
// - azureFunctions.redeploy
// - azureFunctions.reportIssue
// - azureFunctions.restartFunctionApp
// - azureFunctions.setAzureWebJobsStorage
// - azureFunctions.startFunctionApp
// - azureFunctions.startJavaRemoteDebug
// - azureFunctions.startRemoteDebug
// - azureFunctions.startStreamingLogs
// - azureFunctions.stopFunctionApp
// - azureFunctions.stopStreamingLogs
// - azureFunctions.swapSlot
// - azureFunctions.toggleAppSettingVisibility
// - azureFunctions.uninstallFuncCoreTools
// - azureFunctions.viewCommitInGitHub
// - azureFunctions.viewDeploymentLogs
// - azureFunctions.viewProperties
// - azureResourceGroups.clearActivities
// - azureResourceGroups.createResource
// - azureResourceGroups.createResourceGroup
// - azureResourceGroups.deleteResourceGroupV2
// - azureResourceGroups.editTags
// - azureResourceGroups.focus
// - azureResourceGroups.focusGroup
// - azureResourceGroups.groupBy.armTag
// - azureResourceGroups.groupBy.location
// - azureResourceGroups.groupBy.resourceGroup
// - azureResourceGroups.groupBy.resourceType
// - azureResourceGroups.installExtension
// - azureResourceGroups.loadMore
// - azureResourceGroups.logIn
// - azureResourceGroups.maintainCloudShellConnection
// - azureResourceGroups.openInPortal
// - azureResourceGroups.refresh
// - azureResourceGroups.refreshTree
// - azureResourceGroups.removeView
// - azureResourceGroups.reportIssue
// - azureResourceGroups.resetViewLocation
// - azureResourceGroups.revealResource
// - azureResourceGroups.selectSubscriptions
// - azureResourceGroups.showGroupOptions
// - azureResourceGroups.signInToTenant
// - azureResourceGroups.toggleVisibility
// - azureResourceGroups.unfocusGroup
// - azureResourceGroups.uploadFileCloudConsole
// - azureResourceGroups.viewProperties
// - azureWorkspace.focus
// - azureWorkspace.refresh
// - azureWorkspace.refreshTree
// - azureWorkspace.removeView
// - azureWorkspace.resetViewLocation
// - azureWorkspace.toggleVisibility
// - breadcrumbs.toggle
// - breadcrumbs.toggleFromEditorTitle
// - callStack.collapse
// - callStackWidget.goToFile
// - cell-tag.focus
// - cell-tag.resetViewLocation
// - changeEditorIndentation1
// - chat.inlineResourceAnchor.addFileToChat
// - chat.inlineSymbolAnchor.goToDefinition
// - chat.inlineSymbolAnchor.goToReferences
// - chatEditing.acceptAllFiles
// - chatEditing.acceptFile
// - chatEditing.discardAllFiles
// - chatEditing.discardFile
// - chatEditing.openDiffs
// - chatEditing.openFile
// - chatEditing.startSession
// - chatEditing.stopSession
// - cleanSearchEditorState
// - closeReferenceSearchEditor
// - cloudcode.addClusterToConfig
// - cloudcode.addSecretEnvironmentVariable
// - cloudcode.applyConfiguration
// - cloudcode.applyTriggerYaml
// - cloudcode.awsLambdaImporterExplorer.addFunction
// - cloudcode.cancelKubectlClusterProxy
// - cloudcode.changeLogs
// - cloudcode.cloudRunDeployRevision
// - cloudcode.cloudRunDeployService
// - cloudcode.cloudRunOpenContainerImage
// - cloudcode.cloudRunOpenDocs
// - cloudcode.cloudRunOpenEndpoint
// - cloudcode.cloudRunOpenInConsole
// - cloudcode.cloudSdkTroubleshooting
// - cloudcode.commandpalette.searchApi
// - cloudcode.compute.ui.vm.disk.open.in.console
// - cloudcode.compute.ui.vm.firewall.open.in.console
// - cloudcode.compute.ui.vm.open.in.console
// - cloudcode.copyLeafValue
// - cloudcode.copyResourceValue
// - cloudcode.copyValue
// - cloudcode.createCloudRunAppExplorerTitle
// - cloudcode.createConfiguration
// - cloudcode.createK8sAppExplorerTitle
// - cloudcode.createNewApp
// - cloudcode.debugCloudRunApp
// - cloudcode.debugCloudRunAppExplorerTitle
// - cloudcode.debugK8sAppExplorerTitle
// - cloudcode.debugKubernetesApp
// - cloudcode.deleteKubectlCluster
// - cloudcode.deleteKubectlContext
// - cloudcode.deleteKubectlResource
// - cloudcode.deployCloudRunApp
// - cloudcode.describeKubectlResource
// - cloudcode.diffConfiguration
// - cloudcode.duetAI.actionsMenu
// - cloudcode.duetAI.openKeybindings
// - cloudcode.duetAI.resetChat
// - cloudcode.duetAI.rightClick.chatExplain
// - cloudcode.duetAI.rightClick.chatGenerateTests
// - cloudcode.editKubectlYaml
// - cloudcode.exportCoverage
// - cloudcode.functions.annotateWorkspace
// - cloudcode.functions.create
// - cloudcode.functions.deploy
// - cloudcode.functions.deployFunction
// - cloudcode.functions.downloadSourceCode
// - cloudcode.functions.editInConsole
// - cloudcode.functions.invokeHttpFunction
// - cloudcode.functions.openConfig
// - cloudcode.functions.openDocs
// - cloudcode.functions.openInConsole
// - cloudcode.functions.showLocalFiles
// - cloudcode.gce.scpVmInstance
// - cloudcode.gce.sshVmInstance
// - cloudcode.gcloudInstallGuide
// - cloudcode.gemini.chatView.focus
// - cloudcode.gemini.chatView.removeView
// - cloudcode.gemini.chatView.resetViewLocation
// - cloudcode.gemini.chatView.toggleVisibility
// - cloudcode.getKubectlContainerTerminal
// - cloudcode.gke.gcloudSignout
// - cloudcode.gke.gcloudSignoutContext
// - cloudcode.gke.runGcloudInit
// - cloudcode.gke.setupPrivateNodesCloudNat
// - cloudcode.helpAndFeedbackExplorer.focus
// - cloudcode.helpAndFeedbackExplorer.removeView
// - cloudcode.helpAndFeedbackExplorer.resetViewLocation
// - cloudcode.helpAndFeedbackExplorer.toggleVisibility
// - cloudcode.kubernetes.localDevExplorer.focusView
// - cloudcode.kubernetes.localDevExplorer.openLaunchConfig
// - cloudcode.kubernetes.localDevExplorer.openSkaffoldLogChannel
// - cloudcode.kubernetes.localDevExplorer.openUrl
// - cloudcode.kubernetes.openClusterInProviderPortal
// - cloudcode.mainframeModernization.cancelsaveNote
// - cloudcode.mainframeModernization.createNote
// - cloudcode.mainframeModernization.deleteGeminiApiKey
// - cloudcode.mainframeModernization.deleteNote
// - cloudcode.mainframeModernization.deleteNoteComment
// - cloudcode.mainframeModernization.dispose
// - cloudcode.mainframeModernization.editNote
// - cloudcode.mainframeModernization.finishDraft
// - cloudcode.mainframeModernization.generateCode
// - cloudcode.mainframeModernization.generateCodeForActiveFile
// - cloudcode.mainframeModernization.generateSpec
// - cloudcode.mainframeModernization.generateSpecForActiveFile
// - cloudcode.mainframeModernization.installTools
// - cloudcode.mainframeModernization.replyNote
// - cloudcode.mainframeModernization.saveNote
// - cloudcode.mainframeModernization.setGeminiApiKey
// - cloudcode.mainframeModernization.startDraft
// - cloudcode.manageCustomRepos
// - cloudcode.metricsKubectlResource
// - cloudcode.migrateToContainers.editToolsPaths
// - cloudcode.migrateToContainers.installTools
// - cloudcode.migrateToContainers.mcdc.createSource
// - cloudcode.migrateToContainers.mcdc.editSources
// - cloudcode.migrateToContainers.mcdc.sourceMigrate
// - cloudcode.migrateToContainers.mcdc.sourceShowReport
// - cloudcode.migrateToContainers.mcdc.syncSources
// - cloudcode.minikubeControl
// - cloudcode.mountSecretVolume
// - cloudcode.openApiDetail
// - cloudcode.openAwsLambdaImporterDocs
// - cloudcode.openCloudShellReadme
// - cloudcode.openDataprocClusters
// - cloudcode.openDataprocNotebookTemplates
// - cloudcode.openDataprocScheduledJobs
// - cloudcode.openDataprocServerless
// - cloudcode.openGceDocs
// - cloudcode.openKubeDocs
// - cloudcode.openKubeconfig
// - cloudcode.openKubectlAddress
// - cloudcode.openKubernetesDashboard
// - cloudcode.openLogsViewer
// - cloudcode.openSkaffoldEventsV2Log
// - cloudcode.openUrl
// - cloudcode.refreshAwsLambdaImporterExplorer
// - cloudcode.refreshCloudRunExplorer
// - cloudcode.refreshGceExplorer
// - cloudcode.refreshGcfExplorer
// - cloudcode.refreshKubectlCollection
// - cloudcode.refreshKubectlExplorer
// - cloudcode.refreshSecretsExplorer
// - cloudcode.removeKubeConfig
// - cloudcode.removeKubeConfigCommandPalette
// - cloudcode.reportIssue
// - cloudcode.runCloudRunApp
// - cloudcode.runCloudRunAppExplorerTitle
// - cloudcode.runK8sAppExplorerTitle
// - cloudcode.runKubernetesApp
// - cloudcode.scaleDeployment
// - cloudcode.searchApi
// - cloudcode.secrets.copyResourceId
// - cloudcode.secrets.create
// - cloudcode.secrets.createLabel
// - cloudcode.secrets.createVersion
// - cloudcode.secrets.createVersionWithText
// - cloudcode.secrets.createWithText
// - cloudcode.secrets.destroyVersion
// - cloudcode.secrets.disableVersion
// - cloudcode.secrets.editLabel
// - cloudcode.secrets.editPermissions
// - cloudcode.secrets.enableVersion
// - cloudcode.secrets.openCloudConsole
// - cloudcode.secrets.openDocs
// - cloudcode.secrets.search
// - cloudcode.secrets.showCodingInstructions
// - cloudcode.secrets.viewVersionValue
// - cloudcode.setKubectlCluster
// - cloudcode.setKubectlContext
// - cloudcode.setKubectlNamespace
// - cloudcode.setupKubectlClusterProxy
// - cloudcode.sharedExplorer.chooseProject
// - cloudcode.shell.openRecent
// - cloudcode.signin
// - cloudcode.signout
// - cloudcode.skaffold.pipeline.trigger
// - cloudcode.softwareLicensesPrivacyPolicy
// - cloudcode.sourceprotect.copyTracePath
// - cloudcode.sourceprotect.explorer.dependency.open
// - cloudcode.sourceprotect.explorer.upgradeToLatestCompatibleVersion
// - cloudcode.sourceprotect.explorer.upgradeToMinimalCompliantVersion
// - cloudcode.sourceprotect.explorer.upgradeToVersion
// - cloudcode.sourceprotect.policy.open
// - cloudcode.sourceprotect.policy.openDocumentation
// - cloudcode.sourceprotect.visit.private.preview.request
// - cloudcode.statusbar.searchApi
// - cloudcode.statusbarCommand
// - cloudcode.switchKubeConfig
// - cloudcode.switchaccount
// - cloudcode.takeSurvey
// - cloudcode.toggleApiExplorerCategories
// - cloudcode.unified.apiExplorer.focus
// - cloudcode.unified.apiExplorer.removeView
// - cloudcode.unified.apiExplorer.resetViewLocation
// - cloudcode.unified.apiExplorer.toggleVisibility
// - cloudcode.unified.apigee.explorer.focus
// - cloudcode.unified.apigee.explorer.removeView
// - cloudcode.unified.apigee.explorer.resetViewLocation
// - cloudcode.unified.apigee.explorer.toggleVisibility
// - cloudcode.unified.awsLambdaImporterExplorer.focus
// - cloudcode.unified.awsLambdaImporterExplorer.resetViewLocation
// - cloudcode.unified.bigQueryDatasetExplorer.focus
// - cloudcode.unified.bigQueryDatasetExplorer.resetViewLocation
// - cloudcode.unified.cloudRunExplorer.focus
// - cloudcode.unified.cloudRunExplorer.removeView
// - cloudcode.unified.cloudRunExplorer.resetViewLocation
// - cloudcode.unified.cloudRunExplorer.toggleVisibility
// - cloudcode.unified.cloudStorageExplorer.focus
// - cloudcode.unified.cloudStorageExplorer.resetViewLocation
// - cloudcode.unified.dataprocExplorer.focus
// - cloudcode.unified.dataprocExplorer.resetViewLocation
// - cloudcode.unified.gceExplorer.focus
// - cloudcode.unified.gceExplorer.removeView
// - cloudcode.unified.gceExplorer.resetViewLocation
// - cloudcode.unified.gceExplorer.toggleVisibility
// - cloudcode.unified.gcfExplorer.focus
// - cloudcode.unified.gcfExplorer.removeView
// - cloudcode.unified.gcfExplorer.resetViewLocation
// - cloudcode.unified.gcfExplorer.toggleVisibility
// - cloudcode.unified.kubectlExplorer.focus
// - cloudcode.unified.kubectlExplorer.removeView
// - cloudcode.unified.kubectlExplorer.resetViewLocation
// - cloudcode.unified.kubectlExplorer.toggleVisibility
// - cloudcode.unified.kubernetes.localDevExplorer.focus
// - cloudcode.unified.kubernetes.localDevExplorer.removeView
// - cloudcode.unified.kubernetes.localDevExplorer.resetViewLocation
// - cloudcode.unified.kubernetes.localDevExplorer.toggleVisibility
// - cloudcode.unified.mcdcSources.focus
// - cloudcode.unified.mcdcSources.resetViewLocation
// - cloudcode.unified.notebookExplorer.focus
// - cloudcode.unified.notebookExplorer.resetViewLocation
// - cloudcode.unified.secretsExplorer.focus
// - cloudcode.unified.secretsExplorer.removeView
// - cloudcode.unified.secretsExplorer.resetViewLocation
// - cloudcode.unified.secretsExplorer.toggleVisibility
// - cloudcode.unified.sourceProtectExplorer.focus
// - cloudcode.unified.sourceProtectExplorer.resetViewLocation
// - cloudcode.viewFile
// - cloudcode.viewKubectlDeploymentLog
// - cloudcode.viewKubectlYaml
// - cloudcode.welcome
// - cmake.addBuildPreset
// - cmake.addConfigurePreset
// - cmake.addPackagePreset
// - cmake.addTestPreset
// - cmake.addWorkflowPreset
// - cmake.appendBuildDirectoryToWorkspace
// - cmake.buildAll
// - cmake.clean
// - cmake.cleanAll
// - cmake.cleanConfigure
// - cmake.cleanConfigureAll
// - cmake.cleanConfigureAllWithDebugger
// - cmake.cleanConfigureWithDebugger
// - cmake.cleanRebuild
// - cmake.cleanRebuildAll
// - cmake.compileFile
// - cmake.configure
// - cmake.configureAll
// - cmake.configureAllWithDebugger
// - cmake.configureWithDebugger
// - cmake.cpack
// - cmake.cpackAll
// - cmake.ctest
// - cmake.ctestAll
// - cmake.debugTargetAll
// - cmake.editCache
// - cmake.editCacheUI
// - cmake.editKits
// - cmake.install
// - cmake.installAll
// - cmake.launchTargetAll
// - cmake.logDiagnostics
// - cmake.onlineHelp
// - cmake.openCMakePresets
// - cmake.openSettings
// - cmake.outline.build
// - cmake.outline.buildAll
// - cmake.outline.buildTarget
// - cmake.outline.clean
// - cmake.outline.cleanAll
// - cmake.outline.cleanConfigure
// - cmake.outline.cleanConfigureAll
// - cmake.outline.cleanConfigureAllWithDebugger
// - cmake.outline.cleanConfigureWithDebugger
// - cmake.outline.cleanRebuild
// - cmake.outline.cleanRebuildAll
// - cmake.outline.compileFile
// - cmake.outline.configure
// - cmake.outline.configureAll
// - cmake.outline.configureAllWithDebugger
// - cmake.outline.configureWithDebugger
// - cmake.outline.debugTarget
// - cmake.outline.editCacheUI
// - cmake.outline.focus
// - cmake.outline.launchTarget
// - cmake.outline.resetViewLocation
// - cmake.outline.revealInCMakeLists
// - cmake.outline.runUtilityTarget
// - cmake.outline.selectWorkspace
// - cmake.outline.setDefaultTarget
// - cmake.outline.setLaunchTarget
// - cmake.outline.stop
// - cmake.outline.stopAll
// - cmake.pinnedCommands.add
// - cmake.pinnedCommands.focus
// - cmake.pinnedCommands.remove
// - cmake.pinnedCommands.resetViewLocation
// - cmake.pinnedCommands.run
// - cmake.projectStatus.build
// - cmake.projectStatus.cleanConfigure
// - cmake.projectStatus.configure
// - cmake.projectStatus.cpack
// - cmake.projectStatus.ctest
// - cmake.projectStatus.debugTarget
// - cmake.projectStatus.focus
// - cmake.projectStatus.launchTarget
// - cmake.projectStatus.openSettings
// - cmake.projectStatus.openVisibilitySettings
// - cmake.projectStatus.resetViewLocation
// - cmake.projectStatus.selectActiveProject
// - cmake.projectStatus.selectBuildPreset
// - cmake.projectStatus.selectConfigurePreset
// - cmake.projectStatus.selectKit
// - cmake.projectStatus.selectPackagePreset
// - cmake.projectStatus.selectTestPreset
// - cmake.projectStatus.selectWorkflowPreset
// - cmake.projectStatus.setDebugTarget
// - cmake.projectStatus.setDefaultTarget
// - cmake.projectStatus.setLaunchTarget
// - cmake.projectStatus.setTestTarget
// - cmake.projectStatus.setVariant
// - cmake.projectStatus.stop
// - cmake.projectStatus.update
// - cmake.projectStatus.viewBuildSettings
// - cmake.projectStatus.viewConfigureSettings
// - cmake.projectStatus.viewPackageSettings
// - cmake.projectStatus.viewTestSettings
// - cmake.projectStatus.workflow
// - cmake.quickStart
// - cmake.refreshTests
// - cmake.refreshTestsAll
// - cmake.resetState
// - cmake.revealTestExplorer
// - cmake.scanForCompilers
// - cmake.scanForKits
// - cmake.selectActiveFolder
// - cmake.selectBuildPreset
// - cmake.selectConfigurePreset
// - cmake.selectKit
// - cmake.selectLaunchTarget
// - cmake.selectPackagePreset
// - cmake.selectTestPreset
// - cmake.selectWorkflowPreset
// - cmake.setDefaultTarget
// - cmake.setVariant
// - cmake.setVariantAll
// - cmake.showBuildCommand
// - cmake.showConfigureCommand
// - cmake.stop
// - cmake.stopAll
// - cmake.viewLog
// - cmake.workflow
// - cmake.workflowAll
// - codelens.showLensesInCurrentLine
// - columnSelect
// - comments.collapse
// - comments.expand
// - comments.reply
// - commitViewProvider.focus
// - commitViewProvider.resetViewLocation
// - compareCommitViewProvider.focus
// - compareCommitViewProvider.resetViewLocation
// - compareFiles
// - compareSelected
// - composer.About
// - composer.Archive
// - composer.ClearCache
// - composer.Depends
// - composer.Diagnose
// - composer.DumpAutoload
// - composer.Fund
// - composer.Init
// - composer.Install
// - composer.Licenses
// - composer.Outdated
// - composer.Prohibits
// - composer.Remove
// - composer.Require
// - composer.RunScript
// - composer.SelfUpdate
// - composer.Show
// - composer.Status
// - composer.Suggests
// - composer.Update
// - composer.Validate
// - composer.Version
// - composer.Why
// - composer.WhyNot
// - compositionEnd
// - compositionStart
// - compositionType
// - console-ninja.activateLicense
// - console-ninja.addLogViewerCheckpoint
// - console-ninja.addTimepoint
// - console-ninja.addTracepoint
// - console-ninja.changeDateTimeDisplayMode
// - console-ninja.clearOutput
// - console-ninja.compareWithPreviousValue
// - console-ninja.copyLineEntryValue
// - console-ninja.customizeWatchesLayout
// - console-ninja.goToLatestErrorSource
// - console-ninja.manageLicense
// - console-ninja.openHint
// - console-ninja.openStartView
// - console-ninja.output.focus
// - console-ninja.output.resetViewLocation
// - console-ninja.pause
// - console-ninja.reloadBrowserPage
// - console-ninja.removeAllHighlights
// - console-ninja.removeFileBreakpoints
// - console-ninja.searchLogs
// - console-ninja.searchWeb
// - console-ninja.selectAction
// - console-ninja.selectProject
// - console-ninja.showOutput
// - console-ninja.start
// - console-ninja.toggleFileCodeCoverageDisplay
// - console-ninja.toggleLineHighlight
// - console-ninja.toggleLogViewerAutoClear
// - console-ninja.toggleLogViewerAutoScroll
// - console-ninja.toggleMultiToolDisplayMode
// - console-ninja.toggleNetworkRequestLogging
// - console-ninja.toggleUncovered
// - console-ninja.voteForFeature
// - console-ninja.watchLocationValue
// - copilot-chat.focus
// - copilot-chat.resetViewLocation
// - cordova.clean
// - cordova.prepare
// - cordova.restart
// - cordova.simulate.android
// - cordova.simulate.ios
// - createCursor
// - csharp.attachToProcess
// - csharp.listProcess
// - csharp.listRemoteDockerProcess
// - csharp.listRemoteProcess
// - csharp.reportIssue
// - csharp.showDecompilationTerms
// - cursorLineEnd
// - cursorLineEndSelect
// - cursorLineStart
// - cursorLineStartSelect
// - cursorRedo
// - cursorWordEndLeft
// - cursorWordEndLeftSelect
// - cursorWordPartLeft
// - cursorWordPartLeftSelect
// - cursorWordPartRight
// - cursorWordPartRightSelect
// - cursorWordPartStartLeft
// - cursorWordPartStartLeftSelect
// - cursorWordRight
// - cursorWordRightSelect
// - cursorWordStartLeft
// - cursorWordStartLeftSelect
// - cursorWordStartRight
// - cursorWordStartRightSelect
// - cut
// - dart.addDependency
// - dart.addDevDependency
// - dart.addSdkToPath
// - dart.attach
// - dart.changeFlutterSdk
// - dart.changeSdk
// - dart.completeStatement
// - dart.copyDtdUri
// - dart.copyVmServiceUri
// - dart.createLaunchConfiguration
// - dart.createProject
// - dart.edit.fixAllInWorkspace
// - dart.edit.fixAllInWorkspace.preview
// - dart.findTestOrImplementationFile
// - dart.forceReanalyze
// - dart.generateDiagnosticReport
// - dart.goToAugmentation
// - dart.goToAugmented
// - dart.goToSuper
// - dart.goToTestOrImplementationFile
// - dart.goToTests
// - dart.openAnalyzerDiagnostics
// - dart.openDevTools.external
// - dart.openDevToolsCpuProfiler
// - dart.openDevToolsDeepLinks
// - dart.openDevToolsInspector
// - dart.openDevToolsLogging
// - dart.openDevToolsMemory
// - dart.openDevToolsNetwork
// - dart.openDevToolsPerformance
// - dart.openExtensionLog
// - dart.openObservatory
// - dart.printSelectionToTerminal
// - dart.rerunLastTestDebugSession
// - dart.restartAnalysisServer
// - dart.sortMembers
// - dart.startDebugging
// - dart.startLogging
// - dart.startLoggingAnalysisServer
// - dart.startLoggingAnalysisServerTimings
// - dart.startLoggingDebugging
// - dart.startLoggingExtensionOnly
// - dart.startWithoutDebugging
// - dart.stopLogging
// - dart.task.dartdoc
// - dart.toggleDartdocComment
// - dart.toggleLineComment
// - dart.writeRecommendedSettings
// - dartDependencyTree.focus
// - dartDependencyTree.resetViewLocation
// - dartFlutterOutline.focus
// - dartFlutterOutline.resetViewLocation
// - dartFlutterSidebar.focus
// - dartFlutterSidebar.resetViewLocation
// - dashboardPanel.focus
// - dashboardPanel.removeView
// - dashboardPanel.resetViewLocation
// - dashboardPanel.toggleVisibility
// - dataScience.ClearCache
// - dataScience.ClearUserProviderJupyterServerCache
// - dataworkspace.close
// - dataworkspace.refresh
// - dataworkspace.views.main.focus
// - dataworkspace.views.main.removeView
// - dataworkspace.views.main.resetViewLocation
// - dataworkspace.views.main.toggleVisibility
// - debug.action.openDisassemblyView
// - debug.action.toggleDisassemblyViewSourceCode
// - debug.addConfiguration
// - debug.addToWatchExpressions
// - debug.breakWhenValueChanges
// - debug.breakWhenValueIsAccessed
// - debug.breakWhenValueIsRead
// - debug.collapseRepl
// - debug.copyEvaluatePath
// - debug.copyStackTrace
// - debug.editBreakpoint
// - debug.editBreakpointMode
// - debug.editFunctionBreakpoint
// - debug.editFunctionBreakpointHitCount
// - debug.enableOrDisableBreakpoint
// - debug.installAdditionalDebuggers
// - debug.jumpToCursor
// - debug.replCopy
// - debug.replPaste
// - debug.setWatchExpression
// - debug.startFromConfig
// - debug.toggleReplIgnoreFocus
// - debugpy.SelectAndInsertDebugConfiguration
// - debugpy.clearCacheAndReload
// - debugpy.debugInTerminal
// - debugpy.debugUsingLaunchConfig
// - debugpy.pickArgs
// - debugpy.pickLocalProcess
// - debugpy.reportIssue
// - debugpy.viewOutput
// - default:compositionEnd
// - default:compositionStart
// - default:compositionType
// - default:cut
// - default:paste
// - default:redo
// - default:replacePreviousChar
// - default:type
// - default:undo
// - deleteAllLeft
// - deleteAllRight
// - deleteInsideWord
// - deleteWordEndLeft
// - deleteWordEndRight
// - deleteWordPartLeft
// - deleteWordPartRight
// - deleteWordStartLeft
// - deleteWordStartRight
// - developer.showCurrentFileAsReleaseNotes
// - diffEditor.collapseAllUnchangedRegions
// - diffEditor.revert
// - diffEditor.showAllUnchangedRegions
// - diffEditor.switchSide
// - diffEditor.toggleCollapseUnchangedRegions
// - diffEditor.toggleShowMovedCodeBlocks
// - diffEditor.toggleUseInlineViewWhenSpaceIsLimited
// - dockerContainers.focus
// - dockerContainers.removeView
// - dockerContainers.resetViewLocation
// - dockerContainers.toggleVisibility
// - dockerImages.focus
// - dockerImages.removeView
// - dockerImages.resetViewLocation
// - dockerImages.toggleVisibility
// - dockerNetworks.focus
// - dockerNetworks.removeView
// - dockerNetworks.resetViewLocation
// - dockerNetworks.toggleVisibility
// - dockerRegistries.focus
// - dockerRegistries.removeView
// - dockerRegistries.resetViewLocation
// - dockerRegistries.toggleVisibility
// - dockerVolumes.focus
// - dockerVolumes.removeView
// - dockerVolumes.resetViewLocation
// - dockerVolumes.toggleVisibility
// - dotnet.acquire
// - dotnet.acquireGlobalSDK
// - dotnet.acquireGlobalSDKPublic
// - dotnet.acquireStatus
// - dotnet.ensureDotnetDependencies
// - dotnet.findPath
// - dotnet.generateAssets
// - dotnet.listVersions
// - dotnet.openSolution
// - dotnet.recommendedVersion
// - dotnet.reportIssue
// - dotnet.restartServer
// - dotnet.restore.all
// - dotnet.restore.project
// - dotnet.showAcquisitionLog
// - dotnet.test.debugTestsInContext
// - dotnet.test.runTestsInContext
// - dotnet.uninstall
// - dotnet.uninstallAll
// - dotnet.uninstallPublic
// - editor.action.addCursorsToBottom
// - editor.action.addCursorsToTop
// - editor.action.addSelectionToPreviousFindMatch
// - editor.action.changeTabDisplaySize
// - editor.action.clipboardCopyWithSyntaxHighlightingAction
// - editor.action.debugEditorGpuRenderer
// - editor.action.decreaseHoverVerbosityLevel
// - editor.action.detectIndentation
// - editor.action.diffReview.next
// - editor.action.diffReview.prev
// - editor.action.duplicateSelection
// - editor.action.findReferences
// - editor.action.fixAll
// - editor.action.focusNextCursor
// - editor.action.focusPreviousCursor
// - editor.action.focusStickyScroll
// - editor.action.fontZoomIn
// - editor.action.fontZoomOut
// - editor.action.fontZoomReset
// - editor.action.forceRetokenize
// - editor.action.format
// - editor.action.formatChanges
// - editor.action.formatDocument.multiple
// - editor.action.formatSelection.multiple
// - editor.action.goToDeclaration
// - editor.action.goToMatchFindAction
// - editor.action.goToSelectionAnchor
// - editor.action.goToTypeDefinition
// - editor.action.increaseHoverVerbosityLevel
// - editor.action.indentUsingSpaces
// - editor.action.indentUsingTabs
// - editor.action.indentationToSpaces
// - editor.action.indentationToTabs
// - editor.action.inlineSuggest.acceptNextLine
// - editor.action.inlineSuggest.toggleAlwaysShowToolbar
// - editor.action.inspectTMScopes
// - editor.action.joinLines
// - editor.action.measureExtHostLatency
// - editor.action.moveCarretLeftAction
// - editor.action.moveCarretRightAction
// - editor.action.moveSelectionToPreviousFindMatch
// - editor.action.openDeclarationToTheSide
// - editor.action.openLink
// - editor.action.pasteAs
// - editor.action.pasteAsText
// - editor.action.peekDeclaration
// - editor.action.peekTypeDefinition
// - editor.action.previewDeclaration
// - editor.action.referenceSearch.trigger
// - editor.action.reindentlines
// - editor.action.reindentselectedlines
// - editor.action.removeDuplicateLines
// - editor.action.resetSuggestSize
// - editor.action.revealDeclaration
// - editor.action.selectToBracket
// - editor.action.showDefinitionPreviewHover
// - editor.action.showOrFocusStandaloneColorPicker
// - editor.action.showReferences
// - editor.action.showSnippets
// - editor.action.smartSelect.grow
// - editor.action.sortLinesAscending
// - editor.action.sortLinesDescending
// - editor.action.sourceAction
// - editor.action.startDebugTextMate
// - editor.action.surroundWithSnippet
// - editor.action.toggleColumnSelection
// - editor.action.toggleMinimap
// - editor.action.toggleRenderControlCharacter
// - editor.action.toggleRenderWhitespace
// - editor.action.toggleStickyScroll
// - editor.action.transformToCamelcase
// - editor.action.transformToKebabcase
// - editor.action.transformToLowercase
// - editor.action.transformToPascalcase
// - editor.action.transformToSnakecase
// - editor.action.transformToTitlecase
// - editor.action.transformToUppercase
// - editor.action.transpose
// - editor.action.transposeLetters
// - editor.action.unicodeHighlight.disableHighlightingOfAmbiguousCharacters
// - editor.action.unicodeHighlight.disableHighlightingOfInvisibleCharacters
// - editor.action.unicodeHighlight.disableHighlightingOfNonBasicAsciiCharacters
// - editor.action.unicodeHighlight.showExcludeOptions
// - editor.action.wordHighlight.trigger
// - editor.actions.findWithArgs
// - editor.debug.action.addLogPoint
// - editor.debug.action.conditionalBreakpoint
// - editor.debug.action.editBreakpoint
// - editor.debug.action.goToNextBreakpoint
// - editor.debug.action.goToPreviousBreakpoint
// - editor.debug.action.runToCursor
// - editor.debug.action.selectionToRepl
// - editor.debug.action.selectionToWatch
// - editor.debug.action.stepIntoTargets
// - editor.debug.action.triggerByBreakpoint
// - 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.wrapWithAbbreviation
// - editor.gotoNextFold
// - editor.gotoParentFold
// - editor.gotoPreviousFold
// - editor.inlayHints.Reset
// - editor.showTypeHierarchy
// - editor.toggleImportFold
// - emmet.expandAbbreviation
// - eslint.applyAllFixes
// - eslint.applyDisableFile
// - eslint.applyDisableLine
// - eslint.applySameFixes
// - eslint.applySingleFix
// - eslint.applySuggestion
// - eslint.createConfig
// - eslint.executeAutofix
// - eslint.migrateSettings
// - eslint.openRuleDoc
// - eslint.restart
// - eslint.revalidate
// - eslint.showOutputChannel
// - explorer.download
// - explorer.newFile
// - explorer.newFolder
// - explorer.openWith
// - explorer.upload
// - explorerPanel.focus
// - explorerPanel.removeView
// - explorerPanel.resetViewLocation
// - explorerPanel.toggleVisibility
// - extension.backup
// - extension.bisect.next
// - extension.bisect.start
// - extension.bisect.stop
// - extension.changeDB
// - extension.changeServer
// - extension.connectToSQLServer
// - extension.edge-debug.toggleSkippingFile
// - extension.edge-debug.toggleSmartStep
// - extension.ejseval
// - extension.formatSelectionAsHtmlBeautify
// - extension.generateTree
// - extension.js-debug.addCustomBreakpoints
// - extension.js-debug.addXHRBreakpoints
// - extension.js-debug.callers.add
// - extension.js-debug.callers.goToCaller
// - extension.js-debug.callers.gotToTarget
// - extension.js-debug.callers.remove
// - extension.js-debug.callers.removeAll
// - extension.js-debug.createDebuggerTerminal
// - extension.js-debug.createDiagnostics
// - extension.js-debug.debugLink
// - extension.js-debug.disableSourceMapStepping
// - extension.js-debug.editXHRBreakpoints
// - extension.js-debug.enableSourceMapStepping
// - extension.js-debug.getDiagnosticLogs
// - extension.js-debug.network.clear
// - extension.js-debug.network.copyUri
// - extension.js-debug.network.openBody
// - extension.js-debug.network.openBodyInHex
// - extension.js-debug.network.replayXHR
// - extension.js-debug.network.viewRequest
// - extension.js-debug.npmScript
// - extension.js-debug.openEdgeDevTools
// - extension.js-debug.prettyPrint
// - extension.js-debug.removeAllCustomBreakpoints
// - extension.js-debug.removeXHRBreakpoint
// - extension.js-debug.revealPage
// - extension.js-debug.startProfile
// - extension.js-debug.stopProfile
// - extension.js-debug.toggleSkippingFile
// - extension.jsProfileVisualizer.table.clearCodeLenses
// - extension.liveServer.changeWorkspace
// - extension.node-debug.toggleAutoAttach
// - extension.open
// - extension.open-directory
// - extension.php-debug.debugEditorContents
// - extension.php-debug.runEditorContents
// - extension.pwa-node-debug.attachNodeProcess
// - extension.queryFileSQL
// - extension.queryFileSQLToCSV
// - extension.querySelectedSQLToCSV
// - extension.restore
// - extension.runQueryBuild
// - extension.saveConfig
// - extension.showRazorCSharpWindow
// - extension.showRazorHtmlWindow
// - extensions.actions.searchByCategory.AI
// - extensions.actions.searchByCategory.Azure
// - extensions.actions.searchByCategory.Chat
// - extensions.actions.searchByCategory.Data Science
// - extensions.actions.searchByCategory.Debuggers
// - extensions.actions.searchByCategory.Education
// - extensions.actions.searchByCategory.Extension Packs
// - extensions.actions.searchByCategory.Formatters
// - extensions.actions.searchByCategory.Keymaps
// - extensions.actions.searchByCategory.Language Packs
// - extensions.actions.searchByCategory.Linters
// - extensions.actions.searchByCategory.Machine Learning
// - extensions.actions.searchByCategory.Notebooks
// - extensions.actions.searchByCategory.Other
// - extensions.actions.searchByCategory.Programming Languages
// - extensions.actions.searchByCategory.SCM Providers
// - extensions.actions.searchByCategory.Snippets
// - extensions.actions.searchByCategory.Testing
// - extensions.actions.searchByCategory.Themes
// - extensions.actions.searchByCategory.Visualization
// - extensions.filter.featured
// - extensions.recommendedList.focus
// - extensions.recommendedList.resetViewLocation
// - extensions.sort.installs
// - extensions.sort.name
// - extensions.sort.publishedDate
// - extensions.sort.rating
// - extensions.sort.updateDate
// - f7.BlankPageSingle
// - f7.BlankPageSingleWget
// - f7.Chat
// - f7.ChatWget
// - f7.Preview
// - f7.PreviewBrowser
// - figma.createRelatedLinkForCurrentFile
// - figma.disabledCommand
// - figma.gotoRelatedComponentForCurrentFile
// - figma.logout
// - figma.openUrl
// - figma.quickPickLayer
// - figma.removeRelatedLinkForCurrentFile
// - figma.saveDebugInformation
// - figma.selectOrg
// - figma.views.dummyLoginNotifications.focus
// - figma.views.dummyLoginNotifications.removeView
// - figma.views.dummyLoginNotifications.resetViewLocation
// - figma.views.dummyLoginNotifications.toggleVisibility
// - figma.views.files.focus
// - figma.views.files.resetViewLocation
// - figma.views.login.focus
// - figma.views.login.removeView
// - figma.views.login.resetViewLocation
// - figma.views.login.toggleVisibility
// - figma.views.notifications.focus
// - figma.views.notifications.resetViewLocation
// - files.openTimeline
// - files.participants.resetChoice
// - filesExplorer.findInWorkspace
// - flutter.addSdkToPath
// - flutter.attach
// - flutter.attachProcess
// - flutter.cancelInspectWidget
// - flutter.clean
// - flutter.createProject
// - flutter.createProject.sidebar
// - flutter.doctor
// - flutter.doctor.sidebar
// - flutter.getSelectedDeviceId
// - flutter.hotReload
// - flutter.hotRestart
// - flutter.inspectWidget
// - flutter.inspectWidget.autoCancel
// - flutter.launchEmulator
// - flutter.openDevTools
// - flutter.openDevTools.sidebar
// - flutter.openInAndroidStudio
// - flutter.openInXcode
// - flutter.overridePlatform
// - flutter.packages.get
// - flutter.packages.get.all
// - flutter.packages.outdated
// - flutter.packages.upgrade
// - flutter.packages.upgrade.majorVersions
// - flutter.runProfileMode
// - flutter.runReleaseMode
// - flutter.screenshot
// - flutter.selectDevice
// - flutter.task.genl10n
// - flutter.toggleBrightness
// - flutter.toggleDebugModeBanner
// - flutter.toggleDebugPainting
// - flutter.togglePaintBaselines
// - flutter.togglePerformanceOverlay
// - flutter.toggleRepaintRainbow
// - flutter.toggleSlowAnimations
// - flutter.upgrade
// - focusAndAcceptSuggestion
// - ftp.config
// - ftp.delete
// - ftp.download
// - ftp.mkdir
// - ftp.remote.workspace.open
// - ftp.rename
// - ftp.reset
// - ftpkr.cancel
// - ftpkr.cleanAll
// - ftpkr.delete
// - ftpkr.diff
// - ftpkr.download
// - ftpkr.downloadAll
// - ftpkr.explorer.focus
// - ftpkr.explorer.removeView
// - ftpkr.explorer.resetViewLocation
// - ftpkr.explorer.toggleVisibility
// - ftpkr.init
// - ftpkr.list
// - ftpkr.mkdir
// - ftpkr.new
// - ftpkr.reconnect
// - ftpkr.refresh
// - ftpkr.runtask
// - ftpkr.ssh
// - ftpkr.target
// - ftpkr.upload
// - ftpkr.uploadAll
// - ftpkr.view
// - gaia.copyExample
// - gaia_feedback.submit_feedback
// - gaia_hover.show_call_summary_document
// - geminicodeassist.signin
// - geminicodeassist.signout
// - geminicodeassist.takeSurvey
// - getContextKeyInfo
// - git-base.api.getRemoteSources
// - git._syncAll
// - git.acceptMerge
// - git.addRemote
// - git.api.getRemoteSources
// - git.api.getRepositories
// - git.api.getRepositoryState
// - git.branch
// - git.branchFrom
// - git.checkout
// - git.checkoutDetached
// - git.checkoutRefDetached
// - git.cherryPick
// - git.cherryPickRef
// - git.clean
// - git.cleanAll
// - git.cleanAllTracked
// - git.cleanAllUntracked
// - git.clone
// - git.cloneRecursive
// - git.close
// - git.closeAllDiffEditors
// - git.closeAllUnmodifiedEditors
// - git.closeOtherRepositories
// - git.commit
// - git.commit.FileEntry.CompareAgainstPrevious
// - git.commit.FileEntry.CompareAgainstWorkspace
// - git.commit.FileEntry.ViewFileContents
// - git.commit.FileEntry.compare
// - git.commit.FileEntry.selectForComparison
// - git.commit.ViewChangeLog
// - git.commit.cherryPick
// - git.commit.compare
// - git.commit.compare.file.compare
// - git.commit.compare.selectForComparison
// - git.commit.compare.view.hide
// - git.commit.compare.view.show
// - git.commit.compare.view.showFilesOnly
// - git.commit.compare.view.showFolderView
// - git.commit.createBranch
// - git.commit.merge
// - git.commit.rebase
// - git.commit.view.hide
// - git.commit.view.show
// - git.commit.view.showFilesOnly
// - git.commit.view.showFolderView
// - git.commitAll
// - git.commitAllAmend
// - git.commitAllAmendNoVerify
// - git.commitAllNoVerify
// - git.commitAllSigned
// - git.commitAllSignedNoVerify
// - git.commitAmend
// - git.commitAmendNoVerify
// - git.commitEmpty
// - git.commitEmptyNoVerify
// - git.commitMessageAccept
// - git.commitMessageDiscard
// - git.commitNoVerify
// - git.commitSigned
// - git.commitSignedNoVerify
// - git.commitStaged
// - git.commitStagedAmend
// - git.commitStagedAmendNoVerify
// - git.commitStagedNoVerify
// - git.commitStagedSigned
// - git.commitStagedSignedNoVerify
// - git.continueInLocalClone
// - git.copyCommitId
// - git.copyCommitMessage
// - git.createTag
// - git.deleteBranch
// - git.deleteRemoteTag
// - git.deleteTag
// - git.diff.stageHunk
// - git.diff.stageSelection
// - git.fetch
// - git.fetchAll
// - git.fetchPrune
// - git.fetchRef
// - git.ignore
// - git.init
// - git.manageUnsafeRepositories
// - git.merge
// - git.mergeAbort
// - git.openAllChanges
// - git.openChange
// - git.openFile
// - git.openFile2
// - git.openHEADFile
// - git.openMergeEditor
// - git.openRepositoriesInParentFolders
// - git.openRepository
// - git.openResource
// - git.publish
// - git.pull
// - git.pullFrom
// - git.pullRebase
// - git.pullRef
// - git.push
// - git.pushForce
// - git.pushRef
// - git.pushTags
// - git.pushTo
// - git.pushToForce
// - git.pushWithTags
// - git.pushWithTagsForce
// - git.rebase
// - git.rebaseAbort
// - git.refresh
// - git.removeRemote
// - git.rename
// - git.renameBranch
// - git.reopenClosedRepositories
// - git.restoreCommitTemplate
// - git.revealFileInOS.linux
// - git.revealFileInOS.mac
// - git.revealFileInOS.windows
// - git.revealInExplorer
// - git.revertChange
// - git.runGitMerge
// - git.runGitMergeDiff3
// - git.showOutput
// - git.stage
// - git.stageAll
// - git.stageAllMerge
// - git.stageAllTracked
// - git.stageAllUntracked
// - git.stageChange
// - git.stageFile
// - git.stash
// - git.stashApply
// - git.stashApplyEditor
// - git.stashApplyLatest
// - git.stashDrop
// - git.stashDropAll
// - git.stashDropEditor
// - git.stashIncludeUntracked
// - git.stashPop
// - git.stashPopEditor
// - git.stashPopLatest
// - git.stashStaged
// - git.stashView
// - git.sync
// - git.syncRebase
// - git.timeline.compareWithSelected
// - git.timeline.copyCommitId
// - git.timeline.copyCommitMessage
// - git.timeline.openDiff
// - git.timeline.selectForCompare
// - git.timeline.viewCommit
// - git.undoCommit
// - git.unstage
// - git.unstageAll
// - git.unstageFile
// - git.viewAllChanges
// - git.viewChanges
// - git.viewCommit
// - git.viewHistory
// - git.viewLineHistory
// - git.viewStagedChanges
// - git.viewUntrackedChanges
// - github-actions.current-branch.focus
// - github-actions.current-branch.resetViewLocation
// - github-actions.empty-view.focus
// - github-actions.empty-view.removeView
// - github-actions.empty-view.resetViewLocation
// - github-actions.empty-view.toggleVisibility
// - github-actions.explorer.current-branch.refresh
// - github-actions.explorer.openRun
// - github-actions.explorer.openWorkflowFile
// - github-actions.explorer.refresh
// - github-actions.explorer.triggerRun
// - github-actions.settings.focus
// - github-actions.settings.resetViewLocation
// - github-actions.settings.secret.add
// - github-actions.settings.secret.copy
// - github-actions.settings.secret.delete
// - github-actions.settings.secret.update
// - github-actions.settings.secrets.manage
// - github-actions.settings.variable.add
// - github-actions.settings.variable.copy-name
// - github-actions.settings.variable.copy-value
// - github-actions.settings.variable.delete
// - github-actions.settings.variable.update
// - github-actions.sign-in
// - github-actions.step.logs
// - github-actions.workflow.logs
// - github-actions.workflow.pin
// - github-actions.workflow.run.cancel
// - github-actions.workflow.run.open
// - github-actions.workflow.run.rerun
// - github-actions.workflow.unpin
// - github-actions.workflows.focus
// - github-actions.workflows.resetViewLocation
// - github.copilot.chat.attachFile
// - github.copilot.chat.attachSelection
// - github.copilot.chat.explain
// - github.copilot.chat.explain.palette
// - github.copilot.collectDiagnostics
// - github.copilot.createLaunchJsonFileWithContents
// - github.copilot.debug.collectDiagnostics
// - github.copilot.debug.generateConfiguration
// - github.copilot.debug.generateSTest
// - github.copilot.debug.workbenchState
// - github.copilot.devcontainer.generateDevContainerConfig
// - github.copilot.ghpr.applySuggestion
// - github.copilot.git.generateCommitMessage
// - github.copilot.interactiveEditor.fix
// - github.copilot.interactiveEditor.generate
// - github.copilot.interactiveEditor.generateDocs
// - github.copilot.interactiveEditor.generateTests
// - github.copilot.interactiveEditor.review
// - github.copilot.interactiveEditor.review.apply
// - github.copilot.interactiveEditor.review.applyAndNext
// - github.copilot.interactiveEditor.review.changes
// - github.copilot.interactiveEditor.review.continueInChat
// - github.copilot.interactiveEditor.review.continueInInlineChat
// - github.copilot.interactiveEditor.review.discard
// - github.copilot.interactiveEditor.review.discardAll
// - github.copilot.interactiveEditor.review.discardAndNext
// - github.copilot.interactiveEditor.review.markHelpful
// - github.copilot.interactiveEditor.review.markUnhelpful
// - github.copilot.interactiveEditor.review.next
// - github.copilot.interactiveEditor.review.previous
// - github.copilot.interactiveEditor.review.stagedChanges
// - github.copilot.interactiveSession.feedback
// - github.copilot.offline
// - github.copilot.open.walkthrough
// - github.copilot.openDocs
// - github.copilot.openLogs
// - github.copilot.sendFeedback
// - github.copilot.signIn
// - github.copilot.startDebugging
// - github.copilot.terminal.explainTerminalLastCommand
// - github.copilot.terminal.explainTerminalSelection
// - github.copilot.terminal.explainTerminalSelectionContextMenu
// - github.copilot.tests.fixTestFailure
// - github.copilot.toggleCopilot
// - github.copilot.toggleStatusMenu
// - github.copilotChat.signIn
// - github.copilotChat.signInChoose
// - github.copilotChat.signInGHE
// - github.copyVscodeDevLink
// - github.copyVscodeDevLinkFile
// - github.copyVscodeDevLinkWithoutRange
// - github.openOnVscodeDev
// - github.publish
// - gitlens.action.createPullRequest
// - gitlens.action.hover.commands
// - gitlens.action.openPullRequest
// - gitlens.addAuthors
// - gitlens.annotations.nextChange
// - gitlens.annotations.previousChange
// - gitlens.applyPatchFromClipboard
// - gitlens.browseRepoAtRevision
// - gitlens.browseRepoAtRevisionInNewWindow
// - gitlens.browseRepoBeforeRevision
// - gitlens.browseRepoBeforeRevisionInNewWindow
// - gitlens.clearFileAnnotations
// - gitlens.closeUnchangedFiles
// - gitlens.compareHeadWith
// - gitlens.compareWith
// - gitlens.compareWorkingWith
// - gitlens.computingFileAnnotations
// - gitlens.connectRemoteProvider
// - gitlens.copyCurrentBranch
// - gitlens.copyDeepLinkToBranch
// - gitlens.copyDeepLinkToCommit
// - gitlens.copyDeepLinkToComparison
// - gitlens.copyDeepLinkToFile
// - gitlens.copyDeepLinkToFileAtRevision
// - gitlens.copyDeepLinkToLines
// - gitlens.copyDeepLinkToRepo
// - gitlens.copyDeepLinkToTag
// - gitlens.copyDeepLinkToWorkspace
// - gitlens.copyMessageToClipboard
// - gitlens.copyPatchToClipboard
// - gitlens.copyRelativePathToClipboard
// - gitlens.copyRemoteBranchUrl
// - gitlens.copyRemoteBranchesUrl
// - gitlens.copyRemoteCommitUrl
// - gitlens.copyRemoteComparisonUrl
// - gitlens.copyRemoteFileUrlFrom
// - gitlens.copyRemoteFileUrlToClipboard
// - gitlens.copyRemoteFileUrlWithoutRange
// - gitlens.copyRemotePullRequestUrl
// - gitlens.copyRemoteRepositoryUrl
// - gitlens.copyShaToClipboard
// - gitlens.copyWorkingChangesToWorktree
// - gitlens.createCloudPatch
// - gitlens.createPatch
// - gitlens.createPullRequestOnRemote
// - gitlens.diffDirectory
// - gitlens.diffDirectoryWithHead
// - gitlens.diffFolderWithRevision
// - gitlens.diffFolderWithRevisionFrom
// - gitlens.diffHeadWith
// - gitlens.diffLineWithWorking
// - gitlens.diffWith
// - gitlens.diffWithRevision
// - gitlens.diffWithRevisionFrom
// - gitlens.diffWithWorkingInDiffLeft
// - gitlens.diffWithWorkingInDiffRight
// - gitlens.diffWorkingWith
// - gitlens.disableDebugLogging
// - gitlens.disableRebaseEditor
// - gitlens.disconnectRemoteProvider
// - gitlens.enableDebugLogging
// - gitlens.enableRebaseEditor
// - gitlens.externalDiff
// - gitlens.externalDiffAll
// - gitlens.fetchRepositories
// - gitlens.generateCommitMessage
// - gitlens.getStarted
// - gitlens.ghpr.views.openOrCreateWorktree
// - gitlens.gitCommands.branch
// - gitlens.gitCommands.branch.create
// - gitlens.gitCommands.branch.delete
// - gitlens.gitCommands.branch.prune
// - gitlens.gitCommands.branch.rename
// - gitlens.gitCommands.checkout
// - gitlens.gitCommands.cherryPick
// - gitlens.gitCommands.history
// - gitlens.gitCommands.merge
// - gitlens.gitCommands.rebase
// - gitlens.gitCommands.remote
// - gitlens.gitCommands.remote.add
// - gitlens.gitCommands.remote.prune
// - gitlens.gitCommands.remote.remove
// - gitlens.gitCommands.reset
// - gitlens.gitCommands.revert
// - gitlens.gitCommands.show
// - gitlens.gitCommands.stash
// - gitlens.gitCommands.stash.drop
// - gitlens.gitCommands.stash.list
// - gitlens.gitCommands.stash.pop
// - gitlens.gitCommands.stash.push
// - gitlens.gitCommands.stash.rename
// - gitlens.gitCommands.status
// - gitlens.gitCommands.switch
// - gitlens.gitCommands.tag
// - gitlens.gitCommands.tag.create
// - gitlens.gitCommands.tag.delete
// - gitlens.gitCommands.worktree
// - gitlens.gitCommands.worktree.create
// - gitlens.gitCommands.worktree.delete
// - gitlens.gitCommands.worktree.open
// - gitlens.gk.switchOrganization
// - gitlens.graph.addAuthor
// - gitlens.graph.cherryPick
// - gitlens.graph.columnAuthorOff
// - gitlens.graph.columnAuthorOn
// - gitlens.graph.columnChangesOff
// - gitlens.graph.columnChangesOn
// - gitlens.graph.columnDateTimeOff
// - gitlens.graph.columnDateTimeOn
// - gitlens.graph.columnGraphCompact
// - gitlens.graph.columnGraphDefault
// - gitlens.graph.columnGraphOff
// - gitlens.graph.columnGraphOn
// - gitlens.graph.columnMessageOff
// - gitlens.graph.columnMessageOn
// - gitlens.graph.columnRefOff
// - gitlens.graph.columnRefOn
// - gitlens.graph.columnShaOff
// - gitlens.graph.columnShaOn
// - gitlens.graph.compareAncestryWithWorking
// - gitlens.graph.compareBranchWithHead
// - gitlens.graph.compareWithHead
// - gitlens.graph.compareWithMergeBase
// - gitlens.graph.compareWithUpstream
// - gitlens.graph.compareWithWorking
// - gitlens.graph.copy
// - gitlens.graph.copyDeepLinkToBranch
// - gitlens.graph.copyDeepLinkToCommit
// - gitlens.graph.copyDeepLinkToRepo
// - gitlens.graph.copyDeepLinkToTag
// - gitlens.graph.copyMessage
// - gitlens.graph.copyRemoteBranchUrl
// - gitlens.graph.copyRemoteCommitUrl
// - gitlens.graph.copyRemoteCommitUrl.multi
// - gitlens.graph.copySha
// - gitlens.graph.copyWorkingChangesToWorktree
// - gitlens.graph.createBranch
// - gitlens.graph.createCloudPatch
// - gitlens.graph.createPatch
// - gitlens.graph.createPullRequest
// - gitlens.graph.createTag
// - gitlens.graph.createWorktree
// - gitlens.graph.deleteBranch
// - gitlens.graph.deleteTag
// - gitlens.graph.fetch
// - gitlens.graph.hideLocalBranch
// - gitlens.graph.hideRefGroup
// - gitlens.graph.hideRemote
// - gitlens.graph.hideRemoteBranch
// - gitlens.graph.hideTag
// - gitlens.graph.mergeBranchInto
// - gitlens.graph.openBranchOnRemote
// - gitlens.graph.openChangedFileDiffs
// - gitlens.graph.openChangedFileDiffsIndividually
// - gitlens.graph.openChangedFileDiffsWithMergeBase
// - gitlens.graph.openChangedFileDiffsWithWorking
// - gitlens.graph.openChangedFileDiffsWithWorkingIndividually
// - gitlens.graph.openChangedFileRevisions
// - gitlens.graph.openChangedFiles
// - gitlens.graph.openCommitOnRemote
// - gitlens.graph.openCommitOnRemote.multi
// - gitlens.graph.openInWorktree
// - gitlens.graph.openOnlyChangedFiles
// - gitlens.graph.openPullRequest
// - gitlens.graph.openPullRequestChanges
// - gitlens.graph.openPullRequestComparison
// - gitlens.graph.openPullRequestOnRemote
// - gitlens.graph.openSCM
// - gitlens.graph.openWorktree
// - gitlens.graph.openWorktreeInNewWindow
// - gitlens.graph.publishBranch
// - gitlens.graph.pull
// - gitlens.graph.push
// - gitlens.graph.pushWithForce
// - gitlens.graph.rebaseOntoBranch
// - gitlens.graph.rebaseOntoCommit
// - gitlens.graph.rebaseOntoUpstream
// - gitlens.graph.refresh
// - gitlens.graph.renameBranch
// - gitlens.graph.resetColumnsCompact
// - gitlens.graph.resetColumnsDefault
// - gitlens.graph.resetCommit
// - gitlens.graph.resetToCommit
// - gitlens.graph.resetToTip
// - gitlens.graph.revert
// - gitlens.graph.scrollMarkerLocalBranchOff
// - gitlens.graph.scrollMarkerLocalBranchOn
// - gitlens.graph.scrollMarkerPullRequestOff
// - gitlens.graph.scrollMarkerPullRequestOn
// - gitlens.graph.scrollMarkerRemoteBranchOff
// - gitlens.graph.scrollMarkerRemoteBranchOn
// - gitlens.graph.scrollMarkerStashOff
// - gitlens.graph.scrollMarkerStashOn
// - gitlens.graph.scrollMarkerTagOff
// - gitlens.graph.scrollMarkerTagOn
// - gitlens.graph.shareAsCloudPatch
// - gitlens.graph.showInDetailsView
// - gitlens.graph.split
// - gitlens.graph.stash.apply
// - gitlens.graph.stash.delete
// - gitlens.graph.stash.rename
// - gitlens.graph.stash.save
// - gitlens.graph.switchToAnotherBranch
// - gitlens.graph.switchToBranch
// - gitlens.graph.switchToCommit
// - gitlens.graph.switchToEditorLayout
// - gitlens.graph.switchToPanelLayout
// - gitlens.graph.switchToTag
// - gitlens.graph.undoCommit
// - gitlens.inviteToLiveShare
// - gitlens.launchpad.indicator.action
// - gitlens.launchpad.indicator.toggle
// - gitlens.openAssociatedPullRequestOnRemote
// - gitlens.openBlamePriorToChange
// - gitlens.openBranchInRemote
// - gitlens.openBranchOnRemote
// - gitlens.openBranchesInRemote
// - gitlens.openBranchesOnRemote
// - gitlens.openChangedFiles
// - gitlens.openCloudPatch
// - gitlens.openCommitInRemote
// - gitlens.openCommitOnRemote
// - gitlens.openComparisonOnRemote
// - gitlens.openCurrentBranchOnRemote
// - gitlens.openFileFromRemote
// - gitlens.openFileHistory
// - gitlens.openFileInRemote
// - gitlens.openFileOnRemote
// - gitlens.openFileOnRemoteFrom
// - gitlens.openFileRevision
// - gitlens.openFileRevisionFrom
// - gitlens.openFolderHistory
// - gitlens.openInRemote
// - gitlens.openOnRemote
// - gitlens.openOnlyChangedFiles
// - gitlens.openPatch
// - gitlens.openPullRequestOnRemote
// - gitlens.openRepoInRemote
// - gitlens.openRepoOnRemote
// - gitlens.openRevisionFile
// - gitlens.openRevisionFileInDiffLeft
// - gitlens.openRevisionFileInDiffRight
// - gitlens.openWalkthrough
// - gitlens.openWorkingFile
// - gitlens.openWorkingFileInDiffLeft
// - gitlens.openWorkingFileInDiffRight
// - gitlens.pastePatchFromClipboard
// - gitlens.plus.cloudIntegrations.connect
// - gitlens.plus.cloudIntegrations.manage
// - gitlens.plus.hide
// - gitlens.plus.login
// - gitlens.plus.logout
// - gitlens.plus.manage
// - gitlens.plus.reactivateProTrial
// - gitlens.plus.refreshRepositoryAccess
// - gitlens.plus.resendVerification
// - gitlens.plus.restore
// - gitlens.plus.showPlans
// - gitlens.plus.signUp
// - gitlens.plus.simulateSubscription
// - gitlens.plus.startPreviewTrial
// - gitlens.plus.upgrade
// - gitlens.plus.validate
// - gitlens.pullRepositories
// - gitlens.pushRepositories
// - gitlens.quickOpenFileHistory
// - gitlens.refreshHover
// - gitlens.reset
// - gitlens.resetAIKey
// - gitlens.resetViewsLayout
// - gitlens.revealCommitInView
// - gitlens.shareAsCloudPatch
// - gitlens.showAccountView
// - gitlens.showBranchesView
// - gitlens.showCommitDetailsView
// - gitlens.showCommitInView
// - gitlens.showCommitSearch
// - gitlens.showCommitsInView
// - gitlens.showCommitsView
// - gitlens.showContributorsView
// - gitlens.showDraftsView
// - gitlens.showFileHistoryInView
// - gitlens.showFileHistoryView
// - gitlens.showGraph
// - gitlens.showGraphPage
// - gitlens.showGraphView
// - gitlens.showHomeView
// - gitlens.showInCommitGraph
// - gitlens.showInCommitGraphView
// - gitlens.showInDetailsView
// - gitlens.showInTimeline
// - gitlens.showLastQuickPick
// - gitlens.showLaunchpad
// - gitlens.showLaunchpadView
// - gitlens.showLineCommitInView
// - gitlens.showLineHistoryView
// - gitlens.showPatchDetailsPage
// - gitlens.showQuickBranchHistory
// - gitlens.showQuickCommitDetails
// - gitlens.showQuickRevisionDetails
// - gitlens.showQuickRevisionDetailsInDiffLeft
// - gitlens.showQuickRevisionDetailsInDiffRight
// - gitlens.showQuickStashList
// - gitlens.showRemotesView
// - gitlens.showRepositoriesView
// - gitlens.showSearchAndCompareView
// - gitlens.showSettingsPage
// - gitlens.showSettingsPage!autolinks
// - gitlens.showSettingsPage!branches-view
// - gitlens.showSettingsPage!commit-graph
// - gitlens.showSettingsPage!commits-view
// - gitlens.showSettingsPage!contributors-view
// - gitlens.showSettingsPage!file-annotations
// - gitlens.showSettingsPage!file-history-view
// - gitlens.showSettingsPage!line-history-view
// - gitlens.showSettingsPage!remotes-view
// - gitlens.showSettingsPage!repositories-view
// - gitlens.showSettingsPage!search-compare-view
// - gitlens.showSettingsPage!stashes-view
// - gitlens.showSettingsPage!tags-view
// - gitlens.showSettingsPage!views
// - gitlens.showSettingsPage!worktrees-view
// - gitlens.showStashesView
// - gitlens.showTagsView
// - gitlens.showTimelinePage
// - gitlens.showTimelineView
// - gitlens.showWelcomePage
// - gitlens.showWorkspacesView
// - gitlens.showWorktreesView
// - gitlens.stashApply
// - gitlens.stashSave
// - gitlens.stashSaveFiles
// - gitlens.switchAIModel
// - gitlens.switchMode
// - gitlens.timeline.refresh
// - gitlens.timeline.split
// - gitlens.toggleFileBlameInDiffLeft
// - gitlens.toggleFileBlameInDiffRight
// - gitlens.toggleFileChanges
// - gitlens.toggleFileChangesOnly
// - gitlens.toggleFileHeatmap
// - gitlens.toggleFileHeatmapInDiffLeft
// - gitlens.toggleFileHeatmapInDiffRight
// - gitlens.toggleGraph
// - gitlens.toggleLineBlame
// - gitlens.toggleMaximizedGraph
// - gitlens.toggleReviewMode
// - gitlens.toggleZenMode
// - gitlens.views.addAuthor
// - gitlens.views.addAuthor.multi
// - gitlens.views.addAuthors
// - gitlens.views.addRemote
// - gitlens.views.applyChanges
// - gitlens.views.branches.focus
// - gitlens.views.branches.refresh
// - gitlens.views.branches.resetViewLocation
// - gitlens.views.branches.setFilesLayoutToAuto
// - gitlens.views.branches.setFilesLayoutToList
// - gitlens.views.branches.setFilesLayoutToTree
// - gitlens.views.branches.setLayoutToList
// - gitlens.views.branches.setLayoutToTree
// - gitlens.views.branches.setShowAvatarsOff
// - gitlens.views.branches.setShowAvatarsOn
// - gitlens.views.branches.setShowBranchComparisonOff
// - gitlens.views.branches.setShowBranchComparisonOn
// - gitlens.views.branches.setShowBranchPullRequestOff
// - gitlens.views.branches.setShowBranchPullRequestOn
// - gitlens.views.browseRepoAtRevision
// - gitlens.views.browseRepoAtRevisionInNewWindow
// - gitlens.views.browseRepoBeforeRevision
// - gitlens.views.browseRepoBeforeRevisionInNewWindow
// - gitlens.views.cherryPick
// - gitlens.views.cherryPick.multi
// - gitlens.views.clearComparison
// - gitlens.views.clearReviewed
// - gitlens.views.closeRepository
// - gitlens.views.collapseNode
// - gitlens.views.commitDetails.focus
// - gitlens.views.commitDetails.refresh
// - gitlens.views.commitDetails.resetViewLocation
// - gitlens.views.commits.focus
// - gitlens.views.commits.refresh
// - gitlens.views.commits.resetViewLocation
// - gitlens.views.commits.setCommitsFilterAuthors
// - gitlens.views.commits.setCommitsFilterOff
// - gitlens.views.commits.setFilesLayoutToAuto
// - gitlens.views.commits.setFilesLayoutToList
// - gitlens.views.commits.setFilesLayoutToTree
// - gitlens.views.commits.setShowAvatarsOff
// - gitlens.views.commits.setShowAvatarsOn
// - gitlens.views.commits.setShowBranchComparisonOff
// - gitlens.views.commits.setShowBranchComparisonOn
// - gitlens.views.commits.setShowBranchPullRequestOff
// - gitlens.views.commits.setShowBranchPullRequestOn
// - gitlens.views.commits.setShowMergeCommitsOff
// - gitlens.views.commits.setShowMergeCommitsOn
// - gitlens.views.compareAncestryWithWorking
// - gitlens.views.compareBranchWithHead
// - gitlens.views.compareFileWithSelected
// - gitlens.views.compareWithHead
// - gitlens.views.compareWithMergeBase
// - gitlens.views.compareWithSelected
// - gitlens.views.compareWithUpstream
// - gitlens.views.compareWithWorking
// - gitlens.views.contributors.focus
// - gitlens.views.contributors.refresh
// - gitlens.views.contributors.resetViewLocation
// - gitlens.views.contributors.setFilesLayoutToAuto
// - gitlens.views.contributors.setFilesLayoutToList
// - gitlens.views.contributors.setFilesLayoutToTree
// - gitlens.views.contributors.setShowAllBranchesOff
// - gitlens.views.contributors.setShowAllBranchesOn
// - gitlens.views.contributors.setShowAvatarsOff
// - gitlens.views.contributors.setShowAvatarsOn
// - gitlens.views.contributors.setShowMergeCommitsOff
// - gitlens.views.contributors.setShowMergeCommitsOn
// - gitlens.views.contributors.setShowStatisticsOff
// - gitlens.views.contributors.setShowStatisticsOn
// - gitlens.views.copy
// - gitlens.views.copyAsMarkdown
// - gitlens.views.copyRemoteCommitUrl
// - gitlens.views.copyRemoteCommitUrl.multi
// - gitlens.views.copyUrl
// - gitlens.views.copyUrl.multi
// - gitlens.views.createBranch
// - gitlens.views.createPullRequest
// - gitlens.views.createTag
// - gitlens.views.createWorktree
// - gitlens.views.deleteBranch
// - gitlens.views.deleteBranch.multi
// - gitlens.views.deleteTag
// - gitlens.views.deleteTag.multi
// - gitlens.views.deleteWorktree
// - gitlens.views.deleteWorktree.multi
// - gitlens.views.dismissNode
// - gitlens.views.draft.open
// - gitlens.views.draft.openOnWeb
// - gitlens.views.drafts.create
// - gitlens.views.drafts.delete
// - gitlens.views.drafts.focus
// - gitlens.views.drafts.info
// - gitlens.views.drafts.refresh
// - gitlens.views.drafts.removeView
// - gitlens.views.drafts.resetViewLocation
// - gitlens.views.drafts.setShowAvatarsOff
// - gitlens.views.drafts.setShowAvatarsOn
// - gitlens.views.drafts.toggleVisibility
// - gitlens.views.editNode
// - gitlens.views.expandNode
// - gitlens.views.fetch
// - gitlens.views.fileHistory.changeBase
// - gitlens.views.fileHistory.focus
// - gitlens.views.fileHistory.refresh
// - gitlens.views.fileHistory.resetViewLocation
// - gitlens.views.fileHistory.setCursorFollowingOff
// - gitlens.views.fileHistory.setCursorFollowingOn
// - gitlens.views.fileHistory.setEditorFollowingOff
// - gitlens.views.fileHistory.setEditorFollowingOn
// - gitlens.views.fileHistory.setRenameFollowingOff
// - gitlens.views.fileHistory.setRenameFollowingOn
// - gitlens.views.fileHistory.setShowAllBranchesOff
// - gitlens.views.fileHistory.setShowAllBranchesOn
// - gitlens.views.fileHistory.setShowAvatarsOff
// - gitlens.views.fileHistory.setShowAvatarsOn
// - gitlens.views.fileHistory.setShowMergeCommitsOff
// - gitlens.views.fileHistory.setShowMergeCommitsOn
// - gitlens.views.graph.focus
// - gitlens.views.graph.openInTab
// - gitlens.views.graph.refresh
// - gitlens.views.graph.resetViewLocation
// - gitlens.views.graphDetails.focus
// - gitlens.views.graphDetails.refresh
// - gitlens.views.graphDetails.resetViewLocation
// - gitlens.views.highlightChanges
// - gitlens.views.highlightRevisionChanges
// - gitlens.views.home.focus
// - gitlens.views.home.refresh
// - gitlens.views.home.removeView
// - gitlens.views.home.resetViewLocation
// - gitlens.views.home.toggleVisibility
// - gitlens.views.launchpad.copy
// - gitlens.views.launchpad.focus
// - gitlens.views.launchpad.info
// - gitlens.views.launchpad.refresh
// - gitlens.views.launchpad.resetViewLocation
// - gitlens.views.launchpad.setFilesLayoutToAuto
// - gitlens.views.launchpad.setFilesLayoutToList
// - gitlens.views.launchpad.setFilesLayoutToTree
// - gitlens.views.launchpad.setShowAvatarsOff
// - gitlens.views.launchpad.setShowAvatarsOn
// - gitlens.views.lineHistory.changeBase
// - gitlens.views.lineHistory.focus
// - gitlens.views.lineHistory.refresh
// - gitlens.views.lineHistory.resetViewLocation
// - gitlens.views.lineHistory.setEditorFollowingOff
// - gitlens.views.lineHistory.setEditorFollowingOn
// - gitlens.views.lineHistory.setShowAvatarsOff
// - gitlens.views.lineHistory.setShowAvatarsOn
// - gitlens.views.loadAllChildren
// - gitlens.views.loadMoreChildren
// - gitlens.views.mergeBranchInto
// - gitlens.views.openBranchOnRemote
// - gitlens.views.openBranchOnRemote.multi
// - gitlens.views.openChangedFileDiffs
// - gitlens.views.openChangedFileDiffsIndividually
// - gitlens.views.openChangedFileDiffsWithMergeBase
// - gitlens.views.openChangedFileDiffsWithWorking
// - gitlens.views.openChangedFileDiffsWithWorkingIndividually
// - gitlens.views.openChangedFileRevisions
// - gitlens.views.openChangedFiles
// - gitlens.views.openChanges
// - gitlens.views.openChangesWithWorking
// - gitlens.views.openCommitOnRemote
// - gitlens.views.openCommitOnRemote.multi
// - gitlens.views.openDirectoryDiff
// - gitlens.views.openDirectoryDiffWithWorking
// - gitlens.views.openFile
// - gitlens.views.openFileRevision
// - gitlens.views.openInIntegratedTerminal
// - gitlens.views.openInTerminal
// - gitlens.views.openInWorktree
// - gitlens.views.openOnlyChangedFiles
// - gitlens.views.openPreviousChangesWithWorking
// - gitlens.views.openPullRequest
// - gitlens.views.openPullRequestChanges
// - gitlens.views.openPullRequestComparison
// - gitlens.views.openUrl
// - gitlens.views.openUrl.multi
// - gitlens.views.openWorktree
// - gitlens.views.openWorktreeInNewWindow
// - gitlens.views.openWorktreeInNewWindow.multi
// - gitlens.views.patchDetails.close
// - gitlens.views.patchDetails.focus
// - gitlens.views.patchDetails.refresh
// - gitlens.views.patchDetails.resetViewLocation
// - gitlens.views.pruneRemote
// - gitlens.views.publishBranch
// - gitlens.views.publishRepository
// - gitlens.views.pull
// - gitlens.views.pullRequest.close
// - gitlens.views.pullRequest.focus
// - gitlens.views.pullRequest.refresh
// - gitlens.views.pullRequest.resetViewLocation
// - gitlens.views.pullRequest.setFilesLayoutToAuto
// - gitlens.views.pullRequest.setFilesLayoutToList
// - gitlens.views.pullRequest.setFilesLayoutToTree
// - gitlens.views.pullRequest.setShowAvatarsOff
// - gitlens.views.pullRequest.setShowAvatarsOn
// - gitlens.views.push
// - gitlens.views.pushToCommit
// - gitlens.views.pushWithForce
// - gitlens.views.rebaseOntoBranch
// - gitlens.views.rebaseOntoCommit
// - gitlens.views.rebaseOntoUpstream
// - gitlens.views.refreshNode
// - gitlens.views.remotes.focus
// - gitlens.views.remotes.refresh
// - gitlens.views.remotes.resetViewLocation
// - gitlens.views.remotes.setFilesLayoutToAuto
// - gitlens.views.remotes.setFilesLayoutToList
// - gitlens.views.remotes.setFilesLayoutToTree
// - gitlens.views.remotes.setLayoutToList
// - gitlens.views.remotes.setLayoutToTree
// - gitlens.views.remotes.setShowAvatarsOff
// - gitlens.views.remotes.setShowAvatarsOn
// - gitlens.views.remotes.setShowBranchPullRequestOff
// - gitlens.views.remotes.setShowBranchPullRequestOn
// - gitlens.views.removeRemote
// - gitlens.views.renameBranch
// - gitlens.views.repositories.focus
// - gitlens.views.repositories.refresh
// - gitlens.views.repositories.resetViewLocation
// - gitlens.views.repositories.setAutoRefreshToOff
// - gitlens.views.repositories.setAutoRefreshToOn
// - gitlens.views.repositories.setBranchesLayoutToList
// - gitlens.views.repositories.setBranchesLayoutToTree
// - gitlens.views.repositories.setBranchesShowBranchComparisonOff
// - gitlens.views.repositories.setBranchesShowBranchComparisonOn
// - gitlens.views.repositories.setFilesLayoutToAuto
// - gitlens.views.repositories.setFilesLayoutToList
// - gitlens.views.repositories.setFilesLayoutToTree
// - gitlens.views.repositories.setShowAvatarsOff
// - gitlens.views.repositories.setShowAvatarsOn
// - gitlens.views.repositories.setShowBranchComparisonOff
// - gitlens.views.repositories.setShowBranchComparisonOn
// - gitlens.views.repositories.setShowBranchesOff
// - gitlens.views.repositories.setShowBranchesOn
// - gitlens.views.repositories.setShowCommitsOff
// - gitlens.views.repositories.setShowCommitsOn
// - gitlens.views.repositories.setShowContributorsOff
// - gitlens.views.repositories.setShowContributorsOn
// - gitlens.views.repositories.setShowRemotesOff
// - gitlens.views.repositories.setShowRemotesOn
// - gitlens.views.repositories.setShowSectionOff
// - gitlens.views.repositories.setShowStashesOff
// - gitlens.views.repositories.setShowStashesOn
// - gitlens.views.repositories.setShowTagsOff
// - gitlens.views.repositories.setShowTagsOn
// - gitlens.views.repositories.setShowUpstreamStatusOff
// - gitlens.views.repositories.setShowUpstreamStatusOn
// - gitlens.views.repositories.setShowWorktreesOff
// - gitlens.views.repositories.setShowWorktreesOn
// - gitlens.views.resetCommit
// - gitlens.views.resetToCommit
// - gitlens.views.resetToTip
// - gitlens.views.restore
// - gitlens.views.revealRepositoryInExplorer
// - gitlens.views.revealWorktreeInExplorer
// - gitlens.views.revert
// - gitlens.views.searchAndCompare.clear
// - gitlens.views.searchAndCompare.compareWithSelected
// - gitlens.views.searchAndCompare.focus
// - gitlens.views.searchAndCompare.refresh
// - gitlens.views.searchAndCompare.resetViewLocation
// - gitlens.views.searchAndCompare.searchCommits
// - gitlens.views.searchAndCompare.selectForCompare
// - gitlens.views.searchAndCompare.setFilesFilterOff
// - gitlens.views.searchAndCompare.setFilesFilterOnLeft
// - gitlens.views.searchAndCompare.setFilesFilterOnRight
// - gitlens.views.searchAndCompare.setFilesLayoutToAuto
// - gitlens.views.searchAndCompare.setFilesLayoutToList
// - gitlens.views.searchAndCompare.setFilesLayoutToTree
// - gitlens.views.searchAndCompare.setShowAvatarsOff
// - gitlens.views.searchAndCompare.setShowAvatarsOn
// - gitlens.views.searchAndCompare.swapComparison
// - gitlens.views.selectFileForCompare
// - gitlens.views.selectForCompare
// - gitlens.views.setAsDefault
// - gitlens.views.setBranchComparisonToBranch
// - gitlens.views.setBranchComparisonToWorking
// - gitlens.views.setResultsCommitsFilterAuthors
// - gitlens.views.setResultsCommitsFilterOff
// - gitlens.views.setShowRelativeDateMarkersOff
// - gitlens.views.setShowRelativeDateMarkersOn
// - gitlens.views.stageDirectory
// - gitlens.views.stageFile
// - gitlens.views.star
// - gitlens.views.star.multi
// - gitlens.views.stash.apply
// - gitlens.views.stash.delete
// - gitlens.views.stash.delete.multi
// - gitlens.views.stash.rename
// - gitlens.views.stashes.focus
// - gitlens.views.stashes.refresh
// - gitlens.views.stashes.resetViewLocation
// - gitlens.views.stashes.setFilesLayoutToAuto
// - gitlens.views.stashes.setFilesLayoutToList
// - gitlens.views.stashes.setFilesLayoutToTree
// - gitlens.views.switchToAnotherBranch
// - gitlens.views.switchToBranch
// - gitlens.views.switchToCommit
// - gitlens.views.switchToTag
// - gitlens.views.tags.focus
// - gitlens.views.tags.refresh
// - gitlens.views.tags.resetViewLocation
// - gitlens.views.tags.setFilesLayoutToAuto
// - gitlens.views.tags.setFilesLayoutToList
// - gitlens.views.tags.setFilesLayoutToTree
// - gitlens.views.tags.setLayoutToList
// - gitlens.views.tags.setLayoutToTree
// - gitlens.views.tags.setShowAvatarsOff
// - gitlens.views.tags.setShowAvatarsOn
// - gitlens.views.timeline.focus
// - gitlens.views.timeline.refresh
// - gitlens.views.timeline.resetViewLocation
// - gitlens.views.title.createBranch
// - gitlens.views.title.createTag
// - gitlens.views.title.createWorktree
// - gitlens.views.undoCommit
// - gitlens.views.unsetAsDefault
// - gitlens.views.unstageDirectory
// - gitlens.views.unstageFile
// - gitlens.views.unstar
// - gitlens.views.unstar.multi
// - gitlens.views.workspaces.addRepos
// - gitlens.views.workspaces.addReposFromLinked
// - gitlens.views.workspaces.changeAutoAddSetting
// - gitlens.views.workspaces.convert
// - gitlens.views.workspaces.create
// - gitlens.views.workspaces.createLocal
// - gitlens.views.workspaces.delete
// - gitlens.views.workspaces.focus
// - gitlens.views.workspaces.info
// - gitlens.views.workspaces.locateAllRepos
// - gitlens.views.workspaces.openLocal
// - gitlens.views.workspaces.openLocalNewWindow
// - gitlens.views.workspaces.refresh
// - gitlens.views.workspaces.removeView
// - gitlens.views.workspaces.repo.addToWindow
// - gitlens.views.workspaces.repo.locate
// - gitlens.views.workspaces.repo.open
// - gitlens.views.workspaces.repo.openInNewWindow
// - gitlens.views.workspaces.repo.remove
// - gitlens.views.workspaces.resetViewLocation
// - gitlens.views.workspaces.toggleVisibility
// - gitlens.views.worktrees.focus
// - gitlens.views.worktrees.refresh
// - gitlens.views.worktrees.resetViewLocation
// - gitlens.views.worktrees.setFilesLayoutToAuto
// - gitlens.views.worktrees.setFilesLayoutToList
// - gitlens.views.worktrees.setFilesLayoutToTree
// - gitlens.views.worktrees.setShowAvatarsOff
// - gitlens.views.worktrees.setShowAvatarsOn
// - gitlens.views.worktrees.setShowBranchComparisonOff
// - gitlens.views.worktrees.setShowBranchComparisonOn
// - gitlens.views.worktrees.setShowBranchPullRequestOff
// - gitlens.views.worktrees.setShowBranchPullRequestOn
// - gitpod-login.focus
// - gitpod-login.removeView
// - gitpod-login.resetViewLocation
// - gitpod-login.toggleVisibility
// - gitpod-workspace.focus
// - gitpod-workspace.resetViewLocation
// - gitpod-workspaces.focus
// - gitpod-workspaces.resetViewLocation
// - gitpod.api.autoTunnel
// - gitpod.exportLogs
// - gitpod.installLocalExtensions
// - gitpod.signIn
// - gitpod.workspaces.connectInCurrentWindow
// - gitpod.workspaces.connectInCurrentWindow_context
// - gitpod.workspaces.connectInCurrentWindow_context@1
// - gitpod.workspaces.connectInCurrentWindow_inline
// - gitpod.workspaces.connectInCurrentWindow_inline@1
// - gitpod.workspaces.connectInNewWindow
// - gitpod.workspaces.connectInNewWindow_context
// - gitpod.workspaces.deleteWorkspace
// - gitpod.workspaces.deleteWorkspace_context
// - gitpod.workspaces.disconnect
// - gitpod.workspaces.openContext
// - gitpod.workspaces.openInBrowser
// - gitpod.workspaces.refresh
// - gitpod.workspaces.stopCurrentWorkspace
// - gitpod.workspaces.stopCurrentWorkspace_inline
// - gitpod.workspaces.stopWorkspace
// - gitpod.workspaces.stopWorkspace_context
// - gitpod.workspaces.stopWorkspace_inline
// - goToNextReferenceFromEmbeddedEditor
// - goToPreviousReferenceFromEmbeddedEditor
// - gpt-pilot-vs-code.closeRightPanel
// - gpt-pilot-vs-code.openDiscordServer
// - gpt-pilot-vs-code.openGitHubRepo
// - gpt-pilot-vs-code.openLeftPanel
// - gpt-pilot-vs-code.openPythonDownload
// - gpt-pilot-vs-code.openPythonGuide
// - gpt-pilot-vs-code.openRightPanel
// - gpt-pilot-vs-code.openRightPanelWallkthrough
// - gptPilotSidebarView.focus
// - gptPilotSidebarView.removeView
// - gptPilotSidebarView.resetViewLocation
// - gptPilotSidebarView.toggleVisibility
// - gradle.cancelBuild
// - gradle.cancelTreeItemTask
// - gradle.cancellingTreeItemTask
// - gradle.clearAllRecentTasks
// - gradle.closeAllTaskTerminals
// - gradle.closeTaskTerminals
// - gradle.createProject
// - gradle.createProjectAdvanced
// - gradle.debugTask
// - gradle.debugTaskWithArgs
// - gradle.dependency.reveal
// - gradle.explorerFlat
// - gradle.explorerTree
// - gradle.findTask
// - gradle.hideStoppedDaemons
// - gradle.java.projectConfiguration.update
// - gradle.openBuildFile
// - gradle.openSettings
// - gradle.pinTask
// - gradle.pinTaskWithArgs
// - gradle.refresh
// - gradle.refreshDaemonStatus
// - gradle.removeRecentTask
// - gradle.restartTask
// - gradle.runBuild
// - gradle.runTask
// - gradle.runTaskWithArgs
// - gradle.runTasks
// - gradle.showLogs
// - gradle.showProcessMessage
// - gradle.showStoppedDaemons
// - gradle.showTaskTerminal
// - gradle.showTasks
// - gradle.stopDaemon
// - gradle.stopDaemons
// - gradle.unpinAllTasks
// - gradle.unpinTask
// - gradleDaemonsView.focus
// - gradleDaemonsView.resetViewLocation
// - gradleDefaultProjectsView.focus
// - gradleDefaultProjectsView.resetViewLocation
// - gradleTasksView.focus
// - gradleTasksView.resetViewLocation
// - hideCustomTitleBar
// - hideCustomTitleBarInFullScreen
// - imagePreview.copyImage
// - imagePreview.zoomIn
// - imagePreview.zoomOut
// - inlayHints.startReadingLineWithHint
// - inlineChat.configure
// - inlineChat.toggleDiff
// - intelephense.cancel.indexing
// - intelephense.enter.key
// - intelephense.index.workspace
// - interactiveEditor.start
// - ionic-devserver.focus
// - ionic-devserver.resetViewLocation
// - ionic-official.add
// - ionic-official.buildConfig
// - ionic-official.capSync
// - ionic-official.fix
// - ionic-official.function
// - ionic-official.lightbulb
// - ionic-official.link
// - ionic-official.liveReload
// - ionic-official.liveReloadSelected
// - ionic-official.login
// - ionic-official.newProject
// - ionic-official.open
// - ionic-official.openAndroidStudio
// - ionic-official.openXcode
// - ionic-official.pluginExplorer
// - ionic-official.projectRefresh
// - ionic-official.projectSelect
// - ionic-official.rebuild
// - ionic-official.refresh
// - ionic-official.refreshDebug
// - ionic-official.runAndroid
// - ionic-official.runIOS
// - ionic-official.runMode
// - ionic-official.runWeb
// - ionic-official.runapp
// - ionic-official.selectAction
// - ionic-official.selectDevice
// - ionic-official.signUp
// - ionic-official.skipLogin
// - ionic-official.stop
// - ionic-official.upgrade
// - ionic-official.webDebugConfig
// - ionic-official.webEditor
// - ionic-official.webEditorSelected
// - ionic-official.webNexus
// - ionic-official.webNexusSelected
// - ionic-official.webOpenBrowser
// - ionic-official.webOpenBrowserSelected
// - ionic-tree.focus
// - ionic-tree.removeView
// - ionic-tree.resetViewLocation
// - ionic-tree.toggleVisibility
// - ionic-zprojects.focus
// - ionic-zprojects.resetViewLocation
// - ionic.build
// - ionic.prepare
// - ionic.run
// - ipynb.cleanInvalidImageAttachment
// - ipynb.newUntitledIpynb
// - ipynb.openIpynbInNotebookEditor
// - isort.restart
// - isort.showLogs
// - java.action.changeBaseType
// - java.action.navigateToSuperImplementation
// - java.action.showClassHierarchy
// - java.action.showSubtypeHierarchy
// - java.action.showSupertypeHierarchy
// - java.action.showTypeHierarchy
// - java.change.searchScope
// - java.classpathConfiguration
// - java.clean.sharedIndexes
// - java.clean.workspace
// - java.debug.continueAll
// - java.debug.continueOthers
// - java.debug.debugFromProjectView
// - java.debug.debugJavaFile
// - java.debug.hotCodeReplace
// - java.debug.pauseAll
// - java.debug.pauseOthers
// - java.debug.runFromProjectView
// - java.debug.runJavaFile
// - java.debug.variables.autoExpandLazyVariables
// - java.debug.variables.manualExpandLazyVariables
// - java.debug.variables.notShowHex
// - java.debug.variables.notShowLogicalStructure
// - java.debug.variables.notShowQualifiedNames
// - java.debug.variables.notShowStaticVariables
// - java.debug.variables.notShowToString
// - java.debug.variables.showHex
// - java.debug.variables.showLogicalStructure
// - java.debug.variables.showQualifiedNames
// - java.debug.variables.showStaticVariables
// - java.debug.variables.showToString
// - java.extGuide
// - java.formatterSettings
// - java.formatterSettings.showTextEditor
// - java.gettingStarted
// - java.installJdk
// - java.installJdk.fromWalkthrough
// - java.open.clientLog
// - java.open.formatter.settings
// - java.open.logs
// - java.open.serverLog
// - java.open.serverStderrLog
// - java.open.serverStdoutLog
// - java.overview
// - java.project.addLibraries
// - java.project.addLibraryFolders
// - java.project.addToSourcePath.command
// - java.project.build
// - java.project.build.workspace
// - java.project.clean.workspace
// - java.project.create
// - java.project.createModuleInfo.command
// - java.project.explorer.hideNonJavaResources
// - java.project.explorer.showNonJavaResources
// - java.project.import.command
// - java.project.listSourcePaths.command
// - java.project.rebuild
// - java.project.refreshLibraries
// - java.project.reloadProjectFromActiveFile
// - java.project.removeFromSourcePath.command
// - java.project.removeLibrary
// - java.project.update
// - java.project.updateSourceAttachment.command
// - java.projectSettings
// - java.runtime
// - java.server.mode.switch
// - java.server.restart
// - java.show.server.task.status
// - java.showReleaseNotes
// - java.test.debugFromJavaProjectExplorer
// - java.test.editor.debug
// - java.test.editor.run
// - java.test.goToTest
// - java.test.goToTestSubject
// - java.test.runFromJavaProjectExplorer
// - java.view.fileExplorer.newPackage
// - java.view.menus.file.newJavaClass
// - java.view.package.changeToFlatPackageView
// - java.view.package.changeToHierarchicalPackageView
// - java.view.package.exportJar
// - java.view.package.linkWithFolderExplorer
// - java.view.package.new
// - java.view.package.newFile
// - java.view.package.newFolder
// - java.view.package.newJavaAbstractClass
// - java.view.package.newJavaAnnotation
// - java.view.package.newJavaClass
// - java.view.package.newJavaEnum
// - java.view.package.newJavaInterface
// - java.view.package.newJavaRecord
// - java.view.package.newPackage
// - java.view.package.refresh
// - java.view.package.revealInProjectExplorer
// - java.view.package.unlinkWithFolderExplorer
// - java.welcome.fromWalkthrough
// - javaProjectExplorer.focus
// - javaProjectExplorer.resetViewLocation
// - javascript.goToProjectConfig
// - javascript.reloadProjects
// - javascript.removeUnusedImports
// - javascript.sortImports
// - jsBrowserBreakpoints.focus
// - jsBrowserBreakpoints.resetViewLocation
// - jsDebugNetworkTree.focus
// - jsDebugNetworkTree.resetViewLocation
// - jsExcludedCallers.focus
// - jsExcludedCallers.resetViewLocation
// - json.clearCache
// - json.sort
// - jupyter-cell-tags.addTag
// - jupyter-cell-tags.editTagsInJSON
// - jupyter-cell-tags.paramaterize
// - jupyter-cell-tags.removeTag
// - jupyter-slideshow.editSlideShowInJSON
// - jupyter-slideshow.switchSlideType
// - jupyter.addcellbelow
// - jupyter.clearSavedJupyterUris
// - jupyter.collapseallcells
// - jupyter.continueEditSessionInCodespace
// - jupyter.createnewinteractive
// - jupyter.createnewnotebook
// - jupyter.debugCellSymbols
// - jupyter.debugFileInteractive
// - jupyter.debugcell
// - jupyter.debugcontinue
// - jupyter.debugcurrentcell.palette
// - jupyter.debugstepover
// - jupyter.debugstop
// - jupyter.enableLoadingWidgetScriptsFromThirdPartySource
// - jupyter.expandallcells
// - jupyter.export
// - jupyter.exportAsPythonScript
// - jupyter.exportToHTML
// - jupyter.exportToPDF
// - jupyter.exportfileandoutputasnotebook
// - jupyter.exportfileasnotebook
// - jupyter.exportoutputasnotebook
// - jupyter.filterKernels
// - jupyter.getUsedAzMLServerHandles
// - jupyter.importnotebook
// - jupyter.importnotebookfile
// - jupyter.installPythonExtensionViaKernelPicker
// - jupyter.installPythonViaKernelPicker
// - jupyter.interactive.clearAllCells
// - jupyter.interactive.copyCell
// - jupyter.interactive.exportas
// - jupyter.interactive.exportasnotebook
// - jupyter.interactive.goToCode
// - jupyter.interruptkernel
// - jupyter.kernel.selectJupyterServerKernel
// - jupyter.kernel.selectLocalKernelSpec
// - jupyter.kernel.selectLocalPythonEnvironment
// - jupyter.latestExtension
// - jupyter.listPipPackages
// - jupyter.listVariables
// - jupyter.manageAccessToKernels
// - jupyter.notebookeditor.addcellbelow
// - jupyter.notebookeditor.export
// - jupyter.notebookeditor.removeallcells
// - jupyter.notebookeditor.runallcells
// - jupyter.openOutlineView
// - jupyter.openVariableView
// - jupyter.reloadVSCode
// - jupyter.replayPylanceLog
// - jupyter.replayPylanceLogStep
// - jupyter.restartkernel
// - jupyter.restartkernelandrunallcells
// - jupyter.restartkernelandrunuptoselectedcell
// - jupyter.runDependentCells
// - jupyter.runFileInteractive
// - jupyter.runInDedicatedExtensionHost
// - jupyter.runPrecedentCells
// - jupyter.runallcells
// - jupyter.runallcellsabove
// - jupyter.runallcellsabove.palette
// - jupyter.runcell
// - jupyter.runcellandallbelow
// - jupyter.runcurrentcellandallbelow.palette
// - jupyter.runfromline
// - jupyter.runtoline
// - jupyter.scrolltocell
// - jupyter.selectDependentCells
// - jupyter.selectJupyterInterpreter
// - jupyter.selectPrecedentCells
// - jupyter.selectjupyteruri
// - jupyter.showDataViewer
// - jupyter.showJupyterDataViewer
// - jupyter.viewOutput
// - jupyterViewVariables.focus
// - jupyterViewVariables.resetViewLocation
// - keybindings.editor.clearSearchHistory
// - keybindings.editor.copyCommandKeybindingEntry
// - keybindings.editor.copyCommandTitle
// - keybindings.editor.resetKeybinding
// - keybindings.editor.showConflicts
// - keybindings.editor.showDefaultKeybindings
// - keybindings.editor.showExtensionKeybindings
// - keybindings.editor.showUserKeybindings
// - keywordActivation.status.command
// - kotlin.overrideMember
// - lastCursorLineSelect
// - lastCursorLineSelectDrag
// - lastCursorWordSelect
// - layoutEditorGroups
// - lineBreakInsert
// - list.collapseAllToFocus
// - list.focusParent
// - list.resizeColumn
// - list.scrollLeft
// - list.scrollRight
// - list.selectAndPreserveFocus
// - list.toggleFilterOnType
// - list.toggleFindMatchType
// - list.toggleFindMode
// - list.toggleKeyboardNavigation
// - list.triggerTypeNavigation
// - liveSass.command.compileCurrentSass
// - liveSass.command.createIssue
// - liveSass.command.debugFileList
// - liveSass.command.debugInclusion
// - liveSass.command.donotWatchMySass
// - liveSass.command.oneTimeCompileSass
// - liveSass.command.openOutputWindow
// - liveSass.command.showOutputOn.debug
// - liveSass.command.showOutputOn.error
// - liveSass.command.showOutputOn.information
// - liveSass.command.showOutputOn.none
// - liveSass.command.showOutputOn.trace
// - liveSass.command.showOutputOn.warning
// - liveSass.command.watchMySass
// - liveshare.accessibility.announceCoeditorLocation
// - liveshare.accessibility.setOutputDevice
// - liveshare.accessibility.toggleSoundsEnabled
// - liveshare.accessibility.toggleVoiceEnabled
// - 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.blockParticipant
// - liveshare.blockParticipantFromActivityBar
// - liveshare.blockParticipantFromFileTreeExplorer
// - 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.copyToken
// - liveshare.debug
// - liveshare.devtools.focus
// - liveshare.devtools.resetViewLocation
// - 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.focusParticipantFromActivityBar
// - liveshare.focusParticipantFromFileTreeExplorer
// - liveshare.focusParticipants
// - liveshare.focusParticipantsFromActivityBar
// - liveshare.focusParticipantsFromFileTreeExplorer
// - liveshare.followFromActivityBar
// - liveshare.followFromFileTreeExplorer
// - liveshare.followToTheSideFromActivityBar
// - liveshare.followToTheSideFromTreeExplorer
// - liveshare.getCoeditingInformation
// - liveshare.help
// - liveshare.help.focus
// - liveshare.help.resetViewLocation
// - liveshare.joinFromActivityBar
// - liveshare.joinFromWelcomeContent
// - liveshare.leave
// - liveshare.leaveFromActivityBar
// - liveshare.leaveFromFileTreeExplorer
// - liveshare.listParticipants
// - liveshare.listServers
// - liveshare.listTerminals
// - liveshare.openActivityLog
// - liveshare.openInVS
// - liveshare.openInVSCode
// - liveshare.openSessionChat
// - liveshare.removeParticipant
// - liveshare.removeParticipantFromActivityBar
// - liveshare.removeParticipantFromFileTreeExplorer
// - liveshare.scc.clean
// - liveshare.scc.cleanAll
// - liveshare.scc.openChange
// - liveshare.scc.openFile
// - liveshare.scc.openFile2
// - liveshare.scc.revertChange
// - liveshare.session.explorer.focus
// - liveshare.session.explorer.resetViewLocation
// - liveshare.session.focus
// - liveshare.session.removeView
// - liveshare.session.resetViewLocation
// - liveshare.session.toggleVisibility
// - liveshare.shareServer
// - liveshare.shareTerminal
// - liveshare.signInAndReload
// - liveshare.signin
// - liveshare.signin.token
// - liveshare.signout
// - liveshare.start
// - liveshare.startFromActivityBar
// - liveshare.startFromFileTreeExplorer
// - liveshare.startFromWelcomeContent
// - liveshare.startFromWelcomePage
// - liveshare.startReadOnly
// - liveshare.startReadOnlyFromActivityBar
// - liveshare.startReadOnlyFromFileTreeExplorer
// - liveshare.startReadOnlyFromWelcomeContent
// - liveshare.unfollowFromActivityBar
// - liveshare.unfollowFromFileTreeExplorer
// - liveshare.unshareServer
// - loadedScripts.collapse
// - mark-sharp.decrease-font-size
// - mark-sharp.editor-color-theme
// - mark-sharp.fold-all
// - mark-sharp.increase-font-size
// - mark-sharp.insert-footnote
// - mark-sharp.insert-html-block
// - mark-sharp.insert-image
// - mark-sharp.insert-mermaid-diagram
// - mark-sharp.insert-table
// - mark-sharp.manage-license
// - mark-sharp.scroll-to-header
// - mark-sharp.split-view
// - mark-sharp.toggle-presentation-mode
// - mark-sharp.unfold-all
// - markdown-preview-enhanced.createTOC
// - markdown-preview-enhanced.customizeCss
// - markdown-preview-enhanced.customizeCssInWorkspace
// - markdown-preview-enhanced.customizePreviewHtmlHead
// - markdown-preview-enhanced.customizePreviewHtmlHeadInWorkspace
// - markdown-preview-enhanced.extendParser
// - markdown-preview-enhanced.extendParserInWorkspace
// - markdown-preview-enhanced.insertNewSlide
// - markdown-preview-enhanced.insertPagebreak
// - markdown-preview-enhanced.insertTable
// - markdown-preview-enhanced.openConfigScript
// - markdown-preview-enhanced.openConfigScriptInWorkspace
// - markdown-preview-enhanced.openImageHelper
// - markdown-preview-enhanced.showUploadedImages
// - markdown-preview-enhanced.toggleBreakOnSingleNewLine
// - markdown-preview-enhanced.toggleLiveUpdate
// - markdown-preview-enhanced.toggleScrollSync
// - markdown.editor.insertImageFromWorkspace
// - markdown.editor.insertLinkFromWorkspace
// - markdown.findAllFileReferences
// - markdown.preview.refresh
// - markdown.preview.toggleLock
// - markdown.showLockedPreviewToSide
// - markdown.showPreviewSecuritySelector
// - markdown.showSource
// - material-icon-theme.activateIcons
// - material-icon-theme.changeFileColor
// - 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
// - maven.archetype.generate
// - maven.archetype.update
// - maven.dependency.goToEffective
// - maven.explorer.refresh
// - maven.favorites
// - maven.goal.clean
// - maven.goal.compile
// - maven.goal.custom
// - maven.goal.deploy
// - maven.goal.execute
// - maven.goal.execute.fromFavoritesMenu
// - maven.goal.execute.fromLifecycleMenu
// - maven.goal.execute.fromProjectManager
// - maven.goal.install
// - maven.goal.package
// - maven.goal.site
// - maven.goal.test
// - maven.goal.test-compile
// - maven.goal.validate
// - maven.goal.verify
// - maven.history
// - maven.java.projectConfiguration.update
// - maven.new.module
// - maven.plugin.debug
// - maven.plugin.execute
// - maven.profile.deselect
// - maven.profile.select
// - maven.project.addDependency
// - maven.project.addFavorite
// - maven.project.effectivePom
// - maven.project.excludeDependency
// - maven.project.goToDefinition
// - maven.project.openPom
// - maven.project.setDependencyVersion
// - maven.project.showDependencies
// - maven.view.flat
// - maven.view.hierarchical
// - mavenProjects.focus
// - mavenProjects.resetViewLocation
// - mdb.addCollection
// - mdb.addConnection
// - mdb.addConnectionWithURI
// - mdb.addDatabase
// - mdb.addStreamProcessor
// - mdb.changeActiveConnection
// - mdb.changeExportToLanguageAddons
// - mdb.cloneDocumentFromTreeView
// - mdb.codeLens.showMoreDocumentsClicked
// - mdb.connect
// - mdb.connectToConnectionTreeItem
// - mdb.connectWithParticipant
// - mdb.connectWithURI
// - mdb.copyCollectionName
// - mdb.copyConnectionString
// - mdb.copyDatabaseName
// - mdb.copyDocumentContentsFromTreeView
// - mdb.copySchemaFieldName
// - mdb.createIndexFromTreeView
// - mdb.createNewPlaygroundFromOverviewPage
// - mdb.createNewPlaygroundFromTreeView
// - mdb.createPlayground
// - mdb.deleteDocumentFromTreeView
// - mdb.disconnect
// - mdb.disconnectFromConnectionTreeItem
// - mdb.dropCollection
// - mdb.dropDatabase
// - mdb.dropStreamProcessor
// - mdb.editConnection
// - mdb.exportToCsharp
// - mdb.exportToGo
// - mdb.exportToJava
// - mdb.exportToNode
// - mdb.exportToPHP
// - mdb.exportToPython
// - mdb.exportToRuby
// - mdb.exportToRust
// - mdb.fixAllInvalidInteractiveSyntax
// - mdb.fixThisInvalidInteractiveSyntax
// - mdb.generateObjectIdToClipboard
// - mdb.insertDocumentFromTreeView
// - mdb.insertObjectIdToEditor
// - mdb.openMongoDBDocumentFromCodeLens
// - mdb.openMongoDBDocumentFromTree
// - mdb.openMongoDBIssueReporter
// - mdb.openMongoDBShell
// - mdb.openOverviewPage
// - mdb.openParticipantCodeInPlayground
// - mdb.openPlaygroundFromTreeView
// - mdb.participantViewRawSchemaOutput
// - mdb.refreshCollection
// - mdb.refreshConnection
// - mdb.refreshDatabase
// - mdb.refreshDocumentList
// - mdb.refreshIndexes
// - mdb.refreshPlaygroundsFromTreeView
// - mdb.refreshSchema
// - mdb.removeConnection
// - mdb.renameConnection
// - mdb.runParticipantCode
// - mdb.runPlayground
// - mdb.searchForDocuments
// - mdb.selectCollectionWithParticipant
// - mdb.selectDatabaseWithParticipant
// - mdb.startStreamProcessor
// - mdb.stopStreamProcessor
// - mdb.treeItemRemoveConnection
// - mdb.treeViewOpenMongoDBShell
// - mdb.viewCollectionDocuments
// - menu.resetHiddenStates
// - 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
// - merge.acceptAllInput1
// - merge.acceptAllInput2
// - merge.columnLayout
// - merge.dev.copyContentsJson
// - merge.dev.loadContentsFromFolder
// - merge.dev.openContentsJson
// - merge.dev.openSelectionInTemporaryMergeEditor
// - merge.dev.saveContentsToFolder
// - merge.goToNextUnhandledConflict
// - merge.goToPreviousUnhandledConflict
// - merge.mixedLayout
// - merge.openBaseEditor
// - merge.openResult
// - merge.showBase
// - merge.showBaseCenter
// - merge.showBaseTop
// - merge.showNonConflictingChanges
// - merge.toggleActiveConflictInput1
// - merge.toggleActiveConflictInput2
// - mergeEditor.acceptMerge
// - mergeEditor.compareInput1WithBase
// - mergeEditor.compareInput2WithBase
// - mergeEditor.resetCloseWithConflictsChoice
// - mergeEditor.resetResultToBaseAndAutoMerge
// - million-webview.focus
// - million-webview.removeView
// - million-webview.resetViewLocation
// - million-webview.toggleVisibility
// - million.acceptAll
// - million.checkpoint
// - million.copyMachineId
// - million.login
// - million.logout
// - million.rejectAll
// - mjml.copyHTML
// - mjml.documentation
// - mjml.exportHTML
// - mjml.previewToSide
// - mjml.searchInDocumentation
// - mjml.sendEmail
// - mjml.template
// - mjml.version
// - mongoDBConnectionExplorer.focus
// - mongoDBConnectionExplorer.removeView
// - mongoDBConnectionExplorer.resetViewLocation
// - mongoDBConnectionExplorer.toggleVisibility
// - mongoDBHelpExplorer.focus
// - mongoDBHelpExplorer.removeView
// - mongoDBHelpExplorer.resetViewLocation
// - mongoDBHelpExplorer.toggleVisibility
// - mongoDBPlaygroundsExplorer.focus
// - mongoDBPlaygroundsExplorer.removeView
// - mongoDBPlaygroundsExplorer.resetViewLocation
// - mongoDBPlaygroundsExplorer.toggleVisibility
// - ms-azuretools.getStarted
// - ms-azuretools.helpAndFeedback.focus
// - ms-azuretools.helpAndFeedback.removeView
// - ms-azuretools.helpAndFeedback.resetViewLocation
// - ms-azuretools.helpAndFeedback.toggleVisibility
// - ms-azuretools.reportIssue
// - ms-azuretools.reviewIssues
// - mssql.addAadAccount
// - mssql.addObjectExplorer
// - mssql.cancelQuery
// - mssql.changeDatabase
// - mssql.chooseDatabase
// - mssql.chooseLanguageFlavor
// - mssql.clearAllQueryHistory
// - mssql.clearAzureAccountTokenCache
// - mssql.clearFilters
// - mssql.clearPooledConnections
// - mssql.commandPaletteQueryHistory
// - mssql.deleteQueryHistory
// - mssql.disconnectObjectExplorerNode
// - mssql.editConnection
// - mssql.editTable
// - mssql.filterNode
// - mssql.filterNodeWithExistingFilters
// - mssql.manageProfiles
// - mssql.newQuery
// - mssql.newTable
// - mssql.objectExplorer.disableGroupBySchema
// - mssql.objectExplorer.enableGroupBySchema
// - mssql.objectExplorerNewQuery
// - mssql.openQueryHistory
// - mssql.pauseQueryHistoryCapture
// - mssql.rebuildIntelliSenseCache
// - mssql.refreshObjectExplorerNode
// - mssql.removeAadAccount
// - mssql.removeObjectExplorerNode
// - mssql.revealQueryResultPanel
// - mssql.runCurrentStatement
// - mssql.runQueryHistory
// - mssql.scriptAlter
// - mssql.scriptCreate
// - mssql.scriptDelete
// - mssql.scriptExecute
// - mssql.scriptSelect
// - mssql.showExecutionPlanInResults
// - mssql.showGettingStarted
// - mssql.startQueryHistoryCapture
// - mssql.toggleSqlCmd
// - mssql.userFeedback
// - multiDiffEditor.collapseAll
// - multiDiffEditor.expandAll
// - multiDiffEditor.goToFile
// - noop
// - notebook.action.changeTabDisplaySize
// - notebook.action.convertIndentationToSpaces
// - notebook.action.convertIndentationToTabs
// - notebook.action.indentUsingSpaces
// - notebook.action.indentUsingTabs
// - notebook.action.toggleNotebookStickyScroll
// - notebook.cancelExecution
// - notebook.cell.cancelExecution
// - notebook.cell.changeLanguage
// - notebook.cell.chat.close
// - notebook.cell.chat.restore
// - notebook.cell.chat.startAtTop
// - notebook.cell.chat.stop
// - notebook.cell.collapseAllCellInputs
// - notebook.cell.collapseAllCellOutputs
// - notebook.cell.executeCellAndBelow
// - notebook.cell.executeCellsAbove
// - notebook.cell.expandAllCellInputs
// - notebook.cell.expandAllCellOutputs
// - notebook.cell.insertCodeCellAtTop
// - notebook.cell.insertMarkdownCellAbove
// - notebook.cell.insertMarkdownCellAtTop
// - notebook.cell.insertMarkdownCellBelow
// - notebook.cell.joinSelected
// - notebook.cellOuput.showEmptyOutputs
// - notebook.cellOutput.copy
// - notebook.cellOutput.openInTextEditor
// - notebook.chat.selectAndInsertKernelVariable
// - notebook.clearAllCellsOutputs
// - notebook.clearNotebookEdtitorTypeCache
// - notebook.clearNotebookKernelsMRUCache
// - notebook.diff.cell.revertInput
// - notebook.diff.cell.revertMetadata
// - notebook.diff.cell.revertOutputs
// - notebook.diff.cell.switchOutputRenderingStyleToText
// - notebook.diff.cell.toggleCollapseUnchangedRegions
// - notebook.diff.openFile
// - notebook.diff.revertMetadata
// - notebook.diff.showMetadata
// - notebook.diff.showOutputs
// - notebook.diff.switchToText
// - notebook.diffEditor.2.cell.revertInput
// - notebook.diffEditor.2.cell.revertMetadata
// - notebook.diffEditor.2.cell.revertOutputs
// - notebook.diffEditor.2.goToCell
// - notebook.diffEditor.hideUnchangedCells
// - notebook.diffEditor.showUnchangedCells
// - notebook.execute
// - notebook.inlineChat.acceptChangesAndRun
// - notebook.inspectLayout
// - notebook.interruptExecution
// - notebook.outline.toggleCodeCellSymbols
// - notebook.outline.toggleCodeCells
// - notebook.outline.toggleShowMarkdownHeadersOnly
// - notebook.renderAllMarkdownCells
// - notebook.revealLastFailedCell
// - notebook.revealRunningCell
// - notebook.saveMimeTypeOrder
// - notebook.section.expandSection
// - notebook.section.foldSection
// - notebook.section.runCells
// - notebook.section.runSingleCell
// - notebook.selectIndentation
// - notebook.setProfile
// - notebook.toggle.diff.cell.ignoreTrimWhitespace
// - notebook.toggleCellToolbarPosition
// - notebook.toggleCellToolbarPositionFromEditorTitle
// - notebook.toggleLayoutTroubleshoot
// - notebook.toggleLineNumbersFromEditorTitle
// - notifications.clearAll
// - notifications.focusToasts
// - notifications.toggleDoNotDisturbMode
// - notifications.toggleDoNotDisturbModeBySource
// - notifications.toggleList
// - npm-intellisense.import
// - npm.debugScript
// - npm.focus
// - npm.openScript
// - npm.packageManager
// - npm.refresh
// - npm.resetViewLocation
// - npm.runInstall
// - npm.runScript
// - npm.runScriptFromFolder
// - npm.runSelectedScript
// - o.fixAll.document
// - o.fixAll.project
// - o.fixAll.solution
// - o.pickProjectAndStart
// - o.reanalyze.allProjects
// - o.reanalyze.currentProject
// - o.restart
// - objectExplorer.focus
// - objectExplorer.removeView
// - objectExplorer.resetViewLocation
// - objectExplorer.toggleVisibility
// - openEditors.closeAll
// - openEditors.newUntitledFile
// - openInIntegratedTerminal
// - openInTerminal
// - openReference
// - opensshremotes.addNewSshHost
// - opensshremotes.cleanCurrentRemoteServer
// - opensshremotes.cleanDevBox
// - opensshremotes.cleanLocalServer
// - opensshremotes.cleanRemoteServer
// - opensshremotes.getHelp
// - opensshremotes.getStarted
// - opensshremotes.openConfigFile
// - opensshremotes.openEmptyWindow
// - opensshremotes.openEmptyWindowInCurrentWindow
// - opensshremotes.openEmptyWindowOnCurrentHost
// - opensshremotes.openWebUI
// - opensshremotes.provideFeedback
// - opensshremotes.reportIssue
// - opensshremotes.settings
// - opensshremotes.showLog
// - outline-view.focus
// - outline-view.removeView
// - outline-view.resetViewLocation
// - outline-view.toggleVisibility
// - outline.collapse
// - outline.expand
// - outline.filterOnType
// - outline.focus
// - outline.followCursor
// - outline.removeView
// - outline.resetViewLocation
// - outline.sortByKind
// - outline.sortByName
// - outline.sortByPosition
// - outline.toggleVisibility
// - packagePanel.focus
// - packagePanel.removeView
// - packagePanel.resetViewLocation
// - packagePanel.toggleVisibility
// - paste
// - perf.event.profiling
// - perf.insta.printAsyncCycles
// - perf.insta.printTraces
// - perfview.show
// - platformio-debug.disassembly.focus
// - platformio-debug.disassembly.removeView
// - platformio-debug.disassembly.resetViewLocation
// - platformio-debug.disassembly.toggleVisibility
// - platformio-debug.examineMemory
// - platformio-debug.memory.clearHistory
// - platformio-debug.memory.deleteHistoryItem
// - platformio-debug.memory.focus
// - platformio-debug.memory.removeView
// - platformio-debug.memory.resetViewLocation
// - platformio-debug.memory.toggleVisibility
// - platformio-debug.peripherals.copyValue
// - platformio-debug.peripherals.focus
// - platformio-debug.peripherals.removeView
// - platformio-debug.peripherals.resetViewLocation
// - platformio-debug.peripherals.selectedNode
// - platformio-debug.peripherals.setFormat
// - platformio-debug.peripherals.toggleVisibility
// - platformio-debug.peripherals.updateNode
// - platformio-debug.registers.copyValue
// - platformio-debug.registers.focus
// - platformio-debug.registers.removeView
// - platformio-debug.registers.resetViewLocation
// - platformio-debug.registers.selectedNode
// - platformio-debug.registers.setFormat
// - platformio-debug.registers.toggleVisibility
// - platformio-debug.setForceDisassembly
// - platformio-debug.viewDisassembly
// - platformio-ide.clean
// - platformio-ide.newTerminal
// - platformio-ide.openPIOCoreCLI
// - platformio-ide.pickProjectEnv
// - platformio-ide.projectTasks.focus
// - platformio-ide.projectTasks.resetViewLocation
// - platformio-ide.quickAccess.focus
// - platformio-ide.quickAccess.removeView
// - platformio-ide.quickAccess.resetViewLocation
// - platformio-ide.quickAccess.toggleVisibility
// - platformio-ide.rebuildProjectIndex
// - platformio-ide.refreshProjectTasks
// - platformio-ide.setProjectPort
// - platformio-ide.showHome
// - platformio-ide.showReleaseNotes
// - platformio-ide.startDebugging
// - platformio-ide.test
// - platformio-ide.toggleMultiEnvProjectTasks
// - platformio-ide.upgradeCore
// - platformio-ide.uploadAndMonitor
// - prettier.createConfigFile
// - prettier.forceFormatDocument
// - prettier.openOutput
// - problems.action.copyMessage
// - problems.action.copyRelatedInformationMessage
// - problems.action.showMultilineMessage
// - problems.action.showSinglelineMessage
// - projects.manageProject
// - projects.new
// - projects.openExisting
// - projects.removeProject
// - prolog.refactorPredicate
// - prompty.addCodeLangchain
// - prompty.addCodePromptflow
// - prompty.addCodeSemanticKernel
// - prompty.newPrompt
// - prompty.showMarkdownPreview
// - pub.get
// - pub.get.all
// - pub.outdated
// - pub.upgrade
// - pub.upgrade.majorVersions
// - pwa-studio.addFileHandler
// - pwa-studio.addProtocolHandler
// - pwa-studio.addShareTarget
// - pwa-studio.addShortcuts
// - pwa-studio.chooseManifest
// - pwa-studio.chooseServiceWorker
// - pwa-studio.devBuild
// - pwa-studio.generateIcons
// - pwa-studio.generateScreenshots
// - pwa-studio.help
// - pwa-studio.maniItemDocs
// - pwa-studio.manifest
// - pwa-studio.newPwaStarter
// - pwa-studio.packageApp
// - pwa-studio.prodBuild
// - pwa-studio.refreshEntry
// - pwa-studio.refreshPackageView
// - pwa-studio.refreshSWView
// - pwa-studio.runTests
// - pwa-studio.serviceWorker
// - pwa-studio.setWebURL
// - pwa-studio.updateAdvWorker
// - pwa-studio.validatePWA
// - pylance.addToExtraPaths
// - pylance.dumpCachedTypes
// - pylance.dumpCodeFlowGraph
// - pylance.dumpNodes
// - pylance.dumpTokens
// - pylance.dumpTypes
// - pylance.extractMethodWithRename
// - pylance.extractVariableWithRename
// - pylance.gotoOutputChannel
// - pylance.indexing.clearPersistedIndices
// - pylance.learnMoreAboutImportResolution
// - pylance.logging.start
// - pylance.logging.stop
// - pylance.moveSymbolWithFileSelection
// - pylance.openConfig
// - pylance.openUri
// - pylance.profiling.start
// - pylance.profiling.stop
// - pylance.reportIssue
// - pylance.runCommands
// - pylance.searchImports
// - pylance.setAutoImportCompletions
// - pylance.setTypeChecking
// - pylance.triggerParameterHints
// - python._loadLanguageServerExtension
// - python.analysis.restartLanguageServer
// - python.clearCacheAndReload
// - python.clearWorkspaceInterpreter
// - python.configureTests
// - python.copilotSetupTests
// - python.createEnvironment
// - python.createEnvironment-button
// - python.createEnvironmentCheck
// - python.createNewFile
// - python.createTerminal
// - python.debugInTerminal
// - python.enableSourceMapSupport
// - python.execInDedicatedTerminal
// - python.execInTerminal
// - python.execInTerminal-icon
// - python.execSelectionInDjangoShell
// - python.installJupyter
// - python.installPython
// - python.installPythonOnLinux
// - python.installPythonOnMac
// - python.interpreterPath
// - python.launchTensorBoard
// - python.pickLocalProcess
// - python.reloadVSCode
// - python.reportIssue
// - python.setInterpreter
// - python.startNativeREPL
// - python.startREPL
// - python.triggerEnvSelection
// - python.viewLanguageServerOutput
// - python.viewOutput
// - queryHistory.focus
// - queryHistory.removeView
// - queryHistory.resetViewLocation
// - queryHistory.toggleVisibility
// - queryResult.focus
// - queryResult.resetViewLocation
// - quokka.addImport
// - quokka.addRequire
// - quokka.allowFileSnapsExecution
// - quokka.autoPlayCode
// - quokka.copyExpressionData
// - quokka.copyExpressionPath
// - quokka.deleteSnapOutput
// - quokka.disableAutoLog
// - quokka.disableShowSingleInlineValue
// - quokka.disableShowValueOnSelection
// - quokka.editSessionSettings
// - quokka.enableAutoLog
// - quokka.enableShowSingleInlineValue
// - quokka.enableShowValueOnSelection
// - quokka.goToLineInQuokkaFile
// - quokka.hideCallStack
// - quokka.insertSnapOutput
// - quokka.installMissingPackageToProject
// - quokka.installQuokkaPlugin
// - quokka.newJavaScript
// - quokka.newRecentInteractive
// - quokka.newTypeScript
// - quokka.openCallStackFrame
// - quokka.openStartView
// - quokka.pauseCodeExecution
// - quokka.profile
// - quokka.removeRecentFiles
// - quokka.revealInValueExplorer
// - quokka.revealTraceStep
// - quokka.runOnSave
// - quokka.runOnce
// - quokka.runRecentFile
// - quokka.selectAction
// - quokka.selectWorkspaceFolder
// - quokka.share
// - quokka.showInstrumentedFile
// - quokka.showLicense
// - quokka.showLineTimings
// - quokka.showLineValues
// - quokka.showLogs
// - quokka.showOutput
// - quokka.startFileSnapsDiscovery
// - quokka.stopAll
// - quokka.stopFileSnapsDiscovery
// - quokka.stopShowingOutputCodeLens
// - quokka.switchToCommunity
// - quokka.switchToPro
// - quokka.toggle
// - quokka.undefined
// - quokka.viewCallStack
// - quokka.viewCodeStory
// - quokka.viewRecentFiles
// - quokkaValueExplorer.focus
// - quokkaValueExplorer.resetViewLocation
// - rainbow-csv.Align
// - rainbow-csv.CSVLint
// - rainbow-csv.ColumnEditAfter
// - rainbow-csv.ColumnEditBefore
// - rainbow-csv.ColumnEditSelect
// - rainbow-csv.CopyBack
// - rainbow-csv.InternalTest
// - rainbow-csv.RBQL
// - rainbow-csv.RainbowSeparator
// - rainbow-csv.RainbowSeparatorOff
// - rainbow-csv.RainbowSeparatorOn
// - rainbow-csv.SampleHead
// - rainbow-csv.SampleTail
// - rainbow-csv.SetCommentPrefix
// - rainbow-csv.SetHeaderLine
// - rainbow-csv.SetJoinTableName
// - rainbow-csv.SetVirtualHeader
// - rainbow-csv.Shrink
// - randomeverything.country
// - randomeverything.date
// - randomeverything.email
// - randomeverything.firstName
// - randomeverything.float
// - randomeverything.fullName
// - randomeverything.guid
// - randomeverything.hexColor
// - randomeverything.iPV6Address
// - randomeverything.iPv4Address
// - randomeverything.int
// - randomeverything.lastName
// - randomeverything.letters
// - randomeverything.lettersAndNumbers
// - randomeverything.text
// - randomeverything.url
// - randomeverything.word
// - razor.reportIssue
// - reactNative.ExpoDoctor
// - reactNative.createExpoEASBuildConfigFile
// - reactNative.debugScenario.attachDirectIosExperimental
// - reactNative.debugScenario.attachHermesApplicationExperimental
// - reactNative.debugScenario.attachToPackager
// - reactNative.debugScenario.debugAndroid
// - reactNative.debugScenario.debugAndroidHermesExperimental
// - reactNative.debugScenario.debugDirectIosExperimental
// - reactNative.debugScenario.debugInExponent
// - reactNative.debugScenario.debugInExponentWebExperimental
// - reactNative.debugScenario.debugInHermesExponentExperimental
// - reactNative.debugScenario.debugIos
// - reactNative.debugScenario.debugIosHermesExperimental
// - reactNative.debugScenario.debugMacos
// - reactNative.debugScenario.debugMacosHermesExperimental
// - reactNative.debugScenario.debugWindows
// - reactNative.debugScenario.debugWindowsHermesExperimental
// - reactNative.debugScenario.runAndroid
// - reactNative.debugScenario.runAndroidHermesExperimental
// - reactNative.debugScenario.runDirectIosExperimental
// - reactNative.debugScenario.runIos
// - reactNative.debugScenario.runIosHermesExperimental
// - reactNative.doctor
// - reactNative.installExpoGoApplication
// - reactNative.launchAndroidSimulator
// - reactNative.launchExpoWeb
// - reactNative.launchIOSSimulator
// - reactNative.openEASProjectInWebPage
// - reactNative.openRNUpgradeHelper
// - reactNative.publishToExpHost
// - reactNative.reloadApp
// - reactNative.restartPackager
// - reactNative.revertOpenModule
// - reactNative.runAndroidDevice
// - reactNative.runAndroidSimulator
// - reactNative.runExponent
// - reactNative.runInspector
// - reactNative.runIosDevice
// - reactNative.runIosSimulator
// - reactNative.runMacOS
// - reactNative.runWindows
// - reactNative.selectAndInsertDebugConfiguration
// - reactNative.showDevMenu
// - reactNative.startLogCatMonitor
// - reactNative.startNetworkInspector
// - reactNative.startPackager
// - reactNative.stopInspector
// - reactNative.stopLogCatMonitor
// - reactNative.stopNetworkInspector
// - reactNative.stopPackager
// - reactNative.testDevEnvironment
// - recentTasksView.focus
// - recentTasksView.resetViewLocation
// - refactorPreview
// - refactorPreview.discard
// - refactorPreview.focus
// - refactorPreview.groupByFile
// - refactorPreview.groupByType
// - refactorPreview.resetViewContainerLocation
// - refactorPreview.resetViewLocation
// - refactorPreview.toggleGrouping
// - references-view.clear
// - references-view.clearHistory
// - references-view.copy
// - references-view.copyAll
// - references-view.copyPath
// - references-view.findImplementations
// - references-view.pickFromHistory
// - references-view.refind
// - references-view.refresh
// - references-view.removeCallItem
// - references-view.removeReferenceItem
// - references-view.removeTypeItem
// - references-view.showIncomingCalls
// - references-view.showOutgoingCalls
// - references-view.showSubtypes
// - references-view.showSupertypes
// - references-view.showTypeHierarchy
// - references-view.tree.focus
// - references-view.tree.resetViewLocation
// - remote-explorer.add
// - remote-explorer.configureSsh
// - remote-explorer.connectToFolderInCurrentWindow
// - remote-explorer.connectToFolderInNewWindow
// - remote-explorer.connectToRemoteInCurrentWindow
// - remote-explorer.connectToRemoteInNewWindow
// - remote-explorer.connectToWslUsingDistro
// - remote-explorer.connectToWslUsingDistroInNewWindow
// - remote-explorer.deleteFolderHistoryItem
// - remote-explorer.refresh
// - remote-explorer.signIntoTunnelGithub
// - remote-explorer.signIntoTunnelMicrosoft
// - remote-explorer.unregisterTunnel
// - remote-wsl.connect
// - remote-wsl.connectInNewWindow
// - remote-wsl.connectUsingDistro
// - remote-wsl.connectUsingDistroInNewWindow
// - remote-wsl.explorer.addDistro
// - remote-wsl.explorer.connectInCurrentWindow
// - remote-wsl.explorer.connectInNewWindow
// - remote-wsl.explorer.deleteDistro
// - remote-wsl.explorer.openDistroInCurrentWindow
// - remote-wsl.explorer.openDistroInNewWindow
// - remote-wsl.explorer.refresh
// - remote-wsl.explorer.removeFolder
// - remote-wsl.explorer.setDefaultDistro
// - remote-wsl.getHelp
// - remote-wsl.getStarted
// - remote-wsl.newWindow
// - remote-wsl.newWindowForDistro
// - remote-wsl.openFolder
// - remote-wsl.provideFeedback
// - remote-wsl.reopenFromRecommendation
// - remote-wsl.reopenInWSL
// - remote-wsl.reopenInWindows
// - remote-wsl.reportIssue
// - remote-wsl.showLog
// - remote.tunnel.changeLocalPort
// - remote.tunnel.closeCommandPalette
// - remote.tunnel.copyAddressCommandPalette
// - remote.tunnel.forwardCommandPalette
// - remote.tunnel.forwardInline
// - remote.tunnel.open
// - remote.tunnel.openCommandPalette
// - remote.tunnel.openPreview
// - remote.tunnel.setProtocolHttp
// - remote.tunnel.setProtocolHttps
// - remoteTargets.focus
// - remoteTargets.resetViewLocation
// - removeRootFolder
// - repl.action.copyAll
// - replacePreviousChar
// - resetGettingStartedProgress
// - revealInExplorer
// - scm.openInIntegratedTerminal
// - scm.openInTerminal
// - scrollEditorBottom
// - scrollEditorTop
// - scrollLeft
// - scrollRight
// - search.action.clearHistory
// - search.action.clearSearchResults
// - search.action.collapseSearchResults
// - search.action.copyAll
// - search.action.excludeFromSearch
// - search.action.expandRecursively
// - search.action.expandSearchResults
// - search.action.focusFilesToExclude
// - search.action.focusFilesToInclude
// - search.action.focusSearchList
// - search.action.openEditor
// - search.action.openNewEditor
// - search.action.openNewEditorFromView
// - search.action.openNewEditorToSide
// - search.action.refreshSearchResults
// - search.action.revealInSideBar
// - search.action.viewAsList
// - search.action.viewAsTree
// - selectFirstSuggestion
// - selectForCompare
// - selectLastSuggestion
// - serviceWorkerPanel.focus
// - serviceWorkerPanel.removeView
// - serviceWorkerPanel.resetViewLocation
// - serviceWorkerPanel.toggleVisibility
// - setRootFolder
// - setSelection
// - settings.filterByOnline
// - settings.filterByTelemetry
// - settings.filterUntrusted
// - settings.switchToJSON
// - showCustomTitleBar
// - showEditorScreenReaderNotification
// - signals.sounds.help
// - simpleBrowser.show
// - smali2java.clearCache
// - smali2java.decompileThisFile
// - sqlBindings.addSqlBinding
// - sqlBindings.createAzureFunction
// - sqlDatabaseProjects.addDatabaseReference
// - sqlDatabaseProjects.addExistingItem
// - sqlDatabaseProjects.addSqlCmdVariable
// - sqlDatabaseProjects.build
// - sqlDatabaseProjects.changeTargetPlatform
// - sqlDatabaseProjects.createProjectFromDatabase
// - sqlDatabaseProjects.delete
// - sqlDatabaseProjects.editProjectFile
// - sqlDatabaseProjects.editSqlCmdVariable
// - sqlDatabaseProjects.exclude
// - sqlDatabaseProjects.generateProjectFromOpenApiSpec
// - sqlDatabaseProjects.newFolder
// - sqlDatabaseProjects.newItem
// - sqlDatabaseProjects.newPostDeploymentScript
// - sqlDatabaseProjects.newPreDeploymentScript
// - sqlDatabaseProjects.newPublishProfile
// - sqlDatabaseProjects.newScript
// - sqlDatabaseProjects.newStoredProcedure
// - sqlDatabaseProjects.newTable
// - sqlDatabaseProjects.newView
// - sqlDatabaseProjects.openContainingFolder
// - sqlDatabaseProjects.openInDesigner
// - sqlDatabaseProjects.openReferencedSqlProject
// - sqlDatabaseProjects.properties
// - sqlDatabaseProjects.publish
// - sqlDatabaseProjects.rename
// - sqlDatabaseProjects.schemaCompare
// - sqlDatabaseProjects.updateProjectFromDatabase
// - sqlDatabaseProjects.validateExternalStreamingJob
// - stripe.clearRecentEvents
// - stripe.clearRecentLogs
// - stripe.createStripeSample
// - stripe.createWebhookEndpoint
// - stripe.login
// - stripe.openCLI
// - stripe.openCreateCustomizedEvent
// - stripe.openDashboardApikeys
// - stripe.openDashboardEvent
// - stripe.openDashboardEvents
// - stripe.openDashboardLog
// - stripe.openDashboardLogs
// - stripe.openDashboardWebhooks
// - stripe.openDocs
// - stripe.openEventDetails
// - stripe.openLogDetails
// - stripe.openReportIssue
// - stripe.openSamples
// - stripe.openSurvey
// - stripe.openTelemetryInfo
// - stripe.openTriggerCustomizedEvent
// - stripe.openTriggerEvent
// - stripe.openWebhooksDebugConfigure
// - stripe.openWebhooksListen
// - stripe.resendEvent
// - stripe.startEventsStreaming
// - stripe.startLogsStreaming
// - stripe.startStripeChat
// - stripe.stopEventsStreaming
// - stripe.stopLogsStreaming
// - stripeChatView.focus
// - stripeChatView.resetViewLocation
// - stripeEventsView.focus
// - stripeEventsView.removeView
// - stripeEventsView.resetViewLocation
// - stripeEventsView.toggleVisibility
// - stripeHelpView.focus
// - stripeHelpView.removeView
// - stripeHelpView.resetViewLocation
// - stripeHelpView.toggleVisibility
// - stripeInstallCLIView.focus
// - stripeInstallCLIView.resetViewLocation
// - stripeLogsView.focus
// - stripeLogsView.removeView
// - stripeLogsView.resetViewLocation
// - stripeLogsView.toggleVisibility
// - stripeQuickLinksView.focus
// - stripeQuickLinksView.removeView
// - stripeQuickLinksView.resetViewLocation
// - stripeQuickLinksView.toggleVisibility
// - stripeSamplesView.focus
// - stripeSamplesView.removeView
// - stripeSamplesView.resetViewLocation
// - stripeSamplesView.toggleVisibility
// - stripeWebhooksView.focus
// - stripeWebhooksView.removeView
// - stripeWebhooksView.resetViewLocation
// - stripeWebhooksView.toggleVisibility
// - svgeditor.newSvgEditor
// - svgeditor.openSvgEditor
// - svgeditor.reopenRelatedTextEditor
// - tailwind-color-matcher.matchColor
// - tailwindCSS.showOutput
// - tailwindCSS.sortSelection
// - tailwindColorMatcherView.focus
// - tailwindColorMatcherView.removeView
// - tailwindColorMatcherView.resetViewLocation
// - tailwindColorMatcherView.toggleVisibility
// - targetsWsl.focus
// - targetsWsl.resetViewLocation
// - terminal.focus
// - terminal.removeView
// - terminal.resetViewContainerLocation
// - terminal.resetViewLocation
// - terminal.toggleVisibility
// - testing.callStack.debug
// - testing.callStack.run
// - testing.cancelTestRefresh
// - testing.clearTestResults
// - testing.collapseAll
// - testing.collapsePeekStack
// - testing.configureProfile
// - testing.continuousRunUsingForTest
// - testing.coverage
// - testing.coverage.close
// - testing.coverage.uri
// - testing.coverageFilterToTest
// - testing.coverageFilterToTestInEditor
// - testing.coverageSelected
// - testing.coverageToggleToolbar
// - testing.coverageViewChangeSorting
// - testing.debug
// - testing.debug.uri
// - testing.debugSelected
// - testing.getSelectedProfiles
// - testing.goToRelatedCode
// - testing.goToRelatedTest
// - testing.hideTest
// - testing.openCoverage
// - testing.openMessageInEditor
// - testing.peekRelatedCode
// - testing.peekRelatedTest
// - testing.run
// - testing.run.uri
// - testing.runSelected
// - testing.runUsing
// - testing.searchForTestExtension
// - testing.selectDefaultTestProfiles
// - testing.sortByDuration
// - testing.sortByLocation
// - testing.sortByStatus
// - testing.startContinuousRun
// - testing.stopContinuousRun
// - testing.toggleContinuousRunForTest
// - testing.unhideAllTests
// - testing.unhideTest
// - testing.viewAsList
// - testing.viewAsTree
// - thunder-client-sidebar.focus
// - thunder-client-sidebar.removeView
// - thunder-client-sidebar.resetViewLocation
// - thunder-client-sidebar.toggleVisibility
// - thunder-client.account
// - thunder-client.change-multi-workspace
// - thunder-client.clear-vault-cache
// - thunder-client.convert-postman
// - thunder-client.cookies
// - thunder-client.debug
// - thunder-client.dns-test
// - thunder-client.new-request
// - thunder-client.open-docs
// - thunder-client.open-settings
// - thunder-client.release-notes
// - thunder-client.reload-sidebar
// - thunder-client.reset-sort
// - thunder-client.run-last-request
// - thunder-client.show-logs
// - thunder-client.upgrade-v4
// - timeline.focus
// - timeline.refresh
// - timeline.removeView
// - timeline.resetViewLocation
// - timeline.toggleExcludeSource:timeline.localHistory
// - timeline.toggleFollowActiveEditor
// - timeline.toggleVisibility
// - toggle.diff.ignoreTrimWhitespace
// - toggle.diff.renderSideBySide
// - toggle.toggleCustomTitleBar
// - toggle.window.commandCenter
// - toggle.window.customTitleBarVisibility
// - toggle.window.customTitleBarVisibility.windowed
// - toggle.workbench.editor.editorActionsLocation
// - toggle.workbench.layoutControl.enabled
// - tree.toggleStickyScroll
// - triggerTaskOnSave.clearSelectedTask
// - triggerTaskOnSave.disable
// - triggerTaskOnSave.enable
// - triggerTaskOnSave.selectTask
// - triggerTaskOnSave.stopCurrentTask
// - triggerTaskOnSave.toggle
// - triggerTaskOnSave.toggleEnabled
// - tunnel-forwarding.restart
// - tunnel-forwarding.showLog
// - typescript.findAllFileReferences
// - typescript.goToProjectConfig
// - typescript.goToSourceDefinition
// - typescript.openTsServerLog
// - typescript.reloadProjects
// - typescript.removeUnusedImports
// - typescript.restartTsServer
// - typescript.selectTypeScriptVersion
// - typescript.sortImports
// - typescript.tsserverRequest
// - unity-tools.CreateDirectories
// - unity-tools.OpenVSCodeDocs
// - unity-tools.SearchMSFTDocs
// - update.check
// - update.checkForUpdate
// - update.checking
// - update.downloadNow
// - update.downloadUpdate
// - update.downloading
// - update.install
// - update.installUpdate
// - update.restart
// - update.restartToUpdate
// - update.showCurrentReleaseNotes
// - update.showUpdateReleaseNotes
// - update.updating
// - validationPanel.focus
// - validationPanel.removeView
// - validationPanel.resetViewLocation
// - validationPanel.toggleVisibility
// - variables.collapse
// - vscode-blade-formatter.format
// - vscode-docker.activateRegistryProviders
// - vscode-docker.compose.down
// - vscode-docker.compose.restart
// - vscode-docker.compose.up
// - vscode-docker.compose.up.subset
// - vscode-docker.configure
// - vscode-docker.configureCompose
// - vscode-docker.containers.attachShell
// - vscode-docker.containers.browse
// - vscode-docker.containers.composeGroup.down
// - vscode-docker.containers.composeGroup.logs
// - vscode-docker.containers.composeGroup.restart
// - vscode-docker.containers.composeGroup.start
// - vscode-docker.containers.composeGroup.stop
// - vscode-docker.containers.configureExplorer
// - vscode-docker.containers.downloadFile
// - vscode-docker.containers.group.remove
// - vscode-docker.containers.inspect
// - vscode-docker.containers.openFile
// - vscode-docker.containers.prune
// - vscode-docker.containers.refresh
// - vscode-docker.containers.remove
// - vscode-docker.containers.restart
// - vscode-docker.containers.select
// - vscode-docker.containers.start
// - vscode-docker.containers.stats
// - vscode-docker.containers.stop
// - vscode-docker.containers.viewLogs
// - vscode-docker.contexts.configureExplorer
// - vscode-docker.contexts.help
// - vscode-docker.contexts.inspect
// - vscode-docker.contexts.refresh
// - vscode-docker.contexts.remove
// - vscode-docker.contexts.use
// - vscode-docker.debugging.initializeForDebugging
// - vscode-docker.help
// - vscode-docker.help.openWalkthrough
// - vscode-docker.help.reportIssue
// - vscode-docker.images.build
// - vscode-docker.images.configureExplorer
// - vscode-docker.images.copyFullTag
// - vscode-docker.images.group.remove
// - vscode-docker.images.hideDangling
// - vscode-docker.images.inspect
// - vscode-docker.images.prune
// - vscode-docker.images.pull
// - vscode-docker.images.push
// - vscode-docker.images.refresh
// - vscode-docker.images.remove
// - vscode-docker.images.run
// - vscode-docker.images.runAzureCli
// - vscode-docker.images.runInteractive
// - vscode-docker.images.showDangling
// - vscode-docker.images.tag
// - vscode-docker.networks.configureExplorer
// - vscode-docker.networks.create
// - vscode-docker.networks.inspect
// - vscode-docker.networks.prune
// - vscode-docker.networks.refresh
// - vscode-docker.networks.remove
// - vscode-docker.openDockerDownloadPage
// - vscode-docker.pruneSystem
// - vscode-docker.registries.azure.buildImage
// - vscode-docker.registries.azure.createRegistry
// - vscode-docker.registries.azure.deleteRegistry
// - vscode-docker.registries.azure.deleteRepository
// - vscode-docker.registries.azure.openInPortal
// - vscode-docker.registries.azure.untagImage
// - vscode-docker.registries.azure.viewProperties
// - vscode-docker.registries.connectRegistry
// - vscode-docker.registries.copyImageDigest
// - vscode-docker.registries.copyRemoteFullTag
// - vscode-docker.registries.deleteImage
// - vscode-docker.registries.deployImageToAca
// - vscode-docker.registries.deployImageToAzure
// - vscode-docker.registries.disconnectRegistry
// - vscode-docker.registries.dockerHub.openInBrowser
// - vscode-docker.registries.genericV2.addTrackedRegistry
// - vscode-docker.registries.genericV2.removeTrackedRegistry
// - vscode-docker.registries.help
// - vscode-docker.registries.inspectRemoteImageManifest
// - vscode-docker.registries.logInToDockerCli
// - vscode-docker.registries.logOutOfDockerCli
// - vscode-docker.registries.pullImage
// - vscode-docker.registries.pullRepository
// - vscode-docker.registries.reconnectRegistry
// - vscode-docker.registries.refresh
// - vscode-docker.views.dockerContexts.focus
// - vscode-docker.views.dockerContexts.removeView
// - vscode-docker.views.dockerContexts.resetViewLocation
// - vscode-docker.views.dockerContexts.toggleVisibility
// - vscode-docker.views.help.focus
// - vscode-docker.views.help.removeView
// - vscode-docker.views.help.resetViewLocation
// - vscode-docker.views.help.toggleVisibility
// - vscode-docker.volumes.configureExplorer
// - vscode-docker.volumes.inspect
// - vscode-docker.volumes.prune
// - vscode-docker.volumes.refresh
// - vscode-docker.volumes.remove
// - vscode-graphql.restart
// - vscode-graphql.showOutputChannel
// - vscode-icons.activateIcons
// - vscode-icons.foldersAllDefaultIconPreset
// - vscode-icons.hideExplorerArrowsPreset
// - vscode-icons.hideFoldersPreset
// - vscode-icons.jsPreset
// - vscode-icons.jsonPreset
// - vscode-icons.nestPreset
// - vscode-icons.ngPreset
// - vscode-icons.regenerateIcons
// - vscode-icons.resetProjectDetectionDefaults
// - vscode-icons.restoreIcons
// - vscode-icons.tsPreset
// - vscode-speech.openSettings
// - vsintellicode.completionItemSelected
// - vsixViewer.focus
// - vsixViewer.removeView
// - vsixViewer.resetViewLocation
// - vsixViewer.showInVSIXViewer
// - vsixViewer.toggleVisibility
// - vue.action.doctor
// - vue.action.restartServer
// - vue.action.splitEditors
// - vue.action.writeVirtualFiles
// - vue.findAllFileReferences
// - walkthroughs.selectStep
// - watch.collapse
// - welcome.markStepComplete
// - welcome.markStepIncomplete
// - welcome.showAllWalkthroughs
// - workbench.action.acceptSelectedQuickOpenItem
// - workbench.action.activityBarLocation.bottom
// - workbench.action.activityBarLocation.default
// - workbench.action.activityBarLocation.hide
// - workbench.action.activityBarLocation.top
// - workbench.action.addRootFolder
// - workbench.action.alignPanelCenter
// - workbench.action.alignPanelJustify
// - workbench.action.alignPanelLeft
// - workbench.action.alignPanelRight
// - workbench.action.alternativeAcceptSelectedQuickOpenItem
// - workbench.action.blur
// - workbench.action.browseColorThemesInMarketplace
// - workbench.action.chat.addDynamicVariable
// - workbench.action.chat.addParticipant
// - workbench.action.chat.applyAll
// - workbench.action.chat.applyCompareEdits
// - workbench.action.chat.assignSelectedAgent
// - workbench.action.chat.attachFile
// - workbench.action.chat.attachSelection
// - workbench.action.chat.clearHistory
// - workbench.action.chat.clearInputHistory
// - workbench.action.chat.copyAll
// - workbench.action.chat.copyCodeBlock
// - workbench.action.chat.copyItem
// - workbench.action.chat.discardCompareEdits
// - workbench.action.chat.export
// - workbench.action.chat.history
// - workbench.action.chat.import
// - workbench.action.chat.inlineVoiceChat
// - workbench.action.chat.insertIntoNewFile
// - workbench.action.chat.insertIntoNotebook
// - workbench.action.chat.installProviderForVoiceChat
// - workbench.action.chat.logInputHistory
// - workbench.action.chat.markHelpful
// - workbench.action.chat.markUnhelpful
// - workbench.action.chat.openInEditor
// - workbench.action.chat.openInNewWindow
// - workbench.action.chat.openInSidebar
// - workbench.action.chat.quickVoiceChat
// - workbench.action.chat.readChatResponseAloud
// - workbench.action.chat.reportIssueForBug
// - workbench.action.chat.retry
// - workbench.action.chat.selectAndInsertFile
// - workbench.action.chat.voiceChatInChatView
// - workbench.action.chatEditor.newChat
// - workbench.action.clearCommandHistory
// - workbench.action.clearEditorHistory
// - workbench.action.clearLocalePreference
// - workbench.action.clearRecentFiles
// - workbench.action.closeActivePinnedEditor
// - workbench.action.closeAuxiliaryBar
// - workbench.action.closeEditorInAllGroups
// - workbench.action.closeEditorsAndGroup
// - workbench.action.closeEditorsInOtherGroups
// - workbench.action.closeEditorsToTheLeft
// - workbench.action.closeEditorsToTheRight
// - workbench.action.closeOtherEditors
// - workbench.action.closePanel
// - workbench.action.closeSidebar
// - workbench.action.collapseAllComments
// - workbench.action.compareEditor.focusOtherSide
// - workbench.action.compareEditor.focusPrimarySide
// - workbench.action.compareEditor.focusSecondarySide
// - workbench.action.compareEditor.swapSides
// - workbench.action.configureEditor
// - workbench.action.configureEditorTabs
// - workbench.action.configureLanguageBasedSettings
// - workbench.action.configureLocale
// - workbench.action.configureRuntimeArguments
// - workbench.action.continueOn.extensions
// - workbench.action.copyEditorGroupToNewWindow
// - workbench.action.createTerminalEditor
// - workbench.action.createTerminalEditorSameGroup
// - workbench.action.createTerminalEditorSide
// - workbench.action.customizeLayout
// - workbench.action.debug.callStackBottom
// - workbench.action.debug.callStackDown
// - workbench.action.debug.callStackTop
// - workbench.action.debug.callStackUp
// - workbench.action.debug.configure
// - workbench.action.debug.disconnectAndSuspend
// - workbench.action.debug.focusProcess
// - workbench.action.debug.restartFrame
// - workbench.action.debug.reverseContinue
// - workbench.action.debug.selectDebugConsole
// - workbench.action.debug.selectDebugSession
// - workbench.action.debug.selectRepl
// - workbench.action.debug.selectandstart
// - workbench.action.debug.showLoadedScripts
// - workbench.action.debug.stepBack
// - workbench.action.debug.terminateThread
// - workbench.action.decreaseViewHeight
// - workbench.action.decreaseViewSize
// - workbench.action.decreaseViewWidth
// - workbench.action.download
// - workbench.action.duplicateActiveEditorGroupDown
// - workbench.action.duplicateActiveEditorGroupLeft
// - workbench.action.duplicateActiveEditorGroupRight
// - workbench.action.duplicateActiveEditorGroupUp
// - workbench.action.duplicateWorkspaceInNewWindow
// - workbench.action.editor.changeEOL
// - workbench.action.editor.changeEncoding
// - workbench.action.editorActionsDefault
// - workbench.action.editorActionsTitleBar
// - 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.expandAllComments
// - workbench.action.expandUnresolvedComments
// - workbench.action.extensionHostProfiler.stop
// - workbench.action.files.newFile
// - workbench.action.files.openFileFolderInNewWindow
// - workbench.action.files.openFileInNewWindow
// - workbench.action.files.openFolderInNewWindow
// - workbench.action.files.resetActiveEditorReadonlyInSession
// - workbench.action.files.revert
// - workbench.action.files.saveAll
// - workbench.action.files.saveFiles
// - workbench.action.files.setActiveEditorReadonlyInSession
// - workbench.action.files.setActiveEditorWriteableInSession
// - workbench.action.files.showOpenedFileInNewWindow
// - workbench.action.files.toggleActiveEditorReadonlyInSession
// - workbench.action.firstEditorInGroup
// - workbench.action.focusAboveGroupWithoutWrap
// - workbench.action.focusActiveEditorGroup
// - workbench.action.focusActivityBar
// - workbench.action.focusAuxiliaryBar
// - workbench.action.focusBanner
// - workbench.action.focusBelowGroupWithoutWrap
// - workbench.action.focusCommentOnCurrentLine
// - workbench.action.focusFirstSideEditor
// - workbench.action.focusLastEditorGroup
// - workbench.action.focusLeftGroupWithoutWrap
// - workbench.action.focusNextGroup
// - workbench.action.focusOtherSideEditor
// - workbench.action.focusPanel
// - workbench.action.focusPreviousGroup
// - workbench.action.focusQuickOpen
// - workbench.action.focusRightGroupWithoutWrap
// - workbench.action.focusSecondSideEditor
// - workbench.action.focusStatusBar
// - workbench.action.focusTitleBar
// - workbench.action.generateColorTheme
// - workbench.action.getStartedWithAccessibilityFeatures
// - workbench.action.hideEditorActions
// - workbench.action.hideEditorTabs
// - workbench.action.holdLockedScrolling
// - workbench.action.increaseViewHeight
// - workbench.action.increaseViewSize
// - workbench.action.increaseViewWidth
// - workbench.action.inspectContextKeys
// - workbench.action.inspectKeyMappings
// - workbench.action.inspectKeyMappingsJSON
// - workbench.action.joinAllGroups
// - workbench.action.joinTwoGroups
// - workbench.action.localHistory.compareWithFile
// - workbench.action.localHistory.compareWithPrevious
// - workbench.action.localHistory.compareWithSelected
// - workbench.action.localHistory.create
// - workbench.action.localHistory.delete
// - workbench.action.localHistory.deleteAll
// - workbench.action.localHistory.open
// - workbench.action.localHistory.rename
// - workbench.action.localHistory.restore
// - workbench.action.localHistory.restoreViaEditor
// - workbench.action.localHistory.restoreViaPicker
// - workbench.action.localHistory.revealInOS
// - workbench.action.localHistory.selectForCompare
// - workbench.action.lockEditorGroup
// - workbench.action.logStorage
// - workbench.action.logWorkingCopies
// - workbench.action.manageTrustedDomain
// - workbench.action.maximizeEditorHideSidebar
// - workbench.action.minimizeOtherEditors
// - workbench.action.minimizeOtherEditorsHideSidebar
// - workbench.action.moveEditorGroupToNewWindow
// - workbench.action.moveEditorToAboveGroup
// - workbench.action.moveEditorToBelowGroup
// - workbench.action.moveEditorToLeftGroup
// - workbench.action.moveEditorToNewWindow
// - workbench.action.moveEditorToRightGroup
// - workbench.action.moveFocusedView
// - workbench.action.movePanelToSecondarySideBar
// - workbench.action.movePanelToSidePanel
// - workbench.action.moveSecondarySideBarToPanel
// - workbench.action.moveSideBarLeft
// - workbench.action.moveSideBarRight
// - workbench.action.moveSidePanelToPanel
// - workbench.action.moveView
// - workbench.action.navigateBackInEditLocations
// - workbench.action.navigateBackInNavigationLocations
// - workbench.action.navigateDown
// - workbench.action.navigateEditorGroups
// - workbench.action.navigateForwardInEditLocations
// - workbench.action.navigateForwardInNavigationLocations
// - workbench.action.navigateLast
// - workbench.action.navigateLeft
// - workbench.action.navigatePreviousInEditLocations
// - workbench.action.navigatePreviousInNavigationLocations
// - workbench.action.navigateRight
// - workbench.action.navigateToLastNavigationLocation
// - workbench.action.navigateUp
// - workbench.action.newEmptyEditorWindow
// - workbench.action.newGroupAbove
// - workbench.action.newGroupBelow
// - workbench.action.newGroupLeft
// - workbench.action.newGroupRight
// - workbench.action.nextPanelView
// - workbench.action.nextSideBarView
// - workbench.action.openAccessibilitySettings
// - workbench.action.openActiveLogOutputFile
// - workbench.action.openActiveLogOutputFileInNewWindow
// - workbench.action.openApplicationSettingsJson
// - workbench.action.openChat
// - workbench.action.openDefaultKeybindingsFile
// - workbench.action.openDocumentationUrl
// - workbench.action.openEditorAtIndex
// - workbench.action.openExtensionLogsFolder
// - workbench.action.openFolderSettings
// - workbench.action.openFolderSettingsFile
// - workbench.action.openGlobalKeybindingsFile
// - workbench.action.openGlobalSettings
// - workbench.action.openIssueReporter
// - workbench.action.openLicenseUrl
// - workbench.action.openLogFile
// - workbench.action.openLogsFolder
// - workbench.action.openNewsletterSignupUrl
// - workbench.action.openNextRecentlyUsedEditor
// - workbench.action.openNextRecentlyUsedEditorInGroup
// - workbench.action.openPreviousEditorFromHistory
// - workbench.action.openPreviousRecentlyUsedEditor
// - workbench.action.openPreviousRecentlyUsedEditorInGroup
// - workbench.action.openPrivacyStatementUrl
// - workbench.action.openProcessExplorer
// - workbench.action.openProfile.Default
// - workbench.action.openQuickChat
// - workbench.action.openRawDefaultSettings
// - workbench.action.openRemoteSettings
// - workbench.action.openRemoteSettingsFile
// - workbench.action.openRequestFeatureUrl
// - workbench.action.openSettings2
// - workbench.action.openSettingsJson
// - workbench.action.openSnippets
// - workbench.action.openTipsAndTricksUrl
// - workbench.action.openUserDataFolder
// - workbench.action.openVideoTutorialsUrl
// - workbench.action.openView
// - workbench.action.openWalkthrough
// - workbench.action.openWorkspace
// - workbench.action.openWorkspaceConfigFile
// - workbench.action.openWorkspaceFromEditor
// - workbench.action.openWorkspaceInNewWindow
// - workbench.action.openWorkspaceSettings
// - workbench.action.openWorkspaceSettingsFile
// - workbench.action.openYouTubeUrl
// - workbench.action.output.activeOutputLogLevel.0
// - workbench.action.output.activeOutputLogLevel.1
// - workbench.action.output.activeOutputLogLevel.2
// - workbench.action.output.activeOutputLogLevel.3
// - workbench.action.output.activeOutputLogLevel.4
// - workbench.action.output.activeOutputLogLevel.5
// - workbench.action.output.activeOutputLogLevelDefault
// - workbench.action.output.show.amazonwebservices.aws-toolkit-vscode.AWS Toolkit
// - workbench.action.output.show.amazonwebservices.aws-toolkit-vscode.AWS Toolkit Logs
// - workbench.action.output.show.editSessions
// - workbench.action.output.show.extension-output-Gruntfuggly.triggertaskonsave-#1-Trigger Task On Save
// - workbench.action.output.show.extension-output-VisualStudioExptTeam.intellicode-api-usage-examples-#1-IntelliCode API Examples
// - workbench.action.output.show.extension-output-VisualStudioExptTeam.intellicode-api-usage-examples-#2-API Usage Examples LSP
// - workbench.action.output.show.extension-output-VisualStudioExptTeam.vscodeintellicode-#1-VS IntelliCode
// - workbench.action.output.show.extension-output-WallabyJs.quokka-vscode-#1-Quokka
// - workbench.action.output.show.extension-output-Westenets.vscode-backup-#1-Vscode Backup
// - workbench.action.output.show.extension-output-bradlc.vscode-tailwindcss-#1-Tailwind CSS IntelliSense
// - workbench.action.output.show.extension-output-dbaeumer.vscode-eslint-#1-ESLint
// - workbench.action.output.show.extension-output-eamodio.gitlens-#1-GitLens
// - workbench.action.output.show.extension-output-eamodio.gitlens-#2-GitLens (Git)
// - workbench.action.output.show.extension-output-esbenp.prettier-vscode-#1-Prettier
// - workbench.action.output.show.extension-output-googlecloudtools.cloudcode-#1-Google Cloud CLI Installation
// - workbench.action.output.show.extension-output-googlecloudtools.cloudcode-#2-Google Cloud CLI Installation
// - workbench.action.output.show.extension-output-humy2833.ftp-simple-#1-ftp-simple
// - workbench.action.output.show.extension-output-mongodb.mongodb-vscode-#1-Playground output
// - workbench.action.output.show.extension-output-ms-dotnettools.vscode-dotnet-runtime-#1-.NET Install Tool
// - workbench.action.output.show.extension-output-ms-python.python-#1-Python Test Log
// - workbench.action.output.show.extension-output-ms-toolsai.jupyter-#1-Jupyter
// - workbench.action.output.show.extension-output-ms-toolsai.jupyter-#2-Jupyter Server Console
// - workbench.action.output.show.extension-output-stripe.vscode-stripe-#1-Stripe
// - workbench.action.output.show.extension-output-stripe.vscode-stripe-#2-Stripe Language Client
// - workbench.action.output.show.exthost
// - workbench.action.output.show.main
// - workbench.action.output.show.mechatroner.rainbow-csv.rainbow_csv_debug_channel
// - workbench.action.output.show.mongodb.mongodb-vscode.MongoDB Extension
// - workbench.action.output.show.mongodb.mongodb-vscode.MongoDB Language Server
// - workbench.action.output.show.ms-python.debugpy.Python Debugger
// - workbench.action.output.show.ms-python.isort.isort
// - workbench.action.output.show.ms-python.python.Python
// - workbench.action.output.show.ms-python.python.Python Locator
// - workbench.action.output.show.notebook.rendering
// - workbench.action.output.show.ptyhost
// - workbench.action.output.show.remoteTunnelService
// - workbench.action.output.show.rendererLog
// - workbench.action.output.show.sharedprocess
// - workbench.action.output.show.tasks
// - workbench.action.output.show.terminal
// - workbench.action.output.show.userDataSync
// - workbench.action.output.show.vscode.git.Git
// - workbench.action.output.show.vscode.github-authentication.GitHub Authentication
// - workbench.action.output.show.vscode.github.GitHub
// - workbench.action.pauseSocketWriting
// - workbench.action.populateFileFromSnippet
// - workbench.action.positionPanelBottom
// - workbench.action.positionPanelLeft
// - workbench.action.positionPanelRight
// - workbench.action.positionPanelTop
// - workbench.action.previewColorTheme
// - workbench.action.previousPanelView
// - workbench.action.previousSideBarView
// - workbench.action.problems.focus
// - workbench.action.quickOpenLeastRecentlyUsedEditor
// - workbench.action.quickOpenNavigateNext
// - workbench.action.quickOpenNavigateNextInTerminalPicker
// - workbench.action.quickOpenNavigatePrevious
// - workbench.action.quickOpenNavigatePreviousInTerminalPicker
// - workbench.action.quickOpenPreviousEditor
// - workbench.action.quickOpenPreviousRecentlyUsedEditor
// - workbench.action.quickOpenRecent
// - workbench.action.quickOpenSelectNext
// - workbench.action.quickOpenSelectPrevious
// - workbench.action.quickOpenTerm
// - workbench.action.quickOpenWithModes
// - workbench.action.quickPickManyToggle
// - workbench.action.quickSwitchWindow
// - workbench.action.quickTextSearch
// - workbench.action.quickchat.close
// - workbench.action.quickchat.launchInlineChat
// - workbench.action.quickchat.openInChatView
// - workbench.action.quit
// - workbench.action.reloadWindowWithExtensionsDisabled
// - workbench.action.remote.close
// - workbench.action.remote.extensions
// - workbench.action.removeLargeStorageDatabaseEntries
// - workbench.action.removeRootFolder
// - workbench.action.reopenTextEditor
// - workbench.action.reopenWithEditor
// - workbench.action.reportPerformanceIssueUsingReporter
// - workbench.action.resetFocusedViewLocation
// - workbench.action.resetViewLocations
// - workbench.action.restartExtensionHost
// - workbench.action.restoreEditorsToMainWindow
// - workbench.action.revertAndCloseActiveEditor
// - workbench.action.saveWorkspaceAs
// - workbench.action.selectIconTheme
// - workbench.action.selectProductIconTheme
// - workbench.action.setDefaultLogLevel
// - workbench.action.setLogLevel
// - workbench.action.showAboutDialog
// - workbench.action.showAllEditorsByMostRecentlyUsed
// - workbench.action.showEditorActions
// - workbench.action.showEditorTab
// - workbench.action.showEditorsInActiveGroup
// - workbench.action.showEditorsInGroup
// - workbench.action.showEmmetCommands
// - workbench.action.showErrorsWarnings
// - workbench.action.showInteractivePlayground
// - workbench.action.showLogs
// - workbench.action.showMultipleEditorTabs
// - workbench.action.showOutputChannels
// - workbench.action.showRuntimeExtensions
// - workbench.action.showWindowLog
// - workbench.action.splitEditorToAboveGroup
// - workbench.action.splitEditorToBelowGroup
// - workbench.action.splitEditorToFirstGroup
// - workbench.action.splitEditorToLastGroup
// - workbench.action.splitEditorToLeftGroup
// - workbench.action.splitEditorToNextGroup
// - workbench.action.splitEditorToPreviousGroup
// - workbench.action.splitEditorToRightGroup
// - workbench.action.stopTracing
// - workbench.action.switchWindow
// - workbench.action.tasks.configureDefaultBuildTask
// - workbench.action.tasks.configureDefaultTestTask
// - workbench.action.tasks.configureTaskRunner
// - workbench.action.tasks.manageAutomaticRunning
// - workbench.action.tasks.openUserTasks
// - workbench.action.tasks.openWorkspaceFileTasks
// - 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.attachToSession
// - workbench.action.terminal.changeColor
// - workbench.action.terminal.changeColorActiveTab
// - workbench.action.terminal.changeIcon
// - workbench.action.terminal.changeIconActiveTab
// - workbench.action.terminal.chat.cancel
// - workbench.action.terminal.chat.discard
// - workbench.action.terminal.chat.viewInChat
// - workbench.action.terminal.clear
// - workbench.action.terminal.clearPreviousSessionHistory
// - workbench.action.terminal.clearSuggestCache
// - workbench.action.terminal.copyLastCommand
// - workbench.action.terminal.copyLastCommandAndLastCommandOutput
// - workbench.action.terminal.copyLastCommandOutput
// - workbench.action.terminal.copySelectionAsHtml
// - workbench.action.terminal.detachSession
// - 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.fontZoomIn
// - workbench.action.terminal.fontZoomOut
// - workbench.action.terminal.fontZoomReset
// - workbench.action.terminal.join
// - workbench.action.terminal.joinActiveTab
// - workbench.action.terminal.kill
// - workbench.action.terminal.killAll
// - workbench.action.terminal.killViewOrEditor
// - workbench.action.terminal.moveIntoNewWindow
// - workbench.action.terminal.moveToEditor
// - workbench.action.terminal.moveToTerminalPanel
// - workbench.action.terminal.newInActiveWorkspace
// - workbench.action.terminal.newWithCwd
// - workbench.action.terminal.newWithProfile
// - workbench.action.terminal.openFileLink
// - workbench.action.terminal.openSettings
// - workbench.action.terminal.openUrlLink
// - workbench.action.terminal.recordSession
// - workbench.action.terminal.relaunch
// - workbench.action.terminal.rename
// - workbench.action.terminal.renameWithArg
// - workbench.action.terminal.resizePaneDown
// - workbench.action.terminal.resizePaneLeft
// - workbench.action.terminal.resizePaneRight
// - workbench.action.terminal.resizePaneUp
// - workbench.action.terminal.restartPtyHost
// - workbench.action.terminal.runActiveFile
// - workbench.action.terminal.runSelectedText
// - workbench.action.terminal.selectAll
// - workbench.action.terminal.selectDefaultShell
// - workbench.action.terminal.selectToNextLine
// - workbench.action.terminal.selectToPreviousLine
// - workbench.action.terminal.setDimensions
// - workbench.action.terminal.showEnvironmentContributions
// - workbench.action.terminal.showTextureAtlas
// - workbench.action.terminal.splitInActiveWorkspace
// - workbench.action.terminal.switchTerminal
// - workbench.action.terminal.toggleStickyScroll
// - workbench.action.terminal.unsplit
// - workbench.action.terminal.writeDataToTerminal
// - workbench.action.toggleActivityBarVisibility
// - workbench.action.toggleAutoSave
// - workbench.action.toggleCenteredLayout
// - workbench.action.toggleCommenting
// - workbench.action.toggleConfirmBeforeClose
// - workbench.action.toggleEditorGroupLock
// - workbench.action.toggleEditorType
// - workbench.action.toggleEditorVisibility
// - workbench.action.toggleEditorWidths
// - workbench.action.toggleKeepEditors
// - workbench.action.toggleKeybindingsLog
// - workbench.action.toggleLightDarkThemes
// - workbench.action.toggleLockedScrolling
// - workbench.action.toggleMaximizedPanel
// - workbench.action.toggleMenuBar
// - workbench.action.toggleMultiCursorModifier
// - workbench.action.toggleNotebookClipboardLog
// - workbench.action.toggleScreencastMode
// - workbench.action.toggleSearchOnType
// - workbench.action.toggleSeparatePinnedEditorTabs
// - workbench.action.toggleSidebarPosition
// - workbench.action.toggleSplitEditorInGroup
// - workbench.action.toggleSplitEditorInGroupLayout
// - workbench.action.toggleStatusbarVisibility
// - workbench.action.triggerReconnect
// - workbench.action.troubleshootIssue.start
// - workbench.action.troubleshootIssue.stop
// - workbench.action.unlockEditorGroup
// - workbench.action.url.openUrl
// - workbench.action.webview.openDeveloperTools
// - workbench.action.webview.reloadWebviewAction
// - workbench.action.zenHideEditorTabs
// - workbench.action.zenShowEditorTab
// - workbench.action.zenShowMultipleEditorTabs
// - workbench.actions.sync.editMachineName
// - workbench.actions.sync.loadActivity
// - workbench.actions.sync.turnOffSyncOnMachine
// - workbench.actions.sync.workbench.views.sync.localActivity.compareWithLocal
// - workbench.actions.sync.workbench.views.sync.localActivity.replaceCurrent
// - workbench.actions.sync.workbench.views.sync.localActivity.resolveResource
// - workbench.actions.sync.workbench.views.sync.remoteActivity.compareWithLocal
// - workbench.actions.sync.workbench.views.sync.remoteActivity.replaceCurrent
// - workbench.actions.sync.workbench.views.sync.remoteActivity.resolveResource
// - workbench.actions.syncData.reset
// - workbench.actions.table.workbench.panel.markers.view.viewAsTable
// - workbench.actions.table.workbench.panel.markers.view.viewAsTree
// - workbench.actions.treeView.explorerPanel.collapseAll
// - workbench.actions.treeView.explorerPanel.refresh
// - workbench.actions.treeView.ftpkr.explorer.collapseAll
// - workbench.actions.treeView.ftpkr.explorer.refresh
// - workbench.actions.treeView.outline-view.collapseAll
// - workbench.actions.treeView.outline-view.refresh
// - workbench.actions.treeView.vsixViewer.collapseAll
// - workbench.actions.treeView.vsixViewer.refresh
// - workbench.actions.treeView.workbench.panel.markers.view.collapseAll
// - workbench.actions.view.toggleProblems
// - workbench.actions.workbench.panel.comments.toggleResolvedComments
// - workbench.actions.workbench.panel.comments.toggleSortByResource
// - workbench.actions.workbench.panel.comments.toggleSortByUpdatedAt
// - workbench.actions.workbench.panel.comments.toggleUnResolvedComments
// - workbench.actions.workbench.panel.markers.view.toggleActiveFile
// - workbench.actions.workbench.panel.markers.view.toggleErrors
// - workbench.actions.workbench.panel.markers.view.toggleExcludedFiles
// - workbench.actions.workbench.panel.markers.view.toggleInfos
// - workbench.actions.workbench.panel.markers.view.toggleWarnings
// - workbench.debug.action.copyAll
// - workbench.debug.action.focusBreakpointsView
// - workbench.debug.action.focusCallStackView
// - workbench.debug.action.focusRepl
// - workbench.debug.action.focusVariablesView
// - workbench.debug.action.focusWatchView
// - workbench.debug.breakPointsView.resetViewLocation
// - workbench.debug.callStackView.resetViewLocation
// - workbench.debug.loadedScriptsView.focus
// - workbench.debug.loadedScriptsView.resetViewLocation
// - workbench.debug.panel.action.clearReplAction
// - workbench.debug.variablesView.resetViewLocation
// - workbench.debug.viewlet.action.addDataBreakpointOnAddress
// - workbench.debug.viewlet.action.addFunctionBreakpointAction
// - workbench.debug.viewlet.action.addWatchExpression
// - workbench.debug.viewlet.action.copyValue
// - workbench.debug.viewlet.action.copyWorkspaceVariableValue
// - workbench.debug.viewlet.action.disableAllBreakpoints
// - workbench.debug.viewlet.action.editDataBreakpointOnAddress
// - workbench.debug.viewlet.action.enableAllBreakpoints
// - workbench.debug.viewlet.action.reapplyBreakpointsAction
// - workbench.debug.viewlet.action.removeAllBreakpoints
// - workbench.debug.viewlet.action.removeAllWatchExpressions
// - workbench.debug.viewlet.action.removeBreakpoint
// - workbench.debug.viewlet.action.toggleBreakpointsActivatedAction
// - workbench.debug.viewlet.action.viewMemory
// - workbench.debug.watchExpressionsView.resetViewLocation
// - workbench.debug.welcome.focus
// - workbench.debug.welcome.removeView
// - workbench.debug.welcome.resetViewLocation
// - workbench.debug.welcome.toggleVisibility
// - workbench.editSessions.actions.delete
// - workbench.editSessions.actions.deleteAll
// - workbench.editSessions.actions.resetAuth
// - workbench.editSessions.actions.resume
// - workbench.editSessions.actions.resumeFromSerializedPayload
// - workbench.editSessions.actions.resumeLatest
// - workbench.editSessions.actions.showEditSessions
// - workbench.editSessions.actions.showOutputChannel
// - workbench.editSessions.actions.signIn
// - workbench.editSessions.actions.store
// - workbench.editSessions.actions.storeCurrent
// - workbench.explorer.fileView.focus
// - workbench.explorer.fileView.removeView
// - workbench.explorer.fileView.resetViewLocation
// - workbench.explorer.fileView.toggleVisibility
// - workbench.explorer.openEditorsView.removeView
// - workbench.explorer.openEditorsView.resetViewLocation
// - workbench.explorer.openEditorsView.toggleVisibility
// - workbench.extensions.action.addExtensionToWorkspaceRecommendations
// - workbench.extensions.action.addToWorkspaceFolderIgnoredRecommendations
// - workbench.extensions.action.addToWorkspaceFolderRecommendations
// - workbench.extensions.action.addToWorkspaceIgnoredRecommendations
// - workbench.extensions.action.addToWorkspaceRecommendations
// - workbench.extensions.action.checkForUpdates
// - workbench.extensions.action.clearExtensionsSearchResults
// - workbench.extensions.action.clearLanguage
// - workbench.extensions.action.configure
// - workbench.extensions.action.configureKeybindings
// - workbench.extensions.action.configureWorkspaceFolderRecommendedExtensions
// - workbench.extensions.action.configureWorkspaceRecommendedExtensions
// - workbench.extensions.action.copyExtension
// - workbench.extensions.action.copyExtensionId
// - 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.extensionUpdates
// - workbench.extensions.action.focusExtensionsView
// - workbench.extensions.action.ignoreRecommendation
// - workbench.extensions.action.install.anotherVersion
// - workbench.extensions.action.install.specificVersion
// - workbench.extensions.action.installAndDonotSync
// - workbench.extensions.action.installExtensionFromLocation
// - workbench.extensions.action.installExtensions
// - workbench.extensions.action.installPrereleaseAndDonotSync
// - workbench.extensions.action.installUnsigned
// - workbench.extensions.action.installVSIX
// - workbench.extensions.action.installWorkspaceRecommendedExtensions
// - workbench.extensions.action.listBuiltInExtensions
// - workbench.extensions.action.listWorkspaceUnsupportedExtensions
// - workbench.extensions.action.manageAccountPreferences
// - workbench.extensions.action.manageAuthorizedExtensionURIs
// - workbench.extensions.action.openExtensionHostProfile
// - workbench.extensions.action.openExtensionsFolder
// - workbench.extensions.action.recentlyPublishedExtensions
// - workbench.extensions.action.refreshExtension
// - workbench.extensions.action.reinstall
// - workbench.extensions.action.removeExtensionFromWorkspaceRecommendations
// - workbench.extensions.action.saveExtensionHostProfile
// - workbench.extensions.action.setColorTheme
// - workbench.extensions.action.setFileIconTheme
// - workbench.extensions.action.setProductIconTheme
// - workbench.extensions.action.showDisabledExtensions
// - workbench.extensions.action.showEnabledExtensions
// - workbench.extensions.action.showExtensionsForLanguage
// - workbench.extensions.action.showExtensionsWithIds
// - workbench.extensions.action.showLanguageExtensions
// - workbench.extensions.action.showPopularExtensions
// - workbench.extensions.action.showPreReleaseVersion
// - workbench.extensions.action.showRecommendedExtensions
// - workbench.extensions.action.showRecommendedKeymapExtensions
// - workbench.extensions.action.showReleasedVersion
// - workbench.extensions.action.stopExtensionHostProfile
// - workbench.extensions.action.switchToPreRlease
// - workbench.extensions.action.switchToRelease
// - workbench.extensions.action.toggleApplyToAllProfiles
// - workbench.extensions.action.toggleAutoUpdateForExtension
// - workbench.extensions.action.toggleAutoUpdatesForPublisher
// - workbench.extensions.action.toggleIgnoreExtension
// - workbench.extensions.action.undoIgnoredRecommendation
// - workbench.extensions.action.updateAllExtensions
// - workbench.extensions.command.installFromVSIX
// - workbench.extensions.installMissingDependencies
// - workbench.files.action.acceptLocalChanges
// - workbench.files.action.collapseExplorerFolders
// - workbench.files.action.compareFileWith
// - workbench.files.action.compareNewUntitledTextFiles
// - workbench.files.action.createFileFromExplorer
// - workbench.files.action.createFolderFromExplorer
// - workbench.files.action.focusFilesExplorer
// - workbench.files.action.refreshFilesExplorer
// - workbench.files.action.revertLocalChanges
// - workbench.files.action.saveAllInGroup
// - workbench.files.action.showActiveFileInExplorer
// - workbench.getCodeExchangeProxyEndpoints
// - workbench.notebook.layout.configure
// - workbench.notebook.layout.configure.editorTitle
// - workbench.notebook.layout.gettingStarted
// - workbench.notebook.layout.select
// - workbench.notebook.layout.webview.reset
// - workbench.output.action.clearOutput
// - workbench.output.action.switchBetweenOutputs
// - workbench.output.action.toggleAutoScroll
// - workbench.panel.chat.view.copilot.focus
// - workbench.panel.chat.view.copilot.removeView
// - workbench.panel.chat.view.copilot.resetViewLocation
// - workbench.panel.chat.view.copilot.toggleVisibility
// - workbench.panel.chatSidebar
// - workbench.panel.chatSidebar.resetViewContainerLocation
// - workbench.panel.markers.resetViewContainerLocation
// - workbench.panel.markers.view.focus
// - workbench.panel.markers.view.removeView
// - workbench.panel.markers.view.resetViewLocation
// - workbench.panel.markers.view.toggleVisibility
// - workbench.panel.output.focus
// - workbench.panel.output.removeView
// - workbench.panel.output.resetViewContainerLocation
// - workbench.panel.output.resetViewLocation
// - workbench.panel.output.toggleVisibility
// - workbench.panel.repl.resetViewContainerLocation
// - workbench.panel.repl.view.focus
// - workbench.panel.repl.view.removeView
// - workbench.panel.repl.view.resetViewLocation
// - workbench.panel.repl.view.toggleVisibility
// - workbench.panel.testResults.resetViewContainerLocation
// - workbench.panel.testResults.view.focus
// - workbench.panel.testResults.view.resetViewLocation
// - workbench.profiles.actions.cleanupProfiles
// - workbench.profiles.actions.createFromCurrentProfile
// - workbench.profiles.actions.createProfile
// - workbench.profiles.actions.createTemporaryProfile
// - workbench.profiles.actions.deleteProfile
// - workbench.profiles.actions.exportProfile
// - workbench.profiles.actions.help
// - workbench.profiles.actions.manageProfiles
// - workbench.profiles.actions.newWindowWithProfile
// - workbench.profiles.actions.resetWorkspaces
// - workbench.profiles.actions.switchProfile
// - workbench.remoteTunnel.actions.configure
// - workbench.remoteTunnel.actions.connecting
// - workbench.remoteTunnel.actions.copyToClipboard
// - workbench.remoteTunnel.actions.learnMore
// - workbench.remoteTunnel.actions.manage
// - workbench.remoteTunnel.actions.showLog
// - workbench.remoteTunnel.actions.turnOff
// - workbench.remoteTunnel.actions.turnOn
// - workbench.scm.action.collapseAllRepositories
// - workbench.scm.action.expandAllRepositories
// - workbench.scm.action.focusNextInput
// - workbench.scm.action.focusNextResourceGroup
// - workbench.scm.action.focusPreviousInput
// - workbench.scm.action.focusPreviousResourceGroup
// - workbench.scm.action.graph.pickHistoryItemRefs
// - workbench.scm.action.graph.pickRepository
// - workbench.scm.action.graph.refresh
// - workbench.scm.action.graph.revealCurrentHistoryItem
// - workbench.scm.action.graph.viewChanges
// - workbench.scm.action.repositories.setSortKey.discoveryTime
// - workbench.scm.action.repositories.setSortKey.name
// - workbench.scm.action.repositories.setSortKey.path
// - workbench.scm.action.setListViewMode
// - workbench.scm.action.setListViewModeNavigation
// - workbench.scm.action.setSortKey.name
// - workbench.scm.action.setSortKey.path
// - workbench.scm.action.setSortKey.status
// - workbench.scm.action.setTreeViewMode
// - workbench.scm.action.setTreeViewModeNavigation
// - workbench.scm.focus
// - workbench.scm.history.focus
// - workbench.scm.history.resetViewLocation
// - workbench.scm.removeView
// - workbench.scm.repositories.focus
// - workbench.scm.repositories.resetViewLocation
// - workbench.scm.resetViewLocation
// - workbench.scm.toggleVisibility
// - workbench.trust.configure
// - workbench.trust.manage
// - workbench.userData.actions.cancelTurnOn
// - workbench.userData.actions.openSyncBackupsFolder
// - workbench.userData.actions.signin
// - workbench.userData.actions.turningOn
// - workbench.userDataSync.actions.acceptMerges
// - workbench.userDataSync.actions.configure
// - workbench.userDataSync.actions.downloadSyncActivity
// - workbench.userDataSync.actions.help
// - workbench.userDataSync.actions.manage
// - workbench.userDataSync.actions.settings
// - workbench.userDataSync.actions.showConflicts
// - workbench.userDataSync.actions.showLog
// - workbench.userDataSync.actions.showSyncedData
// - workbench.userDataSync.actions.syncNow
// - workbench.userDataSync.actions.turnOff
// - workbench.userDataSync.actions.turnOn
// - workbench.view.debug.resetViewContainerLocation
// - workbench.view.editSessions.resetViewContainerLocation
// - workbench.view.explorer.resetViewContainerLocation
// - workbench.view.extension.1-cloudCodeContainer
// - workbench.view.extension.1-cloudCodeContainer.resetViewContainerLocation
// - workbench.view.extension.1-geminiAIChatViewContainer
// - workbench.view.extension.1-geminiAIChatViewContainer.resetViewContainerLocation
// - workbench.view.extension.PowerShell
// - workbench.view.extension.PowerShell.resetViewContainerLocation
// - workbench.view.extension.aws-explorer
// - workbench.view.extension.aws-explorer.resetViewContainerLocation
// - workbench.view.extension.azure.resetViewContainerLocation
// - workbench.view.extension.azurePanel
// - workbench.view.extension.azurePanel.resetViewContainerLocation
// - workbench.view.extension.cmake-view
// - workbench.view.extension.cmake-view.resetViewContainerLocation
// - workbench.view.extension.console-ninja
// - workbench.view.extension.console-ninja.resetViewContainerLocation
// - workbench.view.extension.copilot-chat
// - workbench.view.extension.copilot-chat.resetViewContainerLocation
// - workbench.view.extension.databaseExplorer
// - workbench.view.extension.databaseExplorer.resetViewContainerLocation
// - workbench.view.extension.dataworkspace
// - workbench.view.extension.dataworkspace.resetViewContainerLocation
// - workbench.view.extension.dockerView
// - workbench.view.extension.dockerView.resetViewContainerLocation
// - workbench.view.extension.figma
// - workbench.view.extension.figma.resetViewContainerLocation
// - workbench.view.extension.flutter
// - workbench.view.extension.flutter.resetViewContainerLocation
// - workbench.view.extension.github-actions
// - workbench.view.extension.github-actions.resetViewContainerLocation
// - workbench.view.extension.gitlens
// - workbench.view.extension.gitlens.resetViewContainerLocation
// - workbench.view.extension.gitlensInspect
// - workbench.view.extension.gitlensInspect.resetViewContainerLocation
// - workbench.view.extension.gitlensPanel
// - workbench.view.extension.gitlensPanel.resetViewContainerLocation
// - workbench.view.extension.gitlensPatch
// - workbench.view.extension.gitlensPatch.resetViewContainerLocation
// - workbench.view.extension.gitpod-view
// - workbench.view.extension.gitpod-view.resetViewContainerLocation
// - workbench.view.extension.gptPilotSidebar
// - workbench.view.extension.gptPilotSidebar.resetViewContainerLocation
// - workbench.view.extension.gradleContainerView
// - workbench.view.extension.gradleContainerView.resetViewContainerLocation
// - workbench.view.extension.ionic-recommendation
// - workbench.view.extension.ionic-recommendation.resetViewContainerLocation
// - workbench.view.extension.jupyter
// - workbench.view.extension.jupyter-variables
// - workbench.view.extension.jupyter-variables.resetViewContainerLocation
// - workbench.view.extension.jupyter.resetViewContainerLocation
// - workbench.view.extension.liveshare
// - workbench.view.extension.liveshare.resetViewContainerLocation
// - workbench.view.extension.million-lint
// - workbench.view.extension.million-lint.resetViewContainerLocation
// - workbench.view.extension.mongoDB
// - workbench.view.extension.mongoDB.resetViewContainerLocation
// - workbench.view.extension.objectExplorer.resetViewContainerLocation
// - workbench.view.extension.platformio
// - workbench.view.extension.platformio.resetViewContainerLocation
// - workbench.view.extension.pwabuilder-view
// - workbench.view.extension.pwabuilder-view.resetViewContainerLocation
// - workbench.view.extension.queryResult
// - workbench.view.extension.queryResult.resetViewContainerLocation
// - workbench.view.extension.references-view
// - workbench.view.extension.references-view.resetViewContainerLocation
// - workbench.view.extension.stripe
// - workbench.view.extension.stripe.resetViewContainerLocation
// - workbench.view.extension.tailwindColorMatcher
// - workbench.view.extension.tailwindColorMatcher.resetViewContainerLocation
// - workbench.view.extension.test
// - workbench.view.extension.test.resetViewContainerLocation
// - workbench.view.extension.thunder-client.resetViewContainerLocation
// - workbench.view.extension.wallaby
// - workbench.view.extension.wallaby.resetViewContainerLocation
// - workbench.view.extensions.resetViewContainerLocation
// - workbench.view.remote
// - workbench.view.remote.resetViewContainerLocation
// - workbench.view.scm.resetViewContainerLocation
// - workbench.view.search.focus
// - workbench.view.search.removeView
// - workbench.view.search.resetViewContainerLocation
// - workbench.view.search.resetViewLocation
// - workbench.view.search.toggleVisibility
// - workbench.view.sync
// - workbench.view.sync.resetViewContainerLocation
// - workbench.view.testCoverage.focus
// - workbench.view.testCoverage.resetViewLocation
// - workbench.view.testing.focus
// - workbench.view.testing.removeView
// - workbench.view.testing.resetViewLocation
// - workbench.view.testing.toggleVisibility
// - workbench.views.editSessions.data.focus
// - workbench.views.editSessions.data.resetViewLocation
// - workbench.views.extensions.builtinFeatureExtensions.focus
// - workbench.views.extensions.builtinFeatureExtensions.resetViewLocation
// - workbench.views.extensions.builtinProgrammingLanguageExtensions.focus
// - workbench.views.extensions.builtinProgrammingLanguageExtensions.resetViewLocation
// - workbench.views.extensions.builtinThemeExtensions.focus
// - workbench.views.extensions.builtinThemeExtensions.resetViewLocation
// - workbench.views.extensions.deprecatedExtensions.focus
// - workbench.views.extensions.deprecatedExtensions.resetViewLocation
// - workbench.views.extensions.disabled.focus
// - workbench.views.extensions.disabled.resetViewLocation
// - workbench.views.extensions.enabled.focus
// - workbench.views.extensions.enabled.resetViewLocation
// - workbench.views.extensions.installed.focus
// - workbench.views.extensions.installed.resetViewLocation
// - workbench.views.extensions.marketplace.focus
// - workbench.views.extensions.marketplace.resetViewLocation
// - workbench.views.extensions.otherRecommendations.focus
// - workbench.views.extensions.otherRecommendations.resetViewLocation
// - workbench.views.extensions.popular.focus
// - workbench.views.extensions.popular.resetViewLocation
// - workbench.views.extensions.searchBuiltin.focus
// - workbench.views.extensions.searchBuiltin.resetViewLocation
// - workbench.views.extensions.searchDisabled.focus
// - workbench.views.extensions.searchDisabled.resetViewLocation
// - workbench.views.extensions.searchEnabled.focus
// - workbench.views.extensions.searchEnabled.resetViewLocation
// - workbench.views.extensions.searchInstalled.focus
// - workbench.views.extensions.searchInstalled.resetViewLocation
// - workbench.views.extensions.searchOutdated.focus
// - workbench.views.extensions.searchOutdated.resetViewLocation
// - workbench.views.extensions.searchRecentlyUpdated.focus
// - workbench.views.extensions.searchRecentlyUpdated.resetViewLocation
// - workbench.views.extensions.searchWorkspaceUnsupported.focus
// - workbench.views.extensions.searchWorkspaceUnsupported.resetViewLocation
// - workbench.views.extensions.untrustedPartiallySupportedExtensions.focus
// - workbench.views.extensions.untrustedPartiallySupportedExtensions.resetViewLocation
// - workbench.views.extensions.untrustedUnsupportedExtensions.focus
// - workbench.views.extensions.untrustedUnsupportedExtensions.resetViewLocation
// - workbench.views.extensions.virtualPartiallySupportedExtensions.focus
// - workbench.views.extensions.virtualPartiallySupportedExtensions.resetViewLocation
// - workbench.views.extensions.virtualUnsupportedExtensions.focus
// - workbench.views.extensions.virtualUnsupportedExtensions.resetViewLocation
// - workbench.views.extensions.workspaceRecommendations.focus
// - workbench.views.extensions.workspaceRecommendations.resetViewLocation
// - workbench.views.sync.conflicts.focus
// - workbench.views.sync.conflicts.resetViewLocation
// - workbench.views.sync.externalActivity.focus
// - workbench.views.sync.externalActivity.resetViewLocation
// - workbench.views.sync.localActivity.focus
// - workbench.views.sync.localActivity.resetViewLocation
// - workbench.views.sync.machines.focus
// - workbench.views.sync.machines.resetViewLocation
// - workbench.views.sync.remoteActivity.focus
// - workbench.views.sync.remoteActivity.resetViewLocation
// - workbench.views.sync.troubleshoot.focus
// - workbench.views.sync.troubleshoot.resetViewLocation
// - xd.exportLog
// - xml.command.bind.grammar
// - xml.open.docs.home
// - xml.refactor.surround.with.cdata
// - xml.refactor.surround.with.comments
// - xml.refactor.surround.with.tags
// - xml.restart.language.server
// - xml.validation.all.files
// - xml.validation.current.file
// - xmlTools.executeXQuery
// - xmlTools.getCurrentXPath
// - xmlTools.minifyXml
// - xmlTools.textToXml
// - xmlTools.xmlToText
// - xmlTreeView.focus
// - xmlTreeView.resetViewLocation
// - yandex.translate.changeApiKey
// - ~remote.forwardedPorts.focus
// - ~remote.forwardedPorts.removeView
// - ~remote.forwardedPorts.resetViewLocation
// - ~remote.forwardedPorts.toggleVisibility
// - ~remote.forwardedPortsContainer
// - ~remote.forwardedPortsContainer.resetViewContainerLocation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment