Function: cider-inspector-push

cider-inspector-push is an interactive and byte-compiled function defined in cider-inspector.el.

Signature

(cider-inspector-push IDX)

Documentation

Inspect the value at IDX in the inspector stack and render it.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-inspector.el
(defun cider-inspector-push (idx)
  "Inspect the value at IDX in the inspector stack and render it."
  (interactive)
  (let ((result (cider-nrepl-send-sync-request `("op" "inspect-push"
                                                 "idx" ,idx))))
    (when (nrepl-dict-get result "value")
      (push (point) cider-inspector-location-stack)
      (cider-inspector--render-value result :next-inspectable))))