Skip to content

Commit

Permalink
Alphabetize actions (#18007)
Browse files Browse the repository at this point in the history
Drive-by maintenance PR while working on another PR.

Release Notes:

- N/A
  • Loading branch information
JosephTLyons authored Sep 18, 2024
1 parent 84f2e0e commit 425c8f8
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions crates/editor/src/actions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,14 +156,14 @@ pub struct DeleteToPreviousWordStart {
impl_actions!(
editor,
[
ComposeCompletion,
ConfirmCodeAction,
ConfirmCompletion,
ComposeCompletion,
DeleteToNextWordEnd,
DeleteToPreviousWordStart,
ExpandExcerpts,
ExpandExcerptsUp,
ExpandExcerptsDown,
ExpandExcerptsUp,
FoldAt,
HandleInput,
MoveDownByLines,
Expand All @@ -188,8 +188,8 @@ impl_actions!(
gpui::actions!(
editor,
[
AcceptPartialCopilotSuggestion,
AcceptInlineCompletion,
AcceptPartialCopilotSuggestion,
AcceptPartialInlineCompletion,
AddSelectionAbove,
AddSelectionBelow,
Expand All @@ -210,10 +210,10 @@ gpui::actions!(
ConvertToUpperCamelCase,
ConvertToUpperCase,
Copy,
CopyFileLocation,
CopyHighlightJson,
CopyPath,
CopyPermalinkToLine,
CopyFileLocation,
CopyRelativePath,
Cut,
CutToEndOfLine,
Expand All @@ -232,10 +232,10 @@ gpui::actions!(
Fold,
FoldSelectedRanges,
Format,
GoToDefinition,
GoToDefinitionSplit,
GoToDeclaration,
GoToDeclarationSplit,
GoToDefinition,
GoToDefinitionSplit,
GoToDiagnostic,
GoToHunk,
GoToImplementation,
Expand Down Expand Up @@ -273,9 +273,9 @@ gpui::actions!(
NextScreen,
OpenExcerpts,
OpenExcerptsSplit,
OpenFile,
OpenPermalinkToLine,
OpenUrl,
OpenFile,
Outdent,
PageDown,
PageUp,
Expand All @@ -284,23 +284,25 @@ gpui::actions!(
Redo,
RedoSelection,
Rename,
Rewrap,
RestartLanguageServer,
RevealInFileManager,
ReverseLines,
RevertFile,
RevertSelectedHunks,
Rewrap,
ScrollCursorBottom,
ScrollCursorCenter,
ScrollCursorTop,
ScrollCursorCenterTopBottom,
ScrollCursorTop,
SelectAll,
SelectAllMatches,
SelectDown,
SelectLargerSyntaxNode,
SelectEnclosingSymbol,
SelectLargerSyntaxNode,
SelectLeft,
SelectLine,
SelectPageDown,
SelectPageUp,
SelectRight,
SelectSmallerSyntaxNode,
SelectToBeginning,
Expand All @@ -312,8 +314,6 @@ gpui::actions!(
SelectToPreviousWordStart,
SelectToStartOfParagraph,
SelectUp,
SelectPageDown,
SelectPageUp,
ShowCharacterPalette,
ShowInlineCompletion,
ShowSignatureHelp,
Expand All @@ -327,13 +327,13 @@ gpui::actions!(
ToggleAutoSignatureHelp,
ToggleGitBlame,
ToggleGitBlameInline,
ToggleSelectionMenu,
ToggleHunkDiff,
ToggleIndentGuides,
ToggleInlayHints,
ToggleInlineCompletions,
ToggleLineNumbers,
ToggleRelativeLineNumbers,
ToggleIndentGuides,
ToggleSelectionMenu,
ToggleSoftWrap,
ToggleTabBar,
Transpose,
Expand Down

0 comments on commit 425c8f8

Please sign in to comment.