[PATCH] update: label bookmark name in message
Pierre-Yves David
pierre-yves.david at ens-lyon.org
Wed Sep 7 10:54:59 UTC 2016
# HG changeset patch
# User Pierre-Yves David <pierre-yves.david at ens-lyon.org>
# Date 1471869854 -7200
# Mon Aug 22 14:44:14 2016 +0200
# Node ID 6c5f481a3d333b46c80646955cbc6838eaa57846
# Parent 4d6372307f4832b0f4aad5714d5610d35bcfa022
# EXP-Topic bookmark.label
update: label bookmark name in message
We label bookmark name as such in various messages. This will help them to
standout (or at least give the user the option to make them stand out). We use a
distinct label for the 'active' bookmark, this can help users to catch bookmark
operation affecting their working copy.
diff --git a/mercurial/hg.py b/mercurial/hg.py
--- a/mercurial/hg.py
+++ b/mercurial/hg.py
@@ -738,20 +738,22 @@ def updatetotally(ui, repo, checkout, br
if movemarkfrom == repo['.'].node():
pass # no-op update
elif bookmarks.update(repo, [movemarkfrom], repo['.'].node()):
- ui.status(_("updating bookmark %s\n") % repo._activebookmark)
+ b = ui.label(repo._activebookmark, 'bookmarks.active')
+ ui.status(_("updating bookmark %s\n") % b)
else:
# this can happen with a non-linear update
- ui.status(_("(leaving bookmark %s)\n") %
- repo._activebookmark)
+ b = ui.label(repo._activebookmark, 'bookmarks')
+ ui.status(_("(leaving bookmark %s)\n") % b)
bookmarks.deactivate(repo)
elif brev in repo._bookmarks:
if brev != repo._activebookmark:
- ui.status(_("(activating bookmark %s)\n") % brev)
+ b = ui.label(brev, 'bookmarks.active')
+ ui.status(_("(activating bookmark %s)\n") % b)
bookmarks.activate(repo, brev)
elif brev:
if repo._activebookmark:
- ui.status(_("(leaving bookmark %s)\n") %
- repo._activebookmark)
+ b = ui.label(repo._activebookmark, 'bookmarks')
+ ui.status(_("(leaving bookmark %s)\n") % b)
bookmarks.deactivate(repo)
if warndest:
More information about the Mercurial-devel
mailing list