summary refs log tree commit diff
path: root/bin/hi.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-02-07 00:33:17 -0500
committerJune McEnroe <june@causal.agency>2019-02-07 00:33:17 -0500
commitebe160fe8ed0ef0404dede604141cae6a1646463 (patch)
tree4cd4320905d2ba129757dacc6716e4e745fe5413 /bin/hi.c
parentMove comments below strings in hi (diff)
downloadsrc-ebe160fe8ed0ef0404dede604141cae6a1646463.tar.gz
src-ebe160fe8ed0ef0404dede604141cae6a1646463.zip
Use subexpression highlight for system include paths
Diffstat (limited to 'bin/hi.c')
-rw-r--r--bin/hi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/hi.c b/bin/hi.c
index 21c171db..5acca9b2 100644
--- a/bin/hi.c
+++ b/bin/hi.c
@@ -53,7 +53,7 @@ static const struct Syntax CSyntax[] = {
 	{ Keyword, .subexp = 2, .pattern = CKB"(break|continue|goto|return)"CKB },
 	{ Keyword, .subexp = 2, .pattern = CKB"(case|default)"CKB },
 	{ Macro,   .pattern = "^#.*" },
-	{ String,  .pattern = "<[^[:blank:]=]*>" },
+	{ String,  .pattern = "^#include (<.*>)", .subexp = 1 },
 	{ String,  .pattern = "[LUu]?'([^']|\\\\')*'", },
 	{ String,  .pattern = "([LUu]|u8)?\"([^\"]|\\\\\")*\"", },
 	{ Comment, .pattern = "//.*", },