Function: cider-inspect-form
cider-inspect-form is an interactive and byte-compiled function
defined in cider-inspector.el.
Signature
(cider-inspect-form)
Documentation
Inspect the result of the form point indicates.
How the expression is located is controlled by cider-form-targeting.
When point is on a type tag (e.g. ^String), inspect the tagged class
itself rather than the form it applies to.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-inspector.el
(defun cider-inspect-form ()
"Inspect the result of the form point indicates.
How the expression is located is controlled by `cider-form-targeting'.
When point is on a type tag (e.g. `^String'), inspect the tagged class
itself rather than the form it applies to."
(interactive)
(cider-inspect-expr (or (cider--type-tag-at-point)
(cider-last-sexp))
(cider-current-ns)))