Mercurial > emacs
annotate doc/lispref/minibuf.texi @ 85655:5c07b0a66c17
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 26 Oct 2007 03:51:30 +0000 |
parents | 25264f468203 |
children | 2eb0abeec9da |
rev | line source |
---|---|
84087 | 1 @c -*-texinfo-*- |
2 @c This is part of the GNU Emacs Lisp Reference Manual. | |
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2001, 2002, | |
4 @c 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. | |
5 @c See the file elisp.texi for copying conditions. | |
84116
0ba80d073e27
(setfilename): Go up one more level to ../../info.
Glenn Morris <rgm@gnu.org>
parents:
84087
diff
changeset
|
6 @setfilename ../../info/minibuf |
84087 | 7 @node Minibuffers, Command Loop, Read and Print, Top |
8 @chapter Minibuffers | |
9 @cindex arguments, reading | |
10 @cindex complex arguments | |
11 @cindex minibuffer | |
12 | |
13 A @dfn{minibuffer} is a special buffer that Emacs commands use to | |
14 read arguments more complicated than the single numeric prefix | |
15 argument. These arguments include file names, buffer names, and | |
16 command names (as in @kbd{M-x}). The minibuffer is displayed on the | |
17 bottom line of the frame, in the same place as the echo area | |
18 (@pxref{The Echo Area}), but only while it is in use for reading an | |
19 argument. | |
20 | |
21 @menu | |
22 * Intro to Minibuffers:: Basic information about minibuffers. | |
23 * Text from Minibuffer:: How to read a straight text string. | |
24 * Object from Minibuffer:: How to read a Lisp object or expression. | |
25 * Minibuffer History:: Recording previous minibuffer inputs | |
26 so the user can reuse them. | |
27 * Initial Input:: Specifying initial contents for the minibuffer. | |
28 * Completion:: How to invoke and customize completion. | |
29 * Yes-or-No Queries:: Asking a question with a simple answer. | |
30 * Multiple Queries:: Asking a series of similar questions. | |
31 * Reading a Password:: Reading a password from the terminal. | |
32 * Minibuffer Commands:: Commands used as key bindings in minibuffers. | |
33 * Minibuffer Contents:: How such commands access the minibuffer text. | |
34 * Minibuffer Windows:: Operating on the special minibuffer windows. | |
35 * Recursive Mini:: Whether recursive entry to minibuffer is allowed. | |
36 * Minibuffer Misc:: Various customization hooks and variables. | |
37 @end menu | |
38 | |
39 @node Intro to Minibuffers | |
40 @section Introduction to Minibuffers | |
41 | |
42 In most ways, a minibuffer is a normal Emacs buffer. Most operations | |
43 @emph{within} a buffer, such as editing commands, work normally in a | |
44 minibuffer. However, many operations for managing buffers do not apply | |
45 to minibuffers. The name of a minibuffer always has the form @w{@samp{ | |
46 *Minibuf-@var{number}*}}, and it cannot be changed. Minibuffers are | |
47 displayed only in special windows used only for minibuffers; these | |
48 windows always appear at the bottom of a frame. (Sometimes frames have | |
49 no minibuffer window, and sometimes a special kind of frame contains | |
50 nothing but a minibuffer window; see @ref{Minibuffers and Frames}.) | |
51 | |
52 The text in the minibuffer always starts with the @dfn{prompt string}, | |
53 the text that was specified by the program that is using the minibuffer | |
54 to tell the user what sort of input to type. This text is marked | |
55 read-only so you won't accidentally delete or change it. It is also | |
56 marked as a field (@pxref{Fields}), so that certain motion functions, | |
57 including @code{beginning-of-line}, @code{forward-word}, | |
58 @code{forward-sentence}, and @code{forward-paragraph}, stop at the | |
59 boundary between the prompt and the actual text. (In older Emacs | |
60 versions, the prompt was displayed using a special mechanism and was not | |
61 part of the buffer contents.) | |
62 | |
63 The minibuffer's window is normally a single line; it grows | |
64 automatically if necessary if the contents require more space. You can | |
65 explicitly resize it temporarily with the window sizing commands; it | |
66 reverts to its normal size when the minibuffer is exited. You can | |
67 resize it permanently by using the window sizing commands in the frame's | |
68 other window, when the minibuffer is not active. If the frame contains | |
69 just a minibuffer, you can change the minibuffer's size by changing the | |
70 frame's size. | |
71 | |
72 Use of the minibuffer reads input events, and that alters the values | |
73 of variables such as @code{this-command} and @code{last-command} | |
74 (@pxref{Command Loop Info}). Your program should bind them around the | |
75 code that uses the minibuffer, if you do not want that to change them. | |
76 | |
77 If a command uses a minibuffer while there is an active minibuffer, | |
78 this is called a @dfn{recursive minibuffer}. The first minibuffer is | |
79 named @w{@samp{ *Minibuf-0*}}. Recursive minibuffers are named by | |
80 incrementing the number at the end of the name. (The names begin with a | |
81 space so that they won't show up in normal buffer lists.) Of several | |
82 recursive minibuffers, the innermost (or most recently entered) is the | |
83 active minibuffer. We usually call this ``the'' minibuffer. You can | |
84 permit or forbid recursive minibuffers by setting the variable | |
85 @code{enable-recursive-minibuffers} or by putting properties of that | |
86 name on command symbols (@pxref{Recursive Mini}). | |
87 | |
88 Like other buffers, a minibuffer uses a local keymap | |
89 (@pxref{Keymaps}) to specify special key bindings. The function that | |
90 invokes the minibuffer also sets up its local map according to the job | |
91 to be done. @xref{Text from Minibuffer}, for the non-completion | |
92 minibuffer local maps. @xref{Completion Commands}, for the minibuffer | |
93 local maps for completion. | |
94 | |
95 When Emacs is running in batch mode, any request to read from the | |
96 minibuffer actually reads a line from the standard input descriptor that | |
97 was supplied when Emacs was started. | |
98 | |
99 @node Text from Minibuffer | |
100 @section Reading Text Strings with the Minibuffer | |
101 | |
102 Most often, the minibuffer is used to read text as a string. It can | |
103 also be used to read a Lisp object in textual form. The most basic | |
104 primitive for minibuffer input is @code{read-from-minibuffer}; it can do | |
105 either one. There are also specialized commands for reading | |
106 commands, variables, file names, etc. (@pxref{Completion}). | |
107 | |
108 In most cases, you should not call minibuffer input functions in the | |
109 middle of a Lisp function. Instead, do all minibuffer input as part of | |
110 reading the arguments for a command, in the @code{interactive} | |
111 specification. @xref{Defining Commands}. | |
112 | |
113 @defun read-from-minibuffer prompt-string &optional initial-contents keymap read hist default inherit-input-method | |
114 This function is the most general way to get input through the | |
115 minibuffer. By default, it accepts arbitrary text and returns it as a | |
116 string; however, if @var{read} is non-@code{nil}, then it uses | |
117 @code{read} to convert the text into a Lisp object (@pxref{Input | |
118 Functions}). | |
119 | |
120 The first thing this function does is to activate a minibuffer and | |
121 display it with @var{prompt-string} as the prompt. This value must be a | |
122 string. Then the user can edit text in the minibuffer. | |
123 | |
124 When the user types a command to exit the minibuffer, | |
125 @code{read-from-minibuffer} constructs the return value from the text in | |
126 the minibuffer. Normally it returns a string containing that text. | |
127 However, if @var{read} is non-@code{nil}, @code{read-from-minibuffer} | |
128 reads the text and returns the resulting Lisp object, unevaluated. | |
129 (@xref{Input Functions}, for information about reading.) | |
130 | |
131 The argument @var{default} specifies a default value to make available | |
85522
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
132 through the history commands. It should be a string, a list of strings, |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
133 or @code{nil}. If non-@code{nil}, the user can access its values using |
84087 | 134 @code{next-history-element}, usually bound in the minibuffer to |
135 @kbd{M-n}. If @var{read} is non-@code{nil}, then @var{default} is | |
136 also used as the input to @code{read}, if the user enters empty input. | |
137 (If @var{read} is non-@code{nil} and @var{default} is @code{nil}, empty | |
138 input results in an @code{end-of-file} error.) However, in the usual | |
139 case (where @var{read} is @code{nil}), @code{read-from-minibuffer} | |
140 ignores @var{default} when the user enters empty input and returns an | |
141 empty string, @code{""}. In this respect, it is different from all | |
142 the other minibuffer input functions in this chapter. | |
143 | |
144 If @var{keymap} is non-@code{nil}, that keymap is the local keymap to | |
145 use in the minibuffer. If @var{keymap} is omitted or @code{nil}, the | |
146 value of @code{minibuffer-local-map} is used as the keymap. Specifying | |
147 a keymap is the most important way to customize the minibuffer for | |
148 various applications such as completion. | |
149 | |
150 The argument @var{hist} specifies which history list variable to use | |
151 for saving the input and for history commands used in the minibuffer. | |
152 It defaults to @code{minibuffer-history}. @xref{Minibuffer History}. | |
153 | |
154 If the variable @code{minibuffer-allow-text-properties} is | |
155 non-@code{nil}, then the string which is returned includes whatever text | |
156 properties were present in the minibuffer. Otherwise all the text | |
157 properties are stripped when the value is returned. | |
158 | |
159 If the argument @var{inherit-input-method} is non-@code{nil}, then the | |
160 minibuffer inherits the current input method (@pxref{Input Methods}) and | |
161 the setting of @code{enable-multibyte-characters} (@pxref{Text | |
162 Representations}) from whichever buffer was current before entering the | |
163 minibuffer. | |
164 | |
165 Use of @var{initial-contents} is mostly deprecated; we recommend using | |
166 a non-@code{nil} value only in conjunction with specifying a cons cell | |
167 for @var{hist}. @xref{Initial Input}. | |
168 @end defun | |
169 | |
170 @defun read-string prompt &optional initial history default inherit-input-method | |
171 This function reads a string from the minibuffer and returns it. The | |
172 arguments @var{prompt}, @var{initial}, @var{history} and | |
173 @var{inherit-input-method} are used as in @code{read-from-minibuffer}. | |
174 The keymap used is @code{minibuffer-local-map}. | |
175 | |
176 The optional argument @var{default} is used as in | |
177 @code{read-from-minibuffer}, except that, if non-@code{nil}, it also | |
178 specifies a default value to return if the user enters null input. As | |
85522
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
179 in @code{read-from-minibuffer} it should be a string, a list of strings, |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
180 or @code{nil}, which is equivalent to an empty string. When @var{default} |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
181 is a list of strings, it returns the first element of this list. |
84087 | 182 |
183 This function is a simplified interface to the | |
184 @code{read-from-minibuffer} function: | |
185 | |
186 @smallexample | |
187 @group | |
188 (read-string @var{prompt} @var{initial} @var{history} @var{default} @var{inherit}) | |
189 @equiv{} | |
190 (let ((value | |
191 (read-from-minibuffer @var{prompt} @var{initial} nil nil | |
192 @var{history} @var{default} @var{inherit}))) | |
193 (if (and (equal value "") @var{default}) | |
85522
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
194 (if (consp @var{default}) (car @var{default}) @var{default}) |
84087 | 195 value)) |
196 @end group | |
197 @end smallexample | |
198 @end defun | |
199 | |
200 @defvar minibuffer-allow-text-properties | |
201 If this variable is @code{nil}, then @code{read-from-minibuffer} strips | |
202 all text properties from the minibuffer input before returning it. | |
203 This variable also affects @code{read-string}. However, | |
204 @code{read-no-blanks-input} (see below), as well as | |
205 @code{read-minibuffer} and related functions (@pxref{Object from | |
206 Minibuffer,, Reading Lisp Objects With the Minibuffer}), and all | |
207 functions that do minibuffer input with completion, discard text | |
208 properties unconditionally, regardless of the value of this variable. | |
209 @end defvar | |
210 | |
211 @defvar minibuffer-local-map | |
212 This | |
213 @anchor{Definition of minibuffer-local-map} | |
214 @c avoid page break at anchor; work around Texinfo deficiency | |
215 is the default local keymap for reading from the minibuffer. By | |
216 default, it makes the following bindings: | |
217 | |
218 @table @asis | |
219 @item @kbd{C-j} | |
220 @code{exit-minibuffer} | |
221 | |
222 @item @key{RET} | |
223 @code{exit-minibuffer} | |
224 | |
225 @item @kbd{C-g} | |
226 @code{abort-recursive-edit} | |
227 | |
228 @item @kbd{M-n} | |
229 @itemx @key{DOWN} | |
230 @code{next-history-element} | |
231 | |
232 @item @kbd{M-p} | |
233 @itemx @key{UP} | |
234 @code{previous-history-element} | |
235 | |
236 @item @kbd{M-s} | |
237 @code{next-matching-history-element} | |
238 | |
239 @item @kbd{M-r} | |
240 @code{previous-matching-history-element} | |
241 @end table | |
242 @end defvar | |
243 | |
244 @c In version 18, initial is required | |
245 @c Emacs 19 feature | |
246 @defun read-no-blanks-input prompt &optional initial inherit-input-method | |
247 This function reads a string from the minibuffer, but does not allow | |
248 whitespace characters as part of the input: instead, those characters | |
249 terminate the input. The arguments @var{prompt}, @var{initial}, and | |
250 @var{inherit-input-method} are used as in @code{read-from-minibuffer}. | |
251 | |
252 This is a simplified interface to the @code{read-from-minibuffer} | |
253 function, and passes the value of the @code{minibuffer-local-ns-map} | |
254 keymap as the @var{keymap} argument for that function. Since the keymap | |
255 @code{minibuffer-local-ns-map} does not rebind @kbd{C-q}, it @emph{is} | |
256 possible to put a space into the string, by quoting it. | |
257 | |
258 This function discards text properties, regardless of the value of | |
259 @code{minibuffer-allow-text-properties}. | |
260 | |
261 @smallexample | |
262 @group | |
263 (read-no-blanks-input @var{prompt} @var{initial}) | |
264 @equiv{} | |
265 (let (minibuffer-allow-text-properties) | |
266 (read-from-minibuffer @var{prompt} @var{initial} minibuffer-local-ns-map)) | |
267 @end group | |
268 @end smallexample | |
269 @end defun | |
270 | |
271 @defvar minibuffer-local-ns-map | |
272 This built-in variable is the keymap used as the minibuffer local keymap | |
273 in the function @code{read-no-blanks-input}. By default, it makes the | |
274 following bindings, in addition to those of @code{minibuffer-local-map}: | |
275 | |
276 @table @asis | |
277 @item @key{SPC} | |
278 @cindex @key{SPC} in minibuffer | |
279 @code{exit-minibuffer} | |
280 | |
281 @item @key{TAB} | |
282 @cindex @key{TAB} in minibuffer | |
283 @code{exit-minibuffer} | |
284 | |
285 @item @kbd{?} | |
286 @cindex @kbd{?} in minibuffer | |
287 @code{self-insert-and-exit} | |
288 @end table | |
289 @end defvar | |
290 | |
291 @node Object from Minibuffer | |
292 @section Reading Lisp Objects with the Minibuffer | |
293 | |
294 This section describes functions for reading Lisp objects with the | |
295 minibuffer. | |
296 | |
297 @defun read-minibuffer prompt &optional initial | |
298 This function reads a Lisp object using the minibuffer, and returns it | |
299 without evaluating it. The arguments @var{prompt} and @var{initial} are | |
300 used as in @code{read-from-minibuffer}. | |
301 | |
302 This is a simplified interface to the | |
303 @code{read-from-minibuffer} function: | |
304 | |
305 @smallexample | |
306 @group | |
307 (read-minibuffer @var{prompt} @var{initial}) | |
308 @equiv{} | |
309 (let (minibuffer-allow-text-properties) | |
310 (read-from-minibuffer @var{prompt} @var{initial} nil t)) | |
311 @end group | |
312 @end smallexample | |
313 | |
314 Here is an example in which we supply the string @code{"(testing)"} as | |
315 initial input: | |
316 | |
317 @smallexample | |
318 @group | |
319 (read-minibuffer | |
320 "Enter an expression: " (format "%s" '(testing))) | |
321 | |
322 ;; @r{Here is how the minibuffer is displayed:} | |
323 @end group | |
324 | |
325 @group | |
326 ---------- Buffer: Minibuffer ---------- | |
327 Enter an expression: (testing)@point{} | |
328 ---------- Buffer: Minibuffer ---------- | |
329 @end group | |
330 @end smallexample | |
331 | |
332 @noindent | |
333 The user can type @key{RET} immediately to use the initial input as a | |
334 default, or can edit the input. | |
335 @end defun | |
336 | |
337 @defun eval-minibuffer prompt &optional initial | |
338 This function reads a Lisp expression using the minibuffer, evaluates | |
339 it, then returns the result. The arguments @var{prompt} and | |
340 @var{initial} are used as in @code{read-from-minibuffer}. | |
341 | |
342 This function simply evaluates the result of a call to | |
343 @code{read-minibuffer}: | |
344 | |
345 @smallexample | |
346 @group | |
347 (eval-minibuffer @var{prompt} @var{initial}) | |
348 @equiv{} | |
349 (eval (read-minibuffer @var{prompt} @var{initial})) | |
350 @end group | |
351 @end smallexample | |
352 @end defun | |
353 | |
354 @defun edit-and-eval-command prompt form | |
355 This function reads a Lisp expression in the minibuffer, and then | |
356 evaluates it. The difference between this command and | |
357 @code{eval-minibuffer} is that here the initial @var{form} is not | |
358 optional and it is treated as a Lisp object to be converted to printed | |
359 representation rather than as a string of text. It is printed with | |
360 @code{prin1}, so if it is a string, double-quote characters (@samp{"}) | |
361 appear in the initial text. @xref{Output Functions}. | |
362 | |
363 The first thing @code{edit-and-eval-command} does is to activate the | |
364 minibuffer with @var{prompt} as the prompt. Then it inserts the printed | |
365 representation of @var{form} in the minibuffer, and lets the user edit it. | |
366 When the user exits the minibuffer, the edited text is read with | |
367 @code{read} and then evaluated. The resulting value becomes the value | |
368 of @code{edit-and-eval-command}. | |
369 | |
370 In the following example, we offer the user an expression with initial | |
371 text which is a valid form already: | |
372 | |
373 @smallexample | |
374 @group | |
375 (edit-and-eval-command "Please edit: " '(forward-word 1)) | |
376 | |
377 ;; @r{After evaluation of the preceding expression,} | |
378 ;; @r{the following appears in the minibuffer:} | |
379 @end group | |
380 | |
381 @group | |
382 ---------- Buffer: Minibuffer ---------- | |
383 Please edit: (forward-word 1)@point{} | |
384 ---------- Buffer: Minibuffer ---------- | |
385 @end group | |
386 @end smallexample | |
387 | |
388 @noindent | |
389 Typing @key{RET} right away would exit the minibuffer and evaluate the | |
390 expression, thus moving point forward one word. | |
391 @code{edit-and-eval-command} returns @code{nil} in this example. | |
392 @end defun | |
393 | |
394 @node Minibuffer History | |
395 @section Minibuffer History | |
396 @cindex minibuffer history | |
397 @cindex history list | |
398 | |
399 A @dfn{minibuffer history list} records previous minibuffer inputs so | |
400 the user can reuse them conveniently. A history list is actually a | |
401 symbol, not a list; it is a variable whose value is a list of strings | |
402 (previous inputs), most recent first. | |
403 | |
404 There are many separate history lists, used for different kinds of | |
405 inputs. It's the Lisp programmer's job to specify the right history | |
406 list for each use of the minibuffer. | |
407 | |
408 You specify the history list with the optional @var{hist} argument | |
409 to either @code{read-from-minibuffer} or @code{completing-read}. Here | |
410 are the possible values for it: | |
411 | |
412 @table @asis | |
413 @item @var{variable} | |
414 Use @var{variable} (a symbol) as the history list. | |
415 | |
416 @item (@var{variable} . @var{startpos}) | |
417 Use @var{variable} (a symbol) as the history list, and assume that the | |
418 initial history position is @var{startpos} (a nonnegative integer). | |
419 | |
420 Specifying 0 for @var{startpos} is equivalent to just specifying the | |
421 symbol @var{variable}. @code{previous-history-element} will display | |
422 the most recent element of the history list in the minibuffer. If you | |
423 specify a positive @var{startpos}, the minibuffer history functions | |
424 behave as if @code{(elt @var{variable} (1- @var{STARTPOS}))} were the | |
425 history element currently shown in the minibuffer. | |
426 | |
427 For consistency, you should also specify that element of the history | |
428 as the initial minibuffer contents, using the @var{initial} argument | |
429 to the minibuffer input function (@pxref{Initial Input}). | |
430 @end table | |
431 | |
432 If you don't specify @var{hist}, then the default history list | |
433 @code{minibuffer-history} is used. For other standard history lists, | |
434 see below. You can also create your own history list variable; just | |
435 initialize it to @code{nil} before the first use. | |
436 | |
437 Both @code{read-from-minibuffer} and @code{completing-read} add new | |
438 elements to the history list automatically, and provide commands to | |
439 allow the user to reuse items on the list. The only thing your program | |
440 needs to do to use a history list is to initialize it and to pass its | |
441 name to the input functions when you wish. But it is safe to modify the | |
442 list by hand when the minibuffer input functions are not using it. | |
443 | |
444 Emacs functions that add a new element to a history list can also | |
445 delete old elements if the list gets too long. The variable | |
446 @code{history-length} specifies the maximum length for most history | |
447 lists. To specify a different maximum length for a particular history | |
448 list, put the length in the @code{history-length} property of the | |
449 history list symbol. The variable @code{history-delete-duplicates} | |
450 specifies whether to delete duplicates in history. | |
451 | |
452 @defun add-to-history history-var newelt &optional maxelt keep-all | |
453 This function adds a new element @var{newelt}, if it isn't the empty | |
454 string, to the history list stored in the variable @var{history-var}, | |
455 and returns the updated history list. It limits the list length to | |
456 the value of @var{maxelt} (if non-@code{nil}) or @code{history-length} | |
457 (described below). The possible values of @var{maxelt} have the same | |
458 meaning as the values of @code{history-length}. | |
459 | |
460 Normally, @code{add-to-history} removes duplicate members from the | |
461 history list if @code{history-delete-duplicates} is non-@code{nil}. | |
462 However, if @var{keep-all} is non-@code{nil}, that says not to remove | |
463 duplicates, and to add @var{newelt} to the list even if it is empty. | |
464 @end defun | |
465 | |
466 @defvar history-add-new-input | |
467 If the value of this variable is @code{nil}, standard functions that | |
468 read from the minibuffer don't add new elements to the history list. | |
469 This lets Lisp programs explicitly manage input history by using | |
470 @code{add-to-history}. By default, @code{history-add-new-input} is | |
471 set to a non-@code{nil} value. | |
472 @end defvar | |
473 | |
474 @defvar history-length | |
475 The value of this variable specifies the maximum length for all | |
476 history lists that don't specify their own maximum lengths. If the | |
477 value is @code{t}, that means there no maximum (don't delete old | |
478 elements). The value of @code{history-length} property of the history | |
479 list variable's symbol, if set, overrides this variable for that | |
480 particular history list. | |
481 @end defvar | |
482 | |
483 @defvar history-delete-duplicates | |
484 If the value of this variable is @code{t}, that means when adding a | |
485 new history element, all previous identical elements are deleted. | |
486 @end defvar | |
487 | |
488 Here are some of the standard minibuffer history list variables: | |
489 | |
490 @defvar minibuffer-history | |
491 The default history list for minibuffer history input. | |
492 @end defvar | |
493 | |
494 @defvar query-replace-history | |
495 A history list for arguments to @code{query-replace} (and similar | |
496 arguments to other commands). | |
497 @end defvar | |
498 | |
499 @defvar file-name-history | |
500 A history list for file-name arguments. | |
501 @end defvar | |
502 | |
503 @defvar buffer-name-history | |
504 A history list for buffer-name arguments. | |
505 @end defvar | |
506 | |
507 @defvar regexp-history | |
508 A history list for regular expression arguments. | |
509 @end defvar | |
510 | |
511 @defvar extended-command-history | |
512 A history list for arguments that are names of extended commands. | |
513 @end defvar | |
514 | |
515 @defvar shell-command-history | |
516 A history list for arguments that are shell commands. | |
517 @end defvar | |
518 | |
519 @defvar read-expression-history | |
520 A history list for arguments that are Lisp expressions to evaluate. | |
521 @end defvar | |
522 | |
523 @node Initial Input | |
524 @section Initial Input | |
525 | |
526 Several of the functions for minibuffer input have an argument called | |
527 @var{initial} or @var{initial-contents}. This is a mostly-deprecated | |
528 feature for specifying that the minibuffer should start out with | |
529 certain text, instead of empty as usual. | |
530 | |
531 If @var{initial} is a string, the minibuffer starts out containing the | |
532 text of the string, with point at the end, when the user starts to | |
533 edit the text. If the user simply types @key{RET} to exit the | |
534 minibuffer, it will use the initial input string to determine the | |
535 value to return. | |
536 | |
537 @strong{We discourage use of a non-@code{nil} value for | |
538 @var{initial}}, because initial input is an intrusive interface. | |
539 History lists and default values provide a much more convenient method | |
540 to offer useful default inputs to the user. | |
541 | |
542 There is just one situation where you should specify a string for an | |
543 @var{initial} argument. This is when you specify a cons cell for the | |
544 @var{hist} or @var{history} argument. @xref{Minibuffer History}. | |
545 | |
546 @var{initial} can also be a cons cell of the form @code{(@var{string} | |
547 . @var{position})}. This means to insert @var{string} in the | |
548 minibuffer but put point at @var{position} within the string's text. | |
549 | |
550 As a historical accident, @var{position} was implemented | |
551 inconsistently in different functions. In @code{completing-read}, | |
552 @var{position}'s value is interpreted as origin-zero; that is, a value | |
553 of 0 means the beginning of the string, 1 means after the first | |
554 character, etc. In @code{read-minibuffer}, and the other | |
555 non-completion minibuffer input functions that support this argument, | |
556 1 means the beginning of the string 2 means after the first character, | |
557 etc. | |
558 | |
559 Use of a cons cell as the value for @var{initial} arguments is | |
560 deprecated in user code. | |
561 | |
562 @node Completion | |
563 @section Completion | |
564 @cindex completion | |
565 | |
566 @dfn{Completion} is a feature that fills in the rest of a name | |
567 starting from an abbreviation for it. Completion works by comparing the | |
568 user's input against a list of valid names and determining how much of | |
569 the name is determined uniquely by what the user has typed. For | |
570 example, when you type @kbd{C-x b} (@code{switch-to-buffer}) and then | |
571 type the first few letters of the name of the buffer to which you wish | |
572 to switch, and then type @key{TAB} (@code{minibuffer-complete}), Emacs | |
573 extends the name as far as it can. | |
574 | |
575 Standard Emacs commands offer completion for names of symbols, files, | |
576 buffers, and processes; with the functions in this section, you can | |
577 implement completion for other kinds of names. | |
578 | |
579 The @code{try-completion} function is the basic primitive for | |
580 completion: it returns the longest determined completion of a given | |
581 initial string, with a given set of strings to match against. | |
582 | |
583 The function @code{completing-read} provides a higher-level interface | |
584 for completion. A call to @code{completing-read} specifies how to | |
585 determine the list of valid names. The function then activates the | |
586 minibuffer with a local keymap that binds a few keys to commands useful | |
587 for completion. Other functions provide convenient simple interfaces | |
588 for reading certain kinds of names with completion. | |
589 | |
590 @menu | |
591 * Basic Completion:: Low-level functions for completing strings. | |
592 (These are too low level to use the minibuffer.) | |
593 * Minibuffer Completion:: Invoking the minibuffer with completion. | |
594 * Completion Commands:: Minibuffer commands that do completion. | |
595 * High-Level Completion:: Convenient special cases of completion | |
596 (reading buffer name, file name, etc.) | |
597 * Reading File Names:: Using completion to read file names. | |
598 * Programmed Completion:: Writing your own completion-function. | |
599 @end menu | |
600 | |
601 @node Basic Completion | |
602 @subsection Basic Completion Functions | |
603 | |
604 The completion functions @code{try-completion}, | |
605 @code{all-completions} and @code{test-completion} have nothing in | |
606 themselves to do with minibuffers. We describe them in this chapter | |
607 so as to keep them near the higher-level completion features that do | |
608 use the minibuffer. | |
609 | |
610 If you store a completion alist in a variable, you should mark the | |
611 variable as ``risky'' with a non-@code{nil} | |
612 @code{risky-local-variable} property. | |
613 | |
614 @defun try-completion string collection &optional predicate | |
615 This function returns the longest common substring of all possible | |
616 completions of @var{string} in @var{collection}. The value of | |
617 @var{collection} must be a list of strings or symbols, an alist, an | |
618 obarray, a hash table, or a function that implements a virtual set of | |
619 strings (see below). | |
620 | |
621 Completion compares @var{string} against each of the permissible | |
622 completions specified by @var{collection}; if the beginning of the | |
623 permissible completion equals @var{string}, it matches. If no permissible | |
624 completions match, @code{try-completion} returns @code{nil}. If only | |
625 one permissible completion matches, and the match is exact, then | |
626 @code{try-completion} returns @code{t}. Otherwise, the value is the | |
627 longest initial sequence common to all the permissible completions that | |
628 match. | |
629 | |
630 If @var{collection} is an alist (@pxref{Association Lists}), the | |
631 permissible completions are the elements of the alist that are either | |
632 strings, symbols, or conses whose @sc{car} is a string or symbol. | |
633 Symbols are converted to strings using @code{symbol-name}. Other | |
634 elements of the alist are ignored. (Remember that in Emacs Lisp, the | |
635 elements of alists do not @emph{have} to be conses.) In particular, a | |
636 list of strings or symbols is allowed, even though we usually do not | |
637 think of such lists as alists. | |
638 | |
639 @cindex obarray in completion | |
640 If @var{collection} is an obarray (@pxref{Creating Symbols}), the names | |
641 of all symbols in the obarray form the set of permissible completions. The | |
642 global variable @code{obarray} holds an obarray containing the names of | |
643 all interned Lisp symbols. | |
644 | |
645 Note that the only valid way to make a new obarray is to create it | |
646 empty and then add symbols to it one by one using @code{intern}. | |
647 Also, you cannot intern a given symbol in more than one obarray. | |
648 | |
649 If @var{collection} is a hash table, then the keys that are strings | |
650 are the possible completions. Other keys are ignored. | |
651 | |
652 You can also use a symbol that is a function as @var{collection}. Then | |
653 the function is solely responsible for performing completion; | |
654 @code{try-completion} returns whatever this function returns. The | |
655 function is called with three arguments: @var{string}, @var{predicate} | |
656 and @code{nil}. (The reason for the third argument is so that the same | |
657 function can be used in @code{all-completions} and do the appropriate | |
658 thing in either case.) @xref{Programmed Completion}. | |
659 | |
660 If the argument @var{predicate} is non-@code{nil}, then it must be a | |
661 function of one argument, unless @var{collection} is a hash table, in | |
662 which case it should be a function of two arguments. It is used to | |
663 test each possible match, and the match is accepted only if | |
664 @var{predicate} returns non-@code{nil}. The argument given to | |
665 @var{predicate} is either a string or a cons cell (the @sc{car} of | |
666 which is a string) from the alist, or a symbol (@emph{not} a symbol | |
667 name) from the obarray. If @var{collection} is a hash table, | |
668 @var{predicate} is called with two arguments, the string key and the | |
669 associated value. | |
670 | |
671 In addition, to be acceptable, a completion must also match all the | |
672 regular expressions in @code{completion-regexp-list}. (Unless | |
673 @var{collection} is a function, in which case that function has to | |
674 handle @code{completion-regexp-list} itself.) | |
675 | |
676 In the first of the following examples, the string @samp{foo} is | |
677 matched by three of the alist @sc{car}s. All of the matches begin with | |
678 the characters @samp{fooba}, so that is the result. In the second | |
679 example, there is only one possible match, and it is exact, so the value | |
680 is @code{t}. | |
681 | |
682 @smallexample | |
683 @group | |
684 (try-completion | |
685 "foo" | |
686 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))) | |
687 @result{} "fooba" | |
688 @end group | |
689 | |
690 @group | |
691 (try-completion "foo" '(("barfoo" 2) ("foo" 3))) | |
692 @result{} t | |
693 @end group | |
694 @end smallexample | |
695 | |
696 In the following example, numerous symbols begin with the characters | |
697 @samp{forw}, and all of them begin with the word @samp{forward}. In | |
698 most of the symbols, this is followed with a @samp{-}, but not in all, | |
699 so no more than @samp{forward} can be completed. | |
700 | |
701 @smallexample | |
702 @group | |
703 (try-completion "forw" obarray) | |
704 @result{} "forward" | |
705 @end group | |
706 @end smallexample | |
707 | |
708 Finally, in the following example, only two of the three possible | |
709 matches pass the predicate @code{test} (the string @samp{foobaz} is | |
710 too short). Both of those begin with the string @samp{foobar}. | |
711 | |
712 @smallexample | |
713 @group | |
714 (defun test (s) | |
715 (> (length (car s)) 6)) | |
716 @result{} test | |
717 @end group | |
718 @group | |
719 (try-completion | |
720 "foo" | |
721 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4)) | |
722 'test) | |
723 @result{} "foobar" | |
724 @end group | |
725 @end smallexample | |
726 @end defun | |
727 | |
728 @defun all-completions string collection &optional predicate nospace | |
729 This function returns a list of all possible completions of | |
730 @var{string}. The arguments to this function (aside from | |
731 @var{nospace}) are the same as those of @code{try-completion}. Also, | |
732 this function uses @code{completion-regexp-list} in the same way that | |
733 @code{try-completion} does. The optional argument @var{nospace} only | |
734 matters if @var{string} is the empty string. In that case, if | |
735 @var{nospace} is non-@code{nil}, completions that start with a space | |
736 are ignored. | |
737 | |
738 If @var{collection} is a function, it is called with three arguments: | |
739 @var{string}, @var{predicate} and @code{t}; then @code{all-completions} | |
740 returns whatever the function returns. @xref{Programmed Completion}. | |
741 | |
742 Here is an example, using the function @code{test} shown in the | |
743 example for @code{try-completion}: | |
744 | |
745 @smallexample | |
746 @group | |
747 (defun test (s) | |
748 (> (length (car s)) 6)) | |
749 @result{} test | |
750 @end group | |
751 | |
752 @group | |
753 (all-completions | |
754 "foo" | |
755 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4)) | |
756 'test) | |
757 @result{} ("foobar1" "foobar2") | |
758 @end group | |
759 @end smallexample | |
760 @end defun | |
761 | |
762 @defun test-completion string collection &optional predicate | |
763 @anchor{Definition of test-completion} | |
764 This function returns non-@code{nil} if @var{string} is a valid | |
765 completion possibility specified by @var{collection} and | |
766 @var{predicate}. The arguments are the same as in | |
767 @code{try-completion}. For instance, if @var{collection} is a list of | |
768 strings, this is true if @var{string} appears in the list and | |
769 @var{predicate} is satisfied. | |
770 | |
771 This function uses @code{completion-regexp-list} in the same | |
772 way that @code{try-completion} does. | |
773 | |
774 If @var{predicate} is non-@code{nil} and if @var{collection} contains | |
775 several strings that are equal to each other, as determined by | |
776 @code{compare-strings} according to @code{completion-ignore-case}, | |
777 then @var{predicate} should accept either all or none of them. | |
778 Otherwise, the return value of @code{test-completion} is essentially | |
779 unpredictable. | |
780 | |
781 If @var{collection} is a function, it is called with three arguments, | |
782 the values @var{string}, @var{predicate} and @code{lambda}; whatever | |
783 it returns, @code{test-completion} returns in turn. | |
784 @end defun | |
785 | |
786 @defvar completion-ignore-case | |
787 If the value of this variable is non-@code{nil}, Emacs does not | |
788 consider case significant in completion. | |
789 @end defvar | |
790 | |
791 @defvar completion-regexp-list | |
792 This is a list of regular expressions. The completion functions only | |
793 consider a completion acceptable if it matches all regular expressions | |
794 in this list, with @code{case-fold-search} (@pxref{Searching and Case}) | |
795 bound to the value of @code{completion-ignore-case}. | |
796 @end defvar | |
797 | |
798 @defmac lazy-completion-table var fun | |
799 This macro provides a way to initialize the variable @var{var} as a | |
800 collection for completion in a lazy way, not computing its actual | |
801 contents until they are first needed. You use this macro to produce a | |
802 value that you store in @var{var}. The actual computation of the | |
803 proper value is done the first time you do completion using @var{var}. | |
804 It is done by calling @var{fun} with no arguments. The | |
805 value @var{fun} returns becomes the permanent value of @var{var}. | |
806 | |
807 Here is an example of use: | |
808 | |
809 @smallexample | |
810 (defvar foo (lazy-completion-table foo make-my-alist)) | |
811 @end smallexample | |
812 @end defmac | |
813 | |
814 @node Minibuffer Completion | |
815 @subsection Completion and the Minibuffer | |
816 @cindex minibuffer completion | |
817 @cindex reading from minibuffer with completion | |
818 | |
819 This section describes the basic interface for reading from the | |
820 minibuffer with completion. | |
821 | |
822 @defun completing-read prompt collection &optional predicate require-match initial hist default inherit-input-method | |
823 This function reads a string in the minibuffer, assisting the user by | |
824 providing completion. It activates the minibuffer with prompt | |
825 @var{prompt}, which must be a string. | |
826 | |
827 The actual completion is done by passing @var{collection} and | |
828 @var{predicate} to the function @code{try-completion}. This happens | |
829 in certain commands bound in the local keymaps used for completion. | |
830 Some of these commands also call @code{test-completion}. Thus, if | |
831 @var{predicate} is non-@code{nil}, it should be compatible with | |
832 @var{collection} and @code{completion-ignore-case}. @xref{Definition | |
833 of test-completion}. | |
834 | |
835 If @var{require-match} is @code{nil}, the exit commands work regardless | |
836 of the input in the minibuffer. If @var{require-match} is @code{t}, the | |
837 usual minibuffer exit commands won't exit unless the input completes to | |
838 an element of @var{collection}. If @var{require-match} is neither | |
839 @code{nil} nor @code{t}, then the exit commands won't exit unless the | |
840 input already in the buffer matches an element of @var{collection}. | |
841 | |
842 However, empty input is always permitted, regardless of the value of | |
843 @var{require-match}; in that case, @code{completing-read} returns | |
85522
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
844 the first element of @var{default}, if it is a list, @code{""}, |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
845 if @var{default} is @code{nil}, or @var{default}. The value of |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
846 @var{default} (if non-@code{nil}) is also available to the user |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
847 through the history commands. |
84087 | 848 |
849 The function @code{completing-read} uses | |
850 @code{minibuffer-local-completion-map} as the keymap if | |
851 @var{require-match} is @code{nil}, and uses | |
852 @code{minibuffer-local-must-match-map} if @var{require-match} is | |
853 non-@code{nil}. @xref{Completion Commands}. | |
854 | |
855 The argument @var{hist} specifies which history list variable to use for | |
856 saving the input and for minibuffer history commands. It defaults to | |
857 @code{minibuffer-history}. @xref{Minibuffer History}. | |
858 | |
859 The argument @var{initial} is mostly deprecated; we recommend using a | |
860 non-@code{nil} value only in conjunction with specifying a cons cell | |
861 for @var{hist}. @xref{Initial Input}. For default input, use | |
862 @var{default} instead. | |
863 | |
864 If the argument @var{inherit-input-method} is non-@code{nil}, then the | |
865 minibuffer inherits the current input method (@pxref{Input | |
866 Methods}) and the setting of @code{enable-multibyte-characters} | |
867 (@pxref{Text Representations}) from whichever buffer was current before | |
868 entering the minibuffer. | |
869 | |
870 If the built-in variable @code{completion-ignore-case} is | |
871 non-@code{nil}, completion ignores case when comparing the input | |
872 against the possible matches. @xref{Basic Completion}. In this mode | |
873 of operation, @var{predicate} must also ignore case, or you will get | |
874 surprising results. | |
875 | |
876 Here's an example of using @code{completing-read}: | |
877 | |
878 @smallexample | |
879 @group | |
880 (completing-read | |
881 "Complete a foo: " | |
882 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4)) | |
883 nil t "fo") | |
884 @end group | |
885 | |
886 @group | |
887 ;; @r{After evaluation of the preceding expression,} | |
888 ;; @r{the following appears in the minibuffer:} | |
889 | |
890 ---------- Buffer: Minibuffer ---------- | |
891 Complete a foo: fo@point{} | |
892 ---------- Buffer: Minibuffer ---------- | |
893 @end group | |
894 @end smallexample | |
895 | |
896 @noindent | |
897 If the user then types @kbd{@key{DEL} @key{DEL} b @key{RET}}, | |
898 @code{completing-read} returns @code{barfoo}. | |
899 | |
900 The @code{completing-read} function binds variables to pass | |
901 information to the commands that actually do completion. | |
902 They are described in the following section. | |
903 @end defun | |
904 | |
905 @node Completion Commands | |
906 @subsection Minibuffer Commands that Do Completion | |
907 | |
908 This section describes the keymaps, commands and user options used | |
909 in the minibuffer to do completion. The description refers to the | |
910 situation when Partial Completion mode is disabled (as it is by | |
911 default). When enabled, this minor mode uses its own alternatives to | |
912 some of the commands described below. @xref{Completion Options,,, | |
913 emacs, The GNU Emacs Manual}, for a short description of Partial | |
914 Completion mode. | |
915 | |
916 @defvar minibuffer-completion-table | |
917 The value of this variable is the collection used for completion in | |
918 the minibuffer. This is the global variable that contains what | |
919 @code{completing-read} passes to @code{try-completion}. It is used by | |
920 minibuffer completion commands such as @code{minibuffer-complete-word}. | |
921 @end defvar | |
922 | |
923 @defvar minibuffer-completion-predicate | |
924 This variable's value is the predicate that @code{completing-read} | |
925 passes to @code{try-completion}. The variable is also used by the other | |
926 minibuffer completion functions. | |
927 @end defvar | |
928 | |
929 @defvar minibuffer-completion-confirm | |
930 When the value of this variable is non-@code{nil}, Emacs asks for | |
931 confirmation of a completion before exiting the minibuffer. | |
932 @code{completing-read} binds this variable, and the function | |
933 @code{minibuffer-complete-and-exit} checks the value before exiting. | |
934 @end defvar | |
935 | |
936 @deffn Command minibuffer-complete-word | |
937 This function completes the minibuffer contents by at most a single | |
938 word. Even if the minibuffer contents have only one completion, | |
939 @code{minibuffer-complete-word} does not add any characters beyond the | |
940 first character that is not a word constituent. @xref{Syntax Tables}. | |
941 @end deffn | |
942 | |
943 @deffn Command minibuffer-complete | |
944 This function completes the minibuffer contents as far as possible. | |
945 @end deffn | |
946 | |
947 @deffn Command minibuffer-complete-and-exit | |
948 This function completes the minibuffer contents, and exits if | |
949 confirmation is not required, i.e., if | |
950 @code{minibuffer-completion-confirm} is @code{nil}. If confirmation | |
951 @emph{is} required, it is given by repeating this command | |
952 immediately---the command is programmed to work without confirmation | |
953 when run twice in succession. | |
954 @end deffn | |
955 | |
956 @deffn Command minibuffer-completion-help | |
957 This function creates a list of the possible completions of the | |
958 current minibuffer contents. It works by calling @code{all-completions} | |
959 using the value of the variable @code{minibuffer-completion-table} as | |
960 the @var{collection} argument, and the value of | |
961 @code{minibuffer-completion-predicate} as the @var{predicate} argument. | |
962 The list of completions is displayed as text in a buffer named | |
963 @samp{*Completions*}. | |
964 @end deffn | |
965 | |
966 @defun display-completion-list completions &optional common-substring | |
967 This function displays @var{completions} to the stream in | |
968 @code{standard-output}, usually a buffer. (@xref{Read and Print}, for more | |
969 information about streams.) The argument @var{completions} is normally | |
970 a list of completions just returned by @code{all-completions}, but it | |
971 does not have to be. Each element may be a symbol or a string, either | |
972 of which is simply printed. It can also be a list of two strings, | |
973 which is printed as if the strings were concatenated. The first of | |
974 the two strings is the actual completion, the second string serves as | |
975 annotation. | |
976 | |
977 The argument @var{common-substring} is the prefix that is common to | |
978 all the completions. With normal Emacs completion, it is usually the | |
979 same as the string that was completed. @code{display-completion-list} | |
980 uses this to highlight text in the completion list for better visual | |
981 feedback. This is not needed in the minibuffer; for minibuffer | |
982 completion, you can pass @code{nil}. | |
983 | |
984 This function is called by @code{minibuffer-completion-help}. The | |
985 most common way to use it is together with | |
986 @code{with-output-to-temp-buffer}, like this: | |
987 | |
988 @example | |
989 (with-output-to-temp-buffer "*Completions*" | |
990 (display-completion-list | |
991 (all-completions (buffer-string) my-alist) | |
992 (buffer-string))) | |
993 @end example | |
994 @end defun | |
995 | |
996 @defopt completion-auto-help | |
997 If this variable is non-@code{nil}, the completion commands | |
998 automatically display a list of possible completions whenever nothing | |
999 can be completed because the next character is not uniquely determined. | |
1000 @end defopt | |
1001 | |
1002 @defvar minibuffer-local-completion-map | |
1003 @code{completing-read} uses this value as the local keymap when an | |
1004 exact match of one of the completions is not required. By default, this | |
1005 keymap makes the following bindings: | |
1006 | |
1007 @table @asis | |
1008 @item @kbd{?} | |
1009 @code{minibuffer-completion-help} | |
1010 | |
1011 @item @key{SPC} | |
1012 @code{minibuffer-complete-word} | |
1013 | |
1014 @item @key{TAB} | |
1015 @code{minibuffer-complete} | |
1016 @end table | |
1017 | |
1018 @noindent | |
1019 with other characters bound as in @code{minibuffer-local-map} | |
1020 (@pxref{Definition of minibuffer-local-map}). | |
1021 @end defvar | |
1022 | |
1023 @defvar minibuffer-local-must-match-map | |
1024 @code{completing-read} uses this value as the local keymap when an | |
1025 exact match of one of the completions is required. Therefore, no keys | |
1026 are bound to @code{exit-minibuffer}, the command that exits the | |
1027 minibuffer unconditionally. By default, this keymap makes the following | |
1028 bindings: | |
1029 | |
1030 @table @asis | |
1031 @item @kbd{?} | |
1032 @code{minibuffer-completion-help} | |
1033 | |
1034 @item @key{SPC} | |
1035 @code{minibuffer-complete-word} | |
1036 | |
1037 @item @key{TAB} | |
1038 @code{minibuffer-complete} | |
1039 | |
1040 @item @kbd{C-j} | |
1041 @code{minibuffer-complete-and-exit} | |
1042 | |
1043 @item @key{RET} | |
1044 @code{minibuffer-complete-and-exit} | |
1045 @end table | |
1046 | |
1047 @noindent | |
1048 with other characters bound as in @code{minibuffer-local-map}. | |
1049 @end defvar | |
1050 | |
1051 @defvar minibuffer-local-filename-completion-map | |
1052 This is like @code{minibuffer-local-completion-map} | |
1053 except that it does not bind @key{SPC}. This keymap is used by the | |
1054 function @code{read-file-name}. | |
1055 @end defvar | |
1056 | |
1057 @defvar minibuffer-local-must-match-filename-map | |
1058 This is like @code{minibuffer-local-must-match-map} | |
1059 except that it does not bind @key{SPC}. This keymap is used by the | |
1060 function @code{read-file-name}. | |
1061 @end defvar | |
1062 | |
1063 @node High-Level Completion | |
1064 @subsection High-Level Completion Functions | |
1065 | |
1066 This section describes the higher-level convenient functions for | |
1067 reading certain sorts of names with completion. | |
1068 | |
1069 In most cases, you should not call these functions in the middle of a | |
1070 Lisp function. When possible, do all minibuffer input as part of | |
1071 reading the arguments for a command, in the @code{interactive} | |
1072 specification. @xref{Defining Commands}. | |
1073 | |
1074 @defun read-buffer prompt &optional default existing | |
1075 This function reads the name of a buffer and returns it as a string. | |
1076 The argument @var{default} is the default name to use, the value to | |
1077 return if the user exits with an empty minibuffer. If non-@code{nil}, | |
85522
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
1078 it should be a string, a list of strings, or a buffer. If it is |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
1079 a list, the default value is the first element of this list. It is |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
1080 mentioned in the prompt, but is not inserted in the minibuffer as |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
1081 initial input. |
84087 | 1082 |
1083 The argument @var{prompt} should be a string ending with a colon and a | |
1084 space. If @var{default} is non-@code{nil}, the function inserts it in | |
1085 @var{prompt} before the colon to follow the convention for reading from | |
1086 the minibuffer with a default value (@pxref{Programming Tips}). | |
1087 | |
1088 If @var{existing} is non-@code{nil}, then the name specified must be | |
1089 that of an existing buffer. The usual commands to exit the minibuffer | |
1090 do not exit if the text is not valid, and @key{RET} does completion to | |
1091 attempt to find a valid name. If @var{existing} is neither @code{nil} | |
1092 nor @code{t}, confirmation is required after completion. (However, | |
1093 @var{default} is not checked for validity; it is returned, whatever it | |
1094 is, if the user exits with the minibuffer empty.) | |
1095 | |
1096 In the following example, the user enters @samp{minibuffer.t}, and | |
1097 then types @key{RET}. The argument @var{existing} is @code{t}, and the | |
1098 only buffer name starting with the given input is | |
1099 @samp{minibuffer.texi}, so that name is the value. | |
1100 | |
1101 @example | |
1102 (read-buffer "Buffer name: " "foo" t) | |
1103 @group | |
1104 ;; @r{After evaluation of the preceding expression,} | |
1105 ;; @r{the following prompt appears,} | |
1106 ;; @r{with an empty minibuffer:} | |
1107 @end group | |
1108 | |
1109 @group | |
1110 ---------- Buffer: Minibuffer ---------- | |
1111 Buffer name (default foo): @point{} | |
1112 ---------- Buffer: Minibuffer ---------- | |
1113 @end group | |
1114 | |
1115 @group | |
1116 ;; @r{The user types @kbd{minibuffer.t @key{RET}}.} | |
1117 @result{} "minibuffer.texi" | |
1118 @end group | |
1119 @end example | |
1120 @end defun | |
1121 | |
1122 @defvar read-buffer-function | |
1123 This variable specifies how to read buffer names. For example, if you | |
1124 set this variable to @code{iswitchb-read-buffer}, all Emacs commands | |
1125 that call @code{read-buffer} to read a buffer name will actually use the | |
1126 @code{iswitchb} package to read it. | |
1127 @end defvar | |
1128 | |
1129 @defun read-command prompt &optional default | |
1130 This function reads the name of a command and returns it as a Lisp | |
1131 symbol. The argument @var{prompt} is used as in | |
1132 @code{read-from-minibuffer}. Recall that a command is anything for | |
1133 which @code{commandp} returns @code{t}, and a command name is a symbol | |
1134 for which @code{commandp} returns @code{t}. @xref{Interactive Call}. | |
1135 | |
1136 The argument @var{default} specifies what to return if the user enters | |
85522
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
1137 null input. It can be a symbol, a string or a list of strings. If it |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
1138 is a string, @code{read-command} interns it before returning it. |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
1139 If it is a list, @code{read-command} returns the first element of this list. |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
1140 If @var{default} is @code{nil}, that means no default has been |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
1141 specified; then if the user enters null input, the return value is |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
1142 @code{(intern "")}, that is, a symbol whose name is an empty string. |
84087 | 1143 |
1144 @example | |
1145 (read-command "Command name? ") | |
1146 | |
1147 @group | |
1148 ;; @r{After evaluation of the preceding expression,} | |
1149 ;; @r{the following prompt appears with an empty minibuffer:} | |
1150 @end group | |
1151 | |
1152 @group | |
1153 ---------- Buffer: Minibuffer ---------- | |
1154 Command name? | |
1155 ---------- Buffer: Minibuffer ---------- | |
1156 @end group | |
1157 @end example | |
1158 | |
1159 @noindent | |
1160 If the user types @kbd{forward-c @key{RET}}, then this function returns | |
1161 @code{forward-char}. | |
1162 | |
1163 The @code{read-command} function is a simplified interface to | |
1164 @code{completing-read}. It uses the variable @code{obarray} so as to | |
1165 complete in the set of extant Lisp symbols, and it uses the | |
1166 @code{commandp} predicate so as to accept only command names: | |
1167 | |
1168 @cindex @code{commandp} example | |
1169 @example | |
1170 @group | |
1171 (read-command @var{prompt}) | |
1172 @equiv{} | |
1173 (intern (completing-read @var{prompt} obarray | |
1174 'commandp t nil)) | |
1175 @end group | |
1176 @end example | |
1177 @end defun | |
1178 | |
1179 @defun read-variable prompt &optional default | |
1180 @anchor{Definition of read-variable} | |
1181 This function reads the name of a user variable and returns it as a | |
1182 symbol. | |
1183 | |
1184 The argument @var{default} specifies what to return if the user enters | |
85522
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
1185 null input. It can be a symbol, a string or a list of strings. If it |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
1186 is a string, @code{read-variable} interns it before returning it. |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
1187 If it is a list, @code{read-variable} returns the first element of |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
1188 this list. If @var{default} is @code{nil}, that means no default has |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
1189 been specified; then if the user enters null input, the return value |
25264f468203
(Text from Minibuffer, Minibuffer Completion, High-Level Completion):
Juri Linkov <juri@jurta.org>
parents:
84116
diff
changeset
|
1190 is @code{(intern "")}. |
84087 | 1191 |
1192 @example | |
1193 @group | |
1194 (read-variable "Variable name? ") | |
1195 | |
1196 ;; @r{After evaluation of the preceding expression,} | |
1197 ;; @r{the following prompt appears,} | |
1198 ;; @r{with an empty minibuffer:} | |
1199 @end group | |
1200 | |
1201 @group | |
1202 ---------- Buffer: Minibuffer ---------- | |
1203 Variable name? @point{} | |
1204 ---------- Buffer: Minibuffer ---------- | |
1205 @end group | |
1206 @end example | |
1207 | |
1208 @noindent | |
1209 If the user then types @kbd{fill-p @key{RET}}, @code{read-variable} | |
1210 returns @code{fill-prefix}. | |
1211 | |
1212 In general, @code{read-variable} is similar to @code{read-command}, | |
1213 but uses the predicate @code{user-variable-p} instead of | |
1214 @code{commandp}: | |
1215 | |
1216 @cindex @code{user-variable-p} example | |
1217 @example | |
1218 @group | |
1219 (read-variable @var{prompt}) | |
1220 @equiv{} | |
1221 (intern | |
1222 (completing-read @var{prompt} obarray | |
1223 'user-variable-p t nil)) | |
1224 @end group | |
1225 @end example | |
1226 @end defun | |
1227 | |
1228 See also the functions @code{read-coding-system} and | |
1229 @code{read-non-nil-coding-system}, in @ref{User-Chosen Coding Systems}, | |
1230 and @code{read-input-method-name}, in @ref{Input Methods}. | |
1231 | |
1232 @node Reading File Names | |
1233 @subsection Reading File Names | |
1234 @cindex read file names | |
1235 @cindex prompt for file name | |
1236 | |
1237 Here is another high-level completion function, designed for reading a | |
1238 file name. It provides special features including automatic insertion | |
1239 of the default directory. | |
1240 | |
1241 @defun read-file-name prompt &optional directory default existing initial predicate | |
1242 This function reads a file name in the minibuffer, prompting with | |
1243 @var{prompt} and providing completion. | |
1244 | |
1245 If @var{existing} is non-@code{nil}, then the user must specify the name | |
1246 of an existing file; @key{RET} performs completion to make the name | |
1247 valid if possible, and then refuses to exit if it is not valid. If the | |
1248 value of @var{existing} is neither @code{nil} nor @code{t}, then | |
1249 @key{RET} also requires confirmation after completion. If | |
1250 @var{existing} is @code{nil}, then the name of a nonexistent file is | |
1251 acceptable. | |
1252 | |
1253 @code{read-file-name} uses | |
1254 @code{minibuffer-local-filename-completion-map} as the keymap if | |
1255 @var{existing} is @code{nil}, and uses | |
1256 @code{minibuffer-local-must-match-filename-map} if @var{existing} is | |
1257 non-@code{nil}. @xref{Completion Commands}. | |
1258 | |
1259 The argument @var{directory} specifies the directory to use for | |
1260 completion of relative file names. It should be an absolute directory | |
1261 name. If @code{insert-default-directory} is non-@code{nil}, | |
1262 @var{directory} is also inserted in the minibuffer as initial input. | |
1263 It defaults to the current buffer's value of @code{default-directory}. | |
1264 | |
1265 @c Emacs 19 feature | |
1266 If you specify @var{initial}, that is an initial file name to insert | |
1267 in the buffer (after @var{directory}, if that is inserted). In this | |
1268 case, point goes at the beginning of @var{initial}. The default for | |
1269 @var{initial} is @code{nil}---don't insert any file name. To see what | |
1270 @var{initial} does, try the command @kbd{C-x C-v}. @strong{Please | |
1271 note:} we recommend using @var{default} rather than @var{initial} in | |
1272 most cases. | |
1273 | |
1274 If @var{default} is non-@code{nil}, then the function returns | |
1275 @var{default} if the user exits the minibuffer with the same non-empty | |
1276 contents that @code{read-file-name} inserted initially. The initial | |
1277 minibuffer contents are always non-empty if | |
1278 @code{insert-default-directory} is non-@code{nil}, as it is by | |
1279 default. @var{default} is not checked for validity, regardless of the | |
1280 value of @var{existing}. However, if @var{existing} is | |
1281 non-@code{nil}, the initial minibuffer contents should be a valid file | |
1282 (or directory) name. Otherwise @code{read-file-name} attempts | |
1283 completion if the user exits without any editing, and does not return | |
1284 @var{default}. @var{default} is also available through the history | |
1285 commands. | |
1286 | |
1287 If @var{default} is @code{nil}, @code{read-file-name} tries to find a | |
1288 substitute default to use in its place, which it treats in exactly the | |
1289 same way as if it had been specified explicitly. If @var{default} is | |
1290 @code{nil}, but @var{initial} is non-@code{nil}, then the default is | |
1291 the absolute file name obtained from @var{directory} and | |
1292 @var{initial}. If both @var{default} and @var{initial} are @code{nil} | |
1293 and the buffer is visiting a file, @code{read-file-name} uses the | |
1294 absolute file name of that file as default. If the buffer is not | |
1295 visiting a file, then there is no default. In that case, if the user | |
1296 types @key{RET} without any editing, @code{read-file-name} simply | |
1297 returns the pre-inserted contents of the minibuffer. | |
1298 | |
1299 If the user types @key{RET} in an empty minibuffer, this function | |
1300 returns an empty string, regardless of the value of @var{existing}. | |
1301 This is, for instance, how the user can make the current buffer visit | |
1302 no file using @code{M-x set-visited-file-name}. | |
1303 | |
1304 If @var{predicate} is non-@code{nil}, it specifies a function of one | |
1305 argument that decides which file names are acceptable completion | |
1306 possibilities. A file name is an acceptable value if @var{predicate} | |
1307 returns non-@code{nil} for it. | |
1308 | |
1309 @code{read-file-name} does not automatically expand file names. You | |
1310 must call @code{expand-file-name} yourself if an absolute file name is | |
1311 required. | |
1312 | |
1313 Here is an example: | |
1314 | |
1315 @example | |
1316 @group | |
1317 (read-file-name "The file is ") | |
1318 | |
1319 ;; @r{After evaluation of the preceding expression,} | |
1320 ;; @r{the following appears in the minibuffer:} | |
1321 @end group | |
1322 | |
1323 @group | |
1324 ---------- Buffer: Minibuffer ---------- | |
1325 The file is /gp/gnu/elisp/@point{} | |
1326 ---------- Buffer: Minibuffer ---------- | |
1327 @end group | |
1328 @end example | |
1329 | |
1330 @noindent | |
1331 Typing @kbd{manual @key{TAB}} results in the following: | |
1332 | |
1333 @example | |
1334 @group | |
1335 ---------- Buffer: Minibuffer ---------- | |
1336 The file is /gp/gnu/elisp/manual.texi@point{} | |
1337 ---------- Buffer: Minibuffer ---------- | |
1338 @end group | |
1339 @end example | |
1340 | |
1341 @c Wordy to avoid overfull hbox in smallbook mode. | |
1342 @noindent | |
1343 If the user types @key{RET}, @code{read-file-name} returns the file name | |
1344 as the string @code{"/gp/gnu/elisp/manual.texi"}. | |
1345 @end defun | |
1346 | |
1347 @defvar read-file-name-function | |
1348 If non-@code{nil}, this should be a function that accepts the same | |
1349 arguments as @code{read-file-name}. When @code{read-file-name} is | |
1350 called, it calls this function with the supplied arguments instead of | |
1351 doing its usual work. | |
1352 @end defvar | |
1353 | |
1354 @defvar read-file-name-completion-ignore-case | |
1355 If this variable is non-@code{nil}, @code{read-file-name} ignores case | |
1356 when performing completion. | |
1357 @end defvar | |
1358 | |
1359 @defun read-directory-name prompt &optional directory default existing initial | |
1360 This function is like @code{read-file-name} but allows only directory | |
1361 names as completion possibilities. | |
1362 | |
1363 If @var{default} is @code{nil} and @var{initial} is non-@code{nil}, | |
1364 @code{read-directory-name} constructs a substitute default by | |
1365 combining @var{directory} (or the current buffer's default directory | |
1366 if @var{directory} is @code{nil}) and @var{initial}. If both | |
1367 @var{default} and @var{initial} are @code{nil}, this function uses | |
1368 @var{directory} as substitute default, or the current buffer's default | |
1369 directory if @var{directory} is @code{nil}. | |
1370 @end defun | |
1371 | |
1372 @defopt insert-default-directory | |
1373 This variable is used by @code{read-file-name}, and thus, indirectly, | |
1374 by most commands reading file names. (This includes all commands that | |
1375 use the code letters @samp{f} or @samp{F} in their interactive form. | |
1376 @xref{Interactive Codes,, Code Characters for interactive}.) Its | |
1377 value controls whether @code{read-file-name} starts by placing the | |
1378 name of the default directory in the minibuffer, plus the initial file | |
1379 name if any. If the value of this variable is @code{nil}, then | |
1380 @code{read-file-name} does not place any initial input in the | |
1381 minibuffer (unless you specify initial input with the @var{initial} | |
1382 argument). In that case, the default directory is still used for | |
1383 completion of relative file names, but is not displayed. | |
1384 | |
1385 If this variable is @code{nil} and the initial minibuffer contents are | |
1386 empty, the user may have to explicitly fetch the next history element | |
1387 to access a default value. If the variable is non-@code{nil}, the | |
1388 initial minibuffer contents are always non-empty and the user can | |
1389 always request a default value by immediately typing @key{RET} in an | |
1390 unedited minibuffer. (See above.) | |
1391 | |
1392 For example: | |
1393 | |
1394 @example | |
1395 @group | |
1396 ;; @r{Here the minibuffer starts out with the default directory.} | |
1397 (let ((insert-default-directory t)) | |
1398 (read-file-name "The file is ")) | |
1399 @end group | |
1400 | |
1401 @group | |
1402 ---------- Buffer: Minibuffer ---------- | |
1403 The file is ~lewis/manual/@point{} | |
1404 ---------- Buffer: Minibuffer ---------- | |
1405 @end group | |
1406 | |
1407 @group | |
1408 ;; @r{Here the minibuffer is empty and only the prompt} | |
1409 ;; @r{appears on its line.} | |
1410 (let ((insert-default-directory nil)) | |
1411 (read-file-name "The file is ")) | |
1412 @end group | |
1413 | |
1414 @group | |
1415 ---------- Buffer: Minibuffer ---------- | |
1416 The file is @point{} | |
1417 ---------- Buffer: Minibuffer ---------- | |
1418 @end group | |
1419 @end example | |
1420 @end defopt | |
1421 | |
1422 @node Programmed Completion | |
1423 @subsection Programmed Completion | |
1424 @cindex programmed completion | |
1425 | |
1426 Sometimes it is not possible to create an alist or an obarray | |
1427 containing all the intended possible completions. In such a case, you | |
1428 can supply your own function to compute the completion of a given string. | |
1429 This is called @dfn{programmed completion}. | |
1430 | |
1431 To use this feature, pass a symbol with a function definition as the | |
1432 @var{collection} argument to @code{completing-read}. The function | |
1433 @code{completing-read} arranges to pass your completion function along | |
1434 to @code{try-completion} and @code{all-completions}, which will then let | |
1435 your function do all the work. | |
1436 | |
1437 The completion function should accept three arguments: | |
1438 | |
1439 @itemize @bullet | |
1440 @item | |
1441 The string to be completed. | |
1442 | |
1443 @item | |
1444 The predicate function to filter possible matches, or @code{nil} if | |
1445 none. Your function should call the predicate for each possible match, | |
1446 and ignore the possible match if the predicate returns @code{nil}. | |
1447 | |
1448 @item | |
1449 A flag specifying the type of operation. | |
1450 @end itemize | |
1451 | |
1452 There are three flag values for three operations: | |
1453 | |
1454 @itemize @bullet | |
1455 @item | |
1456 @code{nil} specifies @code{try-completion}. The completion function | |
1457 should return the completion of the specified string, or @code{t} if the | |
1458 string is a unique and exact match already, or @code{nil} if the string | |
1459 matches no possibility. | |
1460 | |
1461 If the string is an exact match for one possibility, but also matches | |
1462 other longer possibilities, the function should return the string, not | |
1463 @code{t}. | |
1464 | |
1465 @item | |
1466 @code{t} specifies @code{all-completions}. The completion function | |
1467 should return a list of all possible completions of the specified | |
1468 string. | |
1469 | |
1470 @item | |
1471 @code{lambda} specifies @code{test-completion}. The completion | |
1472 function should return @code{t} if the specified string is an exact | |
1473 match for some possibility; @code{nil} otherwise. | |
1474 @end itemize | |
1475 | |
1476 It would be consistent and clean for completion functions to allow | |
1477 lambda expressions (lists that are functions) as well as function | |
1478 symbols as @var{collection}, but this is impossible. Lists as | |
1479 completion tables already have other meanings, and it would be | |
1480 unreliable to treat one differently just because it is also a possible | |
1481 function. So you must arrange for any function you wish to use for | |
1482 completion to be encapsulated in a symbol. | |
1483 | |
1484 Emacs uses programmed completion when completing file names. | |
1485 @xref{File Name Completion}. | |
1486 | |
1487 @defmac dynamic-completion-table function | |
1488 This macro is a convenient way to write a function that can act as | |
1489 programmed completion function. The argument @var{function} should be | |
1490 a function that takes one argument, a string, and returns an alist of | |
1491 possible completions of it. You can think of | |
1492 @code{dynamic-completion-table} as a transducer between that interface | |
1493 and the interface for programmed completion functions. | |
1494 @end defmac | |
1495 | |
1496 @node Yes-or-No Queries | |
1497 @section Yes-or-No Queries | |
1498 @cindex asking the user questions | |
1499 @cindex querying the user | |
1500 @cindex yes-or-no questions | |
1501 | |
1502 This section describes functions used to ask the user a yes-or-no | |
1503 question. The function @code{y-or-n-p} can be answered with a single | |
1504 character; it is useful for questions where an inadvertent wrong answer | |
1505 will not have serious consequences. @code{yes-or-no-p} is suitable for | |
1506 more momentous questions, since it requires three or four characters to | |
1507 answer. | |
1508 | |
1509 If either of these functions is called in a command that was invoked | |
1510 using the mouse---more precisely, if @code{last-nonmenu-event} | |
1511 (@pxref{Command Loop Info}) is either @code{nil} or a list---then it | |
1512 uses a dialog box or pop-up menu to ask the question. Otherwise, it | |
1513 uses keyboard input. You can force use of the mouse or use of keyboard | |
1514 input by binding @code{last-nonmenu-event} to a suitable value around | |
1515 the call. | |
1516 | |
1517 Strictly speaking, @code{yes-or-no-p} uses the minibuffer and | |
1518 @code{y-or-n-p} does not; but it seems best to describe them together. | |
1519 | |
1520 @defun y-or-n-p prompt | |
1521 This function asks the user a question, expecting input in the echo | |
1522 area. It returns @code{t} if the user types @kbd{y}, @code{nil} if the | |
1523 user types @kbd{n}. This function also accepts @key{SPC} to mean yes | |
1524 and @key{DEL} to mean no. It accepts @kbd{C-]} to mean ``quit,'' like | |
1525 @kbd{C-g}, because the question might look like a minibuffer and for | |
1526 that reason the user might try to use @kbd{C-]} to get out. The answer | |
1527 is a single character, with no @key{RET} needed to terminate it. Upper | |
1528 and lower case are equivalent. | |
1529 | |
1530 ``Asking the question'' means printing @var{prompt} in the echo area, | |
1531 followed by the string @w{@samp{(y or n) }}. If the input is not one of | |
1532 the expected answers (@kbd{y}, @kbd{n}, @kbd{@key{SPC}}, | |
1533 @kbd{@key{DEL}}, or something that quits), the function responds | |
1534 @samp{Please answer y or n.}, and repeats the request. | |
1535 | |
1536 This function does not actually use the minibuffer, since it does not | |
1537 allow editing of the answer. It actually uses the echo area (@pxref{The | |
1538 Echo Area}), which uses the same screen space as the minibuffer. The | |
1539 cursor moves to the echo area while the question is being asked. | |
1540 | |
1541 The answers and their meanings, even @samp{y} and @samp{n}, are not | |
1542 hardwired. The keymap @code{query-replace-map} specifies them. | |
1543 @xref{Search and Replace}. | |
1544 | |
1545 In the following example, the user first types @kbd{q}, which is | |
1546 invalid. At the next prompt the user types @kbd{y}. | |
1547 | |
1548 @smallexample | |
1549 @group | |
1550 (y-or-n-p "Do you need a lift? ") | |
1551 | |
1552 ;; @r{After evaluation of the preceding expression,} | |
1553 ;; @r{the following prompt appears in the echo area:} | |
1554 @end group | |
1555 | |
1556 @group | |
1557 ---------- Echo area ---------- | |
1558 Do you need a lift? (y or n) | |
1559 ---------- Echo area ---------- | |
1560 @end group | |
1561 | |
1562 ;; @r{If the user then types @kbd{q}, the following appears:} | |
1563 | |
1564 @group | |
1565 ---------- Echo area ---------- | |
1566 Please answer y or n. Do you need a lift? (y or n) | |
1567 ---------- Echo area ---------- | |
1568 @end group | |
1569 | |
1570 ;; @r{When the user types a valid answer,} | |
1571 ;; @r{it is displayed after the question:} | |
1572 | |
1573 @group | |
1574 ---------- Echo area ---------- | |
1575 Do you need a lift? (y or n) y | |
1576 ---------- Echo area ---------- | |
1577 @end group | |
1578 @end smallexample | |
1579 | |
1580 @noindent | |
1581 We show successive lines of echo area messages, but only one actually | |
1582 appears on the screen at a time. | |
1583 @end defun | |
1584 | |
1585 @defun y-or-n-p-with-timeout prompt seconds default-value | |
1586 Like @code{y-or-n-p}, except that if the user fails to answer within | |
1587 @var{seconds} seconds, this function stops waiting and returns | |
1588 @var{default-value}. It works by setting up a timer; see @ref{Timers}. | |
1589 The argument @var{seconds} may be an integer or a floating point number. | |
1590 @end defun | |
1591 | |
1592 @defun yes-or-no-p prompt | |
1593 This function asks the user a question, expecting input in the | |
1594 minibuffer. It returns @code{t} if the user enters @samp{yes}, | |
1595 @code{nil} if the user types @samp{no}. The user must type @key{RET} to | |
1596 finalize the response. Upper and lower case are equivalent. | |
1597 | |
1598 @code{yes-or-no-p} starts by displaying @var{prompt} in the echo area, | |
1599 followed by @w{@samp{(yes or no) }}. The user must type one of the | |
1600 expected responses; otherwise, the function responds @samp{Please answer | |
1601 yes or no.}, waits about two seconds and repeats the request. | |
1602 | |
1603 @code{yes-or-no-p} requires more work from the user than | |
1604 @code{y-or-n-p} and is appropriate for more crucial decisions. | |
1605 | |
1606 Here is an example: | |
1607 | |
1608 @smallexample | |
1609 @group | |
1610 (yes-or-no-p "Do you really want to remove everything? ") | |
1611 | |
1612 ;; @r{After evaluation of the preceding expression,} | |
1613 ;; @r{the following prompt appears,} | |
1614 ;; @r{with an empty minibuffer:} | |
1615 @end group | |
1616 | |
1617 @group | |
1618 ---------- Buffer: minibuffer ---------- | |
1619 Do you really want to remove everything? (yes or no) | |
1620 ---------- Buffer: minibuffer ---------- | |
1621 @end group | |
1622 @end smallexample | |
1623 | |
1624 @noindent | |
1625 If the user first types @kbd{y @key{RET}}, which is invalid because this | |
1626 function demands the entire word @samp{yes}, it responds by displaying | |
1627 these prompts, with a brief pause between them: | |
1628 | |
1629 @smallexample | |
1630 @group | |
1631 ---------- Buffer: minibuffer ---------- | |
1632 Please answer yes or no. | |
1633 Do you really want to remove everything? (yes or no) | |
1634 ---------- Buffer: minibuffer ---------- | |
1635 @end group | |
1636 @end smallexample | |
1637 @end defun | |
1638 | |
1639 @node Multiple Queries | |
1640 @section Asking Multiple Y-or-N Questions | |
1641 | |
1642 When you have a series of similar questions to ask, such as ``Do you | |
1643 want to save this buffer'' for each buffer in turn, you should use | |
1644 @code{map-y-or-n-p} to ask the collection of questions, rather than | |
1645 asking each question individually. This gives the user certain | |
1646 convenient facilities such as the ability to answer the whole series at | |
1647 once. | |
1648 | |
1649 @defun map-y-or-n-p prompter actor list &optional help action-alist no-cursor-in-echo-area | |
1650 This function asks the user a series of questions, reading a | |
1651 single-character answer in the echo area for each one. | |
1652 | |
1653 The value of @var{list} specifies the objects to ask questions about. | |
1654 It should be either a list of objects or a generator function. If it is | |
1655 a function, it should expect no arguments, and should return either the | |
1656 next object to ask about, or @code{nil} meaning stop asking questions. | |
1657 | |
1658 The argument @var{prompter} specifies how to ask each question. If | |
1659 @var{prompter} is a string, the question text is computed like this: | |
1660 | |
1661 @example | |
1662 (format @var{prompter} @var{object}) | |
1663 @end example | |
1664 | |
1665 @noindent | |
1666 where @var{object} is the next object to ask about (as obtained from | |
1667 @var{list}). | |
1668 | |
1669 If not a string, @var{prompter} should be a function of one argument | |
1670 (the next object to ask about) and should return the question text. If | |
1671 the value is a string, that is the question to ask the user. The | |
1672 function can also return @code{t} meaning do act on this object (and | |
1673 don't ask the user), or @code{nil} meaning ignore this object (and don't | |
1674 ask the user). | |
1675 | |
1676 The argument @var{actor} says how to act on the answers that the user | |
1677 gives. It should be a function of one argument, and it is called with | |
1678 each object that the user says yes for. Its argument is always an | |
1679 object obtained from @var{list}. | |
1680 | |
1681 If the argument @var{help} is given, it should be a list of this form: | |
1682 | |
1683 @example | |
1684 (@var{singular} @var{plural} @var{action}) | |
1685 @end example | |
1686 | |
1687 @noindent | |
1688 where @var{singular} is a string containing a singular noun that | |
1689 describes the objects conceptually being acted on, @var{plural} is the | |
1690 corresponding plural noun, and @var{action} is a transitive verb | |
1691 describing what @var{actor} does. | |
1692 | |
1693 If you don't specify @var{help}, the default is @code{("object" | |
1694 "objects" "act on")}. | |
1695 | |
1696 Each time a question is asked, the user may enter @kbd{y}, @kbd{Y}, or | |
1697 @key{SPC} to act on that object; @kbd{n}, @kbd{N}, or @key{DEL} to skip | |
1698 that object; @kbd{!} to act on all following objects; @key{ESC} or | |
1699 @kbd{q} to exit (skip all following objects); @kbd{.} (period) to act on | |
1700 the current object and then exit; or @kbd{C-h} to get help. These are | |
1701 the same answers that @code{query-replace} accepts. The keymap | |
1702 @code{query-replace-map} defines their meaning for @code{map-y-or-n-p} | |
1703 as well as for @code{query-replace}; see @ref{Search and Replace}. | |
1704 | |
1705 You can use @var{action-alist} to specify additional possible answers | |
1706 and what they mean. It is an alist of elements of the form | |
1707 @code{(@var{char} @var{function} @var{help})}, each of which defines one | |
1708 additional answer. In this element, @var{char} is a character (the | |
1709 answer); @var{function} is a function of one argument (an object from | |
1710 @var{list}); @var{help} is a string. | |
1711 | |
1712 When the user responds with @var{char}, @code{map-y-or-n-p} calls | |
1713 @var{function}. If it returns non-@code{nil}, the object is considered | |
1714 ``acted upon,'' and @code{map-y-or-n-p} advances to the next object in | |
1715 @var{list}. If it returns @code{nil}, the prompt is repeated for the | |
1716 same object. | |
1717 | |
1718 Normally, @code{map-y-or-n-p} binds @code{cursor-in-echo-area} while | |
1719 prompting. But if @var{no-cursor-in-echo-area} is non-@code{nil}, it | |
1720 does not do that. | |
1721 | |
1722 If @code{map-y-or-n-p} is called in a command that was invoked using the | |
1723 mouse---more precisely, if @code{last-nonmenu-event} (@pxref{Command | |
1724 Loop Info}) is either @code{nil} or a list---then it uses a dialog box | |
1725 or pop-up menu to ask the question. In this case, it does not use | |
1726 keyboard input or the echo area. You can force use of the mouse or use | |
1727 of keyboard input by binding @code{last-nonmenu-event} to a suitable | |
1728 value around the call. | |
1729 | |
1730 The return value of @code{map-y-or-n-p} is the number of objects acted on. | |
1731 @end defun | |
1732 | |
1733 @node Reading a Password | |
1734 @section Reading a Password | |
1735 @cindex passwords, reading | |
1736 | |
1737 To read a password to pass to another program, you can use the | |
1738 function @code{read-passwd}. | |
1739 | |
1740 @defun read-passwd prompt &optional confirm default | |
1741 This function reads a password, prompting with @var{prompt}. It does | |
1742 not echo the password as the user types it; instead, it echoes @samp{.} | |
1743 for each character in the password. | |
1744 | |
1745 The optional argument @var{confirm}, if non-@code{nil}, says to read the | |
1746 password twice and insist it must be the same both times. If it isn't | |
1747 the same, the user has to type it over and over until the last two | |
1748 times match. | |
1749 | |
1750 The optional argument @var{default} specifies the default password to | |
1751 return if the user enters empty input. If @var{default} is @code{nil}, | |
1752 then @code{read-passwd} returns the null string in that case. | |
1753 @end defun | |
1754 | |
1755 @node Minibuffer Commands | |
1756 @section Minibuffer Commands | |
1757 | |
1758 This section describes some commands meant for use in the | |
1759 minibuffer. | |
1760 | |
1761 @deffn Command exit-minibuffer | |
1762 This command exits the active minibuffer. It is normally bound to | |
1763 keys in minibuffer local keymaps. | |
1764 @end deffn | |
1765 | |
1766 @deffn Command self-insert-and-exit | |
1767 This command exits the active minibuffer after inserting the last | |
1768 character typed on the keyboard (found in @code{last-command-char}; | |
1769 @pxref{Command Loop Info}). | |
1770 @end deffn | |
1771 | |
1772 @deffn Command previous-history-element n | |
1773 This command replaces the minibuffer contents with the value of the | |
1774 @var{n}th previous (older) history element. | |
1775 @end deffn | |
1776 | |
1777 @deffn Command next-history-element n | |
1778 This command replaces the minibuffer contents with the value of the | |
1779 @var{n}th more recent history element. | |
1780 @end deffn | |
1781 | |
1782 @deffn Command previous-matching-history-element pattern n | |
1783 This command replaces the minibuffer contents with the value of the | |
1784 @var{n}th previous (older) history element that matches @var{pattern} (a | |
1785 regular expression). | |
1786 @end deffn | |
1787 | |
1788 @deffn Command next-matching-history-element pattern n | |
1789 This command replaces the minibuffer contents with the value of the | |
1790 @var{n}th next (newer) history element that matches @var{pattern} (a | |
1791 regular expression). | |
1792 @end deffn | |
1793 | |
1794 @node Minibuffer Windows | |
1795 @section Minibuffer Windows | |
1796 @cindex minibuffer windows | |
1797 | |
1798 These functions access and select minibuffer windows | |
1799 and test whether they are active. | |
1800 | |
1801 @defun active-minibuffer-window | |
1802 This function returns the currently active minibuffer window, or | |
1803 @code{nil} if none is currently active. | |
1804 @end defun | |
1805 | |
1806 @defun minibuffer-window &optional frame | |
1807 @anchor{Definition of minibuffer-window} | |
1808 This function returns the minibuffer window used for frame @var{frame}. | |
1809 If @var{frame} is @code{nil}, that stands for the current frame. Note | |
1810 that the minibuffer window used by a frame need not be part of that | |
1811 frame---a frame that has no minibuffer of its own necessarily uses some | |
1812 other frame's minibuffer window. | |
1813 @end defun | |
1814 | |
1815 @defun set-minibuffer-window window | |
1816 This function specifies @var{window} as the minibuffer window to use. | |
1817 This affects where the minibuffer is displayed if you put text in it | |
1818 without invoking the usual minibuffer commands. It has no effect on | |
1819 the usual minibuffer input functions because they all start by | |
1820 choosing the minibuffer window according to the current frame. | |
1821 @end defun | |
1822 | |
1823 @c Emacs 19 feature | |
1824 @defun window-minibuffer-p &optional window | |
1825 This function returns non-@code{nil} if @var{window} is a minibuffer | |
1826 window. | |
1827 @var{window} defaults to the selected window. | |
1828 @end defun | |
1829 | |
1830 It is not correct to determine whether a given window is a minibuffer by | |
1831 comparing it with the result of @code{(minibuffer-window)}, because | |
1832 there can be more than one minibuffer window if there is more than one | |
1833 frame. | |
1834 | |
1835 @defun minibuffer-window-active-p window | |
1836 This function returns non-@code{nil} if @var{window}, assumed to be | |
1837 a minibuffer window, is currently active. | |
1838 @end defun | |
1839 | |
1840 @node Minibuffer Contents | |
1841 @section Minibuffer Contents | |
1842 | |
1843 These functions access the minibuffer prompt and contents. | |
1844 | |
1845 @defun minibuffer-prompt | |
1846 This function returns the prompt string of the currently active | |
1847 minibuffer. If no minibuffer is active, it returns @code{nil}. | |
1848 @end defun | |
1849 | |
1850 @defun minibuffer-prompt-end | |
1851 This function returns the current | |
1852 position of the end of the minibuffer prompt, if a minibuffer is | |
1853 current. Otherwise, it returns the minimum valid buffer position. | |
1854 @end defun | |
1855 | |
1856 @defun minibuffer-prompt-width | |
1857 This function returns the current display-width of the minibuffer | |
1858 prompt, if a minibuffer is current. Otherwise, it returns zero. | |
1859 @end defun | |
1860 | |
1861 @defun minibuffer-contents | |
1862 This function returns the editable | |
1863 contents of the minibuffer (that is, everything except the prompt) as | |
1864 a string, if a minibuffer is current. Otherwise, it returns the | |
1865 entire contents of the current buffer. | |
1866 @end defun | |
1867 | |
1868 @defun minibuffer-contents-no-properties | |
1869 This is like @code{minibuffer-contents}, except that it does not copy text | |
1870 properties, just the characters themselves. @xref{Text Properties}. | |
1871 @end defun | |
1872 | |
1873 @defun minibuffer-completion-contents | |
1874 This is like @code{minibuffer-contents}, except that it returns only | |
1875 the contents before point. That is the part that completion commands | |
1876 operate on. @xref{Minibuffer Completion}. | |
1877 @end defun | |
1878 | |
1879 @defun delete-minibuffer-contents | |
1880 This function erases the editable contents of the minibuffer (that is, | |
1881 everything except the prompt), if a minibuffer is current. Otherwise, | |
1882 it erases the entire current buffer. | |
1883 @end defun | |
1884 | |
1885 @node Recursive Mini | |
1886 @section Recursive Minibuffers | |
1887 @cindex recursive minibuffers | |
1888 | |
1889 These functions and variables deal with recursive minibuffers | |
1890 (@pxref{Recursive Editing}): | |
1891 | |
1892 @defun minibuffer-depth | |
1893 This function returns the current depth of activations of the | |
1894 minibuffer, a nonnegative integer. If no minibuffers are active, it | |
1895 returns zero. | |
1896 @end defun | |
1897 | |
1898 @defopt enable-recursive-minibuffers | |
1899 If this variable is non-@code{nil}, you can invoke commands (such as | |
1900 @code{find-file}) that use minibuffers even while the minibuffer window | |
1901 is active. Such invocation produces a recursive editing level for a new | |
1902 minibuffer. The outer-level minibuffer is invisible while you are | |
1903 editing the inner one. | |
1904 | |
1905 If this variable is @code{nil}, you cannot invoke minibuffer | |
1906 commands when the minibuffer window is active, not even if you switch to | |
1907 another window to do it. | |
1908 @end defopt | |
1909 | |
1910 @c Emacs 19 feature | |
1911 If a command name has a property @code{enable-recursive-minibuffers} | |
1912 that is non-@code{nil}, then the command can use the minibuffer to read | |
1913 arguments even if it is invoked from the minibuffer. A command can | |
1914 also achieve this by binding @code{enable-recursive-minibuffers} | |
1915 to @code{t} in the interactive declaration (@pxref{Using Interactive}). | |
1916 The minibuffer command @code{next-matching-history-element} (normally | |
1917 @kbd{M-s} in the minibuffer) does the latter. | |
1918 | |
1919 @node Minibuffer Misc | |
1920 @section Minibuffer Miscellany | |
1921 | |
1922 @defun minibufferp &optional buffer-or-name | |
1923 This function returns non-@code{nil} if @var{buffer-or-name} is a | |
1924 minibuffer. If @var{buffer-or-name} is omitted, it tests the current | |
1925 buffer. | |
1926 @end defun | |
1927 | |
1928 @defvar minibuffer-setup-hook | |
1929 This is a normal hook that is run whenever the minibuffer is entered. | |
1930 @xref{Hooks}. | |
1931 @end defvar | |
1932 | |
1933 @defvar minibuffer-exit-hook | |
1934 This is a normal hook that is run whenever the minibuffer is exited. | |
1935 @xref{Hooks}. | |
1936 @end defvar | |
1937 | |
1938 @defvar minibuffer-help-form | |
1939 @anchor{Definition of minibuffer-help-form} | |
1940 The current value of this variable is used to rebind @code{help-form} | |
1941 locally inside the minibuffer (@pxref{Help Functions}). | |
1942 @end defvar | |
1943 | |
1944 @defvar minibuffer-scroll-window | |
1945 @anchor{Definition of minibuffer-scroll-window} | |
1946 If the value of this variable is non-@code{nil}, it should be a window | |
1947 object. When the function @code{scroll-other-window} is called in the | |
1948 minibuffer, it scrolls this window. | |
1949 @end defvar | |
1950 | |
1951 @defun minibuffer-selected-window | |
1952 This function returns the window which was selected when the | |
1953 minibuffer was entered. If selected window is not a minibuffer | |
1954 window, it returns @code{nil}. | |
1955 @end defun | |
1956 | |
1957 @defopt max-mini-window-height | |
1958 This variable specifies the maximum height for resizing minibuffer | |
1959 windows. If a float, it specifies a fraction of the height of the | |
1960 frame. If an integer, it specifies a number of lines. | |
1961 @end defopt | |
1962 | |
1963 @defun minibuffer-message string | |
1964 This function displays @var{string} temporarily at the end of the | |
1965 minibuffer text, for two seconds, or until the next input event | |
1966 arrives, whichever comes first. | |
1967 @end defun | |
1968 | |
1969 @ignore | |
1970 arch-tag: bba7f945-9078-477f-a2ce-18818a6e1218 | |
1971 @end ignore |