#[non_exhaustive]pub enum CommandAction {
Run(String),
Execute(Count),
}Expand description
Actions for running application commands (e.g. :w or :quit).
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.
Run(String)
Run a command string.
This should update Register::LastCommand.
§Example: Using action!
use editor_types::prelude::*;
use editor_types::{action, Action, CommandAction};
let quitall: Action = action!(r#"command run -i "quitall" "#);
assert_eq!(quitall, CommandAction::Run("quitall".into()).into());Execute(Count)
Execute the last CommandType::Command entry n times.
§Example: Using action!
use editor_types::prelude::*;
use editor_types::{action, Action, CommandAction};
let exec: Action = action!("command execute");
assert_eq!(exec, CommandAction::Execute(Count::Contextual).into());
let exec5: Action = action!("command execute -c 5");
assert_eq!(exec5, CommandAction::Execute(5.into()).into());Trait Implementations§
Source§impl Clone for CommandAction
impl Clone for CommandAction
Source§fn clone(&self) -> CommandAction
fn clone(&self) -> CommandAction
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 CommandAction
impl Debug for CommandAction
Source§impl<I: ApplicationInfo> From<CommandAction> for Action<I>
impl<I: ApplicationInfo> From<CommandAction> for Action<I>
Source§fn from(act: CommandAction) -> Self
fn from(act: CommandAction) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CommandAction
impl PartialEq for CommandAction
impl Eq for CommandAction
impl StructuralPartialEq for CommandAction
Auto Trait Implementations§
impl Freeze for CommandAction
impl RefUnwindSafe for CommandAction
impl Send for CommandAction
impl Sync for CommandAction
impl Unpin for CommandAction
impl UnwindSafe for CommandAction
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