Variable: crm-prompt
crm-prompt is a customizable variable defined in crm.el.gz.
Value
"[%d] %p"
Documentation
Prompt format for completing-read-multiple.
The prompt is formatted by format-spec with the keys %d, %s and %p
standing for the separator description, the separator itself and the
original prompt respectively.
This variable was added, or its default value changed, in Emacs 31.1.
Probably introduced at or before Emacs version 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/crm.el.gz
(defcustom crm-prompt "[%d] %p"
"Prompt format for `completing-read-multiple'.
The prompt is formatted by `format-spec' with the keys %d, %s and %p
standing for the separator description, the separator itself and the
original prompt respectively."
:type '(choice (const :tag "Original prompt" "%p")
(const :tag "Description and prompt" "[%d] %p")
(const :tag "Short CRM indication" "[CRM%s] %p")
(string :tag "Custom string"))
:group 'minibuffer
:version "31.1")