#[non_exhaustive]pub enum SelectionSplitStyle {
Anchor,
Lines,
Regex(MatchAction),
}Expand description
Different ways to split existing selections into new ones.
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.
Anchor
Split a selection into two TargetShape::CharWise selections, one at the current cursor position, and the other at the anchor.
§Example: Using action!
use editor_types::prelude::*;
use editor_types::{action, Action, SelectionAction};
let style = SelectionSplitStyle::Anchor;
let split: Action = action!("selection split -s anchor");
assert_eq!(split, SelectionAction::Split(style, TargetShapeFilter::ALL).into());Lines
Split a selection at each line boundary it contains.
§Example: Using action!
use editor_types::prelude::*;
use editor_types::{action, Action, SelectionAction};
let style = SelectionSplitStyle::Lines;
let split: Action = action!("selection split -s lines");
assert_eq!(split, SelectionAction::Split(style, TargetShapeFilter::ALL).into());Regex(MatchAction)
Split a selection into TargetShape::CharWise parts based on the regular expression stored in the register for CommandType::Search.
§Example: Using action!
use editor_types::prelude::*;
use editor_types::{action, Action, SelectionAction};
let style = SelectionSplitStyle::Regex(MatchAction::Keep);
let split: Action = action!("selection split -s (regex keep)");
assert_eq!(split, SelectionAction::Split(style, TargetShapeFilter::ALL).into());
let style = SelectionSplitStyle::Regex(MatchAction::Drop);
let split: Action = action!("selection split -s (regex drop)");
assert_eq!(split, SelectionAction::Split(style, TargetShapeFilter::ALL).into());Trait Implementations§
Source§impl Clone for SelectionSplitStyle
impl Clone for SelectionSplitStyle
Source§fn clone(&self) -> SelectionSplitStyle
fn clone(&self) -> SelectionSplitStyle
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 SelectionSplitStyle
impl Debug for SelectionSplitStyle
Source§impl PartialEq for SelectionSplitStyle
impl PartialEq for SelectionSplitStyle
impl Copy for SelectionSplitStyle
impl Eq for SelectionSplitStyle
impl StructuralPartialEq for SelectionSplitStyle
Auto Trait Implementations§
impl Freeze for SelectionSplitStyle
impl RefUnwindSafe for SelectionSplitStyle
impl Send for SelectionSplitStyle
impl Sync for SelectionSplitStyle
impl Unpin for SelectionSplitStyle
impl UnwindSafe for SelectionSplitStyle
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