diff options
author | pommicket <pommicket@gmail.com> | 2022-12-28 18:10:34 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-12-28 18:10:34 -0500 |
commit | 92c2f6c5db7606515948b233470181c119f7e308 (patch) | |
tree | e77c345cdfcc2e398d9395ec0fe262ce133d42b7 /ted.h | |
parent | 8ef7a72c55e66c097c0130ab17e2062ef75e4723 (diff) |
GLSL syntax highlighting
Diffstat (limited to 'ted.h')
-rw-r--r-- | ted.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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) |