Variable: crm-separator

crm-separator is a variable defined in crm.el.gz.

Value

#("[    ]*,[    ]*" 0 11
  (separator "," description "comma-separated list"))

Documentation

Separator regexp used for separating strings in completing-read-multiple.

It should be a regexp that does not match the list of completion candidates. The regexp string can carry the text properties separator and description, which if present completing-read-multiple will show as part of the prompt. See the user option crm-prompt.

View in manual

Probably introduced at or before Emacs version 24.4.

Aliases

crm-default-separator (obsolete since 29.1)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/crm.el.gz
(defvar crm-separator
  (propertize "[ \t]*,[ \t]*" 'separator "," 'description "comma-separated list")
  "Separator regexp used for separating strings in `completing-read-multiple'.
It should be a regexp that does not match the list of completion
candidates.  The regexp string can carry the text properties `separator'
and `description', which if present `completing-read-multiple' will show
as part of the prompt.  See the user option `crm-prompt'.")