Function: hypb:helm-apropos

hypb:helm-apropos is an autoloaded, interactive and byte-compiled function defined in hypb.el.

Signature

(hypb:helm-apropos &optional SYMBOL-NAME)

Documentation

Prompt for and display the doc for a command, function, variable or face.

With optional SYMBOL-NAME non-nil, display the doc for that. This will this install the Emacs helm package when needed.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb.el
;;;###autoload
(defun hypb:helm-apropos (&optional symbol-name)
  "Prompt for and display the doc for a command, function, variable or face.
With optional SYMBOL-NAME non-nil, display the doc for that.
This will this install the Emacs helm package when needed."
  (interactive "P")
  (hypb:require-package 'helm)
  (helm-apropos symbol-name))