Function: cider-cljs-repl-form
cider-cljs-repl-form is a byte-compiled function defined in
cider-cljs.el.
Signature
(cider-cljs-repl-form REPL-TYPE)
Documentation
Get the cljs REPL form for REPL-TYPE, if any.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-cljs.el
(defun cider-cljs-repl-form (repl-type)
"Get the cljs REPL form for REPL-TYPE, if any."
(if-let* ((repl-type-info (cider--cljs-repl-type-entry repl-type)))
(when-let* ((repl-form (cadr repl-type-info)))
;; repl-form can be either a string or a function producing a string
(if (symbolp repl-form)
(funcall repl-form)
repl-form))
(user-error "No ClojureScript REPL type %s found. Please make sure that `cider-cljs-repl-types' has an entry for it" repl-type)))