summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorG.raud <graud@gmx.com>2018-02-02 14:18:45 +0100
committerG.raud <graud@gmx.com>2018-02-02 20:10:01 +0100
commit03a2c202f1176be9ed15890b6aa38100fcdcefc6 (patch)
treec87696c47eefa12626fd447982c8cddff64f33a1 /src
parent44aa421b038911e16902a48206b578e9ab5bf5d3 (diff)
downloadunison-03a2c202f1176be9ed15890b6aa38100fcdcefc6.zip
unison-03a2c202f1176be9ed15890b6aa38100fcdcefc6.tar.gz
unison-03a2c202f1176be9ed15890b6aa38100fcdcefc6.tar.bz2
Uitext: new action "next"
Remove the shortcut "n" from the "stop" action.
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)));