"normal" should appear in set_color --print-colors

This commit is contained in:
Kurtis Rader 2015-12-07 18:41:17 -08:00 committed by ridiculousfish
parent dfaefb97ff
commit 7322c9c591

View file

@ -193,6 +193,12 @@ wcstring_list_t rgb_color_t::named_color_names(void)
{
result.push_back(named_colors[i].name);
}
// "normal" isn't really a color and does not have a color palette index or
// RGB value. Therefore, it does not appear in the named_colors table.
// However, it is a legitimate color name for the "set_color" command so
// include it in the publicly known list of colors. This is primarily so it
// appears in the output of "set_color --print-colors".
result.push_back(L"normal");
return result;
}