Variable: embark-verbose-indicator-excluded-actions

embark-verbose-indicator-excluded-actions is a customizable variable defined in embark.el.

Value

nil

Documentation

Commands not displayed by embark-verbose-indicator.

This variable should be set to a list of symbols and regexps. The verbose indicator will exclude from its listing any commands matching an element of this list.

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defcustom embark-verbose-indicator-excluded-actions nil
  "Commands not displayed by `embark-verbose-indicator'.
This variable should be set to a list of symbols and regexps.
The verbose indicator will exclude from its listing any commands
matching an element of this list."
  :type '(choice
          (const :tag "Exclude nothing" nil)
          (const :tag "Exclude Embark general actions"
                 (embark-collect embark-live embark-export
                  embark-cycle embark-act-all embark-keymap-help
                  embark-become embark-isearch-forward
                  embark-isearch-backward))
          (repeat :tag "Other" (choice regexp symbol))))