Function: hyrolo-to-previous-hdr
hyrolo-to-previous-hdr is an interactive and byte-compiled function
defined in hyrolo.el.
Signature
(hyrolo-to-previous-hdr)
Documentation
Move to the prev 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-previous-hdr ()
"Move to the prev file/buffer header start in HyRolo display matches buffer."
(interactive)
(let ((opoint (point))
pos)
(cond ((and (not (bobp))
(get-text-property (1- (point)) :hyrolo-hdr))
(goto-char (1- (point))))
((and (setq pos (previous-single-property-change (point) :hyrolo-hdr))
(get-text-property (1- pos) :hyrolo-hdr))
(goto-char (1- pos)))
(t (goto-char opoint)
(when (called-interactively-p 'interactive)
(message "No previous file/buffer header") (beep))))))