summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFrank LENORMAND <lenormf@gmail.com>2018-09-29 20:41:41 +0300
committerFrank LENORMAND <lenormf@gmail.com>2018-09-30 19:45:20 +0300
commit6b7200e4d5c04cfb6d6f5740e3e95f5baad6d7f1 (patch)
treead122130d8e25ae443c555f8987afba7a7c57422 /src
parent93f913705abafbd7341e4fdd897bef5f6ef4c0dd (diff)
src: Move <a-m> to <a-_>
Diffstat (limited to 'src')
-rw-r--r--src/normal.cc2
1 files changed, 1 insertions, 1 deletions
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, 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>>>} },