Function: cider--auto-inspect-after-eval-p

cider--auto-inspect-after-eval-p is a byte-compiled function defined in cider-eval.el.

Signature

(cider--auto-inspect-after-eval-p CONTEXT)

Documentation

Return non-nil when the inspector should refresh after a CONTEXT eval.

CONTEXT is interactive or repl. See cider-auto-inspect-after-eval.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-eval.el
(defun cider--auto-inspect-after-eval-p (context)
  "Return non-nil when the inspector should refresh after a CONTEXT eval.
CONTEXT is `interactive' or `repl'.  See `cider-auto-inspect-after-eval'."
  (pcase cider-auto-inspect-after-eval
    ('all t)
    ('repl (eq context 'repl))
    ((or 't 'interactive) (eq context 'interactive))
    (_ nil)))