Variable: embark-multitarget-actions

embark-multitarget-actions is a customizable variable defined in embark.el.

Value

(embark-insert embark-copy-as-kill)

Documentation

Commands for which embark-act-all should pass a list of targets.

Normally embark-act-all runs the same action on each candidate separately, but when a command included in this variable's value is used as an action, embark-act-all will instead call it non-interactively with a single argument: the list of all candidates. For commands on this list embark-act behaves similarly: it calls them non-interactively with a single argument: a one element list containing the target.

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defcustom embark-multitarget-actions '(embark-insert embark-copy-as-kill)
  "Commands for which `embark-act-all' should pass a list of targets.
Normally `embark-act-all' runs the same action on each candidate
separately, but when a command included in this variable's value
is used as an action, `embark-act-all' will instead call it
non-interactively with a single argument: the list of all
candidates.  For commands on this list `embark-act' behaves
similarly: it calls them non-interactively with a single
argument: a one element list containing the target."
  :type '(repeat function))