branch: elpa/raku-mode
commit 89d6145859c3c4d372a2dc8c809ee18267128388
Author: Tom Browder <[email protected]>
Commit: Tom Browder <[email protected]>
use proper name for a multi sub or method
---
perl6-imenu.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/perl6-imenu.el b/perl6-imenu.el
index 89184491de..3e30987f37 100644
--- a/perl6-imenu.el
+++ b/perl6-imenu.el
@@ -8,7 +8,7 @@
'(
;; the names are in reverse desired order since they are evaluated here
last first
("Variables"
"^\\s-*\\(?:my\\|our\\)\\s-+\\(\\(?:\\$\\|@\\|%\\)\\(?:[_[:alnum:]]+\\)\\)" 1)
- ("Subs/Methods"
"^\\s-*\\(?:my\\|our\\)\\s-+\\(?:sub\\|method\\|multi-method\\)\\s-+\\(.+)\\)"
1)
+ ("Subs/Methods"
"^\\s-*\\(?:my\\|our\\)\\s-+\\(?:sub\\|method\\|multi\\)\\s-+\\(.+)\\)" 1)
)
"Define interesting points in the Perl 6 buffer for `imenu'.