Variable: marginalia--advice-regexp
marginalia--advice-regexp is a variable defined in marginalia.el.
Value
"\\`\\(?:\\(?:This function has \\)?\\(?::\\(?:a\\(?:fter\\(?:-\\(?:until\\|while\\)\\)?\\|round\\)\\|before\\(?:-\\(?:until\\|while\\)\\)?\\|filter-\\(?:args\\|return\\)\\|override\\)\\) advice: .*\n\\)+\n"
Documentation
Regexp to match lines about advice in function documentation strings.
Source Code
;; Defined in ~/.emacs.d/elpa/marginalia-20260724.810/marginalia.el
(defconst marginalia--advice-regexp
(rx bos
(1+ (seq (? "This function has ")
(or ":before" ":after" ":around" ":override"
":before-while" ":before-until" ":after-while"
":after-until" ":filter-args" ":filter-return")
" advice: " (0+ nonl) "\n"))
"\n")
"Regexp to match lines about advice in function documentation strings.")