Use Q for macro recording and q for replay, document macros in README
This commit is contained in:
parent
f287df2139
commit
fe55d51e9f
|
@ -272,6 +272,17 @@ selection.
|
||||||
Registers are lists, instead of simply text in order to interact well with
|
Registers are lists, instead of simply text in order to interact well with
|
||||||
multiselection. Each selection have it's own captures, or yank buffer.
|
multiselection. Each selection have it's own captures, or yank buffer.
|
||||||
|
|
||||||
|
Macros
|
||||||
|
------
|
||||||
|
|
||||||
|
Kakoune can record and replay a sequence of key press.
|
||||||
|
|
||||||
|
When pressing the _Q_ key, followed by an alphabetic key for the macro name,
|
||||||
|
Kakoune begins macro recording: every pressed keys will be added to the
|
||||||
|
macro until the _Q_ key is pressed again.
|
||||||
|
|
||||||
|
To replay a macro, use the _q_ key, followed by the macro name.
|
||||||
|
|
||||||
Search selection
|
Search selection
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
|
|
@ -1040,8 +1040,8 @@ KeyMap keymap =
|
||||||
{ alt('r'), rotate_selections },
|
{ alt('r'), rotate_selections },
|
||||||
{ alt('R'), rotate_selections_content },
|
{ alt('R'), rotate_selections_content },
|
||||||
|
|
||||||
{ 'q', start_or_end_macro_recording },
|
{ 'q', replay_macro },
|
||||||
{ 'Q', replay_macro },
|
{ 'Q', start_or_end_macro_recording },
|
||||||
|
|
||||||
{ '`', for_each_char<to_lower> },
|
{ '`', for_each_char<to_lower> },
|
||||||
{ '~', for_each_char<to_upper> },
|
{ '~', for_each_char<to_upper> },
|
||||||
|
|
Loading…
Reference in New Issue
Block a user