diff options
author | June McEnroe <june@causal.agency> | 2019-02-20 23:02:30 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-02-20 23:02:30 -0500 |
commit | 294e56d82322e864887de3b41839d8ad7ba2444e (patch) | |
tree | e89bf81d85913eeb897521f81c4a932621cc608e | |
parent | Use $PWD in html.sh to pass absolute path to man (diff) | |
download | src-294e56d82322e864887de3b41839d8ad7ba2444e.tar.gz src-294e56d82322e864887de3b41839d8ad7ba2444e.zip |
Match make targets as Tag
-rw-r--r-- | bin/hi.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/hi.c b/bin/hi.c index 8b4bb5c9..a37b1245 100644 --- a/bin/hi.c +++ b/bin/hi.c @@ -126,11 +126,14 @@ static const struct Syntax CSyntax[] = { // }}} // make syntax {{{ +#define MAKE_TARGET "[-./_[:alnum:]]+" static const struct Syntax MakeSyntax[] = { { Keyword, .subexp = 2, .pattern = WB "([.](PHONY|PRECIOUS|SUFFIXES))" WB }, { Macro, .pattern = "^ *-?include" }, + { Tag, .parent = ~SET(Keyword), .subexp = 1, + .pattern = "(" MAKE_TARGET ")" "(" BL0 MAKE_TARGET ")*" BL0 ":" }, { String, .subexp = 1, .pattern = "[._[:alnum:]]+" BL0 "[!+:?]?=" BL0 "(.*)" }, { Normal, |