#[non_exhaustive]pub enum MacroAction {
Execute(Count),
Run(String, Count),
Repeat(Count),
ToggleRecording,
}Expand description
Actions for recording and running macros.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Execute(Count)
Execute the contents of the contextually specified Register n times.
If no register is specified, then this should default to Register::UnnamedMacro.
§Example: Using action!
use editor_types::prelude::*;
use editor_types::{action, Action, MacroAction};
let act: Action = MacroAction::Execute(Count::Contextual).into();
// All of these are equivalent:
assert_eq!(act, action!("macro execute -c ctx"));
assert_eq!(act, action!("macro execute"));
assert_eq!(act, action!("macro exec"));Run(String, Count)
Run the given macro string n times.
§Example: Using action!
use editor_types::prelude::*;
use editor_types::{action, Action, MacroAction};
let mac = "hjkl".to_string();
let act: Action = MacroAction::Run(mac, Count::Contextual).into();
// All of these are equivalent:
assert_eq!(act, action!("macro run -i \"hjkl\" -c ctx"));
assert_eq!(act, action!("macro run -i \"hjkl\""));Repeat(Count)
Execute the contents of the previously specified register n times.
§Example: Using action!
use editor_types::prelude::*;
use editor_types::{action, Action, MacroAction};
let act: Action = MacroAction::Repeat(Count::Contextual).into();
// All of these are equivalent:
assert_eq!(act, action!("macro repeat -c ctx"));
assert_eq!(act, action!("macro repeat"));ToggleRecording
Start or stop recording a macro.
§Example: Using action!
use editor_types::prelude::*;
use editor_types::{action, Action, MacroAction};
let act: Action = MacroAction::ToggleRecording.into();
assert_eq!(act, action!("macro toggle-recording"));Trait Implementations§
Source§impl Clone for MacroAction
impl Clone for MacroAction
Source§fn clone(&self) -> MacroAction
fn clone(&self) -> MacroAction
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MacroAction
impl Debug for MacroAction
Source§impl<I: ApplicationInfo> From<MacroAction> for Action<I>
impl<I: ApplicationInfo> From<MacroAction> for Action<I>
Source§fn from(act: MacroAction) -> Self
fn from(act: MacroAction) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MacroAction
impl PartialEq for MacroAction
impl Eq for MacroAction
impl StructuralPartialEq for MacroAction
Auto Trait Implementations§
impl Freeze for MacroAction
impl RefUnwindSafe for MacroAction
impl Send for MacroAction
impl Sync for MacroAction
impl Unpin for MacroAction
impl UnwindSafe for MacroAction
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more