Function: helpful-function

helpful-function is an autoloaded, interactive and byte-compiled function defined in helpful.el.

Signature

(helpful-function SYMBOL)

Documentation

Show help for function named SYMBOL.

See also helpful-macro, helpful-command and helpful-callable.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
;;;###autoload
(defun helpful-function (symbol)
  "Show help for function named SYMBOL.

See also `helpful-macro', `helpful-command' and `helpful-callable'."
  (interactive
   (list (helpful--read-symbol
          "Function: "
          (helpful--callable-at-point)
          #'functionp)))
  (helpful--update-and-switch-buffer symbol t))