On Sun, Nov 14, 2010 at 02:57:52PM +0800, Yue Wu wrote:
As the title, I want to, say, highlight all messages with the subject
"vim" in folder "ml-r" in color red, how to define such a color?
You can use the color command:
color { header | body } foreground background regexp
The regexp can be (almost) any mutt search pattern. For you example above,
you'd use something like this:
folder-hook . uncolor color header brightblue default "~s vim"
folder-hook ml-r color header brightblue default "~s vim"
http://www.mutt.org/doc/devel/manual.html#color
me