From e882a750ea6e191d032be71a4a8809ce76fe1293 Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Sun, 2 Feb 2025 20:44:43 -0500 Subject: [PATCH] commands: Eagerly clear autoinfo in select_register, insert_register This causes the infobox to disappear even when you type a non-character key like escape. For example `"` now clears the infobox where before it was left hanging. --- helix-term/src/commands.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 23d2b246d..cd296f867 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -5545,8 +5545,8 @@ fn wonly(cx: &mut Context) { fn select_register(cx: &mut Context) { cx.editor.autoinfo = Some(Info::from_registers(&cx.editor.registers)); cx.on_next_key(move |cx, event| { + cx.editor.autoinfo = None; if let Some(ch) = event.char() { - cx.editor.autoinfo = None; cx.editor.selected_register = Some(ch); } }) @@ -5555,8 +5555,8 @@ fn select_register(cx: &mut Context) { fn insert_register(cx: &mut Context) { cx.editor.autoinfo = Some(Info::from_registers(&cx.editor.registers)); cx.on_next_key(move |cx, event| { + cx.editor.autoinfo = None; if let Some(ch) = event.char() { - cx.editor.autoinfo = None; cx.register = Some(ch); paste( cx.editor,