From 7322c9c5916f2332286e935dbb506d5025b70636 Mon Sep 17 00:00:00 2001 From: Kurtis Rader Date: Mon, 7 Dec 2015 18:41:17 -0800 Subject: [PATCH] "normal" should appear in set_color --print-colors --- src/color.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/color.cpp b/src/color.cpp index a194550bd..098aa5cd7 100644 --- a/src/color.cpp +++ b/src/color.cpp @@ -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; }