summaryrefslogtreecommitdiff
path: root/ted.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 /ted.h
parente8b7d01ff68fed675d1397f4556f159f0c32246d (diff)
better syntax highlighting (split keywords into keywords + builtins)
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ted.h b/ted.h
index 97a8c64..6664e78 100644
--- a/ted.h
+++ b/ted.h
@@ -46,11 +46,12 @@ static LanguageName const language_names[] = {
ENUM_U8 {
SYNTAX_NORMAL,
SYNTAX_KEYWORD,
+ SYNTAX_BUILTIN,
SYNTAX_COMMENT,
SYNTAX_PREPROCESSOR,
SYNTAX_STRING,
SYNTAX_CHARACTER,
- SYNTAX_CONSTANT
+ SYNTAX_CONSTANT,
} ENUM_U8_END(SyntaxCharType);
typedef struct {