Variable: cider-invert-insert-eval-p
cider-invert-insert-eval-p is a customizable variable defined in
cider-mode.el.
Value
nil
Documentation
Whether to invert the behavior of evaling.
Default behavior when inserting is to NOT eval the form and only eval with a prefix. This allows to invert this so that default behavior is to insert and eval and the prefix is required to prevent evaluation.
This variable was added, or its default value changed, in cider version 0.18.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-mode.el
(defcustom cider-invert-insert-eval-p nil
"Whether to invert the behavior of evaling.
Default behavior when inserting is to NOT eval the form and only eval with
a prefix. This allows to invert this so that default behavior is to insert
and eval and the prefix is required to prevent evaluation."
:type 'boolean
:group 'cider
:package-version '(cider . "0.18.0"))