# HG changeset patch # User Augie Fackler # Date 2011-04-13 18:06:35 # Node ID 3d83c7d70a98a1fd4ff1ad4f840c8ce82100bfdb # Parent 34f577007ffe1743b81798bdfa4221932e3f8a23 compact style: show bookmarks in the same manner as tags diff --git a/mercurial/templates/map-cmdline.compact b/mercurial/templates/map-cmdline.compact --- a/mercurial/templates/map-cmdline.compact +++ b/mercurial/templates/map-cmdline.compact @@ -1,4 +1,4 @@ -changeset = '{rev}{tags}{parents} {node|short} {date|isodate} {author|user}\n {desc|firstline|strip}\n\n' +changeset = '{rev}{tags}{bookmarks}{parents} {node|short} {date|isodate} {author|user}\n {desc|firstline|strip}\n\n' changeset_quiet = '{rev}:{node|short}\n' changeset_verbose = '{rev}{tags}{parents} {node|short} {date|isodate} {author}\n {desc|strip}\n\n' start_tags = '[' @@ -7,3 +7,6 @@ last_tag = '{tag}]' start_parents = ':' parent = '{rev},' last_parent = '{rev}' +start_bookmarks = '[' +bookmark = '{bookmark},' +last_bookmark = '{bookmark}]'