Function: hyrolo-to-next-hdr
hyrolo-to-next-hdr is an interactive and byte-compiled function
defined in hyrolo.el.
Signature
(hyrolo-to-next-hdr)
Documentation
Move to the next file/buffer header start in HyRolo display matches buffer.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260822.1645/hyrolo.el
(defun hyrolo-to-next-hdr ()
"Move to the next file/buffer header start in HyRolo display matches buffer."
(interactive)
(let ((next-hdr (text-property-any (min (1+ (point)) (point-max))
(point-max) :hyrolo-hdr t)))
(if next-hdr
(goto-char next-hdr)
(when (called-interactively-p 'interactive)
(message "No next file/buffer header") (beep)))))