Function: cider-cheatsheet-doc-at-point
cider-cheatsheet-doc-at-point is an interactive and byte-compiled
function defined in cider-cheatsheet.el.
Signature
(cider-cheatsheet-doc-at-point)
Documentation
Display documentation for the var at point.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-cheatsheet.el
(defun cider-cheatsheet-doc-at-point ()
"Display documentation for the var at point."
(interactive)
(if-let* ((var (cider-cheatsheet--var-at-point)))
(cider-doc-lookup var)
(user-error "No var at point")))