From 07db33653908d7145bd15c102d1c752ff153cad5 Mon Sep 17 00:00:00 2001 From: Hagen Fuchs Date: Mon, 30 Apr 2012 18:27:35 +0200 Subject: [PATCH] Search the next match using the 'n' key as a synonym for '\\'. See http://sourceforge.net/mailarchive/message.php?msg_id=26773453 Signed-off-by: Roger --- ui.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ui.c b/ui.c index 9ef3ee6..170583e 100644 --- a/ui.c +++ b/ui.c @@ -608,6 +608,7 @@ get_commands() case 'F': sort_by_field(NULL); break; case '/': ui_find(0); break; + case 'n': case '\\': ui_find(1); break; case ' ': if(list_get_curitem() >= 0) { -- 2.39.2