diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/uitext.ml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/uitext.ml b/src/uitext.ml index f542afe..e6b1c2f 100644 --- a/src/uitext.ml +++ b/src/uitext.ml @@ -665,6 +665,14 @@ let rec interactAndPropagateChanges prevItemList reconItemList Prefs.set Uicommon.auto false; newLine(); interactAndPropagateChanges [] newReconItemList)); + (["p";"b"], + "go back to the last item of the selection", + (fun () -> + Prefs.set Uicommon.auto false; + newLine(); + match Safelist.rev newReconItemList with + [] -> interactAndPropagateChanges [] [] + | lastri::prev -> interactAndPropagateChanges prev [lastri])); (["q"], ("exit " ^ Uutil.myName ^ " without propagating any changes"), fun () -> raise Sys.Break) |