Variable: cider-connect-default-cljs-params

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

Value

nil

Documentation

Default plist of params for connecting to a ClojureScript REPL.

Recognized keys are :host, :port and :project-dir.

If non-nil, overrides cider-connect-default-params for the commands cider-connect-cljs and (the latter half of) cider-connect-clj&cljs.

Note: it is recommended to set the variable cider-default-cljs-repl instead of specifying the :cljs-repl-type key.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defcustom cider-connect-default-cljs-params nil
  "Default plist of params for connecting to a ClojureScript REPL.
Recognized keys are :host, :port and :project-dir.

If non-nil, overrides `cider-connect-default-params' for the commands
`cider-connect-cljs' and (the latter half of) `cider-connect-clj&cljs'.

Note: it is recommended to set the variable `cider-default-cljs-repl'
instead of specifying the :cljs-repl-type key."
  :type '(plist :key-type
                (choice (const :host)
                        (const :port)
                        (const :project-dir)))
  :group 'cider)