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