Variable: rcirc-nick-completion-format

rcirc-nick-completion-format is a customizable variable defined in rcirc.el.gz.

Value

"%s: "

Documentation

Format string to use in nick completions.

The format string is only used when completing at the beginning of a line. The string is passed as the first argument to format with the nickname as the second argument.

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

Source Code

;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defcustom rcirc-nick-completion-format "%s: "
  "Format string to use in nick completions.

The format string is only used when completing at the beginning
of a line.  The string is passed as the first argument to
`format' with the nickname as the second argument."
  :version "24.1"
  :type 'string)