# HG changeset patch # User Augie Fackler # Date 1549048130 18000 # Node ID 79110d94a0c21576135b9e22504d7794e555bfe8 # Parent 6eb4b38fa1ce44eb3a3c29a64e032b891c2285d0 hg: filter out display of remotenames that start with "/" I may want to filter out anything that contains a "/" since that'd be a URL instead of a path shortcut, but I'll do that later if it becomes obviously the right choice. diff --git a/.hgrc b/.hgrc --- a/.hgrc +++ b/.hgrc @@ -93,7 +93,8 @@ sl. = log -Gr 'smart and ::.' -Tsl sl_branch = '{ifeq(branch,"default","","{label(black_background, branch)} ")}' sl_node = '{label("log.changeset changeset.{phase}", shortest(node))}{if(ellipsis, "...")}' sl_user = '{label("grep.user", author|user)}' -sl_tags = '{label("tags.normal", if(tags," {tags}"))} {label("tags.normal", if(remotenames, " {remotenames}"))}' +sl_tags = '{label("tags.normal", if(tags," {tags}"))} {label("tags.normal", "{remotenames % sl_remotename}")}' +sl_remotename = '{if(startswith("/", remotename), "", " {remotename}")}' sl_book = '{label("sl.book", if(bookmarks," {bookmarks}"))}' sl_topic = '{label("sl.topic", if(topics," {topics}"))}' sl_desc = '{label(ifcontains(rev, revset('.'), 'desc.here'),desc|firstline)}'