mutt stable branch with some hacks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Change sidebar_spoolfile coloring to be lower precedence.

Give sidebar_new and sidebar_flagged higher precedence than
sidebar_spoolfile, so that new and flagged message colors will show up
for the spoolfile in the sidebar.

Thanks to Till Smejkal for the original patch.

+3 -3
+3 -3
sidebar.c
··· 567 567 } 568 568 else if (entryidx == HilIndex) 569 569 SETCOLOR(MT_COLOR_HIGHLIGHT); 570 - else if ((ColorDefs[MT_COLOR_SB_SPOOLFILE] != 0) && 571 - (mutt_strcmp (b->path, Spoolfile) == 0)) 572 - SETCOLOR(MT_COLOR_SB_SPOOLFILE); 573 570 else if ((b->msg_unread > 0) || (b->new)) 574 571 SETCOLOR(MT_COLOR_NEW); 575 572 else if (b->msg_flagged > 0) 576 573 SETCOLOR(MT_COLOR_FLAGGED); 574 + else if ((ColorDefs[MT_COLOR_SB_SPOOLFILE] != 0) && 575 + (mutt_strcmp (b->path, Spoolfile) == 0)) 576 + SETCOLOR(MT_COLOR_SB_SPOOLFILE); 577 577 else 578 578 SETCOLOR(MT_COLOR_NORMAL); 579 579