declare const commands: { /** Cursor Undo */ cursorUndo: { id: string; label: string; }; /** Cursor Redo */ cursorRedo: { id: string; label: string; }; /** Delete All Left */ deleteAllLeft: { id: string; label: string; }; /** Delete All Right */ deleteAllRight: { id: string; label: string; }; actions: { /** Find */ find: { id: string; label: string; }; /** Find With Selection */ findWithSelection: { id: string; label: string; }; }; editor: { action: { marker: { /** Go to Next Problem (Error, Warning, Info) */ next: { id: string; label: string; }; /** Go to Previous Problem (Error, Warning, Info) */ prev: { id: string; label: string; }; /** Go to Next Problem in Files (Error, Warning, Info) */ nextInFiles: { id: string; label: string; }; /** Go to Previous Problem in Files (Error, Warning, Info) */ prevInFiles: { id: string; label: string; }; }; referenceSearch: { /** Peek References */ trigger: { id: string; label: string; }; }; wordHighlight: { /** Go to Next Symbol Highlight */ next: { id: string; label: string; }; /** Go to Previous Symbol Highlight */ prev: { id: string; label: string; }; /** Trigger Symbol Highlight */ trigger: { id: string; label: string; }; }; diffReview: { /** Go to Next Difference */ next: { id: string; label: string; }; /** Go to Previous Difference */ prev: { id: string; label: string; }; }; inPlaceReplace: { /** Replace with Previous Value */ up: { id: string; label: string; }; /** Replace with Next Value */ down: { id: string; label: string; }; }; smartSelect: { /** Expand Selection */ expand: { id: string; label: string; }; /** Shrink Selection */ shrink: { id: string; label: string; }; }; /** Toggle High Contrast Theme */ toggleHighContrast: { id: string; label: string; }; /** Move Caret Left */ moveCarretLeftAction: { id: string; label: string; }; /** Move Caret Right */ moveCarretRightAction: { id: string; label: string; }; /** Transpose Letters */ transposeLetters: { id: string; label: string; }; /** Cut */ clipboardCutAction: { id: string; label: string; }; /** Copy */ clipboardCopyAction: { id: string; label: string; }; /** Copy With Syntax Highlighting */ clipboardCopyWithSyntaxHighlightingAction: { id: string; label: string; }; /** Toggle Line Comment */ commentLine: { id: string; label: string; }; /** Add Line Comment */ addCommentLine: { id: string; label: string; }; /** Remove Line Comment */ removeCommentLine: { id: string; label: string; }; /** Toggle Block Comment */ blockComment: { id: string; label: string; }; /** Show Editor Context Menu */ showContextMenu: { id: string; label: string; }; /** Editor Font Zoom In */ fontZoomIn: { id: string; label: string; }; /** Editor Font Zoom Out */ fontZoomOut: { id: string; label: string; }; /** Editor Font Zoom Reset */ fontZoomReset: { id: string; label: string; }; /** Format Document */ formatDocument: { id: string; label: string; }; /** Format Selection */ formatSelection: { id: string; label: string; }; /** Copy Line Up */ copyLinesUpAction: { id: string; label: string; }; /** Copy Line Down */ copyLinesDownAction: { id: string; label: string; }; /** Duplicate Selection */ duplicateSelection: { id: string; label: string; }; /** Move Line Up */ moveLinesUpAction: { id: string; label: string; }; /** Move Line Down */ moveLinesDownAction: { id: string; label: string; }; /** Sort Lines Ascending */ sortLinesAscending: { id: string; label: string; }; /** Sort Lines Descending */ sortLinesDescending: { id: string; label: string; }; /** Trim Trailing Whitespace */ trimTrailingWhitespace: { id: string; label: string; }; /** Delete Line */ deleteLines: { id: string; label: string; }; /** Indent Line */ indentLines: { id: string; label: string; }; /** Outdent Line */ outdentLines: { id: string; label: string; }; /** Insert Line Above */ insertLineBefore: { id: string; label: string; }; /** Insert Line Below */ insertLineAfter: { id: string; label: string; }; /** Join Lines */ joinLines: { id: string; label: string; }; /** Transpose characters around the cursor */ transpose: { id: string; label: string; }; /** Transform to Uppercase */ transformToUppercase: { id: string; label: string; }; /** Transform to Lowercase */ transformToLowercase: { id: string; label: string; }; /** Transform to Title Case */ transformToTitlecase: { id: string; label: string; }; /** Developer: Force Retokenize */ forceRetokenize: { id: string; label: string; }; /** Toggle Tab Key Moves Focus */ toggleTabFocusMode: { id: string; label: string; }; /** Go to Line... */ gotoLine: { id: string; label: string; }; /** Command Palette */ quickCommand: { id: string; label: string; }; /** Select to Bracket */ selectToBracket: { id: string; label: string; }; /** Go to Bracket */ jumpToBracket: { id: string; label: string; }; /** Go to Symbol... */ quickOutline: { id: string; label: string; }; /** Find Next */ nextMatchFindAction: { id: string; label: string; }; /** Find Previous */ previousMatchFindAction: { id: string; label: string; }; /** Find Next Selection */ nextSelectionMatchFindAction: { id: string; label: string; }; /** Find Previous Selection */ previousSelectionMatchFindAction: { id: string; label: string; }; /** Replace */ startFindReplaceAction: { id: string; label: string; }; /** Open Link */ openLink: { id: string; label: string; }; /** Quick Fix... */ quickFix: { id: string; label: string; }; /** Refactor... */ refactor: { id: string; label: string; }; /** Source Action... */ sourceAction: { id: string; label: string; }; /** Organize Imports */ organizeImports: { id: string; label: string; }; /** Auto Fix... */ autoFix: { id: string; label: string; }; /** Fix All */ fixAll: { id: string; label: string; }; /** Add Cursor Above */ insertCursorAbove: { id: string; label: string; }; /** Add Cursor Below */ insertCursorBelow: { id: string; label: string; }; /** Add Cursors to Line Ends */ insertCursorAtEndOfEachLineSelected: { id: string; label: string; }; /** Add Selection To Next Find Match */ addSelectionToNextFindMatch: { id: string; label: string; }; /** Add Selection To Previous Find Match */ addSelectionToPreviousFindMatch: { id: string; label: string; }; /** Move Last Selection To Next Find Match */ moveSelectionToNextFindMatch: { id: string; label: string; }; /** Move Last Selection To Previous Find Match */ moveSelectionToPreviousFindMatch: { id: string; label: string; }; /** Select All Occurrences of Find Match */ selectHighlights: { id: string; label: string; }; /** Change All Occurrences */ changeAll: { id: string; label: string; }; /** Add Cursors To Bottom */ addCursorsToBottom: { id: string; label: string; }; /** Add Cursors To Top */ addCursorsToTop: { id: string; label: string; }; /** Trigger Parameter Hints */ triggerParameterHints: { id: string; label: string; }; /** Rename Symbol */ rename: { id: string; label: string; }; /** Show Accessibility Help */ showAccessibilityHelp: { id: string; label: string; }; /** Developer: Inspect Tokens */ inspectTokens: { id: string; label: string; }; /** Go to Definition */ revealDefinition: { id: string; label: string; }; /** Open Definition to the Side */ revealDefinitionAside: { id: string; label: string; }; /** Peek Definition */ peekDefinition: { id: string; label: string; }; /** Go to Declaration */ revealDeclaration: { id: string; label: string; }; /** Peek Declaration */ peekDeclaration: { id: string; label: string; }; /** Go to Type Definition */ goToTypeDefinition: { id: string; label: string; }; /** Peek Type Definition */ peekTypeDefinition: { id: string; label: string; }; /** Go to Implementations */ goToImplementation: { id: string; label: string; }; /** Peek Implementations */ peekImplementation: { id: string; label: string; }; /** Go to References */ goToReferences: { id: string; label: string; }; /** Show Hover */ showHover: { id: string; label: string; }; /** Show Definition Preview Hover */ showDefinitionPreviewHover: { id: string; label: string; }; /** Trigger Suggest */ triggerSuggest: { id: string; label: string; }; }; /** Unfold */ unfold: { id: string; label: string; }; /** Unfold Recursively */ unfoldRecursively: { id: string; label: string; }; /** Fold */ fold: { id: string; label: string; }; /** Fold Recursively */ foldRecursively: { id: string; label: string; }; /** Fold All */ foldAll: { id: string; label: string; }; /** Unfold All */ unfoldAll: { id: string; label: string; }; /** Fold All Block Comments */ foldAllBlockComments: { id: string; label: string; }; /** Fold All Regions */ foldAllMarkerRegions: { id: string; label: string; }; /** Unfold All Regions */ unfoldAllMarkerRegions: { id: string; label: string; }; /** Toggle Fold */ toggleFold: { id: string; label: string; }; /** Fold Level 1 */ foldLevel1: { id: string; label: string; }; /** Fold Level 2 */ foldLevel2: { id: string; label: string; }; /** Fold Level 3 */ foldLevel3: { id: string; label: string; }; /** Fold Level 4 */ foldLevel4: { id: string; label: string; }; /** Fold Level 5 */ foldLevel5: { id: string; label: string; }; /** Fold Level 6 */ foldLevel6: { id: string; label: string; }; /** Fold Level 7 */ foldLevel7: { id: string; label: string; }; }; }; export default commands;