diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-03 18:48:26 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-03 18:48:52 -0500 |
commit | 5a207b62cebb4673eb3422001e8d9435fca9f545 (patch) | |
tree | 802a86a4ea6ea05f036e293a3c2eba607457f644 /colors.h | |
parent | b72ce9a3fdfe956f566c8bdde1fceebe7601c59f (diff) |
line numbering!
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) { |