Function: helpful-command
helpful-command is an autoloaded, interactive and byte-compiled
function defined in helpful.el.
Signature
(helpful-command SYMBOL)
Documentation
Show help for interactive function named SYMBOL.
See also helpful-function.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
;;;###autoload
(defun helpful-command (symbol)
"Show help for interactive function named SYMBOL.
See also `helpful-function'."
(interactive
(list (helpful--read-symbol
"Command: "
(helpful--callable-at-point)
#'commandp)))
(helpful--update-and-switch-buffer symbol t))