diff --git a/doc/pages/keys.asciidoc b/doc/pages/keys.asciidoc index 64942837..d4b4f04d 100644 --- a/doc/pages/keys.asciidoc +++ b/doc/pages/keys.asciidoc @@ -258,7 +258,7 @@ Yanking (copying) and pasting use the *"* register by default (See <*:: join selected lines and select spaces inserted in place of line breaks -**:: +**:: merge contiguous selections together (works across lines as well) *>*:: diff --git a/src/normal.cc b/src/normal.cc index eb71ce4a..d7d88ab0 100644 --- a/src/normal.cc +++ b/src/normal.cc @@ -2185,7 +2185,7 @@ static const HashMap 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>>} }, { {'e'}, {"select to next word end", repeated>>} },