mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-07 04:47:45 +03:00
fixed repeat_last_motion extends selection (#7159)
This commit is contained in:
parent
3a8592abdb
commit
3334e7e4b2
1 changed files with 1 additions and 1 deletions
|
@ -1266,7 +1266,7 @@ where
|
||||||
|
|
||||||
find_char_impl(cx.editor, &search_fn, inclusive, extend, ch, count);
|
find_char_impl(cx.editor, &search_fn, inclusive, extend, ch, count);
|
||||||
cx.editor.last_motion = Some(Motion(Box::new(move |editor: &mut Editor| {
|
cx.editor.last_motion = Some(Motion(Box::new(move |editor: &mut Editor| {
|
||||||
find_char_impl(editor, &search_fn, inclusive, true, ch, 1);
|
find_char_impl(editor, &search_fn, inclusive, extend, ch, 1);
|
||||||
})));
|
})));
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue