Function: hsys-consult-apropos
hsys-consult-apropos is an autoloaded, interactive and byte-compiled
function defined in hsys-consult.el.
Signature
(hsys-consult-apropos &optional INCLUDE-ALL-FLAG)
Documentation
Summarize all meaningful symbols matching interactively chosen terms.
With optional INCLUDE-ALL-FLAG (prefix arg interactively) non-nil, include all bound symbols.
Requires use of vertico for completions.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-consult.el
;;;###autoload
(defun hsys-consult-apropos (&optional include-all-flag)
"Summarize all meaningful symbols matching interactively chosen terms.
With optional INCLUDE-ALL-FLAG (prefix arg interactively) non-nil,
include all bound symbols.
Requires use of `vertico' for completions."
(interactive "P")
(apropos
(split-string
(hsys-consult-get-exit-value
'(car vertico--input)
#'consult--read
obarray
:prompt "Consult Apropos: ")
"[ \t]+" t)
include-all-flag))