diff --git a/vit/config/config.sample.ini b/vit/config/config.sample.ini index fdd23f2..c426672 100644 --- a/vit/config/config.sample.ini +++ b/vit/config/config.sample.ini @@ -141,6 +141,8 @@ #uda.label = #uda.priority.label = (PR) #uda.[uda_name].label = +#until.label = (U) +#waiting.label = (W) [color] diff --git a/vit/formatter/markers.py b/vit/formatter/markers.py index 8c500ca..cc72a04 100644 --- a/vit/formatter/markers.py +++ b/vit/formatter/markers.py @@ -92,7 +92,7 @@ def format_blocking(self, width, text_markup): return self.add_label(color, label, width, text_markup) def format_status(self, width, text_markup, status): - if status == 'completed' or status == 'deleted': + if status == 'completed' or status == 'deleted' or status == 'waiting': color = self.colorizer.status(status) label = self.labels['%s.label' % status] return self.add_label(color, label, width, text_markup) diff --git a/vit/markers.py b/vit/markers.py index b493e32..dba7f1f 100644 --- a/vit/markers.py +++ b/vit/markers.py @@ -31,6 +31,7 @@ 'uda.label': '', 'uda.priority.label': '(PR)', 'until.label': '(U)', + 'waiting.label': '(W)', } class Markers(object):