Function: embark-collect-mode

embark-collect-mode is a byte-compiled function defined in embark.el.

Signature

(embark-collect-mode)

Documentation

List of candidates to be acted on.

The command embark-act is bound embark-collect-mode-map, but you might prefer to change the key binding to match your other key binding for it. Or alternatively you might want to enable the embark collect direct action minor mode by adding the function embark-collect-direct-action-minor-mode(var)/embark-collect-direct-action-minor-mode(fun) to embark-collect-mode-hook.

Reverting an Embark Collect buffer has slightly unusual behavior if the buffer was obtained by running embark-collect from within a minibuffer completion session. In that case reverting just restarts the completion session, that is, the command that opened the minibuffer is run again and the minibuffer contents restored. You can then interact normally with the command, perhaps editing the minibuffer contents, and, if you wish, you can rerun embark-collect to get an updated buffer.

                embark-rerun-collect-or-export
- negative-argument
0 digit-argument
1 digit-argument
2 digit-argument
3 digit-argument
4 digit-argument
5 digit-argument
6 digit-argument
7 digit-argument
8 digit-argument
9 digit-argument
< beginning-of-buffer
<follow-link> mouse-face
<keymap> C-M-i backward-button
<keymap> TAB forward-button
<mouse-2> mouse-select-window
> end-of-buffer
? describe-mode
A embark-act-all
DEL scroll-down-command
E embark-export
M-<left> tabulated-list-previous-column
M-<right> tabulated-list-next-column
M-a embark-collect-direct-action-minor-mode(var)/embark-collect-direct-action-minor-mode(fun)
M-{ outline-previous-heading
M-} outline-next-heading
S tabulated-list-sort
S-SPC scroll-down-command
SPC scroll-up-command
SPC..~ undefined
a embark-act
g revert-buffer
h describe-mode
n forward-button
n next-line
p backward-button
p previous-line
q quit-window
s isearch-forward(var)/isearch-forward(fun)
{ outline-previous-heading
{ tabulated-list-narrow-current-column
} outline-next-heading
} tabulated-list-widen-current-column

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(define-derived-mode embark-collect-mode tabulated-list-mode "Embark Collect"
  "List of candidates to be acted on.
The command `embark-act' is bound `embark-collect-mode-map', but
you might prefer to change the key binding to match your other
key binding for it.  Or alternatively you might want to enable the
embark collect direct action minor mode by adding the function
`embark-collect-direct-action-minor-mode' to
`embark-collect-mode-hook'.

Reverting an Embark Collect buffer has slightly unusual behavior
if the buffer was obtained by running `embark-collect' from
within a minibuffer completion session.  In that case reverting
just restarts the completion session, that is, the command that
opened the minibuffer is run again and the minibuffer contents
restored.  You can then interact normally with the command,
perhaps editing the minibuffer contents, and, if you wish, you
can rerun `embark-collect' to get an updated buffer."
    :interactive nil :abbrev-table nil :syntax-table nil)