Function: hyrolo-to-next-loc
hyrolo-to-next-loc is an interactive and byte-compiled function
defined in hyrolo.el.
Signature
(hyrolo-to-next-loc)
Documentation
Move to next file/buffer location header in HyRolo display matches buffer.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-to-next-loc ()
"Move to next file/buffer location header in HyRolo display matches buffer."
(interactive)
(if (re-search-forward (concat "^" hbut:source-prefix) nil t
(if (looking-at hbut:source-prefix) 2 1))
(goto-char (match-beginning 0))
(when (called-interactively-p 'interactive)
(message "No next file/buffer location") (beep))))