diff hgext/color.py @ 19214:0250047a365e

summary: indicate if a rebase is underway
author Bryan O'Sullivan <bryano@fb.com>
date Tue, 14 May 2013 11:23:17 -0700
parents d78d0256198e
children f184fe1e2ac5
line wrap: on
line diff
--- a/hgext/color.py	Tue May 14 11:23:17 2013 -0700
+++ b/hgext/color.py	Tue May 14 11:23:17 2013 -0700
@@ -60,6 +60,9 @@
   tags.normal = green
   tags.local = black bold
 
+  rebase.rebased = blue
+  rebase.remaining = red bold
+
 The available effects in terminfo mode are 'blink', 'bold', 'dim',
 'inverse', 'invisible', 'italic', 'standout', and 'underline'; in
 ECMA-48 mode, the options are 'bold', 'inverse', 'italic', and
@@ -250,6 +253,8 @@
            'diffstat.inserted': 'green',
            'ui.prompt': 'yellow',
            'log.changeset': 'yellow',
+           'rebase.rebased': 'blue',
+           'rebase.remaining': 'red bold',
            'resolve.resolved': 'green bold',
            'resolve.unresolved': 'red bold',
            'status.added': 'green bold',