mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-21 11:31:15 -03:00
"normal" should appear in set_color --print-colors
This commit is contained in:
committed by
ridiculousfish
parent
dfaefb97ff
commit
7322c9c591
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user