branch: elpa/raku-mode
commit a594f53e09be3f67d8101bb857978245eb4ef5ac
Author: Hinrik Örn Sigurðsson <[email protected]>
Commit: Hinrik Örn Sigurðsson <[email protected]>
Highlight with/orwith/without
---
perl6-font-lock.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/perl6-font-lock.el b/perl6-font-lock.el
index 94c8da5dcf..a459bb9e4c 100644
--- a/perl6-font-lock.el
+++ b/perl6-font-lock.el
@@ -157,7 +157,8 @@
"slang" "subset")))
(rule . ,(rx (or "regex" "rule" "token")))
(include . ,(rx (or "use" "require unit")))
- (conditional . ,(rx (or "if" "else" "elsif" "unless")))
+ (conditional . ,(rx (or "if" "else" "elsif" "unless" "with"
+ "orwith" "without")))
(scope . ,(rx (or "let" "my" "our" "state" "temp" "has" "constant")))
(loop . ,(rx (or "for" "loop" "repeat" "while" "until" "gather"
"given")))
(flow-control