Function: helpful--symbol-at-point

helpful--symbol-at-point is a byte-compiled function defined in helpful.el.

Signature

(helpful--symbol-at-point)

Documentation

Find the most relevant symbol at or around point.

Returns nil if nothing found.

Source Code

;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--symbol-at-point ()
  "Find the most relevant symbol at or around point.
Returns nil if nothing found."
  (or
   (helpful--symbol-at-point-exactly)
   (helpful--callable-at-point)
   (helpful--variable-at-point)))