diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-01 12:33:27 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-01 12:33:27 -0500 |
commit | 11b50663dc489b7ec8cb1c8774d9bda2c7acac3b (patch) | |
tree | aa604b767286c86b21b6fef851f0c74e8dfc0acb /colors.h | |
parent | dba51f5c1b7ac895239d2909358b323a92b77644 (diff) |
full C syntax highlighting
Diffstat (limited to 'colors.h')
-rw-r--r-- | colors.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,7 +28,7 @@ ENUM_U16 { COLOR_PREPROCESSOR, COLOR_STRING, COLOR_CHARACTER, - COLOR_NUMBER, + COLOR_CONSTANT, COLOR_COUNT } ENUM_U16_END(ColorSetting); @@ -62,7 +62,7 @@ static ColorName const color_names[COLOR_COUNT] = { {COLOR_PREPROCESSOR, "preprocessor"}, {COLOR_STRING, "string"}, {COLOR_CHARACTER, "character"}, - {COLOR_NUMBER, "number"}, + {COLOR_CONSTANT, "constant"}, {COLOR_YES, "yes"}, {COLOR_NO, "no"}, {COLOR_CANCEL, "cancel"} |