Function: hyrolo-overview
hyrolo-overview is an interactive and byte-compiled function defined
in hyrolo.el.
Signature
(hyrolo-overview LEVELS-TO-SHOW)
Documentation
Show the first line of all levels of HyRolo matches.
With a prefix argument of LEVELS-TO-SHOW > 0, show the first lines of entries only to that depth relative to the first level of matches for the file of matches at point.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-overview (levels-to-show)
"Show the first line of all levels of HyRolo matches.
With a prefix argument of LEVELS-TO-SHOW > 0, show the first
lines of entries only to that depth relative to the first level
of matches for the file of matches at point."
(interactive "P")
(when (or (null levels-to-show)
(if (called-interactively-p 'interactive)
(progn (setq levels-to-show (prefix-numeric-value current-prefix-arg))
(<= levels-to-show 0))
(not (integerp levels-to-show))))
(setq levels-to-show 100))
(setq hyrolo-reveal-ignore-this-command t)
(hyrolo-show-levels levels-to-show))