#[non_exhaustive]pub enum RangeType {
Word(WordStyle),
Buffer,
Paragraph,
Sentence,
Line,
Bracketed(char, char),
Item,
Quote(char),
XmlTag,
}Expand description
Specify a range within the text around the current cursor position.
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.
Word(WordStyle)
Select from the beginning to the end of a word.
Buffer
Select the whole buffer.
Paragraph
Select the current paragraph the cursor is in.
Sentence
Select the current sentence the cursor is in.
Line
Select the current line the cursor is on.
Bracketed(char, char)
Select the current block specified by the start and end characters.
When done inclusively, the delimiters are included.
Item
Select the range enclosed by the next item character.
This is the ranged version of MoveType::ItemMatch.
Quote(char)
Select text quoted by char around the cursor.
When done inclusively, the quote characters are included.
XmlTag
Select the XML block around the cursor.
When done inclusively, the opening and closing tags are included.
Trait Implementations§
Source§impl From<RangeType> for EditTarget
impl From<RangeType> for EditTarget
impl Eq for RangeType
impl StructuralPartialEq for RangeType
Auto Trait Implementations§
impl Freeze for RangeType
impl RefUnwindSafe for RangeType
impl Send for RangeType
impl Sync for RangeType
impl Unpin for RangeType
impl UnwindSafe for RangeType
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