Variable: cider-default-cljs-repl

cider-default-cljs-repl is a customizable variable defined in cider.el.

Value

nil

Documentation

The default ClojureScript REPL to start.

This affects commands like cider-jack-in-cljs. Generally it's intended to be set via .dir-locals.el for individual projects, as it's relatively unlikely you'd like to use the same type of REPL in each project you're working on.

This variable was added, or its default value changed, in cider version 0.17.0.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defcustom cider-default-cljs-repl nil
  "The default ClojureScript REPL to start.
This affects commands like `cider-jack-in-cljs'.  Generally it's
intended to be set via .dir-locals.el for individual projects, as it's
relatively unlikely you'd like to use the same type of REPL in each project
you're working on."
  :type '(choice (const :tag "Figwheel" figwheel)
                 (const :tag "Figwheel Main" figwheel-main)
                 (const :tag "Browser"  browser)
                 (const :tag "Node"     node)
                 (const :tag "Weasel"   weasel)
                 (const :tag "Shadow"   shadow)
                 (const :tag "Shadow w/o Server" shadow-select)
                 (const :tag "Krell"    krell)
                 (const :tag "Nbb"      nbb)
                 (const :tag "Basilisp" basilisp)
                 (const :tag "Custom"   custom))
  :safe #'symbolp
  :package-version '(cider . "0.17.0"))