summaryrefslogtreecommitdiff
path: root/colors.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-02-03 18:48:26 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-02-03 18:48:52 -0500
commit5a207b62cebb4673eb3422001e8d9435fca9f545 (patch)
tree802a86a4ea6ea05f036e293a3c2eba607457f644 /colors.h
parentb72ce9a3fdfe956f566c8bdde1fceebe7601c59f (diff)
line numbering!
Diffstat (limited to 'colors.h')
-rw-r--r--colors.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/colors.h b/colors.h
index 28f9951..374d652 100644
--- a/colors.h
+++ b/colors.h
@@ -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) {