diff options
author | June McEnroe <june@causal.agency> | 2019-03-14 19:07:54 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-03-14 19:07:54 -0400 |
commit | e01aaa6a4c65534916e4d1754d74eb6ebd3cdab3 (patch) | |
tree | 8694e00117f2ffdb00868003b981f068e953411e /bin | |
parent | Add The Long Way to a Small Angry Planet (diff) | |
download | src-e01aaa6a4c65534916e4d1754d74eb6ebd3cdab3.tar.gz src-e01aaa6a4c65534916e4d1754d74eb6ebd3cdab3.zip |
Highlight line continuations in line comments
Diffstat (limited to '')
-rw-r--r-- | bin/hi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/hi.c b/bin/hi.c index c6cdcc5a..6fab0a59 100644 --- a/bin/hi.c +++ b/bin/hi.c @@ -117,7 +117,7 @@ static const struct Syntax CSyntax[] = { "[AEFGXacdefginopsux]" // format specifier }, { Comment, .parent = ~SET(String), - .pattern = "//.*" }, + .pattern = "//(.|[\\]\n)*" }, { Comment, .parent = ~SET(String), .newline = true, .pattern = PATTERN_BC }, { Todo, .parent = SET(Comment), |