Switch macro Q and q

imgbot
Ivan Tham 3 years ago committed by Blaž Hrastnik
parent a306a1052a
commit c7a59e24e6

@ -77,8 +77,8 @@
| `Alt-c` | Change selection (delete and enter insert mode, without yanking) | `change_selection_noyank` |
| `Ctrl-a` | Increment object (number) under cursor | `increment` |
| `Ctrl-x` | Decrement object (number) under cursor | `decrement` |
| `q` | Start/stop macro recording to the selected register | `record_macro` |
| `Q` | Play back a recorded macro from the selected register | `play_macro` |
| `Q` | Start/stop macro recording to the selected register | `record_macro` |
| `q` | Play back a recorded macro from the selected register | `play_macro` |
#### Shell

@ -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,

Loading…
Cancel
Save