[][src]Enum alacritty::config::bindings::ViAction

pub enum ViAction {
    ToggleNormalSelection,
    ToggleLineSelection,
    ToggleBlockSelection,
    ToggleSemanticSelection,
    SearchNext,
    SearchPrevious,
    SearchStart,
    SearchEnd,
    Open,
}

Vi mode specific actions.

Variants

ToggleNormalSelection

Toggle normal vi selection.

ToggleLineSelection

Toggle line vi selection.

ToggleBlockSelection

Toggle block vi selection.

ToggleSemanticSelection

Toggle semantic vi selection.

SearchNext

Jump to the beginning of the next match.

SearchPrevious

Jump to the beginning of the previous match.

SearchStart

Jump to the next start of a match to the left of the origin.

SearchEnd

Jump to the next end of a match to the right of the origin.

Open

Launch the URL below the vi mode cursor.

Trait Implementations

impl Clone for ViAction[src]

impl Copy for ViAction[src]

impl Debug for ViAction[src]

impl<'de> Deserialize<'de> for ViAction[src]

impl Eq for ViAction[src]

impl From<ViAction> for Action[src]

impl PartialEq<ViAction> for ViAction[src]

impl StructuralEq for ViAction[src]

impl StructuralPartialEq for ViAction[src]

Auto Trait Implementations

impl RefUnwindSafe for ViAction

impl Send for ViAction

impl Sync for ViAction

impl Unpin for ViAction

impl UnwindSafe for ViAction

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ResetDiscriminant<T> for T where
    T: Copy
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.