Function: cider-pprint-eval-last-sexp-to-repl

cider-pprint-eval-last-sexp-to-repl is an interactive and byte-compiled function defined in cider-eval.el.

Signature

(cider-pprint-eval-last-sexp-to-repl &optional PREFIX)

Documentation

Evaluate expr before point and insert its pretty-printed result in the REPL.

If invoked with a PREFIX argument, switch to the REPL buffer.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-eval.el
(defun cider-pprint-eval-last-sexp-to-repl (&optional prefix)
  "Evaluate expr before point and insert its pretty-printed result in the REPL.
If invoked with a PREFIX argument, switch to the REPL buffer."
  (interactive "P")
  (cider--eval-last-sexp-to-repl prefix (cider--nrepl-print-request-plist fill-column)))