Variable: embark-exporters-alist
embark-exporters-alist is a customizable variable defined in
embark.el.
Value
((buffer . embark-export-ibuffer)
(file . embark-export-dired)
(package . embark-export-list-packages)
(bookmark . embark-export-bookmarks)
(variable . embark-export-customize-variable)
(face . embark-export-customize-face)
(symbol . embark-export-apropos)
(minor-mode . embark-export-apropos)
(function . embark-export-apropos)
(command . embark-export-apropos)
(t . embark-collect))
Documentation
Alist associating completion types to export functions.
Each function should take a list of strings which are candidates for actions and make a buffer appropriate to manage them. For example, the default is to make a Dired buffer for files, and an ibuffer for buffers.
The key t is also allowed in the alist, and the corresponding
value indicates the default function to use for other types. The
default is embark-collect
Source Code
;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defcustom embark-exporters-alist
'((buffer . embark-export-ibuffer)
(file . embark-export-dired)
(package . embark-export-list-packages)
(bookmark . embark-export-bookmarks)
(variable . embark-export-customize-variable)
(face . embark-export-customize-face)
(symbol . embark-export-apropos)
(minor-mode . embark-export-apropos)
(function . embark-export-apropos)
(command . embark-export-apropos)
(t . embark-collect))
"Alist associating completion types to export functions.
Each function should take a list of strings which are candidates
for actions and make a buffer appropriate to manage them. For
example, the default is to make a Dired buffer for files, and an
ibuffer for buffers.
The key t is also allowed in the alist, and the corresponding
value indicates the default function to use for other types. The
default is `embark-collect'"
:type '(alist :key-type symbol :value-type function))