Function: cider-inspect-last-sexp
cider-inspect-last-sexp is an interactive and byte-compiled function
defined in cider-inspector.el.
Signature
(cider-inspect-last-sexp)
Documentation
Inspect the result of the expression preceding point.
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-20260807.1133/cider-inspector.el
(defun cider-inspect-last-sexp ()
"Inspect the result of the expression preceding point.
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)))