mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
Switch macro Q and q
This commit is contained in:
parent
a306a1052a
commit
c7a59e24e6
@ -77,8 +77,8 @@ ### Changes
|
||||
| `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 @@ fn default() -> Keymaps {
|
||||
// paste_all
|
||||
"P" => paste_before,
|
||||
|
||||
"q" => record_macro,
|
||||
"Q" => play_macro,
|
||||
"Q" => record_macro,
|
||||
"q" => play_macro,
|
||||
|
||||
">" => indent,
|
||||
"<" => unindent,
|
||||
|
Loading…
Reference in New Issue
Block a user