branch: elpa/raku-mode
commit 98db56c6ec68f099069f802d09ed8030599f636a
Author: Tim Van den Langenbergh <[email protected]>
Commit: Tim Van den Langenbergh <[email protected]>
Add some clarifying comments.
---
raku-skeletons.el | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/raku-skeletons.el b/raku-skeletons.el
index e339a59225..24cab479ab 100644
--- a/raku-skeletons.el
+++ b/raku-skeletons.el
@@ -32,13 +32,15 @@
:prefix "raku-skeleton-"
:group 'raku)
+;; Need the full path for the #!. Simply setting it to `raku' may not be ideal.
(defcustom full-raku-path "/usr/bin/raku"
"Path to the Raku executable."
:type 'string
:group 'raku-skeletons)
+;; A string for `:auth<auth-id>';
(defcustom auth-id user-login-name
- "Author information."
+ "Module author information."
:type 'string
:group 'raku-skeletons)
@@ -93,5 +95,7 @@
"\n\n"
"=end pod" \n)
+;; TODO: Maybe META6.json and .t/.rakutest skeletons?
+
(provide 'raku-skeletons)
;;; raku-skeletons.el ends here