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 `"<esc>` now clears the infobox where
before it was left hanging.
This commit is contained in:
Michael Davis 2025-02-02 20:44:43 -05:00
parent ebdab86ce6
commit e882a750ea
No known key found for this signature in database

View file

@ -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,