diff --git a/src/main.cc b/src/main.cc index af072638..b7693244 100644 --- a/src/main.cc +++ b/src/main.cc @@ -533,7 +533,8 @@ std::unordered_map> keymap { 'W', [](Window& window, int count) { do { window.select(select_to_next_word, true); } while(--count > 0); } }, { 'E', [](Window& window, int count) { do { window.select(select_to_next_word_end, true); } while(--count > 0); } }, { 'B', [](Window& window, int count) { do { window.select(select_to_previous_word, true); } while(--count > 0); } }, - { '.', [](Window& window, int count) { do { window.select(select_line); } while(--count > 0); } }, + { 'x', [](Window& window, int count) { do { window.select(select_line); } while(--count > 0); } }, + { 'X', [](Window& window, int count) { do { window.select(select_line, true); } while(--count > 0); } }, { 'm', [](Window& window, int count) { window.select(select_matching); } }, { 'M', [](Window& window, int count) { window.select(select_matching, true); } }, { '/', [](Window& window, int count) { do_search(window); } },