Variable: cider-custom-cljs-repl-init-form

cider-custom-cljs-repl-init-form is a customizable variable defined in cider.el.

Value

nil

Documentation

The form used to start a custom ClojureScript REPL.

When set it becomes the return value of the cider-custom-cljs-repl-init-form(var)/cider-custom-cljs-repl-init-form(fun) function, which normally prompts for the init form.

This defcustom is mostly intended for use with .dir-locals.el for cases where it doesn't make sense to register a new ClojureScript REPL type.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defcustom cider-custom-cljs-repl-init-form nil
  "The form used to start a custom ClojureScript REPL.
When set it becomes the return value of the `cider-custom-cljs-repl-init-form'
function, which normally prompts for the init form.

This defcustom is mostly intended for use with .dir-locals.el for
cases where it doesn't make sense to register a new ClojureScript REPL type."
  :type 'string
  :safe (lambda (s) (or (null s) (stringp s)))
  :package-version '(cider . "0.23.0"))