Function: embark--verbose-indicator-excluded-p
embark--verbose-indicator-excluded-p is a byte-compiled function
defined in embark.el.
Signature
(embark--verbose-indicator-excluded-p CMD)
Documentation
Return non-nil if CMD should be excluded from the verbose indicator.
Source Code
;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defun embark--verbose-indicator-excluded-p (cmd)
"Return non-nil if CMD should be excluded from the verbose indicator."
(seq-find (lambda (x)
(if (symbolp x)
(eq cmd x)
(string-match-p x (symbol-name cmd))))
embark-verbose-indicator-excluded-actions))