Function: helpful-at-point

helpful-at-point is an autoloaded, interactive and byte-compiled function defined in helpful.el.

Signature

(helpful-at-point)

Documentation

Show help for the symbol at point.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
;;;###autoload
(defun helpful-at-point ()
  "Show help for the symbol at point."
  (interactive)
  (-if-let (symbol (helpful--symbol-at-point))
      (helpful-symbol symbol)
    (user-error "There is no symbol at point.")))