Variable: embark-prompter

embark-prompter is a customizable variable defined in embark.el.

Value

embark-keymap-prompter

Documentation

Function used to prompt the user for actions.

This should be set to a function that prompts the use for an action and returns the symbol naming the action command. The default value, embark-keymap-prompter activates the type specific action keymap given in embark-keymap-alist. There is also embark-completing-read-prompter which prompts for an action with completion.

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defcustom embark-prompter 'embark-keymap-prompter
  "Function used to prompt the user for actions.
This should be set to a function that prompts the use for an
action and returns the symbol naming the action command.  The
default value, `embark-keymap-prompter' activates the type
specific action keymap given in `embark-keymap-alist'.
There is also `embark-completing-read-prompter' which
prompts for an action with completion."
  :type '(choice (const :tag "Use action keymaps" embark-keymap-prompter)
                 (const :tag "Read action with completion"
                        embark-completing-read-prompter)
                 (function :tag "Other")))