Variable: cider-macrostep--gensym-regexp
cider-macrostep--gensym-regexp is a variable defined in
cider-macrostep.el.
Value
"\\_<\\(?:\\(?:\\sw\\|\\s_\\)+__[0-9]+__auto__\\|G__[0-9]+\\)\\_>"
Documentation
Regexp matching the gensyms produced by macro expansion.
Covers auto-gensyms (x__42__auto__) and gensym output (G__42). Other
prefixes (e.g. from (gensym "foo")) are indistinguishable from ordinary
symbols and are left uncolored.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260821.817/cider-macrostep.el
(defconst cider-macrostep--gensym-regexp
"\\_<\\(?:\\(?:\\sw\\|\\s_\\)+__[0-9]+__auto__\\|G__[0-9]+\\)\\_>"
"Regexp matching the gensyms produced by macro expansion.
Covers auto-gensyms (`x__42__auto__') and `gensym' output (`G__42'). Other
prefixes (e.g. from `(gensym \"foo\")') are indistinguishable from ordinary
symbols and are left uncolored.")