Skip to content

Commit 0f4948e

Browse files
committed
refactor: ReedlineEvent reorder
1 parent f54634d commit 0f4948e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/enums.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -825,6 +825,9 @@ pub enum ReedlineEvent {
825825
/// Move to the previous history page
826826
MenuPagePrevious,
827827

828+
/// Complete the command given the common prefix of items in current open menu
829+
PartialComplete,
830+
828831
/// Way to bind the execution of a whole command (directly returning from [`crate::Reedline::read_line()`]) to a keybinding
829832
ExecuteHostCommand(String),
830833

@@ -833,9 +836,6 @@ pub enum ReedlineEvent {
833836

834837
/// Change mode (vi mode only)
835838
ViChangeMode(String),
836-
837-
/// Complete the command given the common prefix of items in current open menu
838-
PartialComplete,
839839
}
840840

841841
impl Display for ReedlineEvent {

0 commit comments

Comments
 (0)