Variable: embark-collect-group-format

embark-collect-group-format is a customizable variable defined in embark.el.

Value

#("     %s  " 0 4
  (face embark-collect-group-separator)
  4 8
  (face embark-collect-group-title)
  8 9
  (display
   (space :align-to right)
   face completions-group-separator))

Documentation

Format string used for the group title in Embark Collect buffers.

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defcustom embark-collect-group-format
  (concat
   (propertize "    " 'face 'embark-collect-group-separator)
   (propertize " %s " 'face 'embark-collect-group-title)
   (propertize " " 'face 'completions-group-separator
               'display '(space :align-to right)))
  "Format string used for the group title in Embark Collect buffers."
  :type 'string)