diff options
Diffstat (limited to 'colors.h')
-rw-r--r-- | colors.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -31,6 +31,9 @@ ENUM_U16 { COLOR_CHARACTER, COLOR_CONSTANT, + COLOR_LINE_NUMBERS, + COLOR_LINE_NUMBERS_SEPARATOR, + COLOR_COUNT } ENUM_U16_END(ColorSetting); @@ -67,7 +70,9 @@ static ColorName const color_names[COLOR_COUNT] = { {COLOR_CONSTANT, "constant"}, {COLOR_YES, "yes"}, {COLOR_NO, "no"}, - {COLOR_CANCEL, "cancel"} + {COLOR_CANCEL, "cancel"}, + {COLOR_LINE_NUMBERS, "line-numbers"}, + {COLOR_LINE_NUMBERS_SEPARATOR, "line-numbers-separator"}, }; static ColorSetting color_setting_from_str(char const *str) { |