diff hgext3rd/topic/stack.py @ 1957:ea5553e47027

stack: change the ascii symbold for base Now that the children line go upward, '_' is no longer clear as is take the lower part of the line. We go for '^' that use the upper part.
author Pierre-Yves David <pierre-yves.david@fb.com>
date Fri, 01 Apr 2016 16:58:52 -0700
parents d8f1e432b16a
children d9c7fced94fc
line wrap: on
line diff
--- a/hgext3rd/topic/stack.py	Fri Apr 01 16:57:11 2016 -0700
+++ b/hgext3rd/topic/stack.py	Fri Apr 01 16:58:52 2016 -0700
@@ -35,7 +35,7 @@
     # super crude initial version
     for idx, ctx in entries[::-1]:
         if idx is None:
-            symbol = '_'
+            symbol = '^'
             state = 'base'
         elif repo.revs('%d and parents()', ctx.rev()):
             symbol = '@'