Variable: cider-macrostep-gensym-faces
cider-macrostep-gensym-faces is a customizable variable defined in
cider-macrostep.el.
Value
(cider-macrostep-gensym-1-face cider-macrostep-gensym-2-face
cider-macrostep-gensym-3-face
cider-macrostep-gensym-4-face
cider-macrostep-gensym-5-face
cider-macrostep-gensym-6-face
cider-macrostep-gensym-7-face)
Documentation
Faces cycled through when coloring gensyms.
Each distinct gensym in an expansion is assigned the next face in this list, wrapping around when an expansion has more gensyms than faces. The defaults are a palette of distinct hues (with light- and dark-background variants) so that each gensym stays easy to tell apart on any theme.
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-gensym-faces
'(cider-macrostep-gensym-1-face cider-macrostep-gensym-2-face
cider-macrostep-gensym-3-face cider-macrostep-gensym-4-face
cider-macrostep-gensym-5-face cider-macrostep-gensym-6-face
cider-macrostep-gensym-7-face)
"Faces cycled through when coloring gensyms.
Each distinct gensym in an expansion is assigned the next face in this
list, wrapping around when an expansion has more gensyms than faces.
The defaults are a palette of distinct hues (with light- and dark-background
variants) so that each gensym stays easy to tell apart on any theme."
:type '(repeat face)
:group 'cider
:package-version '(cider . "2.0.0"))