Skip to content

Instantly share code, notes, and snippets.

@codxse
Created August 12, 2025 16:44
Show Gist options
  • Save codxse/1246274302f3007fe78360026f9db9a3 to your computer and use it in GitHub Desktop.
Save codxse/1246274302f3007fe78360026f9db9a3 to your computer and use it in GitHub Desktop.
Nadiar's vscode keyboard shortcut
// 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": "shift+escape", "command": "editor.action.inlineSuggest.hide",
"when": "inInlineEditsPreviewEditor" },
{ "key": "escape", "command": "editor.action.inlineSuggest.hide",
"when": "inInlineEditsPreviewEditor" },
{ "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": "down", "command": "cursorDown",
"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": "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": "escape", "command": "inlineChat.hideHint",
"when": "inlineChatShowingHint" },
{ "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": "meta+enter", "command": "notebook.cell.quitEdit",
"when": "inputFocus && notebookEditorFocused && !inlineChatFocused && notebookCellType == 'markup'" },
{ "key": "escape", "command": "workbench.edit.chat.cancel",
"when": "chatSessionCurrentlyEditing && inChatInput && !editorHasMultipleSelections && !editorHasSelection && !editorHoverVisible || chatSessionCurrentlyEditingInput && inChatInput && !editorHasMultipleSelections && !editorHasSelection && !editorHoverVisible" },
{ "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" },
{ "key": "ctrl+shift+right", "command": "cursorWordEndRightSelect",
"when": "textInputFocus" },
{ "key": "ctrl+left", "command": "cursorWordLeft",
"when": "textInputFocus" },
{ "key": "ctrl+shift+left", "command": "cursorWordLeftSelect",
"when": "textInputFocus" },
{ "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+[IntlBackslash]", "command": "editor.action.autoFix",
"when": "textInputFocus && !editorReadonly && supportedCodeAction =~ /(\\s|^)quickfix\\b/" },
{ "key": "shift+alt+.", "command": "editor.action.autoFix",
"when": "textInputFocus && !editorReadonly && supportedCodeAction =~ /(\\s|^)quickfix\\b/" },
{ "key": "ctrl+shift+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+c", "command": "editor.action.clipboardCopyAction" },
{ "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": "ctrl+shift+alt+down", "command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+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": "ctrl+shift+i", "command": "editor.action.formatDocument",
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly && !inCompositeEditor" },
{ "key": "ctrl+shift+i", "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+[IntlBackslash]", "command": "editor.action.inPlaceReplace.down",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+shift+.", "command": "editor.action.inPlaceReplace.down",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+[IntlBackslash]", "command": "editor.action.inPlaceReplace.up",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+shift+,", "command": "editor.action.inPlaceReplace.up",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+]", "command": "editor.action.indentLines",
"when": "editorTextFocus && !editorReadonly" },
{ "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+shift+up", "command": "editor.action.insertCursorAbove",
"when": "editorTextFocus" },
{ "key": "shift+alt+up", "command": "editor.action.insertCursorAbove",
"when": "editorTextFocus" },
{ "key": "shift+alt+i", "command": "editor.action.insertCursorAtEndOfEachLineSelected",
"when": "editorTextFocus" },
{ "key": "ctrl+shift+down", "command": "editor.action.insertCursorBelow",
"when": "editorTextFocus" },
{ "key": "shift+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": "ctrl+shift+f10", "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": "escape", "command": "inlineChat.discardHunkChange",
"when": "inlineChatHasProvider && inlineChatVisible && inlineChatResponseType == 'messagesAndEdits'" },
{ "key": "tab", "command": "insertSnippet",
"when": "editorTextFocus && hasSnippetCompletions && !editorTabMovesFocus && !inSnippetMode" },
{ "key": "ctrl+enter", "command": "interactive.execute",
"when": "isCompositeNotebook && activeEditor == 'workbench.editor.interactive'" },
{ "key": "shift+enter", "command": "interactive.execute",
"when": "config.interactiveWindow.executeWithShiftEnter && isCompositeNotebook && activeEditor == 'workbench.editor.interactive'" },
{ "key": "enter", "command": "interactive.execute",
"when": "isCompositeNotebook && !config.interactiveWindow.executeWithShiftEnter && activeEditor == 'workbench.editor.interactive'" },
{ "key": "ctrl+enter", "command": "mergeEditor.acceptMerge",
"when": "isMergeEditor" },
{ "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": "meta+enter", "command": "notebook.cell.execute",
"when": "notebookCellListFocused && notebookMissingKernelExtension && !notebookCellExecuting && notebookCellType == 'code' || notebookCellListFocused && !notebookCellExecuting && notebookCellType == 'code' && notebookKernelCount > 0 || notebookCellListFocused && !notebookCellExecuting && notebookCellType == 'code' && notebookKernelSourceCount > 0" },
{ "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 && notebookEditorCursorAtLineBoundary == 'both' && notebookEditorCursorAtBoundary != 'none' && notebookEditorCursorAtBoundary != 'top' || config.notebook.navigation.allowNavigateToSurroundingCells && editorTextFocus && inputFocus && notebookEditorFocused && !accessibilityModeEnabled && !isEmbeddedDiffEditor && notebookEditorCursorAtLineBoundary == 'end' && notebookEditorCursorAtBoundary != 'none' && notebookEditorCursorAtBoundary != 'top'" },
{ "key": "up", "command": "notebook.focusPreviousEditor",
"when": "config.notebook.navigation.allowNavigateToSurroundingCells && editorTextFocus && inputFocus && notebookEditorFocused && !accessibilityModeEnabled && !isEmbeddedDiffEditor && notebookEditorCursorAtLineBoundary == 'both' && notebookEditorCursorAtBoundary != 'bottom' && notebookEditorCursorAtBoundary != 'none' || config.notebook.navigation.allowNavigateToSurroundingCells && editorTextFocus && inputFocus && notebookEditorFocused && !accessibilityModeEnabled && !isEmbeddedDiffEditor && notebookEditorCursorAtLineBoundary == 'start' && notebookEditorCursorAtBoundary != 'bottom' && notebookEditorCursorAtBoundary != 'none'" },
{ "key": "ctrl+shift+i", "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": "isCompositeNotebook && !notebookCellListFocused && activeEditor == 'workbench.editor.repl'" },
{ "key": "shift+enter", "command": "repl.execute",
"when": "config.interactiveWindow.executeWithShiftEnter && isCompositeNotebook && !notebookCellListFocused && activeEditor == 'workbench.editor.repl'" },
{ "key": "enter", "command": "repl.execute",
"when": "isCompositeNotebook && !config.interactiveWindow.executeWithShiftEnter && !notebookCellListFocused && activeEditor == 'workbench.editor.repl'" },
{ "key": "alt+end alt+end", "command": "repl.focusLastItemExecuted",
"when": "isCompositeNotebook && mostRecentReplEditor || mostRecentReplEditor && !notebookCellListFocused" },
{ "key": "ctrl+down", "command": "repl.input.focus",
"when": "isCompositeNotebook && notebookEditorFocused" },
{ "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+i", "command": "settings.action.toggleAiSearch",
"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",
"when": "activeCursorHasCommentingRange" },
{ "key": "ctrl+/", "command": "workbench.action.chat.attachContext",
"when": "inChatInput && chatLocation == 'panel'" },
{ "key": "ctrl+.", "command": "workbench.action.chat.openModePicker",
"when": "chatIsEnabled && inChatInput && chatLocation == 'panel'" },
{ "key": "ctrl+alt+enter", "command": "workbench.action.chat.runInTerminal",
"when": "accessibleViewInCodeBlock && chatIsEnabled || chatIsEnabled && inChat" },
{ "key": "enter", "command": "workbench.action.chat.submit",
"when": "inChatInput" },
{ "key": "ctrl+enter", "command": "workbench.action.chat.submitWithCodebase",
"when": "chatInputHasText && chatRequestIsPaused && inChatInput || chatInputHasText && inChatInput && !chatSessionRequestInProgress || chatPromptFileAttached && chatRequestIsPaused && inChatInput || chatPromptFileAttached && inChatInput && !chatSessionRequestInProgress" },
{ "key": "shift+alt+enter", "command": "workbench.action.chat.submitWithoutDispatching",
"when": "chatInputHasText && chatRequestIsPaused && inChatInput && chatMode == 'ask' || chatInputHasText && inChatInput && !chatSessionRequestInProgress && chatMode == 'ask' || chatPromptFileAttached && chatRequestIsPaused && inChatInput && chatMode == 'ask' || chatPromptFileAttached && inChatInput && !chatSessionRequestInProgress && chatMode == 'ask'" },
{ "key": "alt+f5", "command": "workbench.action.editor.nextChange",
"when": "editorTextFocus && !textCompareEditorActive && quickDiffDecorationCount != '0'" },
{ "key": "shift+alt+f5", "command": "workbench.action.editor.previousChange",
"when": "editorTextFocus && !textCompareEditorActive && quickDiffDecorationCount != '0'" },
{ "key": "shift+escape", "command": "workbench.action.hideComment",
"when": "commentEditorFocused || commentFocused" },
{ "key": "escape", "command": "workbench.action.hideComment",
"when": "commentEditorFocused || commentFocused" },
{ "key": "ctrl+right", "command": "editor.action.inlineSuggest.acceptNextWord",
"when": "cursorBeforeGhostText && inlineSuggestionVisible && !accessibilityModeEnabled && !editorReadonly" },
{ "key": "escape", "command": "inlineChat.close",
"when": "inlineChatHasProvider && inlineChatVisible" },
{ "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+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": "closeMarkersNavigation",
"when": "editorFocus && markersNavigationVisible" },
{ "key": "escape", "command": "closeMarkersNavigation",
"when": "editorFocus && markersNavigationVisible" },
{ "key": "shift+escape", "command": "closeQuickDiff",
"when": "dirtyDiffVisible" },
{ "key": "escape", "command": "closeQuickDiff",
"when": "dirtyDiffVisible" },
{ "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": "escape", "command": "editor.action.inlineSuggest.hide",
"when": "inlineEditIsVisible || inlineSuggestionVisible" },
{ "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+k ctrl+i", "command": "workbench.action.showHover",
"when": "!editorTextFocus" },
{ "key": "ctrl+shift+l", "command": "addCursorsAtSearchResults",
"when": "fileMatchOrMatchFocus && searchViewletVisible" },
{ "key": "ctrl+shift+;", "command": "breadcrumbs.focus",
"when": "breadcrumbsPossible && breadcrumbsVisible" },
{ "key": "ctrl+shift+[IntlBackslash]", "command": "breadcrumbs.focusAndSelect",
"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+[IntlBackslash]", "command": "breadcrumbs.toggleToOn",
"when": "!config.breadcrumbs.enabled" },
{ "key": "ctrl+shift+.", "command": "breadcrumbs.toggleToOn",
"when": "!config.breadcrumbs.enabled" },
{ "key": "ctrl+down", "command": "chat.action.focus",
"when": "inChat && inChatInput && quickChatHasFocus" },
{ "key": "ctrl+c", "command": "chat.inlineResourceAnchor.copyResource",
"when": "chatAttachmentResource" },
{ "key": "ctrl+enter", "command": "chatEditing.acceptAllFiles",
"when": "hasUndecidedChatEditingResource && inChatInput && !chatSessionRequestInProgress" },
{ "key": "ctrl+backspace", "command": "chatEditing.discardAllFiles",
"when": "hasUndecidedChatEditingResource && inChatInput && !chatInputHasText && !chatSessionRequestInProgress" },
{ "key": "alt+f5", "command": "chatEditor.action.navigateNext",
"when": "chatEdits.hasEditorModifications && chatIsEnabled && editorFocus || chatEdits.hasEditorModifications && chatIsEnabled && notebookCellListFocused" },
{ "key": "shift+alt+f5", "command": "chatEditor.action.navigatePrevious",
"when": "chatEdits.hasEditorModifications && chatIsEnabled && editorFocus || chatEdits.hasEditorModifications && chatIsEnabled && notebookCellListFocused" },
{ "key": "f7", "command": "chatEditor.action.showAccessibleDiffView",
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress" },
{ "key": "shift+alt+f7", "command": "chatEditor.action.toggleDiff",
"when": "chatEdits.hasEditorModifications && editorFocus" },
{ "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": "ctrl+alt+c", "command": "copyFilePath",
"when": "!editorFocus" },
{ "key": "ctrl+k ctrl+alt+c", "command": "copyFilePath",
"when": "editorFocus" },
{ "key": "ctrl+shift+alt+c", "command": "copyRelativeFilePath",
"when": "!editorFocus" },
{ "key": "ctrl+k ctrl+shift+alt+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": "ctrl+alt+c", "command": "debug.copyWatchExpression",
"when": "watchExpressionsExist && !expressionSelected && focusedView == 'workbench.debug.watchExpressionsView'" },
{ "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": "shift+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": "shift+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 == 'inlineChat' || accessibleViewContainsCodeBlocks && accessibleViewCurrentProviderId == 'panelChat' || accessibleViewContainsCodeBlocks && accessibleViewCurrentProviderId == 'quickChat'" },
{ "key": "alt+[", "command": "editor.action.accessibleViewPrevious",
"when": "accessibleViewIsShown && accessibleViewSupportsNavigation" },
{ "key": "ctrl+alt+pageup", "command": "editor.action.accessibleViewPreviousCodeBlock",
"when": "accessibleViewContainsCodeBlocks && accessibleViewCurrentProviderId == 'inlineChat' || accessibleViewContainsCodeBlocks && accessibleViewCurrentProviderId == 'panelChat' || accessibleViewContainsCodeBlocks && accessibleViewCurrentProviderId == 'quickChat'" },
{ "key": "ctrl+k ctrl+k", "command": "editor.action.defineKeybinding",
"when": "resource == 'vscode-userdata:/home/nadiar/.config/Code/User/keybindings.json'" },
{ "key": "tab", "command": "editor.action.inlineSuggest.commit",
"when": "inlineEditIsVisible && tabShouldAcceptInlineEdit && !editorHoverFocused && !editorTabMovesFocus && !suggestWidgetVisible || inlineEditIsVisible && inlineSuggestionVisible && tabShouldAcceptInlineEdit && !editorHoverFocused && !editorTabMovesFocus && !suggestWidgetVisible || inlineSuggestionHasIndentationLessThanTabSize && inlineSuggestionVisible && !editor.hasSelection && !editorHoverFocused && !editorTabMovesFocus && !suggestWidgetVisible || inlineEditIsVisible && inlineSuggestionHasIndentationLessThanTabSize && inlineSuggestionVisible && !editor.hasSelection && !editorHoverFocused && !editorTabMovesFocus && !suggestWidgetVisible" },
{ "key": "insert", "command": "editor.action.toggleOvertypeInsertMode" },
{ "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": "ctrl+i", "command": "inlineChat.holdForSpeech",
"when": "hasSpeechProvider && 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+i", "command": "inlineChat.start",
"when": "editorFocus && inlineChatHasEditsAgent && inlineChatPossible && !editorReadonly && !editorSimpleInput || editorFocus && inlineChatHasProvider && inlineChatPossible && !editorReadonly && !editorSimpleInput" },
{ "key": "ctrl+k i", "command": "inlineChat.startWithCurrentLine",
"when": "inlineChatHasProvider && !editorReadonly && !inlineChatVisible" },
{ "key": "ctrl+z", "command": "inlineChat.unstash",
"when": "inlineChatHasStashedSession && !editorReadonly" },
{ "key": "ctrl+down", "command": "inlineChat.viewInChat",
"when": "inChatInput && inlineChatHasProvider && inlineChatVisible" },
{ "key": "ctrl+i", "command": "inlineChat2.close",
"when": "inlineChatHasEditsAgent && inlineChatVisible && !chatEdits.isRequestInProgress && chatEdits.requestCount == '0' || inlineChatHasEditsAgent && inlineChatVisible && !chatEdits.hasEditorModifications && !chatEdits.isRequestInProgress && chatEdits.requestCount == '0'" },
{ "key": "escape", "command": "inlineChat2.close",
"when": "inlineChatHasEditsAgent && inlineChatVisible && !chatEdits.hasEditorModifications && !chatEdits.isRequestInProgress || inlineChatHasEditsAgent && inlineChatVisible && !chatEdits.isRequestInProgress && chatEdits.requestCount == '0'" },
{ "key": "ctrl+i", "command": "inlineChat2.reveal",
"when": "inlineChatHasEditsAgent && !chatEdits.isGlobalEditingSession && chatEdits.requestCount >= 1" },
{ "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": "ctrl+k m", "command": "notebook.cell.changeLanguage",
"when": "notebookCellEditable && notebookEditable && notebookEditorFocused" },
{ "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 && !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+down", "command": "notebook.cell.focusInOutput",
"when": "isWindows && notebookCellHasOutputs && notebookEditorFocused && !isCompositeNotebook" },
{ "key": "ctrl+shift+down", "command": "notebook.cell.focusInOutput",
"when": "notebookCellHasOutputs && notebookEditorFocused" },
{ "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+meta+j", "command": "notebook.cell.joinAbove",
"when": "notebookEditorFocused" },
{ "key": "alt+meta+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": "ctrl+shift+i", "command": "notebook.format",
"when": "notebookEditable && !editorTextFocus && activeEditor == 'workbench.editor.notebook'" },
{ "key": "escape", "command": "notebook.hideFind",
"when": "notebookEditorFocused && notebookFindWidgetFocused" },
{ "key": "ctrl+shift+l", "command": "notebook.selectAllFindMatches",
"when": "config.notebook.multiCursor.enabled && notebookFindWidgetFocused || config.notebook.multiCursor.enabled && notebookCellEditorFocused && activeEditor == 'workbench.editor.notebook'" },
{ "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' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "ctrl+home", "command": "quickInput.first",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "ctrl+alt+end", "command": "quickInput.last",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "ctrl+end", "command": "quickInput.last",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "ctrl+down", "command": "quickInput.next",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "down", "command": "quickInput.next",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "ctrl+alt+down", "command": "quickInput.nextSeparator",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "alt+down", "command": "quickInput.nextSeparatorWithQuickAccessFallback",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "ctrl+alt+pagedown", "command": "quickInput.pageNext",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "ctrl+pagedown", "command": "quickInput.pageNext",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "alt+pagedown", "command": "quickInput.pageNext",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "pagedown", "command": "quickInput.pageNext",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "ctrl+alt+pageup", "command": "quickInput.pagePrevious",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "ctrl+pageup", "command": "quickInput.pagePrevious",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "alt+pageup", "command": "quickInput.pagePrevious",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "pageup", "command": "quickInput.pagePrevious",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "ctrl+up", "command": "quickInput.previous",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "up", "command": "quickInput.previous",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "ctrl+alt+up", "command": "quickInput.previousSeparator",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "alt+up", "command": "quickInput.previousSeparatorWithQuickAccessFallback",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "ctrl+space", "command": "quickInput.toggleHover",
"when": "inQuickInput && quickInputType == 'quickPick' || inQuickInput && quickInputType == 'quickTree'" },
{ "key": "space", "command": "refactorPreview.toggleCheckedState",
"when": "listFocus && refactorPreview.enabled && !inputFocus && !treestickyScrollFocused" },
{ "key": "ctrl+alt+r", "command": "revealFileInOS",
"when": "!editorFocus" },
{ "key": "enter", "command": "revealReference",
"when": "listFocus && referenceSearchVisible && !inputFocus && !treeElementCanCollapse && !treeElementCanExpand && !treestickyScrollFocused" },
{ "key": "ctrl+enter", "command": "scm.acceptInput",
"when": "scmRepository" },
{ "key": "escape", "command": "scm.clearInput",
"when": "scmRepository && !editorHasSelection && !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": "ctrl+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+i", "command": "search.action.searchWithAI",
"when": "hasAIResultProviderKey && searchViewletFocus" },
{ "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+meta+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": "ctrl+alt+/", "command": "workbench.action.chat.attach.instructions",
"when": "chatIsEnabled && config.chat.promptFiles" },
{ "key": "ctrl+escape", "command": "workbench.action.chat.cancel" },
{ "key": "enter", "command": "workbench.action.chat.editRequests",
"when": "inChat && !textInputFocus" },
{ "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 && !inSettingsEditor && !inlineChatFocused && !notebookEditorFocused && !searchViewletFocus" },
{ "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",
"when": "!chatSetupDisabled && !chatSetupHidden" },
{ "key": "ctrl+shift+alt+i", "command": "workbench.action.chat.openAgent",
"when": "config.chat.agent.enabled && !chatSetupDisabled && !chatSetupHidden" },
{ "key": "ctrl+alt+.", "command": "workbench.action.chat.openModelPicker",
"when": "chatIsEnabled && inChatInput" },
{ "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.restoreCheckpoint",
"when": "inChat && !textInputFocus" },
{ "key": "ctrl+alt+meta+/", "command": "workbench.action.chat.run-in-new-chat.prompt.current",
"when": "chatIsEnabled && config.chat.promptFiles && editorTextFocus && resourceSet && resourceLangId == 'prompt'" },
{ "key": "alt+meta+/", "command": "workbench.action.chat.run.prompt",
"when": "chatIsEnabled && config.chat.promptFiles" },
{ "key": "alt+meta+/", "command": "workbench.action.chat.run.prompt.current",
"when": "chatIsEnabled && config.chat.promptFiles && editorTextFocus && resourceSet && resourceLangId == 'prompt'" },
{ "key": "ctrl+shift+enter", "command": "workbench.action.chat.sendToNewChat",
"when": "chatInputHasText && chatRequestIsPaused && inChatInput || chatInputHasText && inChatInput && !chatSessionRequestInProgress || chatPromptFileAttached && chatRequestIsPaused && inChatInput || chatPromptFileAttached && inChatInput && !chatSessionRequestInProgress" },
{ "key": "ctrl+i", "command": "workbench.action.chat.startVoiceChat",
"when": "chatIsEnabled && hasSpeechProvider && inChatInput && !chatSessionRequestInProgress && !editorFocus && !notebookEditorFocused && !scopedVoiceChatGettingReady && !speechToTextInProgress || chatIsEnabled && hasSpeechProvider && inlineChatFocused && !chatSessionRequestInProgress && !editorFocus && !notebookEditorFocused && !scopedVoiceChatGettingReady && !speechToTextInProgress" },
{ "key": "ctrl+i", "command": "workbench.action.chat.stopListeningAndSubmit",
"when": "inChatInput && voiceChatInProgress && scopedVoiceChatInProgress == 'editor' || inChatInput && voiceChatInProgress && scopedVoiceChatInProgress == 'inline' || inChatInput && voiceChatInProgress && scopedVoiceChatInProgress == 'quick' || inChatInput && voiceChatInProgress && scopedVoiceChatInProgress == 'view' || inlineChatFocused && voiceChatInProgress && scopedVoiceChatInProgress == 'editor' || inlineChatFocused && voiceChatInProgress && scopedVoiceChatInProgress == 'inline' || inlineChatFocused && voiceChatInProgress && scopedVoiceChatInProgress == 'quick' || inlineChatFocused && voiceChatInProgress && scopedVoiceChatInProgress == 'view'" },
{ "key": "delete", "command": "workbench.action.chat.undoEdits",
"when": "inChat && !textInputFocus" },
{ "key": "ctrl+w", "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": "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": "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 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": "browserback", "command": "workbench.action.navigateBack",
"when": "canNavigateBack" },
{ "key": "ctrl+alt+-", "command": "workbench.action.navigateBack",
"when": "canNavigateBack" },
{ "key": "browserforward", "command": "workbench.action.navigateForward",
"when": "canNavigateForward" },
{ "key": "ctrl+shift+-", "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+k ctrl+h", "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+shift+alt+l", "command": "workbench.action.quickchat.toggle",
"when": "chatIsEnabled" },
{ "key": "ctrl+q", "command": "workbench.action.quit" },
{ "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": "ctrl+shift+r", "command": "workbench.action.tasks.rerunForActiveTerminal",
"when": "taskTerminalActive && terminalFocus" },
{ "key": "escape", "command": "workbench.action.terminal.chat.close",
"when": "chatIsEnabled && terminalChatFocus && terminalChatVisible || chatIsEnabled && terminalChatVisible && terminalFocus" },
{ "key": "ctrl+alt+enter", "command": "workbench.action.terminal.chat.insertCommand",
"when": "chatIsEnabled && terminalChatResponseContainsCodeBlock && terminalHasBeenCreated && !terminalChatActiveRequest && !terminalChatResponseContainsMultipleCodeBlocks || chatIsEnabled && terminalChatResponseContainsCodeBlock && terminalProcessSupported && !terminalChatActiveRequest && !terminalChatResponseContainsMultipleCodeBlocks" },
{ "key": "alt+enter", "command": "workbench.action.terminal.chat.insertCommand",
"when": "chatIsEnabled && terminalChatResponseContainsCodeBlock && terminalHasBeenCreated && !terminalChatActiveRequest && !terminalChatResponseContainsMultipleCodeBlocks || chatIsEnabled && terminalChatResponseContainsCodeBlock && terminalProcessSupported && !terminalChatActiveRequest && !terminalChatResponseContainsMultipleCodeBlocks" },
{ "key": "ctrl+alt+enter", "command": "workbench.action.terminal.chat.insertFirstCommand",
"when": "chatIsEnabled && terminalChatResponseContainsMultipleCodeBlocks && terminalHasBeenCreated && !terminalChatActiveRequest || chatIsEnabled && terminalChatResponseContainsMultipleCodeBlocks && terminalProcessSupported && !terminalChatActiveRequest" },
{ "key": "alt+enter", "command": "workbench.action.terminal.chat.insertFirstCommand",
"when": "chatIsEnabled && terminalChatResponseContainsMultipleCodeBlocks && terminalHasBeenCreated && !terminalChatActiveRequest || chatIsEnabled && terminalChatResponseContainsMultipleCodeBlocks && terminalProcessSupported && !terminalChatActiveRequest" },
{ "key": "ctrl+r", "command": "workbench.action.terminal.chat.rerunRequest",
"when": "chatIsEnabled && terminalChatFocus && terminalHasBeenCreated && !terminalChatActiveRequest || chatIsEnabled && terminalChatFocus && terminalProcessSupported && !terminalChatActiveRequest" },
{ "key": "ctrl+enter", "command": "workbench.action.terminal.chat.runCommand",
"when": "chatIsEnabled && terminalChatResponseContainsCodeBlock && terminalHasBeenCreated && !terminalChatActiveRequest && !terminalChatResponseContainsMultipleCodeBlocks || chatIsEnabled && terminalChatResponseContainsCodeBlock && terminalProcessSupported && !terminalChatActiveRequest && !terminalChatResponseContainsMultipleCodeBlocks" },
{ "key": "ctrl+enter", "command": "workbench.action.terminal.chat.runFirstCommand",
"when": "chatIsEnabled && terminalChatResponseContainsMultipleCodeBlocks && terminalHasBeenCreated && !terminalChatActiveRequest || chatIsEnabled && terminalChatResponseContainsMultipleCodeBlocks && terminalProcessSupported && !terminalChatActiveRequest" },
{ "key": "escape", "command": "workbench.action.terminal.clearSelection",
"when": "terminalFocusInAny && terminalHasBeenCreated && terminalTextSelected && !terminalFindVisible || terminalFocusInAny && terminalProcessSupported && terminalTextSelected && !terminalFindVisible" },
{ "key": "ctrl+[IntlBackslash]", "command": "workbench.action.terminal.configureSuggestSettings",
"when": "terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible || terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible" },
{ "key": "ctrl+shift+,", "command": "workbench.action.terminal.configureSuggestSettings",
"when": "terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible || terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible" },
{ "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": "shift+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": "ctrl+pageup", "command": "workbench.action.terminal.focusPrevious",
"when": "terminalFocus && terminalHasBeenCreated && !terminalEditorFocus || terminalFocus && terminalProcessSupported && !terminalEditorFocus" },
{ "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+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": "shift+insert", "command": "workbench.action.terminal.pasteSelection",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported" },
{ "key": "f2", "command": "workbench.action.terminal.renameActiveTab",
"when": "terminalHasBeenCreated && terminalTabsFocus && terminalTabsSingularSelection || terminalProcessSupported && terminalTabsFocus && terminalTabsSingularSelection" },
{ "key": "ctrl+shift+left", "command": "workbench.action.terminal.resizePaneLeft",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported" },
{ "key": "ctrl+shift+right", "command": "workbench.action.terminal.resizePaneRight",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported" },
{ "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+shift+down", "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": "shift+end", "command": "workbench.action.terminal.scrollToBottom",
"when": "terminalFocusInAny && terminalHasBeenCreated && !terminalAltBufferActive || terminalFocusInAny && terminalProcessSupported && !terminalAltBufferActive" },
{ "key": "shift+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": "shift+home", "command": "workbench.action.terminal.scrollToTop",
"when": "terminalFocusInAny && terminalHasBeenCreated && !terminalAltBufferActive || terminalFocusInAny && terminalProcessSupported && !terminalAltBufferActive" },
{ "key": "shift+home", "command": "workbench.action.terminal.scrollToTopAccessibleView",
"when": "accessibleViewIsShown && terminalHasBeenCreated && accessibleViewCurrentProviderId == 'terminal' || accessibleViewIsShown && terminalProcessSupported && accessibleViewCurrentProviderId == 'terminal'" },
{ "key": "ctrl+shift+up", "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+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": "alt+up", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus",
"args": {"text":"\u001b[1;5A"} },
{ "key": "alt+down", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus",
"args": {"text":"\u001b[1;5B"} },
{ "key": "alt+right", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus",
"args": {"text":"\u001b[1;5C"} },
{ "key": "alt+left", "command": "workbench.action.terminal.sendSequence",
"when": "terminalFocus",
"args": {"text":"\u001b[1;5D"} },
{ "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+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+.", "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": "ctrl+alt+space", "command": "workbench.action.terminal.suggestToggleDetailsFocus",
"when": "!textInputFocus" },
{ "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+-", "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.actions.workbench.panel.output.clearFilterText",
"when": "outputFilterFocus" },
{ "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+c", "command": "workbench.debug.viewlet.action.copyValue",
"when": "!expressionSelected && focusedView == 'workbench.debug.variablesView' || !expressionSelected && focusedView == 'workbench.debug.watchExpressionsView'" },
{ "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": "ctrl+alt+i", "command": "workbench.panel.chat",
"when": "workbench.panel.chat.view.copilot.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": "ctrl+y", "command": "chatEditor.action.acceptHunk",
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookCellListFocused && !chatEdits.isRequestInProgress" },
{ "key": "ctrl+n", "command": "chatEditor.action.undoHunk",
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookCellListFocused && !chatEdits.isRequestInProgress" },
{ "key": "tab", "command": "editor.action.inlineSuggest.jump",
"when": "inlineEditIsVisible && tabShouldJumpToInlineEdit && !editorHoverFocused && !editorTabMovesFocus && !suggestWidgetVisible" },
{ "key": "ctrl+i", "command": "inlineChat.startWithCurrentLine",
"when": "inlineChatHasProvider && inlineChatShowingHint && !editorReadonly && !inlineChatVisible" },
{ "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+/", "command": "terminalSuggestToggleExplainMode",
"when": "terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible || terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible" },
{ "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+enter", "command": "workbench.action.chat.acceptTool",
"when": "chatHasToolConfirmation && inChat" },
{ "key": "ctrl+l", "command": "workbench.action.chat.newChat",
"when": "chatIsEnabled && inChat" },
{ "key": "ctrl+n", "command": "workbench.action.chat.newChat",
"when": "chatIsEnabled && inChat" },
{ "key": "ctrl+pagedown", "command": "workbench.action.debug.nextConsole",
"when": "inDebugRepl" },
{ "key": "ctrl+pageup", "command": "workbench.action.debug.prevConsole",
"when": "inDebugRepl" },
{ "key": "ctrl+n", "command": "workbench.action.openChat",
"when": "chatIsEnabled && inChat && inChatEditor" },
{ "key": "enter", "command": "workbench.action.terminal.acceptSelectedSuggestion",
"when": "simpleSuggestWidgetHasFocusedSuggestion && simpleSuggestWidgetHasNavigated && terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible || simpleSuggestWidgetHasFocusedSuggestion && simpleSuggestWidgetHasNavigated && terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible || simpleSuggestWidgetHasFocusedSuggestion && terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible && !simpleSuggestWidgetFirstSuggestionFocused || simpleSuggestWidgetHasFocusedSuggestion && terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible && config.terminal.integrated.suggest.selectionMode != 'partial' || simpleSuggestWidgetHasFocusedSuggestion && terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible && !simpleSuggestWidgetFirstSuggestionFocused || simpleSuggestWidgetHasFocusedSuggestion && terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible && config.terminal.integrated.suggest.selectionMode != 'partial'" },
{ "key": "enter", "command": "workbench.action.terminal.acceptSelectedSuggestionEnter",
"when": "terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible && config.terminal.integrated.suggest.runOnEnter != 'never' || terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible && config.terminal.integrated.suggest.runOnEnter != 'never'" },
{ "key": "alt+down", "command": "workbench.action.terminal.focusNextPane",
"when": "terminalFocus && terminalHasBeenCreated && terminalSplitPaneActive || terminalFocus && terminalProcessSupported && terminalSplitPaneActive" },
{ "key": "alt+right", "command": "workbench.action.terminal.focusNextPane",
"when": "terminalFocus && terminalHasBeenCreated && terminalSplitPaneActive || terminalFocus && terminalProcessSupported && terminalSplitPaneActive" },
{ "key": "alt+up", "command": "workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus && terminalHasBeenCreated && terminalSplitPaneActive || terminalFocus && terminalProcessSupported && terminalSplitPaneActive" },
{ "key": "alt+left", "command": "workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus && terminalHasBeenCreated && terminalSplitPaneActive || terminalFocus && terminalProcessSupported && terminalSplitPaneActive" },
{ "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": "ctrl+space", "command": "workbench.action.terminal.requestCompletions",
"when": "config.terminal.integrated.suggest.enabled && terminalFocus && terminalProcessSupported && !terminalSuggestWidgetVisible" },
{ "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": "simpleSuggestWidgetHasNavigated && terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible || simpleSuggestWidgetHasNavigated && terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible || terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible && !config.terminal.integrated.suggest.upArrowNavigatesHistory || terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible && !config.terminal.integrated.suggest.upArrowNavigatesHistory" },
{ "key": "ctrl+shift+l", "command": "workbench.action.terminal.suggestLearnMore",
"when": "terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible || terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible" },
{ "key": "tab", "command": "editor.action.inlineSuggest.commit",
"when": "inInlineEditsPreviewEditor" },
{ "key": "f6", "command": "workbench.action.debug.pause",
"when": "debugState == 'running'" },
{ "key": "tab", "command": "workbench.action.terminal.acceptSelectedSuggestion",
"when": "simpleSuggestWidgetHasFocusedSuggestion && terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible || simpleSuggestWidgetHasFocusedSuggestion && terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible" },
{ "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": "up", "command": "workbench.action.terminal.hideSuggestWidgetAndNavigateHistory",
"when": "config.terminal.integrated.suggest.upArrowNavigatesHistory && terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible && !simpleSuggestWidgetHasNavigated || config.terminal.integrated.suggest.upArrowNavigatesHistory && terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible && !simpleSuggestWidgetHasNavigated" },
{ "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": "escape", "command": "notebook.cell.quitEdit",
"when": "notebookEditorFocused && notebookOutputFocused" },
{ "key": "alt+home alt+home", "command": "repl.input.focus",
"when": "mostRecentReplEditor" },
{ "key": "ctrl+v", "command": "filesExplorer.paste",
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceReadonly && !inputFocus" },
{ "key": "ctrl+shift+y", "command": "chatEditor.action.accept",
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookEditorFocused && !chatEdits.isRequestInProgress" },
{ "key": "ctrl+alt+y", "command": "chatEditor.action.acceptAllEdits",
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookEditorFocused && !chatEdits.isRequestInProgress" },
{ "key": "ctrl+shift+n", "command": "chatEditor.action.reject",
"when": "chatEdits.hasEditorModifications && editorFocus && !chatEdits.isRequestInProgress || chatEdits.hasEditorModifications && notebookEditorFocused && !chatEdits.isRequestInProgress" },
{ "key": "shift+delete", "command": "deleteFile",
"when": "filesExplorerFocus && foldersViewVisible && !inputFocus" },
{ "key": "delete", "command": "deleteFile",
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceMoveableToTrash && !inputFocus" },
{ "key": "ctrl+shift+[IntlBackslash]", "command": "editor.action.accessibleViewGoToSymbol",
"when": "accessibilityHelpIsShown && accessibleViewGoToSymbolSupported || accessibleViewGoToSymbolSupported && accessibleViewIsShown" },
{ "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+f4", "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" },
{ "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" },
{ "key": "ctrl+shift+y", "command": "inlineChat2.keep",
"when": "inlineChatHasEditsAgent && inlineChatVisible && !chatEdits.isRequestInProgress" },
{ "key": "ctrl+shift+n", "command": "inlineChat2.undo",
"when": "inlineChatHasEditsAgent && inlineChatVisible && !chatEdits.isRequestInProgress" },
{ "key": "end", "command": "lastCompressedFolder",
"when": "explorerViewletCompressedFocus && filesExplorerFocus && foldersViewVisible && !explorerViewletCompressedLastFocus && !inputFocus" },
{ "key": "ctrl+shift+t", "command": "mergeEditor.toggleBetweenInputs",
"when": "isMergeEditor" },
{ "key": "delete", "command": "moveFileToTrash",
"when": "explorerResourceMoveableToTrash && filesExplorerFocus && foldersViewVisible && !inputFocus" },
{ "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": "ctrl+alt+-", "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+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+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 == '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": "editorTextFocus && !operationInProgress && resourceScheme == 'file'" },
{ "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": "editorTextFocus && isInDiffEditor && isInDiffRightEditor && !operationInProgress && resourceScheme == 'git'" },
{ "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": "editorTextFocus && !operationInProgress && resourceScheme == 'file'" },
{ "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": "escape", "command": "extension.vim_escape",
"when": "editorTextFocus && vim.active && !inDebugRepl" },
{ "key": "ctrl+shift+a", "command": "kilo-code.focusChatInput",
"when": "true" },
{ "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": "chatIsEnabled && terminalChatAgentRegistered && terminalFocusInAny && terminalHasBeenCreated || chatIsEnabled && terminalChatAgentRegistered && terminalFocusInAny && terminalProcessSupported" },
{ "key": "ctrl+enter", "command": "chat.inlineResourceAnchor.openToSide",
"when": "chatAttachmentResource" },
{ "key": "tab", "command": "editor.action.inlineSuggest.commit",
"when": "editorTextFocus && inlineSuggestionVisible && !editorTabMovesFocus && !inSnippetMode && !suggestWidgetVisible && editorLangId != 'markdown'" },
{ "key": "escape", "command": "notebook.cell.quitEdit",
"when": "inputFocus && notebookEditorFocused && vim.active && !editorHasSelection && !editorHoverVisible && vim.mode == 'Normal'" },
{ "key": "ctrl+i", "command": "workbench.action.terminal.suggestToggleDetails",
"when": "simpleSuggestWidgetHasFocusedSuggestion && terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible || simpleSuggestWidgetHasFocusedSuggestion && terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible" },
{ "key": "ctrl+space", "command": "workbench.action.terminal.suggestToggleDetails",
"when": "simpleSuggestWidgetHasFocusedSuggestion && terminalFocus && terminalHasBeenCreated && terminalIsOpen && terminalSuggestWidgetVisible || simpleSuggestWidgetHasFocusedSuggestion && terminalFocus && terminalIsOpen && terminalProcessSupported && terminalSuggestWidgetVisible" },
{ "key": "home", "command": "extension.vim_home",
"when": "editorTextFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "shift+tab", "command": "kilo-code.ghost.applyAllSuggestions",
"when": "editorTextFocus && kilocode.ghost.hasSuggestions && !editorTabMovesFocus && !inSnippetMode" },
{ "key": "ctrl+home", "command": "extension.vim_ctrl+home",
"when": "editorTextFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "tab", "command": "kilo-code.ghost.applyCurrentSuggestions",
"when": "editorTextFocus && kilocode.ghost.hasSuggestions && !editorTabMovesFocus && !inSnippetMode" },
{ "key": "end", "command": "extension.vim_end",
"when": "editorTextFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "escape", "command": "kilo-code.ghost.cancelRequest",
"when": "editorTextFocus && kilocode.ghost.isProcessing && !editorTabMovesFocus && !inSnippetMode" },
{ "key": "ctrl+end", "command": "extension.vim_ctrl+end",
"when": "editorTextFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "escape", "command": "kilo-code.ghost.cancelSuggestions",
"when": "editorTextFocus && kilocode.ghost.hasSuggestions && !editorTabMovesFocus && !inSnippetMode" },
{ "key": "insert", "command": "extension.vim_insert",
"when": "editorTextFocus && vim.active && !inDebugRepl" },
{ "key": "down", "command": "kilo-code.ghost.goToNextSuggestion",
"when": "editorTextFocus && kilocode.ghost.hasSuggestions && !editorTabMovesFocus && !inSnippetMode" },
{ "key": "backspace", "command": "extension.vim_backspace",
"when": "editorTextFocus && vim.active && !inDebugRepl" },
{ "key": "up", "command": "kilo-code.ghost.goToPreviousSuggestion",
"when": "editorTextFocus && kilocode.ghost.hasSuggestions && !editorTabMovesFocus && !inSnippetMode" },
{ "key": "delete", "command": "extension.vim_delete",
"when": "editorTextFocus && vim.active && !inDebugRepl" },
{ "key": "ctrl+i", "command": "kilo-code.ghost.promptCodeSuggestion",
"when": "editorTextFocus && kilocode.ghost.enableQuickInlineTaskKeybinding && !editorTabMovesFocus && !github.copilot.completions.enabled && !inSnippetMode" },
{ "key": "tab", "command": "extension.vim_tab",
"when": "editorTextFocus && vim.active && !inDebugRepl && !inlineEditIsVisible && vim.mode != 'Insert'" },
{ "key": "ctrl+l", "command": "kilo-code.ghost.generateSuggestions",
"when": "editorTextFocus && kilocode.ghost.enableSmartInlineTaskKeybinding && !editorTabMovesFocus && !github.copilot.completions.enabled && !inSnippetMode" },
{ "key": "shift+tab", "command": "extension.vim_shift+tab",
"when": "editorTextFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "ctrl+l", "command": "kilo-code.ghost.showIncompatibilityExtensionPopup",
"when": "editorTextFocus && github.copilot.completions.enabled && kilocode.ghost.enableSmartInlineTaskKeybinding && !editorTabMovesFocus && !inSnippetMode" },
{ "key": "left", "command": "extension.vim_left",
"when": "editorTextFocus && vim.active && !inDebugRepl" },
{ "key": "ctrl+i", "command": "kilo-code.ghost.showIncompatibilityExtensionPopup",
"when": "editorTextFocus && github.copilot.completions.enabled && kilocode.ghost.enableQuickInlineTaskKeybinding && !editorTabMovesFocus && !inSnippetMode" },
{ "key": "right", "command": "extension.vim_right",
"when": "editorTextFocus && vim.active && !inDebugRepl" },
{ "key": "ctrl+shift+g", "command": "kilo-code.generateTerminalCommand" },
{ "key": "up", "command": "extension.vim_up",
"when": "editorTextFocus && vim.active && !inDebugRepl && !parameterHintsVisible && !suggestWidgetVisible" },
{ "key": "down", "command": "extension.vim_down",
"when": "editorTextFocus && vim.active && !inDebugRepl && !parameterHintsVisible && !suggestWidgetVisible" },
{ "key": "g g", "command": "list.focusFirst",
"when": "listFocus && !inputFocus" },
{ "key": "h", "command": "list.collapse",
"when": "listFocus && !inputFocus" },
{ "key": "j", "command": "list.focusDown",
"when": "listFocus && !inputFocus" },
{ "key": "k", "command": "list.focusUp",
"when": "listFocus && !inputFocus" },
{ "key": "l", "command": "list.select",
"when": "listFocus && !inputFocus" },
{ "key": "o", "command": "list.toggleExpand",
"when": "listFocus && !inputFocus" },
{ "key": "/", "command": "list.toggleKeyboardNavigation",
"when": "listFocus && listSupportsKeyboardNavigation && !inputFocus" },
{ "key": "ctrl+a", "command": "extension.vim_ctrl+a",
"when": "editorTextFocus && vim.active && vim.use<C-a> && !inDebugRepl" },
{ "key": "ctrl+b", "command": "extension.vim_ctrl+b",
"when": "editorTextFocus && vim.active && vim.use<C-b> && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "ctrl+c", "command": "extension.vim_ctrl+c",
"when": "editorTextFocus && vim.active && vim.overrideCtrlC && vim.use<C-c> && !inDebugRepl" },
{ "key": "ctrl+d", "command": "extension.vim_ctrl+d",
"when": "editorTextFocus && vim.active && vim.use<C-d> && !inDebugRepl" },
{ "key": "ctrl+d", "command": "list.focusPageDown",
"when": "listFocus && !inputFocus" },
{ "key": "ctrl+e", "command": "extension.vim_ctrl+e",
"when": "editorTextFocus && vim.active && vim.use<C-e> && !inDebugRepl" },
{ "key": "ctrl+f", "command": "extension.vim_ctrl+f",
"when": "editorTextFocus && vim.active && vim.use<C-f> && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "ctrl+g", "command": "extension.vim_ctrl+g",
"when": "editorTextFocus && vim.active && vim.use<C-g> && !inDebugRepl" },
{ "key": "ctrl+h", "command": "extension.vim_ctrl+h",
"when": "editorTextFocus && vim.active && vim.use<C-h> && !inDebugRepl" },
{ "key": "ctrl+i", "command": "extension.vim_ctrl+i",
"when": "editorTextFocus && vim.active && vim.use<C-i> && !inDebugRepl" },
{ "key": "ctrl+j", "command": "extension.vim_ctrl+j",
"when": "editorTextFocus && vim.active && vim.use<C-j> && !inDebugRepl" },
{ "key": "ctrl+k", "command": "extension.vim_ctrl+k",
"when": "editorTextFocus && vim.active && vim.use<C-k> && !inDebugRepl" },
{ "key": "ctrl+l", "command": "extension.vim_navigateCtrlL",
"when": "editorTextFocus && vim.active && vim.use<C-l> && !inDebugRepl" },
{ "key": "ctrl+m", "command": "extension.vim_ctrl+m",
"when": "editorTextFocus && vim.active && vim.use<C-m> && !inDebugRepl || vim.active && vim.use<C-m> && !inDebugRepl && vim.mode == 'CommandlineInProgress' || vim.active && vim.use<C-m> && !inDebugRepl && vim.mode == 'SearchInProgressMode'" },
{ "key": "ctrl+n", "command": "extension.vim_ctrl+n",
"when": "editorTextFocus && vim.active && vim.use<C-n> && !inDebugRepl || vim.active && vim.use<C-n> && !inDebugRepl && vim.mode == 'CommandlineInProgress' || vim.active && vim.use<C-n> && !inDebugRepl && vim.mode == 'SearchInProgressMode'" },
{ "key": "ctrl+o", "command": "extension.vim_ctrl+o",
"when": "editorTextFocus && vim.active && vim.use<C-o> && !inDebugRepl" },
{ "key": "ctrl+p", "command": "extension.vim_ctrl+p",
"when": "editorTextFocus && vim.active && vim.use<C-p> && !inDebugRepl || vim.active && vim.use<C-p> && !inDebugRepl && vim.mode == 'CommandlineInProgress' || vim.active && vim.use<C-p> && !inDebugRepl && vim.mode == 'SearchInProgressMode'" },
{ "key": "ctrl+q", "command": "extension.vim_winCtrlQ",
"when": "editorTextFocus && vim.active && vim.use<C-q> && !inDebugRepl" },
{ "key": "ctrl+r", "command": "extension.vim_ctrl+r",
"when": "editorTextFocus && vim.active && vim.use<C-r> && !inDebugRepl" },
{ "key": "ctrl+s", "command": "extension.vim_ctrl+s",
"when": "editorTextFocus && vim.active && vim.use<C-s> && !inDebugRepl" },
{ "key": "ctrl+t", "command": "extension.vim_ctrl+t",
"when": "editorTextFocus && vim.active && vim.use<C-t> && !inDebugRepl" },
{ "key": "ctrl+u", "command": "extension.vim_ctrl+u",
"when": "editorTextFocus && vim.active && vim.use<C-u> && !inDebugRepl" },
{ "key": "ctrl+u", "command": "list.focusPageUp",
"when": "listFocus && !inputFocus" },
{ "key": "ctrl+v", "command": "extension.vim_ctrl+v",
"when": "editorTextFocus && vim.active && vim.use<C-v> && !inDebugRepl" },
{ "key": "ctrl+w", "command": "extension.vim_ctrl+w",
"when": "editorTextFocus && vim.active && vim.use<C-w> && !inDebugRepl" },
{ "key": "ctrl+x", "command": "extension.vim_ctrl+x",
"when": "editorTextFocus && vim.active && vim.use<C-x> && !inDebugRepl" },
{ "key": "ctrl+y", "command": "extension.vim_ctrl+y",
"when": "editorTextFocus && vim.active && vim.use<C-y> && !inDebugRepl" },
{ "key": "ctrl+z", "command": "extension.vim_ctrl+z",
"when": "editorTextFocus && vim.active && vim.use<C-z> && !inDebugRepl" },
{ "key": "ctrl+6", "command": "extension.vim_ctrl+6",
"when": "editorTextFocus && vim.active && vim.use<C-6> && !inDebugRepl" },
{ "key": "ctrl+[", "command": "extension.vim_ctrl+[",
"when": "editorTextFocus && vim.active && vim.use<C-[> && !inDebugRepl" },
{ "key": "ctrl+]", "command": "extension.vim_ctrl+]",
"when": "editorTextFocus && vim.active && vim.use<C-]> && !inDebugRepl" },
{ "key": "ctrl+shift+2", "command": "extension.vim_ctrl+shift+2",
"when": "editorTextFocus && vim.active && vim.use<C-shift+2>" },
{ "key": "ctrl+up", "command": "extension.vim_ctrl+up",
"when": "editorTextFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "ctrl+down", "command": "extension.vim_ctrl+down",
"when": "editorTextFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "ctrl+left", "command": "extension.vim_ctrl+left",
"when": "editorTextFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "ctrl+right", "command": "extension.vim_ctrl+right",
"when": "editorTextFocus && vim.active && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "ctrl+pagedown", "command": "extension.vim_ctrl+pagedown",
"when": "editorTextFocus && vim.active && vim.use<C-pagedown> && !inDebugRepl" },
{ "key": "ctrl+pageup", "command": "extension.vim_ctrl+pageup",
"when": "editorTextFocus && vim.active && vim.use<C-pageup> && !inDebugRepl" },
{ "key": "ctrl+space", "command": "extension.vim_ctrl+space",
"when": "editorTextFocus && vim.active && vim.use<C-space> && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "shift+g", "command": "list.focusLast",
"when": "listFocus && !inputFocus" },
{ "key": "ctrl+backspace", "command": "extension.vim_ctrl+backspace",
"when": "editorTextFocus && vim.active && vim.use<C-BS> && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "shift+backspace", "command": "extension.vim_shift+backspace",
"when": "editorTextFocus && vim.active && vim.use<S-BS> && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "meta+left", "command": "extension.vim_cmd+left",
"when": "editorTextFocus && vim.active && vim.use<D-left> && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "meta+right", "command": "extension.vim_cmd+right",
"when": "editorTextFocus && vim.active && vim.use<D-right> && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "meta+a", "command": "extension.vim_cmd+a",
"when": "editorTextFocus && vim.active && vim.use<D-a> && !inDebugRepl && vim.mode != 'Insert'" },
{ "key": "meta+c", "command": "extension.vim_cmd+c",
"when": "editorTextFocus && vim.active && vim.overrideCopy && vim.use<D-c> && !inDebugRepl" },
{ "key": "meta+d", "command": "extension.vim_cmd+d",
"when": "editorTextFocus && vim.active && vim.use<D-d> && !inDebugRepl" },
{ "key": "meta+v", "command": "extension.vim_cmd+v",
"when": "editorTextFocus && vim.active && vim.use<D-v> && !inDebugRepl && vim.mode == 'CommandlineInProgress' || editorTextFocus && vim.active && vim.use<D-v> && !inDebugRepl && vim.mode == 'SearchInProgressMode'" },
{ "key": "shift+alt+down", "command": "extension.vim_cmd+alt+down",
"when": "editorTextFocus && vim.active && !inDebugRepl" },
{ "key": "shift+alt+up", "command": "extension.vim_cmd+alt+up",
"when": "editorTextFocus && vim.active && !inDebugRepl" },
{ "key": "j", "command": "notebook.focusNextEditor",
"when": "editorTextFocus && inputFocus && notebookEditorFocused && vim.mode == 'Normal' && notebookEditorCursorAtBoundary != 'none' && notebookEditorCursorAtBoundary != 'top'" },
{ "key": "k", "command": "notebook.focusPreviousEditor",
"when": "editorTextFocus && inputFocus && notebookEditorFocused && vim.mode == 'Normal' && notebookEditorCursorAtBoundary != 'bottom' && notebookEditorCursorAtBoundary != 'none'" },
{ "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:
// - acceptSelectedSuggestionOnEnter
// - acceptSnippet
// - accessibility.announcement.help
// - actions.findWithSelection
// - addRootFolder
// - breadcrumbs.toggle
// - breadcrumbs.toggleFromEditorTitle
// - callStack.collapse
// - callStackWidget.goToFile
// - changeEditorIndentation1
// - chat.configureToolSets
// - chat.inlineResourceAnchor.addFileToChat
// - chat.inlineSymbolAnchor.goToDefinition
// - chat.inlineSymbolAnchor.goToImplementations
// - chat.inlineSymbolAnchor.goToReferences
// - chat.inlineSymbolAnchor.goToTypeDefinitions
// - chat.openFileSnapshot
// - chat.openFileUpdatedBySnapshot
// - chat.toolOutput.save
// - chatEditing.acceptFile
// - chatEditing.discardFile
// - chatEditing.multidiff.acceptAllFiles
// - chatEditing.multidiff.discardAllFiles
// - chatEditing.openFileInDiff
// - chatEditing.viewChanges
// - chatEditing.viewPreviousEdits
// - chatEditor.action.reviewChanges
// - cleanSearchEditorState
// - closeReferenceSearchEditor
// - codelens.showLensesInCurrentLine
// - columnSelect
// - comments.collapse
// - comments.expand
// - comments.reply
// - compareFiles
// - compareSelected
// - compositionEnd
// - compositionStart
// - compositionType
// - createCursor
// - cursorLineEnd
// - cursorLineEndSelect
// - cursorLineStart
// - cursorLineStartSelect
// - cursorRedo
// - cursorWordEndLeft
// - cursorWordEndLeftSelect
// - cursorWordPartLeft
// - cursorWordPartLeftSelect
// - cursorWordPartRight
// - cursorWordPartRightSelect
// - cursorWordPartStartLeft
// - cursorWordPartStartLeftSelect
// - cursorWordRight
// - cursorWordRightSelect
// - cursorWordStartLeft
// - cursorWordStartLeftSelect
// - cursorWordStartRight
// - cursorWordStartRightSelect
// - cut
// - 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
// - 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
// - 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.hideHover
// - editor.action.increaseHoverVerbosityLevel
// - editor.action.indentUsingSpaces
// - editor.action.indentUsingTabs
// - editor.action.indentationToSpaces
// - editor.action.indentationToTabs
// - editor.action.inlineSuggest.acceptNextLine
// - editor.action.inlineSuggest.cancelSnooze
// - editor.action.inlineSuggest.dev.extractRepro
// - editor.action.inlineSuggest.snooze
// - editor.action.inlineSuggest.toggleAlwaysShowToolbar
// - editor.action.inlineSuggest.toggleShowCollapsed
// - editor.action.inlineSuggest.trigger
// - editor.action.inlineSuggest.triggerInlineEdit
// - editor.action.inlineSuggest.triggerInlineEditExplicit
// - editor.action.insertFinalNewLine
// - editor.action.insertSnippet
// - 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.reverseLines
// - editor.action.selectToBracket
// - editor.action.selectionClipboardPaste
// - 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.copyAddress
// - 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
// - explorer.download
// - explorer.newFile
// - explorer.newFolder
// - explorer.openWith
// - explorer.upload
// - extension.bisect.next
// - extension.bisect.start
// - extension.bisect.stop
// - 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.node-debug.toggleAutoAttach
// - extension.open
// - extension.pwa-node-debug.attachNodeProcess
// - extension.vim_ctrl+^
// - 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
// - files.openTimeline
// - files.participants.resetChoice
// - filesExplorer.findInWorkspace
// - focusAndAcceptSuggestion
// - getContextKeyInfo
// - git-base.api.getRemoteSources
// - git._syncAll
// - git.acceptMerge
// - git.addRemote
// - git.api.getRemoteSources
// - git.api.getRepositories
// - git.api.getRepositoryState
// - git.blame.toggleEditorDecoration
// - git.blame.toggleStatusBarItem
// - git.branch
// - git.branchFrom
// - git.checkout
// - git.checkoutDetached
// - git.cherryPick
// - git.cherryPickAbort
// - git.clean
// - git.cleanAll
// - git.cleanAllTracked
// - git.cleanAllUntracked
// - git.clone
// - git.cloneRecursive
// - git.close
// - git.closeAllDiffEditors
// - git.closeAllUnmodifiedEditors
// - git.closeOtherRepositories
// - git.commit
// - 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.copyContentToClipboard
// - git.createTag
// - git.createWorktree
// - git.deleteBranch
// - git.deleteRemoteBranch
// - git.deleteRemoteTag
// - git.deleteTag
// - git.deleteWorktree
// - git.deleteWorktreeFromPalette
// - git.diff.stageHunk
// - git.diff.stageSelection
// - git.fetch
// - git.fetchAll
// - git.fetchPrune
// - git.fetchRef
// - git.graph.checkout
// - git.graph.checkoutDetached
// - git.graph.cherryPick
// - git.graph.deleteBranch
// - git.graph.deleteTag
// - 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.openWorktree
// - git.openWorktreeInNewWindow
// - 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.unstageChange
// - git.unstageFile
// - git.viewChanges
// - git.viewCommit
// - git.viewStagedChanges
// - git.viewUntrackedChanges
// - github.copyVscodeDevLink
// - github.copyVscodeDevLinkFile
// - github.copyVscodeDevLinkWithoutRange
// - github.graph.openOnGitHub
// - github.openOnGitHub
// - github.openOnVscodeDev
// - github.publish
// - github.timeline.openOnGitHub
// - goToNextReferenceFromEmbeddedEditor
// - goToPreviousReferenceFromEmbeddedEditor
// - hideCustomTitleBar
// - hideCustomTitleBarInFullScreen
// - imagePreview.copyImage
// - imagePreview.reopenAsPreview
// - imagePreview.reopenAsText
// - imagePreview.zoomIn
// - imagePreview.zoomOut
// - inlayHints.startReadingLineWithHint
// - inlineChat.configure
// - inlineChat.showHint
// - inlineChat.toggleDiff
// - inlineChat2.cancelRequest
// - interactive.acceptChanges
// - interactive.input.clear
// - interactive.input.focus
// - interactiveEditor.start
// - ipynb.cleanInvalidImageAttachment
// - ipynb.newUntitledIpynb
// - ipynb.openIpynbInNotebookEditor
// - javascript.goToProjectConfig
// - javascript.reloadProjects
// - javascript.removeUnusedImports
// - javascript.sortImports
// - js.projectStatus.command
// - jsBrowserBreakpoints.focus
// - jsBrowserBreakpoints.resetViewLocation
// - jsDebugNetworkTree.focus
// - jsDebugNetworkTree.resetViewLocation
// - jsExcludedCallers.focus
// - jsExcludedCallers.resetViewLocation
// - json.clearCache
// - json.sort
// - json.validate
// - 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
// - kilo-code.SidebarProvider.focus
// - kilo-code.SidebarProvider.removeView
// - kilo-code.SidebarProvider.resetViewLocation
// - kilo-code.SidebarProvider.toggleVisibility
// - kilo-code.acceptInput
// - kilo-code.accountButtonClicked
// - kilo-code.activationCompleted
// - kilo-code.addToContext
// - kilo-code.explainCode
// - kilo-code.exportSettings
// - kilo-code.fixCode
// - kilo-code.focusPanel
// - kilo-code.generateCommitMessage
// - kilo-code.ghost.codeActionQuickFix
// - kilo-code.ghost.disable
// - kilo-code.ghost.enable
// - kilo-code.ghost.reload
// - kilo-code.handleHumanRelayResponse
// - kilo-code.helpButtonClicked
// - kilo-code.historyButtonClicked
// - kilo-code.importSettings
// - kilo-code.improveCode
// - kilo-code.marketplaceButtonClicked
// - kilo-code.mcpButtonClicked
// - kilo-code.newTask
// - kilo-code.openInNewTab
// - kilo-code.plusButtonClicked
// - kilo-code.popoutButtonClicked
// - kilo-code.profileButtonClicked
// - kilo-code.promptsButtonClicked
// - kilo-code.registerHumanRelayCallback
// - kilo-code.setCustomStoragePath
// - kilo-code.settingsButtonClicked
// - kilo-code.showHumanRelayDialog
// - kilo-code.terminalAddToContext
// - kilo-code.terminalExplainCommand
// - kilo-code.terminalFixCommand
// - kilo-code.unregisterHumanRelayCallback
// - 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.triggerTypeNavigation
// - loadedScripts.collapse
// - markdown.api.reloadPlugins
// - markdown.api.render
// - markdown.editor.insertImageFromWorkspace
// - markdown.editor.insertLinkFromWorkspace
// - markdown.findAllFileReferences
// - markdown.preview.refresh
// - markdown.preview.toggleLock
// - markdown.showLockedPreviewToSide
// - markdown.showPreviewSecuritySelector
// - markdown.showSource
// - 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.acceptAllCombination
// - mergeEditor.compareInput1WithBase
// - mergeEditor.compareInput2WithBase
// - mergeEditor.resetCloseWithConflictsChoice
// - mergeEditor.resetResultToBaseAndAutoMerge
// - 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.chat.close
// - notebook.cell.chat.explainError
// - notebook.cell.chat.fixError
// - notebook.cell.chat.restore
// - notebook.cell.chat.startAtTop
// - notebook.cell.chat.stop
// - notebook.cell.collapseAllCellInputs
// - notebook.cell.collapseAllCellOutputs
// - notebook.cell.copy
// - notebook.cell.cut
// - notebook.cell.executeAndFocusContainer
// - notebook.cell.executeCellAndBelow
// - notebook.cell.executeCellsAbove
// - notebook.cell.expandAllCellInputs
// - notebook.cell.expandAllCellOutputs
// - notebook.cell.insertCodeCellAboveAndFocusContainer
// - notebook.cell.insertCodeCellAtTop
// - notebook.cell.insertCodeCellBelowAndFocusContainer
// - notebook.cell.insertMarkdownCellAbove
// - notebook.cell.insertMarkdownCellAtTop
// - notebook.cell.insertMarkdownCellBelow
// - notebook.cell.joinSelected
// - notebook.cell.paste
// - notebook.cell.toggleLineNumbers
// - notebook.cell.toggleOutputs
// - notebook.cellOuput.showEmptyOutputs
// - notebook.cellOutput.addToChat
// - notebook.cellOutput.copy
// - notebook.cellOutput.openInOutputPreview
// - notebook.cellOutput.openInTextEditor
// - notebook.chat.selectAndInsertKernelVariable
// - notebook.clearAllCellsOutputs
// - notebook.clearAllInlineValues
// - notebook.clearNotebookEdtitorTypeCache
// - notebook.clearNotebookKernelsMRUCache
// - notebook.developer.addViewZones
// - notebook.diff.cell.revertInput
// - notebook.diff.cell.revertMetadata
// - notebook.diff.cell.revertOutputs
// - notebook.diff.cell.switchOutputRenderingStyleToText
// - notebook.diff.cell.toggleCollapseUnchangedRegions
// - notebook.diff.inline.toggle
// - 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.openVariablesView
// - 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.toggleLineNumbers
// - notebook.toggleLineNumbersFromEditorTitle
// - notifications.clearAll
// - notifications.focusToasts
// - notifications.toggleDoNotDisturbMode
// - notifications.toggleDoNotDisturbModeBySource
// - notifications.toggleList
// - npm.debugScript
// - npm.debugScriptFromHover
// - npm.focus
// - npm.openScript
// - npm.packageManager
// - npm.refresh
// - npm.removeView
// - npm.resetViewLocation
// - npm.runInstall
// - npm.runScript
// - npm.runScriptFromFolder
// - npm.runScriptFromHover
// - npm.runSelectedScript
// - npm.scriptRunner
// - npm.toggleVisibility
// - openEditors.closeAll
// - openEditors.newUntitledFile
// - openInIntegratedTerminal
// - openInTerminal
// - openReference
// - outline.collapse
// - outline.expand
// - outline.filterOnType
// - outline.focus
// - outline.followCursor
// - outline.removeView
// - outline.resetViewLocation
// - outline.sortByKind
// - outline.sortByName
// - outline.sortByPosition
// - outline.toggleVisibility
// - paste
// - perf.event.profiling
// - perf.insta.printAsyncCycles
// - perf.insta.printTraces
// - perfview.show
// - problems.action.copyMessage
// - problems.action.copyRelatedInformationMessage
// - problems.action.showMultilineMessage
// - problems.action.showSinglelineMessage
// - 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.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
// - removeRootFolder
// - reopenActiveEditorWith
// - repl.action.copyAll
// - replacePreviousChar
// - resetGettingStartedProgress
// - revealInExplorer
// - saveAll
// - scm.input.triggerSetup
// - scm.openInIntegratedTerminal
// - scm.openInTerminal
// - scm.setActiveProvider
// - 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.getSearchResults
// - 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
// - setRootFolder
// - setSelection
// - settings.filterByOnline
// - settings.filterByTelemetry
// - settings.filterUntrusted
// - settings.switchToJSON
// - showCustomTitleBar
// - showEditorScreenReaderNotification
// - signals.sounds.help
// - simpleBrowser.show
// - 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.debugFailedFromLastRun
// - testing.debugSelected
// - testing.getSelectedProfiles
// - testing.goToRelatedCode
// - testing.goToRelatedTest
// - testing.hideTest
// - testing.openCoverage
// - testing.openMessageInEditor
// - testing.peekRelatedCode
// - testing.peekRelatedTest
// - testing.reRunFailedFromLastRun
// - testing.run
// - testing.run.uri
// - testing.runSelected
// - testing.runUsing
// - testing.searchForTestExtension
// - testing.selectDefaultTestProfiles
// - testing.sortByDuration
// - testing.sortByLocation
// - testing.sortByStatus
// - testing.startContinuousRun
// - testing.startContinuousRunFromExtension
// - testing.stopContinuousRun
// - testing.stopContinuousRunFromExtension
// - testing.toggleContinuousRunForTest
// - testing.unhideAllTests
// - testing.unhideTest
// - testing.viewAsList
// - testing.viewAsTree
// - timeline.focus
// - timeline.refresh
// - timeline.removeView
// - timeline.resetViewLocation
// - timeline.toggleExcludeSource:timeline.localHistory
// - timeline.toggleFollowActiveEditor
// - timeline.toggleVisibility
// - toggle.chat.commandCenter.enabled
// - toggle.diff.ignoreTrimWhitespace
// - toggle.diff.renderSideBySide
// - toggle.toggleCustomTitleBar
// - toggle.window.commandCenter
// - toggle.window.customTitleBarVisibility
// - toggle.window.customTitleBarVisibility.windowed
// - toggle.workbench.editor.editorActionsLocation
// - toggle.workbench.experimental.share.enabled
// - toggle.workbench.layoutControl.enabled
// - toggle.workbench.navigationControl.enabled
// - toggleVim
// - tree.toggleStickyScroll
// - tunnel-forwarding.restart
// - tunnel-forwarding.showLog
// - type
// - typescript.experimental.disableTsgo
// - typescript.experimental.enableTsgo
// - typescript.findAllFileReferences
// - typescript.goToProjectConfig
// - typescript.goToSourceDefinition
// - typescript.openTsServerLog
// - typescript.reloadProjects
// - typescript.removeUnusedImports
// - typescript.restartTsServer
// - typescript.selectTypeScriptVersion
// - typescript.sortImports
// - typescript.tsserverRequest
// - 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
// - variables.collapse
// - vim.editVimrc
// - vim.remap
// - vim.showQuickpickCmdLine
// - vscodeMarkdownLanguageservice.open
// - vscodeMarkdownLanguageservice.rename
// - walkthroughs.selectStep
// - watch.collapse
// - welcome.markStepComplete
// - welcome.markStepIncomplete
// - welcome.newWorkspaceChat
// - welcome.showAllWalkthroughs
// - welcome.showNewWelcome
// - 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.alignQuickInputCenter
// - workbench.action.alignQuickInputTop
// - workbench.action.alternativeAcceptSelectedQuickOpenItem
// - workbench.action.askVScode
// - workbench.action.blur
// - workbench.action.browseColorThemesInMarketplace
// - workbench.action.chat.addDynamicVariable
// - workbench.action.chat.addParticipant
// - workbench.action.chat.addToChatAction
// - workbench.action.chat.applyCompareEdits
// - workbench.action.chat.assignSelectedAgent
// - workbench.action.chat.attachFile
// - workbench.action.chat.attachFolder
// - workbench.action.chat.attachSelection
// - workbench.action.chat.changeModel
// - workbench.action.chat.clearHistory
// - workbench.action.chat.clearInputHistory
// - workbench.action.chat.configure.instructions
// - workbench.action.chat.configure.prompts
// - workbench.action.chat.configureCodeCompletions
// - workbench.action.chat.configureTools
// - workbench.action.chat.copyAll
// - workbench.action.chat.copyCodeBlock
// - workbench.action.chat.copyItem
// - workbench.action.chat.copyLink
// - workbench.action.chat.createRemoteAgentJob
// - workbench.action.chat.discardCompareEdits
// - workbench.action.chat.export
// - workbench.action.chat.generateInstructions
// - workbench.action.chat.hideSetup
// - workbench.action.chat.history
// - workbench.action.chat.import
// - workbench.action.chat.inlineVoiceChat
// - workbench.action.chat.insertIntoNewFile
// - workbench.action.chat.insertIntoNotebook
// - workbench.action.chat.insertSearchResults
// - workbench.action.chat.installProviderForVoiceChat
// - workbench.action.chat.logChatIndex
// - workbench.action.chat.logInputHistory
// - workbench.action.chat.manage.mode
// - workbench.action.chat.manageLanguageModelAuthentication
// - workbench.action.chat.manageLanguageModels
// - workbench.action.chat.manageOverages
// - workbench.action.chat.manageSettings
// - workbench.action.chat.markHelpful
// - workbench.action.chat.markUnhelpful
// - workbench.action.chat.newEditSession
// - workbench.action.chat.openAsk
// - workbench.action.chat.openEdit
// - workbench.action.chat.openInEditor
// - workbench.action.chat.openInNewWindow
// - workbench.action.chat.openInSidebar
// - workbench.action.chat.openQuotaExceededDialog
// - workbench.action.chat.openStorageFolder
// - workbench.action.chat.picker.configmode
// - workbench.action.chat.quickVoiceChat
// - workbench.action.chat.readChatResponseAloud
// - workbench.action.chat.redoEdit
// - workbench.action.chat.redoEdit2
// - workbench.action.chat.reportIssueForBug
// - workbench.action.chat.resetTrustedTools
// - workbench.action.chat.restoreLastCheckpoint
// - workbench.action.chat.retry
// - workbench.action.chat.save-to-prompt
// - workbench.action.chat.showExtensionsUsingCopilot
// - workbench.action.chat.startParameterizedPrompt
// - workbench.action.chat.switchToNextModel
// - workbench.action.chat.toggle
// - workbench.action.chat.toggleAgentMode
// - workbench.action.chat.toggleDefaultVisibility
// - workbench.action.chat.toggleRequestPaused
// - workbench.action.chat.triggerSetup
// - workbench.action.chat.triggerSetupForceSignIn
// - workbench.action.chat.triggerSetupFromAccounts
// - workbench.action.chat.triggerSetupWithoutDialog
// - workbench.action.chat.undoEdit
// - workbench.action.chat.upgradePlan
// - 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.disableCompactAuxiliaryWindow
// - workbench.action.disableWindowAlwaysOnTop
// - 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.edits.addFilesFromReferences
// - workbench.action.edits.submit
// - workbench.action.enableCompactAuxiliaryWindow
// - workbench.action.enableWindowAlwaysOnTop
// - workbench.action.evenEditorWidths
// - workbench.action.expandAllComments
// - workbench.action.expandUnresolvedComments
// - workbench.action.exportLogs
// - 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.importLog
// - 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.maximizeAuxiliaryBar
// - 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.nextAuxiliaryBarView
// - workbench.action.nextPanelView
// - workbench.action.nextSideBarView
// - workbench.action.openAccessibilitySettings
// - workbench.action.openActiveLogOutputFile
// - workbench.action.openActiveLogOutputFileInNewWindow
// - workbench.action.openApplicationSettingsJson
// - 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.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.addCompoundLog
// - workbench.action.output.remove
// - workbench.action.output.show.extension-output-kilocode.kilo-code-#1-Kilo-Code
// - workbench.action.output.show.exthost
// - workbench.action.output.show.main
// - workbench.action.output.show.ptyhost
// - workbench.action.output.show.remoteTunnelService
// - workbench.action.output.show.rendererLog
// - workbench.action.output.show.shared
// - workbench.action.output.show.tasks
// - workbench.action.output.show.terminal
// - workbench.action.output.show.textModelChanges
// - 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.output.show.vscode.json-language-features.JSON Language Server
// - workbench.action.output.show.vscode.markdown-language-features.Markdown
// - workbench.action.output.show.vscode.typescript-language-features.TypeScript
// - workbench.action.output.show.vscodevim.vim.Vim
// - workbench.action.pauseSocketWriting
// - workbench.action.populateFileFromSnippet
// - workbench.action.positionPanelBottom
// - workbench.action.positionPanelLeft
// - workbench.action.positionPanelRight
// - workbench.action.positionPanelTop
// - workbench.action.previewColorTheme
// - workbench.action.previousAuxiliaryBarView
// - workbench.action.previousPanelView
// - workbench.action.previousSideBarView
// - workbench.action.problems.focus
// - workbench.action.quickOpenLeastRecentlyUsedEditor
// - workbench.action.quickOpenNavigateNext
// - workbench.action.quickOpenNavigateNextInTerminalPicker
// - workbench.action.quickOpenNavigateNextInViewPicker
// - workbench.action.quickOpenNavigatePrevious
// - workbench.action.quickOpenNavigatePreviousInTerminalPicker
// - workbench.action.quickOpenNavigatePreviousInViewPicker
// - workbench.action.quickOpenPreviousEditor
// - workbench.action.quickOpenPreviousRecentlyUsedEditor
// - workbench.action.quickOpenRecent
// - workbench.action.quickOpenSelectNext
// - workbench.action.quickOpenSelectPrevious
// - workbench.action.quickOpenTerm
// - workbench.action.quickOpenView
// - workbench.action.quickOpenWithModes
// - workbench.action.quickPickManyToggle
// - workbench.action.quickSwitchWindow
// - workbench.action.quickTextSearch
// - workbench.action.quickchat.close
// - workbench.action.quickchat.openInChatView
// - workbench.action.reloadWindowWithExtensionsDisabled
// - workbench.action.remote.close
// - workbench.action.removeDynamicAuthenticationProviders
// - 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.restoreAuxiliaryBar
// - workbench.action.restoreEditorsToMainWindow
// - workbench.action.revealUserDataFolder
// - workbench.action.revertAndCloseActiveEditor
// - workbench.action.saveActiveLogOutputAs
// - 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.showGPUInfo
// - workbench.action.showInteractivePlayground
// - workbench.action.showLogs
// - workbench.action.showMultipleEditorTabs
// - workbench.action.showOutputChannels
// - workbench.action.showRuntimeExtensions
// - workbench.action.showTelemetry
// - 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.rerunAllRunningTasks
// - 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.viewInChat
// - workbench.action.terminal.clear
// - workbench.action.terminal.clearPreviousSessionHistory
// - workbench.action.terminal.copyAndClearSelection
// - 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.resetSuggestWidgetSize
// - workbench.action.terminal.resizePaneDown
// - 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.sendSignal
// - workbench.action.terminal.setDimensions
// - workbench.action.terminal.showEnvironmentContributions
// - workbench.action.terminal.showTextureAtlas
// - workbench.action.terminal.splitInActiveWorkspace
// - workbench.action.terminal.startVoice
// - workbench.action.terminal.stopVoice
// - 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.toggleCompactAuxiliaryWindow
// - 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.toggleMaximizedAuxiliaryBar
// - 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.toggleWindowAlwaysOnTop
// - 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.accounts.signIn
// - 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.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.actions.workbench.panel.output.toggle.debug
// - workbench.actions.workbench.panel.output.toggle.error
// - workbench.actions.workbench.panel.output.toggle.info
// - workbench.actions.workbench.panel.output.toggle.trace
// - workbench.actions.workbench.panel.output.toggle.warn
// - workbench.command.new.instructions
// - workbench.command.new.mode
// - workbench.command.new.prompt
// - workbench.command.new.untitled.prompt
// - 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.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.copyLink
// - workbench.extensions.action.debugExtensionHost
// - workbench.extensions.action.devtoolsExtensionHost
// - workbench.extensions.action.disableAll
// - workbench.extensions.action.disableAllWorkspace
// - workbench.extensions.action.disableAutoUpdate
// - workbench.extensions.action.download
// - workbench.extensions.action.downloadPreRelease
// - workbench.extensions.action.downloadSpecificVersion
// - 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.installedExtensions
// - workbench.extensions.action.listBuiltInExtensions
// - workbench.extensions.action.listWorkspaceUnsupportedExtensions
// - workbench.extensions.action.manageAccountPreferences
// - workbench.extensions.action.manageAuthorizedExtensionURIs
// - workbench.extensions.action.manageTrustedPublishers
// - workbench.extensions.action.openExtensionHostProfile
// - workbench.extensions.action.openExtensionsFolder
// - workbench.extensions.action.recentlyPublishedExtensions
// - workbench.extensions.action.refreshExtension
// - 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.actions.gallery.signIn
// - 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.mcp.addConfiguration
// - workbench.mcp.browseResources
// - workbench.mcp.browseServers
// - workbench.mcp.browseServersPage
// - workbench.mcp.configureSamplingModels
// - workbench.mcp.editStoredInput
// - workbench.mcp.listServer
// - workbench.mcp.openRemoteUserMcpJson
// - workbench.mcp.openUserMcpJson
// - workbench.mcp.openWorkspaceFolderMcpJson
// - workbench.mcp.openWorkspaceMcpJson
// - workbench.mcp.removeStoredInput
// - workbench.mcp.resetCachedTools
// - workbench.mcp.resetTrust
// - workbench.mcp.restartServer
// - workbench.mcp.serverOptions
// - workbench.mcp.showConfiguration
// - workbench.mcp.showInstalledServers
// - workbench.mcp.showOutput
// - workbench.mcp.startPromptForServer
// - workbench.mcp.startServer
// - workbench.mcp.stopServer
// - 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.resetViewContainerLocation
// - 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.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.profileEntry.__default__profile__
// - workbench.profiles.actions.resetWorkspaces
// - workbench.profiles.actions.switchProfile
// - workbench.remote.action.closeUnusedPorts
// - 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.addHistoryItemToChat
// - workbench.scm.action.graph.openFile
// - workbench.scm.action.graph.pickHistoryItemRefs
// - workbench.scm.action.graph.pickRepository
// - workbench.scm.action.graph.refresh
// - workbench.scm.action.graph.revealCurrentHistoryItem
// - workbench.scm.action.graph.setListViewMode
// - workbench.scm.action.graph.setTreeViewMode
// - workbench.scm.action.graph.summarizeHistoryItem
// - 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.kilo-code-ActivityBar
// - workbench.view.extension.kilo-code-ActivityBar.resetViewContainerLocation
// - workbench.view.extension.references-view
// - workbench.view.extension.references-view.resetViewContainerLocation
// - workbench.view.extension.test
// - workbench.view.extension.test.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.resetViewLocation
// - 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.marketplaceAccess.focus
// - workbench.views.extensions.marketplaceAccess.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.mcp.default.marketplace.focus
// - workbench.views.mcp.default.marketplace.resetViewLocation
// - workbench.views.mcp.installed.focus
// - workbench.views.mcp.installed.resetViewLocation
// - workbench.views.mcp.marketplace.focus
// - workbench.views.mcp.marketplace.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
// - ~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