mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
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:
parent
ebdab86ce6
commit
e882a750ea
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue