Function: helpful--variable-at-point
helpful--variable-at-point is a byte-compiled function defined in
helpful.el.
Signature
(helpful--variable-at-point)
Documentation
Return the variable exactly under point, or defined at point.
Source Code
;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--variable-at-point ()
"Return the variable exactly under point, or defined at point."
(let ((var (helpful--variable-at-point-exactly)))
(if var
var
(let ((var (helpful--variable-defined-at-point)))
(when (helpful--variable-p var)
var)))))