Function: cider-select-cljs-repl
cider-select-cljs-repl is a byte-compiled function defined in
cider.el.
Signature
(cider-select-cljs-repl &optional DEFAULT)
Documentation
Select the ClojureScript REPL to use with cider-jack-in-cljs.
DEFAULT is the default ClojureScript REPL to offer in completion.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defun cider-select-cljs-repl (&optional default)
"Select the ClojureScript REPL to use with `cider-jack-in-cljs'.
DEFAULT is the default ClojureScript REPL to offer in completion."
(let ((repl-types (mapcar #'car cider-cljs-repl-types)))
(intern (completing-read "Select ClojureScript REPL type: " repl-types
nil nil nil 'cider--select-cljs-repl-history
(or default (car cider--select-cljs-repl-history))))))