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