Function: cider--cljs-repl-type-entry

cider--cljs-repl-type-entry is a byte-compiled function defined in cider-cljs.el.

Signature

(cider--cljs-repl-type-entry REPL-TYPE)

Documentation

Return the cider-cljs-repl-types entry for REPL-TYPE, or nil.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-cljs.el
(defun cider--cljs-repl-type-entry (repl-type)
  "Return the `cider-cljs-repl-types' entry for REPL-TYPE, or nil."
  (seq-find (lambda (entry) (eq (car entry) repl-type))
            cider-cljs-repl-types))