From 3426285a6341702ace35817d38cefd2bb8b16437 Mon Sep 17 00:00:00 2001 From: Blaž Hrastnik Date: Wed, 8 Sep 2021 14:58:11 +0900 Subject: fix: Don't automatically search_next on * Refs #713 --- helix-term/src/commands.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'helix-term/src') diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 841af22a..a7a71576 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -1143,7 +1143,8 @@ fn search_selection(cx: &mut Context) { let query = doc.selection(view.id).primary().fragment(contents); let regex = regex::escape(&query); cx.editor.registers.get_mut('/').push(regex); - search_next(cx); + let msg = format!("register '{}' set to '{}'", '\\', query); + cx.editor.set_status(msg); } fn extend_line(cx: &mut Context) { -- cgit v1.2.3-70-g09d2