We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f54634d commit 0f4948eCopy full SHA for 0f4948e
1 file changed
src/enums.rs
@@ -825,6 +825,9 @@ pub enum ReedlineEvent {
825
/// Move to the previous history page
826
MenuPagePrevious,
827
828
+ /// Complete the command given the common prefix of items in current open menu
829
+ PartialComplete,
830
+
831
/// Way to bind the execution of a whole command (directly returning from [`crate::Reedline::read_line()`]) to a keybinding
832
ExecuteHostCommand(String),
833
@@ -833,9 +836,6 @@ pub enum ReedlineEvent {
836
834
837
/// Change mode (vi mode only)
835
838
ViChangeMode(String),
-
- /// Complete the command given the common prefix of items in current open menu
- PartialComplete,
839
}
840
841
impl Display for ReedlineEvent {
0 commit comments