abo-abo/avy

Autoloads missing for org-mode functions

jmromer opened this issue · 0 comments

Currently, org-mode functions have to be manually loaded to be defined:

;; avy.el L2187-2220 (bbf1e733)

(defun avy-org-refile-as-child ()
  "Refile current heading as first child of heading selected with `avy.'"
  ;; ...
    )

(defun avy-org-goto-heading-timer (&optional arg)
  "Read one or many characters and jump to matching Org headings.
The window scope is determined by `avy-all-windows' (ARG negates it)."
  ;; . . .
  )

[source]

Comparing to those functions that are present, the above seem to be missing the ;;;###autoload magic comment:

;; avy.el L2141-2142 (bbf1e733)

;;;###autoload
(defun avy-goto-char-timer (&optional arg)

[source]