pub struct DeleteBigWordEnd(pub usize);Expand description
Deletes from the cursor to the end of the current WORD, without consuming
trailing whitespace. This is the cW primitive, which in Vim behaves like
cE rather than dW. A WORD is any sequence of non-whitespace characters.
Tuple Fields§
§0: usizeTrait Implementations§
Source§impl Clone for DeleteBigWordEnd
impl Clone for DeleteBigWordEnd
Source§fn clone(&self) -> DeleteBigWordEnd
fn clone(&self) -> DeleteBigWordEnd
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 DeleteBigWordEnd
Source§impl Debug for DeleteBigWordEnd
impl Debug for DeleteBigWordEnd
Source§impl Execute for DeleteBigWordEnd
impl Execute for DeleteBigWordEnd
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<DeleteBigWordEnd> for Action
impl From<DeleteBigWordEnd> for Action
Source§fn from(v: DeleteBigWordEnd) -> Action
fn from(v: DeleteBigWordEnd) -> Action
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DeleteBigWordEnd
impl RefUnwindSafe for DeleteBigWordEnd
impl Send for DeleteBigWordEnd
impl Sync for DeleteBigWordEnd
impl Unpin for DeleteBigWordEnd
impl UnsafeUnpin for DeleteBigWordEnd
impl UnwindSafe for DeleteBigWordEnd
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