diff --git a/extension/src/commanding/commands.ts b/extension/src/commanding/commands.ts index d8fd0e5..6fe9dce 100644 --- a/extension/src/commanding/commands.ts +++ b/extension/src/commanding/commands.ts @@ -23,9 +23,7 @@ export const BuiltInCommands = { "Select Text to Home": "cursorHomeSelect", "Move Cursor Left": "cursorLeft", "Select Text Left": "cursorLeftSelect", - "Move Cursor to Line End": "cursorLineEnd", "Select Text to Line End": "cursorLineEndSelect", - "Move Cursor to Line Start": "cursorLineStart", "Select Text to Line Start": "cursorLineStartSelect", "Move Cursor Page Down": "cursorPageDown", "Select Text Page Down": "cursorPageDownSelect", @@ -61,7 +59,6 @@ export const BuiltInCommands = { "Focus Chat Widget": "notebook.cell.focusChatWidget", "Focus Next Chat Widget": "notebook.cell.focusNextChatWidget", "Inline Chat Focus": "inlineChat.focus", - "Accept Notebook Cell Chat Changes": "notebook.cell.chat.acceptChanges", "Next From Notebook Cell Chat History": "notebook.cell.chat.nextFromHistory", "Previous From Notebook Cell Chat History": "notebook.cell.chat.previousFromHistory", @@ -104,7 +101,6 @@ export const BuiltInCommands = { "Clipboard Cut Action": "editor.action.clipboardCutAction", "Clipboard Paste Action": "editor.action.clipboardPasteAction", "Comment Line": "editor.action.commentLine", - "Copy Lines Down Action": "editor.action.copyLinesDownAction", "Copy Lines Up Action": "editor.action.copyLinesUpAction", "Delete Lines": "editor.action.deleteLines", "Next Dirty Diff": "editor.action.dirtydiff.next", @@ -134,19 +130,14 @@ export const BuiltInCommands = { "Show Previous Inline Suggest": "editor.action.inlineSuggest.showPrevious", "Insert Color With Standalone Color Picker": "editor.action.insertColorWithStandaloneColorPicker", - "Insert Cursor Above": "editor.action.insertCursorAbove", "Insert Cursor At End Of Each Line Selected": "editor.action.insertCursorAtEndOfEachLineSelected", - "Insert Cursor Below": "editor.action.insertCursorBelow", "Insert Line After": "editor.action.insertLineAfter", "Insert Line Before": "editor.action.insertLineBefore", "Join Lines": "editor.action.joinLines", - "Jump To Bracket": "editor.action.jumpToBracket", "Linked Editing": "editor.action.linkedEditing", - "Next Marker": "editor.action.marker.next", "Next Marker In Files": "editor.action.marker.nextInFiles", "Previous Marker": "editor.action.marker.prev", - "Previous Marker In Files": "editor.action.marker.prevInFiles", "Move Lines Down Action": "editor.action.moveLinesDownAction", "Move Lines Up Action": "editor.action.moveLinesUpAction", "Move Selection To Next Find Match": @@ -173,7 +164,6 @@ export const BuiltInCommands = { "Remove Comment Line": "editor.action.removeCommentLine", Rename: "editor.action.rename", "Reveal Definition": "editor.action.revealDefinition", - "Reveal definition": "editor.action.revealDefinition", "Reveal definition aside": "editor.action.revealDefinitionAside", "Scroll down hover": "editor.action.scrollDownHover", "Scroll left hover": "editor.action.scrollLeftHover", @@ -181,7 +171,6 @@ export const BuiltInCommands = { "Scroll up hover": "editor.action.scrollUpHover", "Select editor": "editor.action.selectEditor", "Select from anchor to cursor": "editor.action.selectFromAnchorToCursor", - "Select highlights": "editor.action.selectHighlights", "Select next sticky scroll line": "editor.action.selectNextStickyScrollLine", "Select previous sticky scroll line": "editor.action.selectPreviousStickyScrollLine", @@ -526,7 +515,6 @@ export const BuiltInCommands = { "Move to next separator in quick input": "quickInput.nextSeparator", "Move to next separator with quick access fallback in quick input": "quickInput.nextSeparatorWithQuickAccessFallback", - "Page next in quick input": "quickInput.pageNext", "Go to next page in quick input": "quickInput.pageNext", "Go to previous page in quick input": "quickInput.pagePrevious", "Go to previous item in quick input": "quickInput.previous", @@ -713,7 +701,6 @@ export const BuiltInCommands = { "Open editor at index 9": "workbench.action.openEditorAtIndex9", "Open global keybindings": "workbench.action.openGlobalKeybindings", "Open recent": "workbench.action.openRecent", - "Open settings": "workbench.action.openSettings", "Toggle output": "workbench.action.output.toggleOutput", "Pin editor": "workbench.action.pinEditor", "Go to previous editor": "workbench.action.previousEditor", @@ -826,14 +813,12 @@ export const BuiltInCommands = { "Toggle editor group layout": "workbench.action.toggleEditorGroupLayout", "Toggle full screen": "workbench.action.toggleFullScreen", "Toggle maximize editor group": "workbench.action.toggleMaximizeEditorGroup", - "Toggle panel": "workbench.action.togglePanel", "Toggle sidebar visibility": "workbench.action.toggleSidebarVisibility", "Toggle Zen mode": "workbench.action.toggleZenMode", "Unpin editor": "workbench.action.unpinEditor", "Zoom in": "workbench.action.zoomIn", "Zoom out": "workbench.action.zoomOut", "Reset zoom": "workbench.action.zoomReset", - "View problems": "workbench.actions.view.problems", "Focus banner": "workbench.banner.focusBanner", "Focus next action in banner": "workbench.banner.focusNextAction", "Focus previous action in banner": "workbench.banner.focusPreviousAction", @@ -848,7 +833,6 @@ export const BuiltInCommands = { "Focus previous in status bar": "workbench.statusBar.focusPrevious", "View debug": "workbench.view.debug", "View explorer": "workbench.view.explorer", - "View extensions": "workbench.view.extensions", "View scm": "workbench.view.scm", "View search": "workbench.view.search", "Focus next with picker in breadcrumbs": "breadcrumbs.focusNextWithPicker", @@ -890,7 +874,6 @@ export const BuiltInCommands = { "Rename watch expression in debug": "debug.renameWatchExpression", "Set variable in debug": "debug.setVariable", "Toggle breakpoint in debug": "debug.toggleBreakpoint", - "Quit edit in notebook cell": "notebook.cell.quitEdit", "Paste in files explorer": "filesExplorer.paste", "Delete file": "deleteFile", "Go to symbol in editor": "editor.action.accessibleViewGoToSymbol", @@ -916,7 +899,6 @@ export const BuiltInCommands = { "Rename file": "renameFile", "Continue debugging": "workbench.action.debug.continue", "Step into debugging": "workbench.action.debug.stepInto", - "Close reference search": "closeReferenceSearch", "Collapse sticky scroll list": "list.stickyScroll.collapse", "Select in sticky scroll list": "list.stickyScrollselect", "Toggle expand in sticky scroll list": "list.stickyScrolltoggleExpand", @@ -944,7 +926,6 @@ export const BuiltInCommands = { "Reload window": "workbench.action.reloadWindow", "Search workspace in terminal": "workbench.action.terminal.searchWorkspace", "Toggle developer tools": "workbench.action.toggleDevTools", - "Hide notifications": "notifications.hideToasts", "Stop listening to chat": "workbench.action.chat.stopListening", "Stop reading chat item aloud": "workbench.action.chat.stopReadChatItemAloud", "Stop dictation in editor": "workbench.action.editorDictation.stop", @@ -1005,63 +986,20 @@ export const BuiltInCommands = { "Add Cursor to Line Ends": "editor.action.addCursorsToBottom", "Select All Occurrences": "editor.action.selectHighlights", "Go to Matching Bracket": "editor.action.jumpToBracket", - "Fold All": "editor.foldAll", - "Unfold All": "editor.unfoldAll", - "Toggle Fold": "editor.toggleFold", - "Open Recent": "workbench.action.openRecent", - "Reopen Closed Editor": "workbench.action.reopenClosedEditor", - "Close Editor": "workbench.action.closeActiveEditor", - "Navigate Forward": "workbench.action.navigateForward", - "Navigate Back": "workbench.action.navigateBack", - "Select All Occurrences of Find Match": "editor.action.selectAllMatches", - "Shrink Selection": "editor.action.smartSelect.shrink", - "Expand Selection": "editor.action.smartSelect.expand", "Toggle Panel": "workbench.action.togglePanel", - "Toggle Side Bar": "workbench.action.toggleSidebarVisibility", "Open Extensions View": "workbench.view.extensions", - "Show Keyboard Shortcuts": "workbench.action.openGlobalKeybindings", - "Toggle Full Screen": "workbench.action.toggleFullScreen", - "Open New Window": "workbench.action.newWindow", - "Close Window": "workbench.action.closeWindow", - "Reload Window": "workbench.action.reloadWindow", "Open User Settings": "workbench.action.openSettings", - "Toggle Activity Bar": "workbench.action.toggleActivityBarVisibility", - "Toggle Status Bar": "workbench.action.toggleStatusbarVisibility", - "Toggle Tabs": "workbench.action.toggleTabsVisibility", - "Go to Next Editor": "workbench.action.nextEditor", - "Go to Previous Editor": "workbench.action.previousEditor", - "Close Other Editors": "workbench.action.closeOtherEditors", "Close Saved Editors": "workbench.action.closeSavedEditors", "Close Editors to the Left": "workbench.action.closeEditorsToTheLeft", "Close Editors to the Right": "workbench.action.closeEditorsToTheRight", - "Focus on Editor Group Above": "workbench.action.focusAboveGroup", - "Focus on Editor Group Below": "workbench.action.focusBelowGroup", - "Focus on Editor Group Left": "workbench.action.focusLeftGroup", - "Focus on Editor Group Right": "workbench.action.focusRightGroup", - "Move Editor Left": "workbench.action.moveEditorLeftInGroup", - "Move Editor Right": "workbench.action.moveEditorRightInGroup", - "Open File in New Window": "workbench.action.files.openFileFolder", - "Split Editor Left": "workbench.action.splitEditorLeft", - "Split Editor Right": "workbench.action.splitEditorRight", - "Split Editor Up": "workbench.action.splitEditorUp", - "Split Editor Down": "workbench.action.splitEditorDown", - "Navigate to Last Edit Location": - "workbench.action.navigateToLastEditLocation", - "Select Current Line": "expandLineSelection", "Insert Cursor at End of Line": "cursorLineEnd", "Insert Cursor at Start of Line": "cursorLineStart", - "Add Selection to Next Find Match": - "editor.action.addSelectionToNextFindMatch", "Add Selection to Previous Find Match": "editor.action.addSelectionToPreviousFindMatch", - "Switch Window": "workbench.action.switchWindow", - "Toggle Terminal Panel": "workbench.action.terminal.toggleTerminal", - "Create New Terminal": "workbench.action.terminal.new", "Run Task": "workbench.action.tasks.runTask", "Configure Task": "workbench.action.tasks.configureTaskRunner", "Show Problems Panel": "workbench.actions.view.problems", "Go to Next Problem": "editor.action.marker.next", - "Go to Previous Problem": "editor.action.marker.prev", } as const; /**