Variable: cider-repl-auto-detect-type
cider-repl-auto-detect-type is a customizable variable defined in
cider-repl.el.
Value
t
Documentation
Control whether to auto-detect the REPL type using track-state information.
If you disable this you'll have to manually change the REPL type between
Clojure and ClojureScript when invoking REPL type changing forms.
Use cider-set-repl-type to manually change the REPL type.
This variable was added, or its default value changed, in cider version 0.18.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defcustom cider-repl-auto-detect-type t
"Control whether to auto-detect the REPL type using track-state information.
If you disable this you'll have to manually change the REPL type between
Clojure and ClojureScript when invoking REPL type changing forms.
Use `cider-set-repl-type' to manually change the REPL type."
:type 'boolean
:safe #'booleanp
:package-version '(cider . "0.18.0"))