Variable: srecode-insert-ask-variable-method
srecode-insert-ask-variable-method is a customizable variable defined
in insert.el.gz.
Value
ask
Documentation
Determine how to ask for a dictionary value when inserting a template.
Only the ASK style inserter will query the user for a value.
Dictionary value references that ask begin with the ? character.
Possible values are:
ask - Prompt in the minibuffer as the value is inserted.
field - Use the dictionary macro name as the inserted value,
and place a field there. Matched fields change together.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/srecode/insert.el.gz
;;; Code:
(defcustom srecode-insert-ask-variable-method 'ask
"Determine how to ask for a dictionary value when inserting a template.
Only the ASK style inserter will query the user for a value.
Dictionary value references that ask begin with the ? character.
Possible values are:
`ask' - Prompt in the minibuffer as the value is inserted.
`field' - Use the dictionary macro name as the inserted value,
and place a field there. Matched fields change together."
:group 'srecode
:type '(choice (const :tag "Ask" ask)
(const :tag "Field" field)))