summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-12-28 18:10:34 -0500
committerpommicket <pommicket@gmail.com>2022-12-28 18:10:34 -0500
commit92c2f6c5db7606515948b233470181c119f7e308 (patch)
treee77c345cdfcc2e398d9395ec0fe262ce133d42b7 /ted.h
parent8ef7a72c55e66c097c0130ab17e2062ef75e4723 (diff)
GLSL syntax highlighting
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ted.h b/ted.h
index ecc5fda..53d9697 100644
--- a/ted.h
+++ b/ted.h
@@ -82,6 +82,7 @@ typedef enum {
LANG_TYPESCRIPT = 13,
LANG_JSON = 14,
LANG_XML = 15,
+ LANG_GLSL = 16,
LANG_COUNT
} Language;
@@ -107,6 +108,7 @@ static LanguageName const language_names[] = {
{LANG_TYPESCRIPT, "TypeScript"},
{LANG_JSON, "JSON"},
{LANG_XML, "XML"},
+ {LANG_GLSL, "GLSL"},
};
static_assert_if_possible(arr_count(language_names) == LANG_COUNT)