From b9ee44b8499d8e88d0566681a5218c8656ca6f58 Mon Sep 17 00:00:00 2001 From: cflip Date: Wed, 18 Jan 2023 15:40:13 -0700 Subject: Add 'const' to the list of syntax words --- syntax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax.c b/syntax.c index 9092f3d..1d93f8e 100644 --- a/syntax.c +++ b/syntax.c @@ -13,7 +13,7 @@ char* c_highlight_keywords[] = { "#include", "#define", "#ifdef", "#ifndef", "int|", "long|", "double|", "float|", "char|", "unsigned|", "signed|", - "void|", NULL + "void|", "const|", NULL }; struct editor_syntax highlight_database[] = { -- cgit v1.2.3