From 3426285a6341702ace35817d38cefd2bb8b16437 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Wed, 8 Sep 2021 14:58:11 +0900 Subject: [PATCH] fix: Don't automatically search_next on * Refs #713 --- helix-term/src/commands.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) {