Variable: embark-verbose-indicator-buffer-sections

embark-verbose-indicator-buffer-sections is a customizable variable defined in embark.el.

Value

(target "\n" shadowed-targets " " cycle "\n" bindings)

Documentation

List of sections to display in the verbose indicator buffer, in order.

You can use either a symbol designating a concrete section (one of the keywords below, but without the colon), a string literal or a function returning a string or list of strings to insert and that accepts the following keyword arguments:

- :target, the target as a cons of type and value,
- :shadowed-targets, a list of conses for the other targets,
- :bindings a list returned by embark--formatted-bindings, and
- :cycle, a string describing the key binding of embark-cycle.

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defcustom embark-verbose-indicator-buffer-sections
  `(target "\n" shadowed-targets " " cycle "\n" bindings)
  "List of sections to display in the verbose indicator buffer, in order.
You can use either a symbol designating a concrete section (one
of the keywords below, but without the colon), a string literal
or a function returning a string or list of strings to insert and
that accepts the following keyword arguments:

- `:target', the target as a cons of type and value,
- `:shadowed-targets', a list of conses for the other targets,
- `:bindings' a list returned by `embark--formatted-bindings', and
- `:cycle', a string describing the key binding of `embark-cycle'."
  :type '(repeat
          (choice (const :tag "Current target name" target)
                  (const :tag "List of other shadowed targets" shadowed-targets)
                  (const :tag "Key bindings" bindings)
                  (const :tag "Cycle indicator" cycle)
                  (string :tag "Literal string")
                  (function :tag "Custom function"))))