Function: avy-org-goto-heading-timer
avy-org-goto-heading-timer is an interactive and byte-compiled
function defined in avy.el.
Signature
(avy-org-goto-heading-timer &optional ARG)
Documentation
Read one or many characters and jump to matching Org headings.
The window scope is determined by avy-all-windows (ARG negates it).
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
(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)."
(interactive "P")
(let ((avy-all-windows (if arg
(not avy-all-windows)
avy-all-windows)))
(avy-with avy-goto-char-timer
(avy-process
(avy--read-candidates
(lambda (input)
(format "^\\*+ .*\\(%s\\)" input))))
(org-back-to-heading))))