Function: cider-repl-require-repl-utils
cider-repl-require-repl-utils is an interactive and byte-compiled
function defined in cider-repl.el.
Signature
(cider-repl-require-repl-utils)
Documentation
Require standard REPL util functions into the current REPL.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-repl-require-repl-utils ()
"Require standard REPL util functions into the current REPL."
(interactive)
(let* ((current-repl (cider-current-repl 'infer 'ensure))
(require-code (cdr (assoc (cider-repl-type current-repl) cider-repl-require-repl-utils-code))))
(nrepl-send-sync-request
(cider-plist-put
(nrepl--eval-request require-code (cider-current-ns))
"inhibit-cider-middleware" "true")
current-repl)))