Alphabetize actions (#18007)

Drive-by maintenance PR while working on another PR.

Release Notes:

- N/A
This commit is contained in:
Joseph T. Lyons 2024-09-18 10:42:17 -04:00 committed by GitHub
parent 84f2e0ee37
commit 425c8f8c3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -156,14 +156,14 @@ pub struct DeleteToPreviousWordStart {
impl_actions!( impl_actions!(
editor, editor,
[ [
ComposeCompletion,
ConfirmCodeAction, ConfirmCodeAction,
ConfirmCompletion, ConfirmCompletion,
ComposeCompletion,
DeleteToNextWordEnd, DeleteToNextWordEnd,
DeleteToPreviousWordStart, DeleteToPreviousWordStart,
ExpandExcerpts, ExpandExcerpts,
ExpandExcerptsUp,
ExpandExcerptsDown, ExpandExcerptsDown,
ExpandExcerptsUp,
FoldAt, FoldAt,
HandleInput, HandleInput,
MoveDownByLines, MoveDownByLines,
@ -188,8 +188,8 @@ impl_actions!(
gpui::actions!( gpui::actions!(
editor, editor,
[ [
AcceptPartialCopilotSuggestion,
AcceptInlineCompletion, AcceptInlineCompletion,
AcceptPartialCopilotSuggestion,
AcceptPartialInlineCompletion, AcceptPartialInlineCompletion,
AddSelectionAbove, AddSelectionAbove,
AddSelectionBelow, AddSelectionBelow,
@ -210,10 +210,10 @@ gpui::actions!(
ConvertToUpperCamelCase, ConvertToUpperCamelCase,
ConvertToUpperCase, ConvertToUpperCase,
Copy, Copy,
CopyFileLocation,
CopyHighlightJson, CopyHighlightJson,
CopyPath, CopyPath,
CopyPermalinkToLine, CopyPermalinkToLine,
CopyFileLocation,
CopyRelativePath, CopyRelativePath,
Cut, Cut,
CutToEndOfLine, CutToEndOfLine,
@ -232,10 +232,10 @@ gpui::actions!(
Fold, Fold,
FoldSelectedRanges, FoldSelectedRanges,
Format, Format,
GoToDefinition,
GoToDefinitionSplit,
GoToDeclaration, GoToDeclaration,
GoToDeclarationSplit, GoToDeclarationSplit,
GoToDefinition,
GoToDefinitionSplit,
GoToDiagnostic, GoToDiagnostic,
GoToHunk, GoToHunk,
GoToImplementation, GoToImplementation,
@ -273,9 +273,9 @@ gpui::actions!(
NextScreen, NextScreen,
OpenExcerpts, OpenExcerpts,
OpenExcerptsSplit, OpenExcerptsSplit,
OpenFile,
OpenPermalinkToLine, OpenPermalinkToLine,
OpenUrl, OpenUrl,
OpenFile,
Outdent, Outdent,
PageDown, PageDown,
PageUp, PageUp,
@ -284,23 +284,25 @@ gpui::actions!(
Redo, Redo,
RedoSelection, RedoSelection,
Rename, Rename,
Rewrap,
RestartLanguageServer, RestartLanguageServer,
RevealInFileManager, RevealInFileManager,
ReverseLines, ReverseLines,
RevertFile, RevertFile,
RevertSelectedHunks, RevertSelectedHunks,
Rewrap,
ScrollCursorBottom, ScrollCursorBottom,
ScrollCursorCenter, ScrollCursorCenter,
ScrollCursorTop,
ScrollCursorCenterTopBottom, ScrollCursorCenterTopBottom,
ScrollCursorTop,
SelectAll, SelectAll,
SelectAllMatches, SelectAllMatches,
SelectDown, SelectDown,
SelectLargerSyntaxNode,
SelectEnclosingSymbol, SelectEnclosingSymbol,
SelectLargerSyntaxNode,
SelectLeft, SelectLeft,
SelectLine, SelectLine,
SelectPageDown,
SelectPageUp,
SelectRight, SelectRight,
SelectSmallerSyntaxNode, SelectSmallerSyntaxNode,
SelectToBeginning, SelectToBeginning,
@ -312,8 +314,6 @@ gpui::actions!(
SelectToPreviousWordStart, SelectToPreviousWordStart,
SelectToStartOfParagraph, SelectToStartOfParagraph,
SelectUp, SelectUp,
SelectPageDown,
SelectPageUp,
ShowCharacterPalette, ShowCharacterPalette,
ShowInlineCompletion, ShowInlineCompletion,
ShowSignatureHelp, ShowSignatureHelp,
@ -327,13 +327,13 @@ gpui::actions!(
ToggleAutoSignatureHelp, ToggleAutoSignatureHelp,
ToggleGitBlame, ToggleGitBlame,
ToggleGitBlameInline, ToggleGitBlameInline,
ToggleSelectionMenu,
ToggleHunkDiff, ToggleHunkDiff,
ToggleIndentGuides,
ToggleInlayHints, ToggleInlayHints,
ToggleInlineCompletions, ToggleInlineCompletions,
ToggleLineNumbers, ToggleLineNumbers,
ToggleRelativeLineNumbers, ToggleRelativeLineNumbers,
ToggleIndentGuides, ToggleSelectionMenu,
ToggleSoftWrap, ToggleSoftWrap,
ToggleTabBar, ToggleTabBar,
Transpose, Transpose,