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