Function: hypb:helm-info

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

Signature

(hypb:helm-info &optional REFRESH)

Documentation

Prompt across all Info manuals and display the node selected.

With optional prefix arg REFRESH non-nil, refresh the cache of Info manuals. 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-info (&optional refresh)
  "Prompt across all Info manuals and display the node selected.
With optional prefix arg REFRESH non-nil, refresh the cache of Info manuals.
This will this install the Emacs helm package when needed."
  (interactive "P")
  (hypb:require-package 'helm)
  (helm-info refresh))