Variable: cider-macrostep-highlight-expandable

cider-macrostep-highlight-expandable is a customizable variable defined in cider-macrostep.el.

Value

t

Documentation

Whether to highlight the operators of further-expandable sub-forms.

When non-nil, after each expansion the heads of nested forms that resolve to a macro are underlined, and n/p navigate between them. Requires the cider/classify-symbols nREPL op; with older middleware the highlighting is silently skipped.

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-highlight-expandable t
  "Whether to highlight the operators of further-expandable sub-forms.
When non-nil, after each expansion the heads of nested forms that resolve to
a macro are underlined, and `n'/`p' navigate between them.  Requires the
`cider/classify-symbols' nREPL op; with older middleware the highlighting is
silently skipped."
  :type 'boolean
  :group 'cider
  :package-version '(cider . "2.0.0"))