commit 1b9a424d1fd4ea16544fd6162960e0e80dbcf538
parent 2f953bf0495054ce6b4d73c3791f271d8079f907
Author: Lou Woell <lou.woell@posteo.de>
Date: Thu, 4 Sep 2025 00:11:33 +0200
[haredoc.el] fix autoloads
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/haredoc.el b/haredoc.el
@@ -2,7 +2,6 @@
;; Author: Lou Woell
;; Version: 0.1
-;; Package-Requires:
;; Homepage:
;; Keywords:
@@ -57,6 +56,7 @@
(hh/exec (list hare/helperbin "find" id (buffer-file-name)))))
;; Shows haredoc for the selected or word.
+;;;###autoload
(defun haredoc (&optional sign)
"Run haredoc with the current word under the cursor and display
the results in a new buffer."
@@ -75,6 +75,7 @@ the results in a new buffer."
(ansi-color-apply-on-region (point-min) (point-max))
(haredoc-mode)))))
+;;;###autoload
(defun haredoc-describe-thing-at-point ()
(interactive)
(haredoc (hare/identifier-at-point)))