aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorIvan Tham2021-12-12 14:05:11 +0000
committerBlaž Hrastnik2021-12-27 01:13:18 +0000
commitee3eb4057a1c8a0c979371674451105ac5453b58 (patch)
tree7c95d81d927407d442ed222434c98fdd39112f30 /helix-term
parentb9cb3930e2838347a97f501e025ee52ea377ed52 (diff)
Update macro display as [q] in message
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/commands.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index d0a94160..fdc242fe 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -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));
}
}