syntax init modified appropriately for new groups

This commit is contained in:
anon 2023-08-28 15:41:09 +02:00
parent 7e432b4b63
commit 6aa4c0035c

View File

@ -12,6 +12,10 @@ const char * preprocessor_keywords[] = {
NULL
};
new_char_tokens("&|()[]{}*,", symbol_hl);
new_keyword_tokens(c_keywords, keyword_hl);
new_keyword_tokens(preprocessor_keywords, preprocessor_hl);
new_char_tokens("+-&|.()[]{}", operator_hl);
new_keyword_tokens(c_keywords, control_hl);
new_keyword_tokens(preprocessor_keywords, special_hl);
new_region_token("/\\*", "\\*/", comment_hl);
new_region_token("//", "\\n", comment_hl);
new_region_token("\"", "\"", string_literal_hl);
new_region_token("<", ">", string_literal_hl);