Clarify rotation direction between <'> and <a-'> in info help

This commit is contained in:
Delapouite 2017-06-07 08:53:33 +02:00
parent 73ecbdbc97
commit 86cc66577b

View File

@ -2014,8 +2014,8 @@ const HashMap<Key, NormalCmd> keymap{
{ {ctrl('o')}, {"jump backward in jump list", jump<Backward>} },
{ {ctrl('s')}, {"push current selections in jump list", push_selections} },
{ {'\''}, {"rotate main selection", rotate_selections<Forward>} },
{ {alt('\'')}, {"rotate main selection", rotate_selections<Backward>} },
{ {'\''}, {"rotate main selection forward", rotate_selections<Forward>} },
{ {alt('\'')}, {"rotate main selection backward", rotate_selections<Backward>} },
{ {alt('"')}, {"rotate selections content", rotate_selections_content} },
{ {'q'}, {"replay recorded macro", replay_macro} },