hgext3rd/evolve/cmdrewrite.py
changeset 4294 8974a05a49fa
parent 4293 d4902d48d095
child 4298 a98fa6c0d4f3
--- a/hgext3rd/evolve/cmdrewrite.py	Tue Feb 20 09:35:16 2018 +0100
+++ b/hgext3rd/evolve/cmdrewrite.py	Wed Dec 12 17:22:58 2018 +0100
@@ -1205,8 +1205,8 @@
             if haschanges():
                 nextaction = None
                 while nextaction is None:
-                    nextaction = ui.prompt('Done splitting? [yNdq?]', default='n')
-                    if nextaction == 'y':
+                    nextaction = ui.prompt('continue splitting? [Ycdq?]', default='y')
+                    if nextaction == 'c':
                         commands.commit(ui, repo, **opts)
                         newcommits.append(repo['.'])
                         break
@@ -1223,8 +1223,8 @@
                                        (target, node.nullid), all=True)
                     elif nextaction == '?':
                         nextaction = None
-                        ui.write(_("y - yes, commit all remaining changes\n"))
-                        ui.write(_("n - no, continue selection\n"))
+                        ui.write(_("y - yes, continue selection\n"))
+                        ui.write(_("c - commit, select all remaining changes\n"))
                         ui.write(_("d - discard, discard remaining changes\n"))
                         ui.write(_("q - quit, abort the split\n"))
                         ui.write(_("? - ?, display help\n"))