diff options
author | pommicket <pommicket@gmail.com> | 2023-03-21 14:41:31 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-03-21 14:41:31 -0400 |
commit | 3e4c6c976ce17324bc689c39790740f1e6761f36 (patch) | |
tree | f29b6ac21c0a6ddd2e7887ca84b2a11a5811ecb9 /syntax.c | |
parent | 600721070f2970b3386393ca93cb8dc53aedc240 (diff) |
fix GLSL syntax highlighting (oops)
Diffstat (limited to 'syntax.c')
-rw-r--r-- | syntax.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1937,6 +1937,9 @@ void syntax_highlight(SyntaxState *state, Language lang, const char32_t *line, u static void syntax_highlight_c(SyntaxState *state, const char32_t *line, u32 line_len, SyntaxCharType *char_types) { syntax_highlight_c_cpp(state, line, line_len, char_types, LANG_C); } +static void syntax_highlight_glsl(SyntaxState *state, const char32_t *line, u32 line_len, SyntaxCharType *char_types) { + syntax_highlight_c_cpp(state, line, line_len, char_types, LANG_GLSL); +} static void syntax_highlight_cpp(SyntaxState *state, const char32_t *line, u32 line_len, SyntaxCharType *char_types) { syntax_highlight_c_cpp(state, line, line_len, char_types, LANG_CPP); } @@ -2066,7 +2069,7 @@ void syntax_register_builtin_languages(void) { .name = "GLSL", // not specified as of LSP 3.17, but this seems like the natural choice .lsp_identifier = "glsl", - .highlighter = syntax_highlight_html, + .highlighter = syntax_highlight_glsl, }, { .id = LANG_CSS, |