#[non_exhaustive]pub enum EditTarget {
Boundary(RangeType, bool, MoveTerminus, Count),
CurrentPosition,
CharJump(Specifier<Mark>),
LineJump(Specifier<Mark>),
Motion(MoveType, Count),
Range(RangeType, bool, Count),
Search(SearchType, MoveDirMod, Count),
Selection,
}Expand description
Specify what is targeted by an editing action.
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.
Boundary(RangeType, bool, MoveTerminus, Count)
Move to one of the sides of a range.
CurrentPosition
Target the current cursor position.
CharJump(Specifier<Mark>)
Move to the line and column of a Mark.
LineJump(Specifier<Mark>)
Move to the first word of the line that Mark is on.
Motion(MoveType, Count)
Target the text between the current cursor position and the end of a motion.
Range(RangeType, bool, Count)
Target a range of text around the cursor.
bool indicates if this is an inclusive range, when applicable to the RangeType.
Search(SearchType, MoveDirMod, Count)
Target the text between the current cursor position and the end of a search.
The MoveDirMod parameter modifies the search direction.
Selection
Target the visually selected text.
Implementations§
Source§impl EditTarget
impl EditTarget
Sourcepub fn is_jumping(&self) -> bool
pub fn is_jumping(&self) -> bool
Returns true if this is a target that causes cursor positions to be saved to
PositionList::JumpList.
Trait Implementations§
Source§impl Clone for EditTarget
impl Clone for EditTarget
Source§fn clone(&self) -> EditTarget
fn clone(&self) -> EditTarget
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 EditTarget
impl Debug for EditTarget
Source§impl From<MoveType> for EditTarget
impl From<MoveType> for EditTarget
Source§impl From<RangeType> for EditTarget
impl From<RangeType> for EditTarget
Source§impl PartialEq for EditTarget
impl PartialEq for EditTarget
impl Eq for EditTarget
impl StructuralPartialEq for EditTarget
Auto Trait Implementations§
impl Freeze for EditTarget
impl RefUnwindSafe for EditTarget
impl Send for EditTarget
impl Sync for EditTarget
impl Unpin for EditTarget
impl UnwindSafe for EditTarget
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