mirror of
https://github.com/ilyakooo0/helix.git
synced 2024-11-10 06:16:00 +03:00
Update macro display as [q] in message
This commit is contained in:
parent
b9cb3930e2
commit
ee3eb4057a
@ -6020,12 +6020,12 @@ fn record_macro(cx: &mut Context) {
|
||||
.join(" ");
|
||||
cx.editor.registers.get_mut(reg).write(vec![s]);
|
||||
cx.editor
|
||||
.set_status(format!("Recorded to register {}", reg));
|
||||
.set_status(format!("Recorded to register [{}]", reg));
|
||||
} else {
|
||||
let reg = cx.register.take().unwrap_or('@');
|
||||
cx.editor.macro_recording = Some((reg, Vec::new()));
|
||||
cx.editor
|
||||
.set_status(format!("Recording to register {}", reg));
|
||||
.set_status(format!("Recording to register [{}]", reg));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user