Variable: cider-debug--comment-macro-regexp

cider-debug--comment-macro-regexp is a variable defined in cider-debug.el.

Value

"\\(?:#_ *\\)+\\(?1:[^ ]\\)"

Documentation

Regexp matching the start of a #_ reader-macro comment sexp.

The beginning of match-group 1 is before the discarded sexp.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-debug.el
(defvar cider-debug--comment-macro-regexp
  (rx (seq (+ (seq "#_" (* " ")))) (group-n 1 (not (any " "))))
  "Regexp matching the start of a #_ reader-macro comment sexp.
The beginning of match-group 1 is before the discarded sexp.")