Mercurial > public > mercurial-scm > hg-stable
diff hgext/record.py @ 10694:d7732d2df54a
record: separate each hunk with a blank line
This makes it easier for the eye to find the beginning of a hunk when
scrolling up in the terminal.
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sun, 14 Mar 2010 23:10:52 +0100 |
parents | 0aa59f532ef9 |
children | 781689b9b6bb |
line wrap: on
line diff
--- a/hgext/record.py Sun Mar 14 22:17:10 2010 +0100 +++ b/hgext/record.py Sun Mar 14 23:10:52 2010 +0100 @@ -293,6 +293,7 @@ _('&Quit, recording no changes'), _('&?')) r = ui.promptchoice("%s %s" % (query, resps), choices) + ui.write("\n") if r == 7: # ? doc = gettext(record.__doc__) c = doc.find(_('y - record this change'))