Function: cider-inspect-last-sexp

cider-inspect-last-sexp is an autoloaded, interactive and byte-compiled function defined in cider-inspector.el.

Signature

(cider-inspect-last-sexp)

Documentation

Inspect the result of the the expression preceding point.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-inspector.el
;;;###autoload
(defun cider-inspect-last-sexp ()
  "Inspect the result of the the expression preceding point."
  (interactive)
  (cider-inspect-expr (cider-last-sexp) (cider-current-ns)))