summaryrefslogtreecommitdiff
path: root/colors.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-02-02 19:01:58 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-02-02 19:01:58 -0500
commit59960f2907f6ea8af83dc606273d304e923fb4b6 (patch)
treec917d757b5d16f160f42624ec0e6cb444e2e1011 /colors.h
parente8b7d01ff68fed675d1397f4556f159f0c32246d (diff)
better syntax highlighting (split keywords into keywords + builtins)
Diffstat (limited to 'colors.h')
-rw-r--r--colors.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/colors.h b/colors.h
index 0bb2528..e2ac2af 100644
--- a/colors.h
+++ b/colors.h
@@ -24,6 +24,7 @@ ENUM_U16 {
COLOR_CANCEL,
COLOR_KEYWORD,
+ COLOR_BUILTIN,
COLOR_COMMENT,
COLOR_PREPROCESSOR,
COLOR_STRING,
@@ -58,6 +59,7 @@ static ColorName const color_names[COLOR_COUNT] = {
{COLOR_ERROR_BORDER, "error-border"},
{COLOR_ACTIVE_TAB_HL, "active-tab-hl"},
{COLOR_KEYWORD, "keyword"},
+ {COLOR_BUILTIN, "builtin"},
{COLOR_COMMENT, "comment"},
{COLOR_PREPROCESSOR, "preprocessor"},
{COLOR_STRING, "string"},