diff options
author | Ivan Tham | 2021-12-12 13:51:57 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-12-27 01:13:18 +0000 |
commit | 9a32617b3093ce6ab3b925d9f1c6b17218c1b491 (patch) | |
tree | a683223a7c7887c4e7484fc0a518ba30f15cc542 /helix-term/src/keymap.rs | |
parent | 5326a051176d30060e60a8c8d6e718c9ca8a32d7 (diff) |
Rename play macro to replay macro
Macro needs to be defined first before playing so replay is more accurate.
Also, replay have the same length as record which makes it looks nice.
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r-- | helix-term/src/keymap.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index 917a0990..08c8032b 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -594,7 +594,7 @@ impl Default for Keymaps { "P" => paste_before, "Q" => record_macro, - "q" => play_macro, + "q" => replay_macro, ">" => indent, "<" => unindent, |