diff options
author | Ivan Tham | 2021-12-12 13:09:01 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-12-27 01:13:18 +0000 |
commit | c7a59e24e6e1609dd65e5ee66fef52f76aabe9b7 (patch) | |
tree | c555c918afdd692e32450373e9fcf833feac96f2 /helix-term/src | |
parent | a306a1052a51c686b24a6f339190878b8029a894 (diff) |
Switch macro Q and q
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/keymap.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index 257d5f29..917a0990 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -593,8 +593,8 @@ impl Default for Keymaps { // paste_all "P" => paste_before, - "q" => record_macro, - "Q" => play_macro, + "Q" => record_macro, + "q" => play_macro, ">" => indent, "<" => unindent, |