branch: elpa/raku-mode
commit 9f07c8b52a074bb894912c86bb04d39180f859b7
Author: Hinrik Örn Sigurðsson <[email protected]>
Commit: Hinrik Örn Sigurðsson <[email protected]>
Highlight 'unit' keyword
---
perl6-font-lock.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/perl6-font-lock.el b/perl6-font-lock.el
index 8be89f5b3f..0f77f6dec0 100644
--- a/perl6-font-lock.el
+++ b/perl6-font-lock.el
@@ -160,7 +160,7 @@
. ,(rx (or "module" "class" "role" "package" "enum" "grammar" "slang"
"subset")))
(rule . ,(rx (or "regex" "rule" "token")))
- (include . ,(rx (or "use" "require")))
+ (include . ,(rx (or "use" "require unit")))
(conditional . ,(rx (or "if" "else" "elsif" "unless")))
(scope . ,(rx (or "let" "my" "our" "state" "temp" "has" "constant")))
(loop . ,(rx (or "for" "loop" "repeat" "while" "until" "gather"
"given")))