Variable: cider-jack-in-auto-inject-clojure

cider-jack-in-auto-inject-clojure is a customizable variable defined in cider.el.

Value

nil

Documentation

Version of clojure to auto-inject into REPL.

If nil, do not inject Clojure into the REPL. If latest, inject cider-latest-clojure-version, which should approximate to the most recent version of Clojure. If minimal, inject cider-minimum-clojure-version, which will be the lowest version CIDER supports. If a string, use this as the version number. If it is a list, the first element should be a string, specifying the artifact ID, and the second element the version number.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defcustom cider-jack-in-auto-inject-clojure nil
  "Version of clojure to auto-inject into REPL.
If nil, do not inject Clojure into the REPL.  If `latest', inject
`cider-latest-clojure-version', which should approximate to the most recent
version of Clojure.  If `minimal', inject `cider-minimum-clojure-version',
which will be the lowest version CIDER supports.  If a string, use this as
the version number.  If it is a list, the first element should be a string,
specifying the artifact ID, and the second element the version number."
  :type '(choice (const :tag "None" nil)
                 (const :tag "Latest" latest)
                 (const :tag "Minimal" minimal)
                 (string :tag "Specific Version")
                 (list :tag "Artifact ID and Version"
                       (string :tag "Artifact ID")
                       (string :tag "Version"))))