Function: embark--verbose-indicator-section-cycle
embark--verbose-indicator-section-cycle is a byte-compiled function
defined in embark.el.
Signature
(embark--verbose-indicator-section-cycle &key CYCLE SHADOWED-TARGETS &allow-other-keys)
Documentation
Format the CYCLE key section for the indicator buffer.
SHADOWED-TARGETS is the list of other targets.
Source Code
;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(cl-defun embark--verbose-indicator-section-cycle
(&key cycle shadowed-targets &allow-other-keys)
"Format the CYCLE key section for the indicator buffer.
SHADOWED-TARGETS is the list of other targets."
(concat
(and cycle (propertize (format "(%s to cycle)" cycle)
'face 'embark-verbose-indicator-shadowed))
(and shadowed-targets "\n")))