feat: allow reverse repeat for expand / shrink selection

This commit is contained in:
Will Bush 2025-02-21 21:53:05 -06:00
parent c29f1ee1ad
commit 46465f1440

View file

@ -5311,7 +5311,28 @@ fn reverse_selection_contents(cx: &mut Context) {
// tree sitter node selection
fn expand_selection(cx: &mut Context) {
let motion = |editor: &mut Editor, _mode: MotionMode, _move_override: Option<Movement>| {
selection_motion(cx, Direction::Forward);
}
fn shrink_selection(cx: &mut Context) {
selection_motion(cx, Direction::Backward);
}
fn selection_motion(cx: &mut Context, direction: Direction) {
let motion = move |editor: &mut Editor, mode: MotionMode, _move_override: Option<Movement>| {
let direction = match mode {
MotionMode::Normal => direction,
MotionMode::Reverse => direction.reverse(),
};
match direction {
Direction::Forward => expand_selection_impl(editor),
Direction::Backward => shrink_selection_impl(editor),
}
};
cx.editor.apply_motion(motion);
}
fn expand_selection_impl(editor: &mut Editor) {
let (view, doc) = current!(editor);
if let Some(syntax) = doc.syntax() {
@ -5328,15 +5349,11 @@ fn expand_selection(cx: &mut Context) {
doc.set_selection(view.id, selection);
}
}
};
cx.editor.apply_motion(motion);
}
fn shrink_selection(cx: &mut Context) {
let motion = |editor: &mut Editor, _mode: MotionMode, _move_override: Option<Movement>| {
fn shrink_selection_impl(editor: &mut Editor) {
let (view, doc) = current!(editor);
let current_selection = doc.selection(view.id);
// try to restore previous selection
if let Some(prev_selection) = view.object_selections.pop() {
if current_selection.contains(&prev_selection) {
doc.set_selection(view.id, prev_selection);
@ -5346,14 +5363,13 @@ fn shrink_selection(cx: &mut Context) {
view.object_selections.clear();
}
}
// try to restore previous selection
// if not previous selection, shrink to first child
if let Some(syntax) = doc.syntax() {
let text = doc.text().slice(..);
let selection = object::shrink_selection(syntax, text, current_selection.clone());
doc.set_selection(view.id, selection);
}
};
cx.editor.apply_motion(motion);
}
fn select_sibling_impl(cx: &mut Context, direction: Direction) {