From 5d5e76a3eb02512a8c5d387d942e7d78ed28e476 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Wed, 26 Oct 2011 14:18:43 +0000 Subject: [PATCH] change select_line binding from . to x --- src/main.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } },