Variable: cider-allow-jack-in-without-project

cider-allow-jack-in-without-project is a customizable variable defined in cider.el.

Value

warn

Documentation

Controls what happens when doing cider-jack-in outside a project.

When set to warn (default) you'd prompted to confirm the command. When set to t cider-jack-in will quietly continue. When set to nil cider-jack-in will fail.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defcustom cider-allow-jack-in-without-project 'warn
  "Controls what happens when doing `cider-jack-in' outside a project.
When set to `warn' (default) you'd prompted to confirm the command.
When set to t `cider-jack-in' will quietly continue.
When set to nil `cider-jack-in' will fail."
  :type '(choice (const :tag "always" t)
                 (const warn)
                 (const :tag "never" nil))
  :safe #'symbolp
  :package-version '(cider . "0.15.0"))