respect count for selecting next/previous match (#3056)

pull/3066/head
Bob 2 years ago committed by GitHub
parent e6a6e251c5
commit 4418924ec3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1687,6 +1687,7 @@ fn searcher(cx: &mut Context, direction: Direction) {
}
fn search_next_or_prev_impl(cx: &mut Context, movement: Movement, direction: Direction) {
let count = cx.count();
let config = cx.editor.config();
let scrolloff = config.scrolloff;
let (view, doc) = current!(cx.editor);
@ -1705,16 +1706,18 @@ fn search_next_or_prev_impl(cx: &mut Context, movement: Movement, direction: Dir
.multi_line(true)
.build()
{
search_impl(
doc,
view,
&contents,
&regex,
movement,
direction,
scrolloff,
wrap_around,
);
for _ in 0..count {
search_impl(
doc,
view,
&contents,
&regex,
movement,
direction,
scrolloff,
wrap_around,
);
}
} else {
let error = format!("Invalid regex: {}", query);
cx.editor.set_error(error);

Loading…
Cancel
Save