comparison .hgrc @ 472:79110d94a0c2

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.
author Augie Fackler <raf@durin42.com>
date Fri, 01 Feb 2019 14:08:50 -0500
parents c6639657b6f3
children e71b87fa8ea1
comparison
equal deleted inserted replaced
471:6eb4b38fa1ce 472:79110d94a0c2
91 91
92 [templatealias] 92 [templatealias]
93 sl_branch = '{ifeq(branch,"default","","{label(black_background, branch)} ")}' 93 sl_branch = '{ifeq(branch,"default","","{label(black_background, branch)} ")}'
94 sl_node = '{label("log.changeset changeset.{phase}", shortest(node))}{if(ellipsis, "...")}' 94 sl_node = '{label("log.changeset changeset.{phase}", shortest(node))}{if(ellipsis, "...")}'
95 sl_user = '{label("grep.user", author|user)}' 95 sl_user = '{label("grep.user", author|user)}'
96 sl_tags = '{label("tags.normal", if(tags," {tags}"))} {label("tags.normal", if(remotenames, " {remotenames}"))}' 96 sl_tags = '{label("tags.normal", if(tags," {tags}"))} {label("tags.normal", "{remotenames % sl_remotename}")}'
97 sl_remotename = '{if(startswith("/", remotename), "", " {remotename}")}'
97 sl_book = '{label("sl.book", if(bookmarks," {bookmarks}"))}' 98 sl_book = '{label("sl.book", if(bookmarks," {bookmarks}"))}'
98 sl_topic = '{label("sl.topic", if(topics," {topics}"))}' 99 sl_topic = '{label("sl.topic", if(topics," {topics}"))}'
99 sl_desc = '{label(ifcontains(rev, revset('.'), 'desc.here'),desc|firstline)}' 100 sl_desc = '{label(ifcontains(rev, revset('.'), 'desc.here'),desc|firstline)}'
100 101
101 [templates] 102 [templates]