Variable: cider-macrostep-color-gensyms
cider-macrostep-color-gensyms is a customizable variable defined in
cider-macrostep.el.
Value
t
Documentation
Whether to colorize the gensyms introduced by a macro expansion.
When non-nil, each distinct gensym (e.g. x__42__auto__) in an inline
expansion gets its own face from cider-macrostep-gensym-faces, so a
binding introduced by the macro can be tracked through the expansion.
This variable was added, or its default value changed, in cider version 2.0.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-macrostep.el
(defcustom cider-macrostep-color-gensyms t
"Whether to colorize the gensyms introduced by a macro expansion.
When non-nil, each distinct gensym (e.g. `x__42__auto__') in an inline
expansion gets its own face from `cider-macrostep-gensym-faces', so a
binding introduced by the macro can be tracked through the expansion."
:type 'boolean
:group 'cider
:package-version '(cider . "2.0.0"))