Skip to content

Commit

Permalink
Update macro display as [q] in message
Browse files Browse the repository at this point in the history
  • Loading branch information
pickfire authored and archseer committed Dec 27, 2021
1 parent b9cb393 commit ee3eb40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helix-term/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
}

Expand Down

0 comments on commit ee3eb40

Please sign in to comment.