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