Variable: gnus-group-jump-to-group-prompt

gnus-group-jump-to-group-prompt is a customizable variable defined in gnus-group.el.gz.

Value

nil

Documentation

Default prompt for gnus-group-jump-to-group.

If non-nil, the value should be a string or an alist. If it is a string, e.g. "nnml:", in which case gnus-group-jump-to-group offers "Group: nnml:" in the minibuffer prompt.

If it is an alist, it must consist of (NUMBER . PROMPT) pairs, for example:
((1 . "") (2 . "nnfolder+archive:")). The element with number 0 is
used when no prefix argument is given to gnus-group-jump-to-group.

This variable was added, or its default value changed, in Emacs 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defcustom gnus-group-jump-to-group-prompt nil
  "Default prompt for `gnus-group-jump-to-group'.

If non-nil, the value should be a string or an alist.  If it is a string,
e.g. \"nnml:\", in which case `gnus-group-jump-to-group' offers \"Group:
nnml:\" in the minibuffer prompt.

If it is an alist, it must consist of \(NUMBER .  PROMPT) pairs, for example:
\((1 .  \"\") (2 .  \"nnfolder+archive:\")).  The element with number 0 is
used when no prefix argument is given to `gnus-group-jump-to-group'."
  :version "22.1"
  :group 'gnus-group-various
  :type '(choice (string :tag "Prompt string")
		 (const :tag "Empty" nil)
		 (repeat (cons (integer :tag "Argument")
			       (string :tag "Prompt string")))))