commit f3b29188f4d23a9f1143b42b69513ad8b9ba35df
parent cde2da2ef0fb8d96ea0110d271fd548c3e83c859
Author: William Morgan <wmorgan-sup@masanjin.net>
Date: Thu, 31 Dec 2009 15:02:30 -0500
Merge branch 'master' into next
Diffstat:
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/sup/colormap.rb b/lib/sup/colormap.rb
@@ -50,6 +50,7 @@ class Colormap
:system_buf => { :fg => "blue", :bg => "default" },
:regular_buf => { :fg => "white", :bg => "default" },
:modified_buffer => { :fg => "yellow", :bg => "default", :attrs => ["bold"] },
+ :date => { :fg => "white", :bg => "default"},
}
def initialize
diff --git a/lib/sup/modes/thread-index-mode.rb b/lib/sup/modes/thread-index-mode.rb
@@ -849,7 +849,7 @@ protected
[
[:tagged_color, @tags.tagged?(t) ? ">" : " "],
- [:none, sprintf("%#{@date_width}s", date)],
+ [:date_color, sprintf("%#{@date_width}s", date)],
(starred ? [:starred_color, "*"] : [:none, " "]),
] +
from +