diff --git a/README.asciidoc b/README.asciidoc index 3b595f8d..f20e30fc 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -145,7 +145,8 @@ Basic Movement * _?_: search (extend to next match) * _n_: select next match * _N_: add a new selection with next match - * _alt-n_: replace main selection with next match (preserving the others) + * _alt-n_: select previous match + * _alt-N_: add a new selection with previous match * _pageup_: scroll up * _pagedown_: scroll down diff --git a/src/normal.cc b/src/normal.cc index 6a5468b4..dd22af53 100644 --- a/src/normal.cc +++ b/src/normal.cc @@ -1319,8 +1319,9 @@ KeyMap keymap = { alt('/'), search }, { alt('?'), search }, { 'n', search_next }, - { alt('n'), search_next }, { 'N', search_next }, + { alt('n'), search_next }, + { alt('N'), search_next }, { '*', use_selection_as_search_pattern }, { alt('*'), use_selection_as_search_pattern },