Variable: cider-clojurec-eval-destination

cider-clojurec-eval-destination is a customizable variable defined in cider-connection.el.

Value

multi

Documentation

The REPL type to be chosen in .cljc buffers.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-connection.el
(defcustom cider-clojurec-eval-destination 'multi
  "The REPL type to be chosen in .cljc buffers."
  :type '(choice (const :tag "Clojure" clj)
                 (const :tag "ClojureScript" cljs)
                 (const :tag "Multi (evaluate in Clojure and ClojureScript simultaneously)" multi))
  :group 'cider
  :package-version '(cider . "1.8"))