pub struct DeleteInnerWord;Expand description
Deletes the inner word under the cursor, leaving the editor in normal mode.
This is the diw primitive.
Trait Implementations§
Source§impl Clone for DeleteInnerWord
impl Clone for DeleteInnerWord
Source§fn clone(&self) -> DeleteInnerWord
fn clone(&self) -> DeleteInnerWord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DeleteInnerWord
Source§impl Debug for DeleteInnerWord
impl Debug for DeleteInnerWord
Source§impl Execute for DeleteInnerWord
impl Execute for DeleteInnerWord
fn execute(&mut self, state: &mut EditorState)
Source§fn is_repeatable(&self) -> bool
fn is_repeatable(&self) -> bool
Whether this action can be replayed by the dot-repeat command.
Source§impl From<DeleteInnerWord> for Action
impl From<DeleteInnerWord> for Action
Source§fn from(v: DeleteInnerWord) -> Action
fn from(v: DeleteInnerWord) -> Action
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DeleteInnerWord
impl RefUnwindSafe for DeleteInnerWord
impl Send for DeleteInnerWord
impl Sync for DeleteInnerWord
impl Unpin for DeleteInnerWord
impl UnsafeUnpin for DeleteInnerWord
impl UnwindSafe for DeleteInnerWord
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more