Variable: eudc-inline-expansion-format

eudc-inline-expansion-format is a customizable variable defined in eudc-vars.el.gz.

Value

("%s %s <%s>" firstname name email)

Documentation

A list specifying the format of the expansion of inline queries.

This variable controls what eudc-expand-inline actually inserts in the buffer. First element is a string passed to format. Remaining elements are symbols indicating attribute names; the corresponding values are passed as additional arguments to format.

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

Probably introduced at or before Emacs version 25.1.

Source Code

;; Defined in /usr/src/emacs/lisp/net/eudc-vars.el.gz
(defcustom eudc-inline-expansion-format '("%s %s <%s>" firstname name email)
  "A list specifying the format of the expansion of inline queries.
This variable controls what `eudc-expand-inline' actually inserts in
the buffer.  First element is a string passed to `format'.  Remaining
elements are symbols indicating attribute names; the corresponding values
are passed as additional arguments to `format'."
  :type  '(list
	   (string :tag "Format String")
	   (repeat :inline t
		   :tag "Attributes"
		   (choice
		    :tag "Attribute"
		    (const :menu-tag "First Name" :tag "First Name" firstname)
		    (const :menu-tag "Surname" :tag "Surname" name)
		    (const :menu-tag "Email Address" :tag "Email Address" email)
		    (const :menu-tag "Phone" :tag "Phone" phone)
		    (symbol :menu-tag "Other")
		    (symbol :tag "Attribute name"))))
  :version "25.1")