Function: cider-pprint-eval-form-to-repl
cider-pprint-eval-form-to-repl is an interactive and byte-compiled
function defined in cider-eval.el.
Signature
(cider-pprint-eval-form-to-repl &optional PREFIX)
Documentation
Evaluate the form point indicates and insert its pprinted result in the REPL.
If invoked with a PREFIX argument, switch to the REPL buffer.
Key Bindings
Aliases
cider-pprint-eval-last-sexp-to-repl (obsolete since 2.1.0)
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-eval.el
(defun cider-pprint-eval-form-to-repl (&optional prefix)
"Evaluate the form point indicates and insert its pprinted result in the REPL.
If invoked with a PREFIX argument, switch to the REPL buffer."
(interactive "P")
(cider--eval-form-to-repl prefix (cider--nrepl-print-request-plist fill-column)))