Variable: cider-eval-register

cider-eval-register is a customizable variable defined in cider-eval.el.

Value

101

Documentation

The text register assigned to the most recent evaluation result.

When non-nil, the return value of all CIDER eval commands are automatically written into this register.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-eval.el
(defcustom cider-eval-register ?e
  "The text register assigned to the most recent evaluation result.
When non-nil, the return value of all CIDER eval commands are
automatically written into this register."
  :type '(choice character
                 (const nil))
  :group 'cider
  :package-version '(cider . "1.4.0"))