Function: cider-start-menu--read-cljs-repl

cider-start-menu--read-cljs-repl is a byte-compiled function defined in cider.el.

Signature

(cider-start-menu--read-cljs-repl PROMPT INITIAL-INPUT HISTORY)

Documentation

Read a ClojureScript REPL type for the jack-in transient.

PROMPT, INITIAL-INPUT and HISTORY are as for completing-read.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider.el
(defun cider-start-menu--read-cljs-repl (prompt initial-input history)
  "Read a ClojureScript REPL type for the jack-in transient.
PROMPT, INITIAL-INPUT and HISTORY are as for `completing-read'."
  (completing-read (or prompt "ClojureScript REPL type: ")
                   (mapcar (lambda (type) (symbol-name (car type)))
                           cider-cljs-repl-types)
                   nil t initial-input history))