summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/uitext.ml6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/uitext.ml b/src/uitext.ml
index 8dcd1b0..be5e8bb 100644
--- a/src/uitext.ml
+++ b/src/uitext.ml
@@ -329,6 +329,10 @@ let interact prilist rilist =
repeat()
end else
next()));
+ (["n"],
+ ("next"),
+ (fun () -> newLine();
+ next()));
(["I"],
("ignore this path permanently"),
(fun () -> newLine();
@@ -379,7 +383,7 @@ let interact prilist rilist =
("go back to previous item"),
(fun () -> newLine();
previous prev ril));
- (["s";"n"],
+ (["s"],
("stop the selection"),
(fun () -> newLine();
(ConfirmBeforeProceeding, Safelist.rev_append prev ril)));