src: Move <a-m> to <a-_>

This commit is contained in:
Frank LENORMAND 2018-09-29 20:41:41 +03:00
parent 93f913705a
commit 6b7200e4d5
2 changed files with 2 additions and 2 deletions

View File

@ -258,7 +258,7 @@ Yanking (copying) and pasting use the *"* register by default (See <<registers#,
*<a-J>*::
join selected lines and select spaces inserted in place of line breaks
*<a-m>*::
*<a-_>*::
merge contiguous selections together (works across lines as well)
*>*::

View File

@ -2185,7 +2185,7 @@ static const HashMap<Key, NormalCmd, MemoryDomain::Undefined, KeymapBackend> key
{ {';'}, {"reduce selections to their cursor", clear_selections} },
{ {alt(';')}, {"swap selections cursor and anchor", flip_selections} },
{ {alt(':')}, {"ensure selection cursor is after anchor", ensure_forward} },
{ {alt('m')}, {"merge consecutive selections", merge_consecutive} },
{ {alt('_')}, {"merge consecutive selections", merge_consecutive} },
{ {'w'}, {"select to next word start", repeated<&select<SelectMode::Replace, select_to_next_word<Word>>>} },
{ {'e'}, {"select to next word end", repeated<select<SelectMode::Replace, select_to_next_word_end<Word>>>} },