Function: embark--verbose-indicator-section-target
embark--verbose-indicator-section-target is a byte-compiled function
defined in embark.el.
Signature
(embark--verbose-indicator-section-target &key TARGETS BINDINGS &allow-other-keys)
Documentation
Format the TARGETS section for the indicator buffer.
BINDINGS is the formatted list of keybindings.
Source Code
;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(cl-defun embark--verbose-indicator-section-target
(&key targets bindings &allow-other-keys)
"Format the TARGETS section for the indicator buffer.
BINDINGS is the formatted list of keybindings."
(let ((result (embark--format-targets
(car targets)
nil ; the shadowed targets section deals with these
(cl-find 'embark-done bindings :key #'caddr :test #'eq))))
(add-face-text-property 0 (length result)
'embark-verbose-indicator-title
'append
result)
result))