annotate man/lispref/minibuf.texi @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents 6075d714658b
children 2f8bb876ab1d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 @c -*-texinfo-*-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 @c This is part of the XEmacs Lisp Reference Manual.
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 70
diff changeset
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1997 Free Software Foundation, Inc.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 @c See the file lispref.texi for copying conditions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 @setfilename ../../info/minibuf.info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 @node Minibuffers, Command Loop, Read and Print, Top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 @chapter Minibuffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 @cindex arguments, reading
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 @cindex complex arguments
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 @cindex minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 A @dfn{minibuffer} is a special buffer that XEmacs commands use to read
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 arguments more complicated than the single numeric prefix argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 These arguments include file names, buffer names, and command names (as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 in @kbd{M-x}). The minibuffer is displayed on the bottom line of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 frame, in the same place as the echo area, but only while it is in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 use for reading an argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 * Intro to Minibuffers:: Basic information about minibuffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 * Text from Minibuffer:: How to read a straight text string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 * Object from Minibuffer:: How to read a Lisp object or expression.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 * Minibuffer History:: Recording previous minibuffer inputs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 so the user can reuse them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 * Completion:: How to invoke and customize completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 * Yes-or-No Queries:: Asking a question with a simple answer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 * Multiple Queries:: Asking a series of similar questions.
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
28 * Reading a Password:: Reading a password from the terminal.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 * Minibuffer Misc:: Various customization hooks and variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 @node Intro to Minibuffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 @section Introduction to Minibuffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 In most ways, a minibuffer is a normal XEmacs buffer. Most operations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 @emph{within} a buffer, such as editing commands, work normally in a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 minibuffer. However, many operations for managing buffers do not apply
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 to minibuffers. The name of a minibuffer always has the form @w{@samp{
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 *Minibuf-@var{number}}}, and it cannot be changed. Minibuffers are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 displayed only in special windows used only for minibuffers; these
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
41 windows always appear at the bottom of a frame. (Sometimes frames have
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 no minibuffer window, and sometimes a special kind of frame contains
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 nothing but a minibuffer window; see @ref{Minibuffers and Frames}.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 The minibuffer's window is normally a single line. You can resize it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 temporarily with the window sizing commands; it reverts to its normal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 size when the minibuffer is exited. You can resize it permanently by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 using the window sizing commands in the frame's other window, when the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 minibuffer is not active. If the frame contains just a minibuffer, you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 can change the minibuffer's size by changing the frame's size.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 If a command uses a minibuffer while there is an active minibuffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 this is called a @dfn{recursive minibuffer}. The first minibuffer is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 named @w{@samp{ *Minibuf-0*}}. Recursive minibuffers are named by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 incrementing the number at the end of the name. (The names begin with a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 space so that they won't show up in normal buffer lists.) Of several
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 recursive minibuffers, the innermost (or most recently entered) is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 active minibuffer. We usually call this ``the'' minibuffer. You can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 permit or forbid recursive minibuffers by setting the variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 @code{enable-recursive-minibuffers}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 Like other buffers, a minibuffer may use any of several local keymaps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (@pxref{Keymaps}); these contain various exit commands and in some cases
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 completion commands (@pxref{Completion}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 @code{minibuffer-local-map} is for ordinary input (no completion).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 @code{minibuffer-local-completion-map} is for permissive completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 @code{minibuffer-local-must-match-map} is for strict completion and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 for cautious completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 @node Text from Minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 @section Reading Text Strings with the Minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 Most often, the minibuffer is used to read text as a string. It can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 also be used to read a Lisp object in textual form. The most basic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 primitive for minibuffer input is @code{read-from-minibuffer}; it can do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 either one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 In most cases, you should not call minibuffer input functions in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 middle of a Lisp function. Instead, do all minibuffer input as part of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 reading the arguments for a command, in the @code{interactive} spec.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 @xref{Defining Commands}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
91 @defun read-from-minibuffer prompt-string &optional initial-contents keymap read hist abbrev-table default
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 This function is the most general way to get input through the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 minibuffer. By default, it accepts arbitrary text and returns it as a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 string; however, if @var{read} is non-@code{nil}, then it uses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 @code{read} to convert the text into a Lisp object (@pxref{Input
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 Functions}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 The first thing this function does is to activate a minibuffer and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 display it with @var{prompt-string} as the prompt. This value must be a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 Then, if @var{initial-contents} is a string, @code{read-from-minibuffer}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 inserts it into the minibuffer, leaving point at the end. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 minibuffer appears with this text as its contents.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 The value of @var{initial-contents} may also be a cons cell of the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 @code{(@var{string} . @var{position})}. This means to insert
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 @var{string} in the minibuffer but put point @var{position} characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 from the beginning, rather than at the end.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
112 When the user types a command to exit the minibuffer,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
113 @code{read-from-minibuffer} constructs the return value from the text in
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
114 the minibuffer. Normally it returns a string containing that text.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
115 However, if @var{read} is non-@code{nil}, @code{read-from-minibuffer}
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
116 reads the text and returns the resulting Lisp object, unevaluated.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
117 (@xref{Input Functions}, for information about reading.)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
118
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
119 The argument @var{default} specifies a default value to make available
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
120 through the history commands. It should be a string, or @code{nil}.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
121
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 If @var{keymap} is non-@code{nil}, that keymap is the local keymap to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 use in the minibuffer. If @var{keymap} is omitted or @code{nil}, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 value of @code{minibuffer-local-map} is used as the keymap. Specifying
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 a keymap is the most important way to customize the minibuffer for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 various applications such as completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
128 The argument @var{abbrev-table} specifies @code{local-abbrev-table} in
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
129 the minibuffer (@pxref{Standard Abbrev Tables}).
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
130
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 The argument @var{hist} specifies which history list variable to use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 for saving the input and for history commands used in the minibuffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 It defaults to @code{minibuffer-history}. @xref{Minibuffer History}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 When the user types a command to exit the minibuffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 @code{read-from-minibuffer} uses the text in the minibuffer to produce
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 its return value. Normally it simply makes a string containing that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 text. However, if @var{read} is non-@code{nil},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 @code{read-from-minibuffer} reads the text and returns the resulting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 Lisp object, unevaluated. (@xref{Input Functions}, for information
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 about reading.)
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
142
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
143 @strong{Usage note:} The @var{initial-contents} argument and the
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
144 @var{default} argument are two alternative features for more or less the
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
145 same job. It does not make sense to use both features in a single call
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
146 to @code{read-from-minibuffer}. In general, we recommend using
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
147 @var{default}, since this permits the user to insert the default value
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
148 when it is wanted, but does not burden the user with deleting it from
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
149 the minibuffer on other occasions. However, if user is supposed to edit
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
150 default value, @var{initial-contents} may be preferred.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
153 @defun read-string prompt &optional initial history
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 This function reads a string from the minibuffer and returns it. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 arguments @var{prompt} and @var{initial} are used as in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 @code{read-from-minibuffer}. The keymap used is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 @code{minibuffer-local-map}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
159 The optional argument @var{history}, if non-nil, specifies a history
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
160 list and optionally the initial position in the list.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
161
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
162 This function is a simplified interface to the
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 @code{read-from-minibuffer} function:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (read-string @var{prompt} @var{initial})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 @equiv{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 (read-from-minibuffer @var{prompt} @var{initial} nil nil nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 @defvar minibuffer-local-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 This is the default local keymap for reading from the minibuffer. By
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 default, it makes the following bindings:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 @table @asis
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
179 @item @kbd{C-j}
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 @code{exit-minibuffer}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 @item @key{RET}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 @code{exit-minibuffer}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 @item @kbd{C-g}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 @code{abort-recursive-edit}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 @item @kbd{M-n}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 @code{next-history-element}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 @item @kbd{M-p}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 @code{previous-history-element}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 @item @kbd{M-r}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 @code{next-matching-history-element}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 @item @kbd{M-s}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 @code{previous-matching-history-element}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 @end table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 @node Object from Minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 @section Reading Lisp Objects with the Minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 This section describes functions for reading Lisp objects with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 minibuffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 @defun read-minibuffer prompt &optional initial
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
209 This function reads a Lisp object using the minibuffer, and returns it
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 without evaluating it. The arguments @var{prompt} and @var{initial} are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 used as in @code{read-from-minibuffer}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 This is a simplified interface to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 @code{read-from-minibuffer} function:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 (read-minibuffer @var{prompt} @var{initial})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 @equiv{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (read-from-minibuffer @var{prompt} @var{initial} nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 Here is an example in which we supply the string @code{"(testing)"} as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 initial input:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 (read-minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 "Enter an expression: " (format "%s" '(testing)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 ;; @r{Here is how the minibuffer is displayed:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 Enter an expression: (testing)@point{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 The user can type @key{RET} immediately to use the initial input as a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 default, or can edit the input.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 @defun eval-minibuffer prompt &optional initial
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
248 This function reads a Lisp expression using the minibuffer, evaluates
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
249 it, then returns the result. The arguments @var{prompt} and
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
250 @var{initial} are used as in @code{read-from-minibuffer}.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 This function simply evaluates the result of a call to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 @code{read-minibuffer}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 (eval-minibuffer @var{prompt} @var{initial})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 @equiv{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (eval (read-minibuffer @var{prompt} @var{initial}))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 @defun edit-and-eval-command prompt form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 This function reads a Lisp expression in the minibuffer, and then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 evaluates it. The difference between this command and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 @code{eval-minibuffer} is that here the initial @var{form} is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 optional and it is treated as a Lisp object to be converted to printed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 representation rather than as a string of text. It is printed with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 @code{prin1}, so if it is a string, double-quote characters (@samp{"})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 appear in the initial text. @xref{Output Functions}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 The first thing @code{edit-and-eval-command} does is to activate the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 minibuffer with @var{prompt} as the prompt. Then it inserts the printed
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
275 representation of @var{form} in the minibuffer, and lets the user edit it.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 When the user exits the minibuffer, the edited text is read with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 @code{read} and then evaluated. The resulting value becomes the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 of @code{edit-and-eval-command}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 In the following example, we offer the user an expression with initial
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 text which is a valid form already:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 (edit-and-eval-command "Please edit: " '(forward-word 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 ;; @r{After evaluation of the preceding expression,}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 ;; @r{the following appears in the minibuffer:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 Please edit: (forward-word 1)@point{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 Typing @key{RET} right away would exit the minibuffer and evaluate the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 expression, thus moving point forward one word.
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 70
diff changeset
301 @code{edit-and-eval-command} returns @code{t} in this example.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 @node Minibuffer History
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 @section Minibuffer History
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 @cindex minibuffer history
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 @cindex history list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 A @dfn{minibuffer history list} records previous minibuffer inputs so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 the user can reuse them conveniently. A history list is actually a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 symbol, not a list; it is a variable whose value is a list of strings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 (previous inputs), most recent first.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 There are many separate history lists, used for different kinds of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 inputs. It's the Lisp programmer's job to specify the right history
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 list for each use of the minibuffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 The basic minibuffer input functions @code{read-from-minibuffer} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 @code{completing-read} both accept an optional argument named @var{hist}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 which is how you specify the history list. Here are the possible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 values:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 @table @asis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 @item @var{variable}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 Use @var{variable} (a symbol) as the history list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 @item (@var{variable} . @var{startpos})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 Use @var{variable} (a symbol) as the history list, and assume that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 initial history position is @var{startpos} (an integer, counting from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 zero which specifies the most recent element of the history).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 If you specify @var{startpos}, then you should also specify that element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 of the history as the initial minibuffer contents, for consistency.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 @end table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 If you don't specify @var{hist}, then the default history list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 @code{minibuffer-history} is used. For other standard history lists,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 see below. You can also create your own history list variable; just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 initialize it to @code{nil} before the first use.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 Both @code{read-from-minibuffer} and @code{completing-read} add new
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 elements to the history list automatically, and provide commands to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 allow the user to reuse items on the list. The only thing your program
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 needs to do to use a history list is to initialize it and to pass its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 name to the input functions when you wish. But it is safe to modify the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 list by hand when the minibuffer input functions are not using it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
348 Here are some of the standard minibuffer history list variables:
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
349
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 @defvar minibuffer-history
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 The default history list for minibuffer history input.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 @defvar query-replace-history
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 A history list for arguments to @code{query-replace} (and similar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 arguments to other commands).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 @defvar file-name-history
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 A history list for file name arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 @defvar regexp-history
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 A history list for regular expression arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 @defvar extended-command-history
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 A history list for arguments that are names of extended commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 @defvar shell-command-history
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 A history list for arguments that are shell commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 @defvar read-expression-history
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 A history list for arguments that are Lisp expressions to evaluate.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 70
diff changeset
379 @defvar Info-minibuffer-history
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 70
diff changeset
380 A history list for Info mode's minibuffer.
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 70
diff changeset
381 @end defvar
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 70
diff changeset
382
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 70
diff changeset
383 @defvar Manual-page-minibuffer-history
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 70
diff changeset
384 A history list for @code{manual-entry}.
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 70
diff changeset
385 @end defvar
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 70
diff changeset
386
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 70
diff changeset
387 There are many other minibuffer history lists, defined by various
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 70
diff changeset
388 libraries. An @kbd{M-x apropos} search for @samp{history} should prove
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 70
diff changeset
389 fruitful in discovering them.
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 70
diff changeset
390
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 @node Completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 @section Completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 @cindex completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 @dfn{Completion} is a feature that fills in the rest of a name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 starting from an abbreviation for it. Completion works by comparing the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 user's input against a list of valid names and determining how much of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 the name is determined uniquely by what the user has typed. For
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 example, when you type @kbd{C-x b} (@code{switch-to-buffer}) and then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 type the first few letters of the name of the buffer to which you wish
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 to switch, and then type @key{TAB} (@code{minibuffer-complete}), Emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 extends the name as far as it can.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 Standard XEmacs commands offer completion for names of symbols, files,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 buffers, and processes; with the functions in this section, you can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 implement completion for other kinds of names.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 The @code{try-completion} function is the basic primitive for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 completion: it returns the longest determined completion of a given
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 initial string, with a given set of strings to match against.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 The function @code{completing-read} provides a higher-level interface
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 for completion. A call to @code{completing-read} specifies how to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 determine the list of valid names. The function then activates the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 minibuffer with a local keymap that binds a few keys to commands useful
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 for completion. Other functions provide convenient simple interfaces
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 for reading certain kinds of names with completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 * Basic Completion:: Low-level functions for completing strings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 (These are too low level to use the minibuffer.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 * Minibuffer Completion:: Invoking the minibuffer with completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 * Completion Commands:: Minibuffer commands that do completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 * High-Level Completion:: Convenient special cases of completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 (reading buffer name, file name, etc.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 * Reading File Names:: Using completion to read file names.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 * Programmed Completion:: Finding the completions for a given file name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 @node Basic Completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 @subsection Basic Completion Functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 The two functions @code{try-completion} and @code{all-completions}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 have nothing in themselves to do with minibuffers. We describe them in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 this chapter so as to keep them near the higher-level completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 features that do use the minibuffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 @defun try-completion string collection &optional predicate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 This function returns the longest common substring of all possible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 completions of @var{string} in @var{collection}. The value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 @var{collection} must be an alist, an obarray, or a function that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 implements a virtual set of strings (see below).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 Completion compares @var{string} against each of the permissible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 completions specified by @var{collection}; if the beginning of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 permissible completion equals @var{string}, it matches. If no permissible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 completions match, @code{try-completion} returns @code{nil}. If only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 one permissible completion matches, and the match is exact, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 @code{try-completion} returns @code{t}. Otherwise, the value is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 longest initial sequence common to all the permissible completions that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 match.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 If @var{collection} is an alist (@pxref{Association Lists}), the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 @sc{car}s of the alist elements form the set of permissible completions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 @cindex obarray in completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 If @var{collection} is an obarray (@pxref{Creating Symbols}), the names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 of all symbols in the obarray form the set of permissible completions. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 global variable @code{obarray} holds an obarray containing the names of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 all interned Lisp symbols.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 Note that the only valid way to make a new obarray is to create it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 empty and then add symbols to it one by one using @code{intern}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 Also, you cannot intern a given symbol in more than one obarray.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 If the argument @var{predicate} is non-@code{nil}, then it must be a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 function of one argument. It is used to test each possible match, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 the match is accepted only if @var{predicate} returns non-@code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 The argument given to @var{predicate} is either a cons cell from the alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 (the @sc{car} of which is a string) or else it is a symbol (@emph{not} a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 symbol name) from the obarray.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 You can also use a symbol that is a function as @var{collection}. Then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 the function is solely responsible for performing completion;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 @code{try-completion} returns whatever this function returns. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 function is called with three arguments: @var{string}, @var{predicate}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 and @code{nil}. (The reason for the third argument is so that the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 function can be used in @code{all-completions} and do the appropriate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 thing in either case.) @xref{Programmed Completion}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 In the first of the following examples, the string @samp{foo} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 matched by three of the alist @sc{car}s. All of the matches begin with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 the characters @samp{fooba}, so that is the result. In the second
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 example, there is only one possible match, and it is exact, so the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 is @code{t}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 (try-completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 "foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 @result{} "fooba"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 (try-completion "foo" '(("barfoo" 2) ("foo" 3)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 @result{} t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 In the following example, numerous symbols begin with the characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 @samp{forw}, and all of them begin with the word @samp{forward}. In
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 most of the symbols, this is followed with a @samp{-}, but not in all,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 so no more than @samp{forward} can be completed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 (try-completion "forw" obarray)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 @result{} "forward"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 Finally, in the following example, only two of the three possible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 matches pass the predicate @code{test} (the string @samp{foobaz} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 too short). Both of those begin with the string @samp{foobar}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 (defun test (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 (> (length (car s)) 6))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 @result{} test
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 (try-completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 "foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 'test)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 @result{} "foobar"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 @defun all-completions string collection &optional predicate nospace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 This function returns a list of all possible completions of
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
535 @var{string}. The arguments to this function are the same as those of
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 @code{try-completion}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 If @var{collection} is a function, it is called with three arguments:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 @var{string}, @var{predicate} and @code{t}; then @code{all-completions}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 returns whatever the function returns. @xref{Programmed Completion}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 If @var{nospace} is non-@code{nil}, completions that start with a space
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 are ignored unless @var{string} also starts with a space.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 Here is an example, using the function @code{test} shown in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 example for @code{try-completion}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 (defun test (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 (> (length (car s)) 6))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 @result{} test
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 (all-completions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 "foo"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 'test)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 @result{} ("foobar1" "foobar2")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 @defvar completion-ignore-case
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 If the value of this variable is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 non-@code{nil}, XEmacs does not consider case significant in completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 @node Minibuffer Completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 @subsection Completion and the Minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 This section describes the basic interface for reading from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 minibuffer with completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
576 @defun completing-read prompt collection &optional predicate require-match initial hist default
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 This function reads a string in the minibuffer, assisting the user by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 providing completion. It activates the minibuffer with prompt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 @var{prompt}, which must be a string. If @var{initial} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 non-@code{nil}, @code{completing-read} inserts it into the minibuffer as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 part of the input. Then it allows the user to edit the input, providing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 several commands to attempt completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 The actual completion is done by passing @var{collection} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 @var{predicate} to the function @code{try-completion}. This happens in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 certain commands bound in the local keymaps used for completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 If @var{require-match} is @code{t}, the usual minibuffer exit commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 won't exit unless the input completes to an element of @var{collection}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 If @var{require-match} is neither @code{nil} nor @code{t}, then the exit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 commands won't exit unless the input typed is itself an element of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 @var{collection}. If @var{require-match} is @code{nil}, the exit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 commands work regardless of the input in the minibuffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
595 However, empty input is always permitted, regardless of the value of
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
596 @var{require-match}; in that case, @code{completing-read} returns
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
597 @var{default}. The value of @var{default} (if non-@code{nil}) is also
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
598 available to the user through the history commands.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
599
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 The user can exit with null input by typing @key{RET} with an empty
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
601 minibuffer. Then @code{completing-read} returns @code{""}. This is how
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
602 the user requests whatever default the command uses for the value being
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
603 read. The user can return using @key{RET} in this way regardless of the
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
604 value of @var{require-match}, and regardless of whether the empty string
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
605 is included in @var{collection}.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 The function @code{completing-read} works by calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 @code{read-minibuffer}. It uses @code{minibuffer-local-completion-map}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 as the keymap if @var{require-match} is @code{nil}, and uses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 @code{minibuffer-local-must-match-map} if @var{require-match} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 non-@code{nil}. @xref{Completion Commands}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 The argument @var{hist} specifies which history list variable to use for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 saving the input and for minibuffer history commands. It defaults to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 @code{minibuffer-history}. @xref{Minibuffer History}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 Completion ignores case when comparing the input against the possible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 matches, if the built-in variable @code{completion-ignore-case} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 non-@code{nil}. @xref{Basic Completion}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 Here's an example of using @code{completing-read}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 (completing-read
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 "Complete a foo: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 nil t "fo")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 ;; @r{After evaluation of the preceding expression,}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 ;; @r{the following appears in the minibuffer:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 Complete a foo: fo@point{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 If the user then types @kbd{@key{DEL} @key{DEL} b @key{RET}},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 @code{completing-read} returns @code{barfoo}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 The @code{completing-read} function binds three variables to pass
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 information to the commands that actually do completion. These
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 variables are @code{minibuffer-completion-table},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 @code{minibuffer-completion-predicate} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 @code{minibuffer-completion-confirm}. For more information about them,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 see @ref{Completion Commands}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 @node Completion Commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 @subsection Minibuffer Commands That Do Completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 This section describes the keymaps, commands and user options used in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 the minibuffer to do completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 @defvar minibuffer-local-completion-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 @code{completing-read} uses this value as the local keymap when an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 exact match of one of the completions is not required. By default, this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 keymap makes the following bindings:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 @table @asis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 @item @kbd{?}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 @code{minibuffer-completion-help}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 @item @key{SPC}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 @code{minibuffer-complete-word}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 @item @key{TAB}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 @code{minibuffer-complete}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 @end table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 with other characters bound as in @code{minibuffer-local-map}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 (@pxref{Text from Minibuffer}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 @defvar minibuffer-local-must-match-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 @code{completing-read} uses this value as the local keymap when an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 exact match of one of the completions is required. Therefore, no keys
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 are bound to @code{exit-minibuffer}, the command that exits the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 minibuffer unconditionally. By default, this keymap makes the following
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 bindings:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 @table @asis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 @item @kbd{?}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 @code{minibuffer-completion-help}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 @item @key{SPC}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 @code{minibuffer-complete-word}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 @item @key{TAB}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 @code{minibuffer-complete}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
697 @item @kbd{C-j}
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 @code{minibuffer-complete-and-exit}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 @item @key{RET}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 @code{minibuffer-complete-and-exit}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 @end table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 with other characters bound as in @code{minibuffer-local-map}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 @defvar minibuffer-completion-table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 The value of this variable is the alist or obarray used for completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 in the minibuffer. This is the global variable that contains what
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 @code{completing-read} passes to @code{try-completion}. It is used by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 minibuffer completion commands such as @code{minibuffer-complete-word}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 @defvar minibuffer-completion-predicate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 This variable's value is the predicate that @code{completing-read}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 passes to @code{try-completion}. The variable is also used by the other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 minibuffer completion functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 @deffn Command minibuffer-complete-word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 This function completes the minibuffer contents by at most a single
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 word. Even if the minibuffer contents have only one completion,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 @code{minibuffer-complete-word} does not add any characters beyond the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 first character that is not a word constituent. @xref{Syntax Tables}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 @deffn Command minibuffer-complete
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 This function completes the minibuffer contents as far as possible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 @deffn Command minibuffer-complete-and-exit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 This function completes the minibuffer contents, and exits if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 confirmation is not required, i.e., if
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
735 @code{minibuffer-completion-confirm} is @code{nil}. If confirmation
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 @emph{is} required, it is given by repeating this command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 immediately---the command is programmed to work without confirmation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 when run twice in succession.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 @defvar minibuffer-completion-confirm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 When the value of this variable is non-@code{nil}, XEmacs asks for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 confirmation of a completion before exiting the minibuffer. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 function @code{minibuffer-complete-and-exit} checks the value of this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 variable before it exits.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 @deffn Command minibuffer-completion-help
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 This function creates a list of the possible completions of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 current minibuffer contents. It works by calling @code{all-completions}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 using the value of the variable @code{minibuffer-completion-table} as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 the @var{collection} argument, and the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 @code{minibuffer-completion-predicate} as the @var{predicate} argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 The list of completions is displayed as text in a buffer named
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 @samp{*Completions*}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 @defun display-completion-list completions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 This function displays @var{completions} to the stream in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 @code{standard-output}, usually a buffer. (@xref{Read and Print}, for more
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 information about streams.) The argument @var{completions} is normally
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 a list of completions just returned by @code{all-completions}, but it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 does not have to be. Each element may be a symbol or a string, either
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 of which is simply printed, or a list of two strings, which is printed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 as if the strings were concatenated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 This function is called by @code{minibuffer-completion-help}. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 most common way to use it is together with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 @code{with-output-to-temp-buffer}, like this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 (with-output-to-temp-buffer "*Completions*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 (display-completion-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 (all-completions (buffer-string) my-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 @defopt completion-auto-help
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 If this variable is non-@code{nil}, the completion commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 automatically display a list of possible completions whenever nothing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 can be completed because the next character is not uniquely determined.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 @end defopt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 @node High-Level Completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 @subsection High-Level Completion Functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 This section describes the higher-level convenient functions for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 reading certain sorts of names with completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 In most cases, you should not call these functions in the middle of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 Lisp function. When possible, do all minibuffer input as part of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 reading the arguments for a command, in the @code{interactive} spec.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 @xref{Defining Commands}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 @defun read-buffer prompt &optional default existing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 This function reads the name of a buffer and returns it as a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 The argument @var{default} is the default name to use, the value to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 return if the user exits with an empty minibuffer. If non-@code{nil},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 it should be a string or a buffer. It is mentioned in the prompt, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 is not inserted in the minibuffer as initial input.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 If @var{existing} is non-@code{nil}, then the name specified must be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 that of an existing buffer. The usual commands to exit the minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 do not exit if the text is not valid, and @key{RET} does completion to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 attempt to find a valid name. (However, @var{default} is not checked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 for validity; it is returned, whatever it is, if the user exits with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 minibuffer empty.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 In the following example, the user enters @samp{minibuffer.t}, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 then types @key{RET}. The argument @var{existing} is @code{t}, and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 only buffer name starting with the given input is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 @samp{minibuffer.texi}, so that name is the value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 (read-buffer "Buffer name? " "foo" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 ;; @r{After evaluation of the preceding expression,}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 ;; @r{the following prompt appears,}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 ;; @r{with an empty minibuffer:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 Buffer name? (default foo) @point{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 ;; @r{The user types @kbd{minibuffer.t @key{RET}}.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 @result{} "minibuffer.texi"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 @defun read-command prompt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 This function reads the name of a command and returns it as a Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 symbol. The argument @var{prompt} is used as in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 @code{read-from-minibuffer}. Recall that a command is anything for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 which @code{commandp} returns @code{t}, and a command name is a symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 for which @code{commandp} returns @code{t}. @xref{Interactive Call}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 (read-command "Command name? ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 ;; @r{After evaluation of the preceding expression,}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 ;; @r{the following prompt appears with an empty minibuffer:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 Command name?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 If the user types @kbd{forward-c @key{RET}}, then this function returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 @code{forward-char}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 The @code{read-command} function is a simplified interface to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 function @code{completing-read}. It uses the variable @code{obarray} so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 as to complete in the set of extant Lisp symbols, and it uses the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 @code{commandp} predicate so as to accept only command names:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 @cindex @code{commandp} example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 (read-command @var{prompt})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 @equiv{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 (intern (completing-read @var{prompt} obarray
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 'commandp t nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 @defun read-variable prompt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 This function reads the name of a user variable and returns it as a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 (read-variable "Variable name? ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 ;; @r{After evaluation of the preceding expression,}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 ;; @r{the following prompt appears,}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 ;; @r{with an empty minibuffer:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 Variable name? @point{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 If the user then types @kbd{fill-p @key{RET}}, @code{read-variable}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 returns @code{fill-prefix}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 This function is similar to @code{read-command}, but uses the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 predicate @code{user-variable-p} instead of @code{commandp}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 @cindex @code{user-variable-p} example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 (read-variable @var{prompt})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 @equiv{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 (intern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 (completing-read @var{prompt} obarray
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 'user-variable-p t nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 @node Reading File Names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 @subsection Reading File Names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 Here is another high-level completion function, designed for reading a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 file name. It provides special features including automatic insertion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 of the default directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 @defun read-file-name prompt &optional directory default existing initial
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 This function reads a file name in the minibuffer, prompting with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 @var{prompt} and providing completion. If @var{default} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 non-@code{nil}, then the function returns @var{default} if the user just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 types @key{RET}. @var{default} is not checked for validity; it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 returned, whatever it is, if the user exits with the minibuffer empty.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 If @var{existing} is non-@code{nil}, then the user must specify the name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 of an existing file; @key{RET} performs completion to make the name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 valid if possible, and then refuses to exit if it is not valid. If the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 value of @var{existing} is neither @code{nil} nor @code{t}, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 @key{RET} also requires confirmation after completion. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 @var{existing} is @code{nil}, then the name of a nonexistent file is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 acceptable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 The argument @var{directory} specifies the directory to use for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 completion of relative file names. If @code{insert-default-directory}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 is non-@code{nil}, @var{directory} is also inserted in the minibuffer as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 initial input. It defaults to the current buffer's value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 @code{default-directory}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 If you specify @var{initial}, that is an initial file name to insert in
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
946 the buffer (after @var{directory}, if that is inserted). In this
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 case, point goes at the beginning of @var{initial}. The default for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 @var{initial} is @code{nil}---don't insert any file name. To see what
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 @var{initial} does, try the command @kbd{C-x C-v}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 Here is an example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 (read-file-name "The file is ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 ;; @r{After evaluation of the preceding expression,}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 ;; @r{the following appears in the minibuffer:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 The file is /gp/gnu/elisp/@point{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 Typing @kbd{manual @key{TAB}} results in the following:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 The file is /gp/gnu/elisp/manual.texi@point{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 @c Wordy to avoid overfull hbox in smallbook mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 If the user types @key{RET}, @code{read-file-name} returns the file name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 as the string @code{"/gp/gnu/elisp/manual.texi"}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 @defopt insert-default-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 This variable is used by @code{read-file-name}. Its value controls
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 whether @code{read-file-name} starts by placing the name of the default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 directory in the minibuffer, plus the initial file name if any. If the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 value of this variable is @code{nil}, then @code{read-file-name} does
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 not place any initial input in the minibuffer (unless you specify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 initial input with the @var{initial} argument). In that case, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 default directory is still used for completion of relative file names,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 but is not displayed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 For example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 ;; @r{Here the minibuffer starts out with the default directory.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 (let ((insert-default-directory t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 (read-file-name "The file is "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 The file is ~lewis/manual/@point{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 ;; @r{Here the minibuffer is empty and only the prompt}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 ;; @r{appears on its line.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 (let ((insert-default-directory nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 (read-file-name "The file is "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 The file is @point{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 ---------- Buffer: Minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 @end defopt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 @node Programmed Completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 @subsection Programmed Completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 @cindex programmed completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 Sometimes it is not possible to create an alist or an obarray
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 containing all the intended possible completions. In such a case, you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 can supply your own function to compute the completion of a given string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 This is called @dfn{programmed completion}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 To use this feature, pass a symbol with a function definition as the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 @var{collection} argument to @code{completing-read}. The function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 @code{completing-read} arranges to pass your completion function along
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 to @code{try-completion} and @code{all-completions}, which will then let
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 your function do all the work.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 The completion function should accept three arguments:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 The string to be completed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 The predicate function to filter possible matches, or @code{nil} if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 none. Your function should call the predicate for each possible match,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 and ignore the possible match if the predicate returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 A flag specifying the type of operation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 There are three flag values for three operations:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 @itemize @bullet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 @code{nil} specifies @code{try-completion}. The completion function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 should return the completion of the specified string, or @code{t} if the
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1061 string is a unique and exact match already, or @code{nil} if the string
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1062 matches no possibility.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1063
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1064 If the string is an exact match for one possibility, but also matches
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1065 other longer possibilities, the function should return the string, not
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1066 @code{t}.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 @code{t} specifies @code{all-completions}. The completion function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 should return a list of all possible completions of the specified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 @code{lambda} specifies a test for an exact match. The completion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 function should return @code{t} if the specified string is an exact
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 match for some possibility; @code{nil} otherwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 @end itemize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 It would be consistent and clean for completion functions to allow
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 lambda expressions (lists that are functions) as well as function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 symbols as @var{collection}, but this is impossible. Lists as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 completion tables are already assigned another meaning---as alists. It
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 would be unreliable to fail to handle an alist normally because it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 also a possible function. So you must arrange for any function you wish
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 to use for completion to be encapsulated in a symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 Emacs uses programmed completion when completing file names.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 @xref{File Name Completion}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 @node Yes-or-No Queries
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 @section Yes-or-No Queries
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 @cindex asking the user questions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 @cindex querying the user
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 @cindex yes-or-no questions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 This section describes functions used to ask the user a yes-or-no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 question. The function @code{y-or-n-p} can be answered with a single
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 character; it is useful for questions where an inadvertent wrong answer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 will not have serious consequences. @code{yes-or-no-p} is suitable for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 more momentous questions, since it requires three or four characters to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 answer. Variations of these functions can be used to ask a yes-or-no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 question using a dialog box, or optionally using one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 If either of these functions is called in a command that was invoked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 using the mouse, then it uses a dialog box or pop-up menu to ask the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 question. Otherwise, it uses keyboard input.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 Strictly speaking, @code{yes-or-no-p} uses the minibuffer and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 @code{y-or-n-p} does not; but it seems best to describe them together.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 @defun y-or-n-p prompt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 This function asks the user a question, expecting input in the echo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 area. It returns @code{t} if the user types @kbd{y}, @code{nil} if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 user types @kbd{n}. This function also accepts @key{SPC} to mean yes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 and @key{DEL} to mean no. It accepts @kbd{C-]} to mean ``quit'', like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 @kbd{C-g}, because the question might look like a minibuffer and for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 that reason the user might try to use @kbd{C-]} to get out. The answer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 is a single character, with no @key{RET} needed to terminate it. Upper
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 and lower case are equivalent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 ``Asking the question'' means printing @var{prompt} in the echo area,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 followed by the string @w{@samp{(y or n) }}. If the input is not one of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 the expected answers (@kbd{y}, @kbd{n}, @kbd{@key{SPC}},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 @kbd{@key{DEL}}, or something that quits), the function responds
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 @samp{Please answer y or n.}, and repeats the request.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 This function does not actually use the minibuffer, since it does not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 allow editing of the answer. It actually uses the echo area (@pxref{The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 Echo Area}), which uses the same screen space as the minibuffer. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 cursor moves to the echo area while the question is being asked.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 The answers and their meanings, even @samp{y} and @samp{n}, are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 hardwired. The keymap @code{query-replace-map} specifies them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 @xref{Search and Replace}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 In the following example, the user first types @kbd{q}, which is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 invalid. At the next prompt the user types @kbd{y}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 (y-or-n-p "Do you need a lift? ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 ;; @r{After evaluation of the preceding expression,}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 ;; @r{the following prompt appears in the echo area:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 ---------- Echo area ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 Do you need a lift? (y or n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 ---------- Echo area ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 ;; @r{If the user then types @kbd{q}, the following appears:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 ---------- Echo area ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 Please answer y or n. Do you need a lift? (y or n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 ---------- Echo area ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 ;; @r{When the user types a valid answer,}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 ;; @r{it is displayed after the question:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 ---------- Echo area ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 Do you need a lift? (y or n) y
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 ---------- Echo area ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 We show successive lines of echo area messages, but only one actually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 appears on the screen at a time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 @defun yes-or-no-p prompt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 This function asks the user a question, expecting input in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 minibuffer. It returns @code{t} if the user enters @samp{yes},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 @code{nil} if the user types @samp{no}. The user must type @key{RET} to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 finalize the response. Upper and lower case are equivalent.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 @code{yes-or-no-p} starts by displaying @var{prompt} in the echo area,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 followed by @w{@samp{(yes or no) }}. The user must type one of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 expected responses; otherwise, the function responds @samp{Please answer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 yes or no.}, waits about two seconds and repeats the request.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 @code{yes-or-no-p} requires more work from the user than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 @code{y-or-n-p} and is appropriate for more crucial decisions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 Here is an example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 (yes-or-no-p "Do you really want to remove everything? ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 ;; @r{After evaluation of the preceding expression,}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 ;; @r{the following prompt appears,}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 ;; @r{with an empty minibuffer:}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 ---------- Buffer: minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 Do you really want to remove everything? (yes or no)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 ---------- Buffer: minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 If the user first types @kbd{y @key{RET}}, which is invalid because this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 function demands the entire word @samp{yes}, it responds by displaying
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 these prompts, with a brief pause between them:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 ---------- Buffer: minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 Please answer yes or no.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 Do you really want to remove everything? (yes or no)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 ---------- Buffer: minibuffer ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 @c The rest is XEmacs stuff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 @defun yes-or-no-p-dialog-box prompt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 This function asks the user a ``y or n'' question with a popup dialog
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 box. It returns @code{t} if the answer is ``yes''. @var{prompt} is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 string to display to ask the question.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 The following functions ask a question either in the minibuffer or a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 dialog box, depending on whether the last user event (which presumably
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 invoked this command) was a keyboard or mouse event. When XEmacs is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 running on a window system, the functions @code{y-or-n-p} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 @code{yes-or-no-p} are replaced with the following functions, so that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 menu items bring up dialog boxes instead of minibuffer questions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 @defun y-or-n-p-maybe-dialog-box prompt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 This function asks user a ``y or n'' question, using either a dialog box
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 or the minibuffer, as appropriate.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 @defun yes-or-no-p-maybe-dialog-box prompt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 This function asks user a ``yes or no'' question, using either a dialog
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 box or the minibuffer, as appropriate.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 @node Multiple Queries
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 @section Asking Multiple Y-or-N Questions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 When you have a series of similar questions to ask, such as ``Do you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 want to save this buffer'' for each buffer in turn, you should use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 @code{map-y-or-n-p} to ask the collection of questions, rather than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 asking each question individually. This gives the user certain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 convenient facilities such as the ability to answer the whole series at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 once.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 @defun map-y-or-n-p prompter actor list &optional help action-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 This function, new in Emacs 19, asks the user a series of questions,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 reading a single-character answer in the echo area for each one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 The value of @var{list} specifies the objects to ask questions about.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 It should be either a list of objects or a generator function. If it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 a function, it should expect no arguments, and should return either the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 next object to ask about, or @code{nil} meaning stop asking questions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 The argument @var{prompter} specifies how to ask each question. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 @var{prompter} is a string, the question text is computed like this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 (format @var{prompter} @var{object})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 where @var{object} is the next object to ask about (as obtained from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 @var{list}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 If not a string, @var{prompter} should be a function of one argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 (the next object to ask about) and should return the question text. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 the value is a string, that is the question to ask the user. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 function can also return @code{t} meaning do act on this object (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 don't ask the user), or @code{nil} meaning ignore this object (and don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 ask the user).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 The argument @var{actor} says how to act on the answers that the user
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 gives. It should be a function of one argument, and it is called with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 each object that the user says yes for. Its argument is always an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 object obtained from @var{list}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 If the argument @var{help} is given, it should be a list of this form:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 (@var{singular} @var{plural} @var{action})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 where @var{singular} is a string containing a singular noun that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 describes the objects conceptually being acted on, @var{plural} is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 corresponding plural noun, and @var{action} is a transitive verb
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 describing what @var{actor} does.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 If you don't specify @var{help}, the default is @code{("object"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 "objects" "act on")}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 Each time a question is asked, the user may enter @kbd{y}, @kbd{Y}, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 @key{SPC} to act on that object; @kbd{n}, @kbd{N}, or @key{DEL} to skip
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 that object; @kbd{!} to act on all following objects; @key{ESC} or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 @kbd{q} to exit (skip all following objects); @kbd{.} (period) to act on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 the current object and then exit; or @kbd{C-h} to get help. These are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 the same answers that @code{query-replace} accepts. The keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 @code{query-replace-map} defines their meaning for @code{map-y-or-n-p}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 as well as for @code{query-replace}; see @ref{Search and Replace}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 You can use @var{action-alist} to specify additional possible answers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 and what they mean. It is an alist of elements of the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 @code{(@var{char} @var{function} @var{help})}, each of which defines one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 additional answer. In this element, @var{char} is a character (the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 answer); @var{function} is a function of one argument (an object from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 @var{list}); @var{help} is a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 When the user responds with @var{char}, @code{map-y-or-n-p} calls
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 @var{function}. If it returns non-@code{nil}, the object is considered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 ``acted upon'', and @code{map-y-or-n-p} advances to the next object in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 @var{list}. If it returns @code{nil}, the prompt is repeated for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 same object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 If @code{map-y-or-n-p} is called in a command that was invoked using the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 mouse---more precisely, if @code{last-nonmenu-event} (@pxref{Command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 Loop Info}) is either @code{nil} or a list---then it uses a dialog box
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 or pop-up menu to ask the question. In this case, it does not use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 keyboard input or the echo area. You can force use of the mouse or use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 of keyboard input by binding @code{last-nonmenu-event} to a suitable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 value around the call.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 The return value of @code{map-y-or-n-p} is the number of objects acted on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1337 @node Reading a Password
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1338 @section Reading a Password
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1339 @cindex passwords, reading
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1340
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1341 To read a password to pass to another program, you can use the
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1342 function @code{read-passwd}.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1343
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1344 @defun read-passwd prompt &optional confirm default
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1345 This function reads a password, prompting with @var{prompt}. It does
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1346 not echo the password as the user types it; instead, it echoes @samp{.}
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1347 for each character in the password.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1348
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1349 The optional argument @var{confirm}, if non-@code{nil}, says to read the
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1350 password twice and insist it must be the same both times. If it isn't
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1351 the same, the user has to type it over and over until the last two
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1352 times match.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1353
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1354 The optional argument @var{default} specifies the default password to
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1355 return if the user enters empty input. It is translated to @samp{.}
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1356 and inserted in the minibuffer. If @var{default} is @code{nil}, then
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1357 @code{read-passwd} returns the null string in that case.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1358 @end defun
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1359
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1360 @defopt passwd-invert-frame-when-keyboard-grabbed
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1361 If non-nil swap the foreground and background colors of all faces while
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1362 reading a password. Default values is @code{t} unless feature
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1363 @code{infodock} is provided.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1364 @end defopt
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1365
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1366 @defopt passwd-echo
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1367 This specifies the character echoed when typing a password. When nil,
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1368 nothing is echoed.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1369 @end defopt
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1370
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 @node Minibuffer Misc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 @section Minibuffer Miscellany
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 This section describes some basic functions and variables related to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 minibuffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 @deffn Command exit-minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 This command exits the active minibuffer. It is normally bound to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 keys in minibuffer local keymaps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 @deffn Command self-insert-and-exit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 This command exits the active minibuffer after inserting the last
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 character typed on the keyboard (found in @code{last-command-char};
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 @pxref{Command Loop Info}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 @deffn Command previous-history-element n
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 This command replaces the minibuffer contents with the value of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 @var{n}th previous (older) history element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 @deffn Command next-history-element n
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 This command replaces the minibuffer contents with the value of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 @var{n}th more recent history element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 @deffn Command previous-matching-history-element pattern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 This command replaces the minibuffer contents with the value of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 previous (older) history element that matches @var{pattern} (a regular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 expression).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 @deffn Command next-matching-history-element pattern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 This command replaces the minibuffer contents with the value of the next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 (newer) history element that matches @var{pattern} (a regular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 expression).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 @defun minibuffer-prompt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 This function returns the prompt string of the currently active
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 minibuffer. If no minibuffer is active, it returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 @defun minibuffer-prompt-width
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 This function returns the display width of the prompt string of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 currently active minibuffer. If no minibuffer is active, it returns 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 @defvar minibuffer-setup-hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 This is a normal hook that is run whenever the minibuffer is entered.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 @xref{Hooks}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 @defvar minibuffer-exit-hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 This is a normal hook that is run whenever the minibuffer is exited.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 @xref{Hooks}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 @defvar minibuffer-help-form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 The current value of this variable is used to rebind @code{help-form}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 locally inside the minibuffer (@pxref{Help Functions}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 @defun active-minibuffer-window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 This function returns the currently active minibuffer window, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 @code{nil} if none is currently active.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 @defun minibuffer-window &optional frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 This function returns the minibuffer window used for frame @var{frame}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 If @var{frame} is @code{nil}, that stands for the current frame. Note
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 that the minibuffer window used by a frame need not be part of that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 frame---a frame that has no minibuffer of its own necessarily uses some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 other frame's minibuffer window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 @defun window-minibuffer-p window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 This function returns non-@code{nil} if @var{window} is a minibuffer window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 It is not correct to determine whether a given window is a minibuffer by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 comparing it with the result of @code{(minibuffer-window)}, because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 there can be more than one minibuffer window if there is more than one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 @defun minibuffer-window-active-p window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 This function returns non-@code{nil} if @var{window}, assumed to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 a minibuffer window, is currently active.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 @defvar minibuffer-scroll-window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 If the value of this variable is non-@code{nil}, it should be a window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 object. When the function @code{scroll-other-window} is called in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 minibuffer, it scrolls this window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 Finally, some functions and variables deal with recursive minibuffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 (@pxref{Recursive Editing}):
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 @defun minibuffer-depth
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 This function returns the current depth of activations of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 minibuffer, a nonnegative integer. If no minibuffers are active, it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 returns zero.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 @defopt enable-recursive-minibuffers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 If this variable is non-@code{nil}, you can invoke commands (such as
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1480 @code{find-file}) that use minibuffers even while the minibuffer window
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1481 is active. Such invocation produces a recursive editing level for a new
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 minibuffer. The outer-level minibuffer is invisible while you are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 editing the inner one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 This variable only affects invoking the minibuffer while the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 minibuffer window is selected. If you switch windows while in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 minibuffer, you can always invoke minibuffer commands while some other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 window is selected.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 @end defopt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 In FSF Emacs 19, if a command name has a property
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 @code{enable-recursive-minibuffers} that is non-@code{nil}, then the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 command can use the minibuffer to read arguments even if it is invoked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 from the minibuffer. The minibuffer command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 @code{next-matching-history-element} (normally @kbd{M-s} in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 minibuffer) uses this feature.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 This is not implemented in XEmacs because it is a kludge. If you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 want to explicitly set the value of @code{enable-recursive-minibuffers}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 in this fashion, just use an evaluated interactive spec and bind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 @code{enable-recursive-minibuffers} while reading from the minibuffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 See the definition of @code{next-matching-history-element} in
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1504 @file{lisp/minibuf.el}.