Moved defsubsts up.
[emacs.git] / lispref / minibuf.texi
blob44db6db55c2baf4b34ec28add8d6439ec8f9d949
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
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.
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
31 @node Intro to Minibuffers
32 @section Introduction to Minibuffers
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}.)
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.
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}).
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}).
66 @itemize @bullet
67 @item
68 @code{minibuffer-local-map} is for ordinary input (no completion).
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.
74 @item
75 @code{minibuffer-local-completion-map} is for permissive completion.
77 @item
78 @code{minibuffer-local-must-match-map} is for strict completion and
79 for cautious completion.
80 @end itemize
82 @node Text from Minibuffer
83 @section Reading Text Strings with the Minibuffer
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.
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}.
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}).
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.
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.
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.
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.
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}.
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
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}.
141 This is a simplified interface to the
142 @code{read-from-minibuffer} function:
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
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:
157 @table @asis
158 @item @key{LFD}
159 @code{exit-minibuffer}
161 @item @key{RET}
162 @code{exit-minibuffer}
164 @item @kbd{C-g}
165 @code{abort-recursive-edit}
167 @item @kbd{M-n}
168 @code{next-history-element}
170 @item @kbd{M-p}
171 @code{previous-history-element}
173 @item @kbd{M-r}
174 @code{next-matching-history-element}
176 @item @kbd{M-s}
177 @code{previous-matching-history-element}
178 @end table
179 @end defvar
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}.
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.
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
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}:
209 @table @asis
210 @item @key{SPC}
211 @cindex @key{SPC} in minibuffer
212 @code{exit-minibuffer}
214 @item @key{TAB}
215 @cindex @key{TAB} in minibuffer
216 @code{exit-minibuffer}
218 @item @kbd{?}
219 @cindex @kbd{?} in minibuffer
220 @code{self-insert-and-exit}
221 @end table
222 @end defvar
224 @node Object from Minibuffer
225 @section Reading Lisp Objects with the Minibuffer
227   This section describes functions for reading Lisp objects with the
228 minibuffer.
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}.
235 This is a simplified interface to the
236 @code{read-from-minibuffer} function:
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
246 Here is an example in which we supply the string @code{"(testing)"} as
247 initial input:
249 @smallexample
250 @group
251 (read-minibuffer
252  "Enter an expression: " (format "%s" '(testing)))
254 ;; @r{Here is how the minibuffer is displayed:}
255 @end group
257 @group
258 ---------- Buffer: Minibuffer ----------
259 Enter an expression: (testing)@point{}
260 ---------- Buffer: Minibuffer ----------
261 @end group
262 @end smallexample
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
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}.
274 This function simply evaluates the result of a call to
275 @code{read-minibuffer}:
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
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}.
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}.
302 In the following example, we offer the user an expression with initial
303 text which is a valid form already:
305 @smallexample
306 @group
307 (edit-and-eval-command "Please edit: " '(forward-word 1))
309 ;; @r{After evaluation of the preceding expression,} 
310 ;;   @r{the following appears in the minibuffer:}
311 @end group
313 @group
314 ---------- Buffer: Minibuffer ----------
315 Please edit: (forward-word 1)@point{}
316 ---------- Buffer: Minibuffer ----------
317 @end group
318 @end smallexample
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
326 @node Minibuffer History
327 @section Minibuffer History
328 @cindex minibuffer history
329 @cindex history list
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.
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.
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:
345 @table @asis
346 @item @var{variable}
347 Use @var{variable} (a symbol) as the history list.
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).
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
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.
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.
370 @defvar minibuffer-history
371 The default history list for minibuffer history input.
372 @end defvar
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
379 @defvar file-name-history
380 A history list for file name arguments.
381 @end defvar
383 @defvar regexp-history
384 A history list for regular expression arguments.
385 @end defvar
387 @defvar extended-command-history
388 A history list for arguments that are names of extended commands.
389 @end defvar
391 @defvar shell-command-history
392 A history list for arguments that are shell commands.
393 @end defvar
395 @defvar read-expression-history
396 A history list for arguments that are Lisp expressions to evaluate.
397 @end defvar
399 @node Completion
400 @section Completion
401 @cindex completion
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.
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.
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.
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.
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
438 @node Basic Completion
439 @subsection Basic Completion Functions
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.
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).
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.
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.
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.
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.
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.
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}.
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}.
495 @smallexample
496 @group
497 (try-completion 
498  "foo"
499  '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4)))
500      @result{} "fooba"
501 @end group
503 @group
504 (try-completion "foo" '(("barfoo" 2) ("foo" 3)))
505      @result{} t
506 @end group
507 @end smallexample
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.
514 @smallexample
515 @group
516 (try-completion "forw" obarray)
517      @result{} "forward"
518 @end group
519 @end smallexample
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}.
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
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}.
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}.
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.
553 Here is an example, using the function @code{test} shown in the
554 example for @code{try-completion}:
556 @smallexample
557 @group
558 (defun test (s) 
559   (> (length (car s)) 6))
560      @result{} test
561 @end group
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
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
578 @node Minibuffer Completion
579 @subsection Completion and the Minibuffer
581   This section describes the basic interface for reading from the
582 minibuffer with completion.
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.
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.
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.
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}.
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}.
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}.
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}.
623 Here's an example of using @code{completing-read}:
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
633 @group
634 ;; @r{After evaluation of the preceding expression,} 
635 ;;   @r{the following appears in the minibuffer:}
637 ---------- Buffer: Minibuffer ----------
638 Complete a foo: fo@point{}
639 ---------- Buffer: Minibuffer ----------
640 @end group
641 @end smallexample
643 @noindent
644 If the user then types @kbd{@key{DEL} @key{DEL} b @key{RET}},
645 @code{completing-read} returns @code{barfoo}.
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
655 @node Completion Commands
656 @subsection Minibuffer Commands That Do Completion
658   This section describes the keymaps, commands and user options used in
659 the minibuffer to do completion.
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:
666 @table @asis
667 @item @kbd{?}
668 @code{minibuffer-completion-help}
670 @item @key{SPC}
671 @code{minibuffer-complete-word}
673 @item @key{TAB}
674 @code{minibuffer-complete}
675 @end table
677 @noindent
678 with other characters bound as in @code{minibuffer-local-map}
679 (@pxref{Text from Minibuffer}).
680 @end defvar
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:
689 @table @asis
690 @item @kbd{?}
691 @code{minibuffer-completion-help}
693 @item @key{SPC}
694 @code{minibuffer-complete-word}
696 @item @key{TAB}
697 @code{minibuffer-complete}
699 @item @key{LFD}
700 @code{minibuffer-complete-and-exit}
702 @item @key{RET}
703 @code{minibuffer-complete-and-exit}
704 @end table
706 @noindent
707 with other characters bound as in @code{minibuffer-local-map}.
708 @end defvar
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
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
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
730 @deffn Command minibuffer-complete
731 This function completes the minibuffer contents as far as possible.
732 @end deffn
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 non-@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
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
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
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.
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:
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
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
786 @node High-Level Completion
787 @subsection High-Level Completion  Functions
789   This section describes the higher-level convenient functions for
790 reading certain sorts of names with completion.
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}.
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.
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.)
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.
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
824 @group
825 ---------- Buffer: Minibuffer ----------
826 Buffer name? (default foo) @point{}
827 ---------- Buffer: Minibuffer ----------
828 @end group
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
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}.
844 @example
845 (read-command "Command name? ")
847 @group
848 ;; @r{After evaluation of the preceding expression,} 
849 ;;   @r{the following prompt appears with an empty minibuffer:}
850 @end group
852 @group
853 ---------- Buffer: Minibuffer ---------- 
854 Command name?  
855 ---------- Buffer: Minibuffer ----------
856 @end group
857 @end example
859 @noindent
860 If the user types @kbd{forward-c @key{RET}}, then this function returns
861 @code{forward-char}.
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:
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
879 @defun read-variable prompt
880 This function reads the name of a user variable and returns it as a
881 symbol.
883 @example
884 @group
885 (read-variable "Variable name? ")
887 ;; @r{After evaluation of the preceding expression,} 
888 ;;   @r{the following prompt appears,} 
889 ;;   @r{with an empty minibuffer:}
890 @end group
892 @group
893 ---------- Buffer: Minibuffer ----------
894 Variable name? @point{}
895 ---------- Buffer: Minibuffer ----------
896 @end group
897 @end example
899 @noindent
900 If the user then types @kbd{fill-p @key{RET}}, @code{read-variable}
901 returns @code{fill-prefix}.
903 This function is similar to @code{read-command}, but uses the
904 predicate @code{user-variable-p} instead of @code{commandp}:
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
918 @node Reading File Names
919 @subsection Reading File Names
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.
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.
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.
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}.
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}.
953 Here is an example: 
955 @example
956 @group
957 (read-file-name "The file is ")
959 ;; @r{After evaluation of the preceding expression,} 
960 ;;   @r{the following appears in the minibuffer:}
961 @end group
963 @group
964 ---------- Buffer: Minibuffer ----------
965 The file is /gp/gnu/elisp/@point{}
966 ---------- Buffer: Minibuffer ----------
967 @end group
968 @end example
970 @noindent
971 Typing @kbd{manual @key{TAB}} results in the following:
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
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
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.
997 For example:
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
1006 @group
1007 ---------- Buffer: Minibuffer ----------
1008 The file is ~lewis/manual/@point{}
1009 ---------- Buffer: Minibuffer ----------
1010 @end group
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
1019 @group
1020 ---------- Buffer: Minibuffer ----------
1021 The file is @point{}
1022 ---------- Buffer: Minibuffer ----------
1023 @end group
1024 @end example
1025 @end defopt
1027 @node Programmed Completion
1028 @subsection Programmed Completion
1029 @cindex programmed completion
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}.
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.
1042   The completion function should accept three arguments:
1044 @itemize @bullet
1045 @item
1046 The string to be completed.
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}.
1053 @item
1054 A flag specifying the type of operation.
1055 @end itemize
1057   There are three flag values for three operations:
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.
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.
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
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.
1085   Emacs uses programmed completion when completing file names.
1086 @xref{File Name Completion}.
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
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.
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.
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.
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.
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.
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.
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}.
1137 In the following example, the user first types @kbd{q}, which is
1138 invalid.  At the next prompt the user types @kbd{y}.
1140 @smallexample
1141 @group
1142 (y-or-n-p "Do you need a lift? ")
1144 ;; @r{After evaluation of the preceding expression,} 
1145 ;;   @r{the following prompt appears in the echo area:}
1146 @end group
1148 @group
1149 ---------- Echo area ----------
1150 Do you need a lift? (y or n) 
1151 ---------- Echo area ----------
1152 @end group
1154 ;; @r{If the user then types @kbd{q}, the following appears:}
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
1162 ;; @r{When the user types a valid answer,}
1163 ;;   @r{it is displayed after the question:}
1165 @group
1166 ---------- Echo area ----------
1167 Do you need a lift? (y or n) y
1168 ---------- Echo area ----------
1169 @end group
1170 @end smallexample
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
1177 @defun yes-or-no-p prompt
1178 This function asks the user a question, expecting input in the
1179 minibuffer.  It returns @code{t} if the user enters @samp{yes},
1180 @code{nil} if the user types @samp{no}.  The user must type @key{RET} to
1181 finalize the response.  Upper and lower case are equivalent.
1183 @code{yes-or-no-p} starts by displaying @var{prompt} in the echo area,
1184 followed by @w{@samp{(yes or no) }}.  The user must type one of the
1185 expected responses; otherwise, the function responds @samp{Please answer
1186 yes or no.}, waits about two seconds and repeats the request.
1188 @code{yes-or-no-p} requires more work from the user than
1189 @code{y-or-n-p} and is appropriate for more crucial decisions.
1191 Here is an example:
1193 @smallexample
1194 @group
1195 (yes-or-no-p "Do you really want to remove everything? ")
1197 ;; @r{After evaluation of the preceding expression,} 
1198 ;;   @r{the following prompt appears,} 
1199 ;;   @r{with an empty minibuffer:}
1200 @end group
1202 @group
1203 ---------- Buffer: minibuffer ----------
1204 Do you really want to remove everything? (yes or no) 
1205 ---------- Buffer: minibuffer ----------
1206 @end group
1207 @end smallexample
1209 @noindent
1210 If the user first types @kbd{y @key{RET}}, which is invalid because this
1211 function demands the entire word @samp{yes}, it responds by displaying
1212 these prompts, with a brief pause between them:
1214 @smallexample
1215 @group
1216 ---------- Buffer: minibuffer ----------
1217 Please answer yes or no.
1218 Do you really want to remove everything? (yes or no)
1219 ---------- Buffer: minibuffer ----------
1220 @end group
1221 @end smallexample
1222 @end defun
1224 @node Multiple Queries
1225 @section Asking Multiple Y-or-N Questions
1227   When you have a series of similar questions to ask, such as ``Do you
1228 want to save this buffer'' for each buffer in turn, you should use
1229 @code{map-y-or-n-p} to ask the collection of questions, rather than
1230 asking each question individually.  This gives the user certain
1231 convenient facilities such as the ability to answer the whole series at
1232 once.
1234 @defun map-y-or-n-p prompter actor list &optional help action-alist
1235 This function, new in Emacs 19, asks the user a series of questions,
1236 reading a single-character answer in the echo area for each one.
1238 The value of @var{list} specifies the objects to ask questions about.
1239 It should be either a list of objects or a generator function.  If it is
1240 a function, it should expect no arguments, and should return either the
1241 next object to ask about, or @code{nil} meaning stop asking questions.
1243 The argument @var{prompter} specifies how to ask each question.  If
1244 @var{prompter} is a string, the question text is computed like this:
1246 @example
1247 (format @var{prompter} @var{object})
1248 @end example
1250 @noindent
1251 where @var{object} is the next object to ask about (as obtained from
1252 @var{list}).
1254 If not a string, @var{prompter} should be a function of one argument
1255 (the next object to ask about) and should return the question text.  If
1256 the value is a string, that is the question to ask the user.  The
1257 function can also return @code{t} meaning do act on this object (and
1258 don't ask the user), or @code{nil} meaning ignore this object (and don't
1259 ask the user).
1261 The argument @var{actor} says how to act on the answers that the user
1262 gives.  It should be a function of one argument, and it is called with
1263 each object that the user says yes for.  Its argument is always an
1264 object obtained from @var{list}.
1266 If the argument @var{help} is given, it should be a list of this form:
1268 @example
1269 (@var{singular} @var{plural} @var{action})
1270 @end example
1272 @noindent
1273 where @var{singular} is a string containing a singular noun that
1274 describes the objects conceptually being acted on, @var{plural} is the
1275 corresponding plural noun, and @var{action} is a transitive verb
1276 describing what @var{actor} does.
1278 If you don't specify @var{help}, the default is @code{("object"
1279 "objects" "act on")}.
1281 Each time a question is asked, the user may enter @kbd{y}, @kbd{Y}, or
1282 @key{SPC} to act on that object; @kbd{n}, @kbd{N}, or @key{DEL} to skip
1283 that object; @kbd{!} to act on all following objects; @key{ESC} or
1284 @kbd{q} to exit (skip all following objects); @kbd{.} (period) to act on
1285 the current object and then exit; or @kbd{C-h} to get help.  These are
1286 the same answers that @code{query-replace} accepts.  The keymap
1287 @code{query-replace-map} defines their meaning for @code{map-y-or-n-p}
1288 as well as for @code{query-replace}; see @ref{Search and Replace}.
1290 You can use @var{action-alist} to specify additional possible answers
1291 and what they mean.  It is an alist of elements of the form
1292 @code{(@var{char} @var{function} @var{help})}, each of which defines one
1293 additional answer.  In this element, @var{char} is a character (the
1294 answer); @var{function} is a function of one argument (an object from
1295 @var{list}); @var{help} is a string.
1297 When the user responds with @var{char}, @code{map-y-or-n-p} calls
1298 @var{function}.  If it returns non-@code{nil}, the object is considered
1299 ``acted upon'', and @code{map-y-or-n-p} advances to the next object in
1300 @var{list}.  If it returns @code{nil}, the prompt is repeated for the
1301 same object.
1303 If @code{map-y-or-n-p} is called in a command that was invoked using the
1304 mouse---more precisely, if @code{last-nonmenu-event} (@pxref{Command
1305 Loop Info}) is either @code{nil} or a list---then it uses a dialog box
1306 or pop-up menu to ask the question.  In this case, it does not use
1307 keyboard input or the echo area.  You can force use of the mouse or use
1308 of keyboard input by binding @code{last-nonmenu-event} to a suitable
1309 value around the call.
1311 The return value of @code{map-y-or-n-p} is the number of objects acted on.
1312 @end defun
1314 @node Minibuffer Misc
1315 @comment  node-name,  next,  previous,  up
1316 @section Minibuffer Miscellany
1318   This section describes some basic functions and variables related to
1319 minibuffers.
1321 @deffn Command exit-minibuffer
1322 This command exits the active minibuffer.  It is normally bound to
1323 keys in minibuffer local keymaps.
1324 @end deffn
1326 @deffn Command self-insert-and-exit
1327 This command exits the active minibuffer after inserting the last
1328 character typed on the keyboard (found in @code{last-command-char};
1329 @pxref{Command Loop Info}).
1330 @end deffn
1332 @deffn Command previous-history-element n
1333 This command replaces the minibuffer contents with the value of the
1334 @var{n}th previous (older) history element.
1335 @end deffn
1337 @deffn Command next-history-element n
1338 This command replaces the minibuffer contents with the value of the
1339 @var{n}th more recent history element.
1340 @end deffn
1342 @deffn Command previous-matching-history-element pattern
1343 This command replaces the minibuffer contents with the value of the
1344 previous (older) history element that matches @var{pattern} (a regular
1345 expression).
1346 @end deffn
1348 @deffn Command next-matching-history-element pattern
1349 This command replaces the minibuffer contents with the value of the next
1350 (newer) history element that matches @var{pattern} (a regular
1351 expression).
1352 @end deffn
1354 @defun minibuffer-prompt
1355 This function returns the prompt string of the currently active
1356 minibuffer.  If no minibuffer is active, it returns @code{nil}.
1357 @end defun
1359 @defun minibuffer-prompt-width
1360 This function returns the display width of the prompt string of the
1361 currently active minibuffer.  If no minibuffer is active, it returns 0.
1362 @end defun
1364 @defvar minibuffer-setup-hook
1365 This is a normal hook that is run whenever the minibuffer is entered.
1366 @xref{Hooks}.
1367 @end defvar
1369 @defvar minibuffer-exit-hook
1370 This is a normal hook that is run whenever the minibuffer is exited.
1371 @xref{Hooks}.
1372 @end defvar
1374 @defvar minibuffer-help-form
1375 The current value of this variable is used to rebind @code{help-form}
1376 locally inside the minibuffer (@pxref{Help Functions}).
1377 @end defvar
1379 @defun active-minibuffer-window
1380 This function returns the currently active minibuffer window, or
1381 @code{nil} if none is currently active.
1382 @end defun
1384 @defun minibuffer-window &optional frame
1385 This function returns the minibuffer window used for frame @var{frame}.
1386 If @var{frame} is @code{nil}, that stands for the current frame.  Note
1387 that the minibuffer window used by a frame need not be part of that
1388 frame---a frame that has no minibuffer of its own necessarily uses some
1389 other frame's minibuffer window.
1390 @end defun
1392 @c Emacs 19 feature
1393 @defun window-minibuffer-p window
1394 This function returns non-@code{nil} if @var{window} is a minibuffer window.
1395 @end defun
1397 It is not correct to determine whether a given window is a minibuffer by
1398 comparing it with the result of @code{(minibuffer-window)}, because
1399 there can be more than one minibuffer window if there is more than one
1400 frame.
1402 @defun minibuffer-window-active-p window
1403 This function returns non-@code{nil} if @var{window}, assumed to be
1404 a minibuffer window, is currently active.
1405 @end defun
1407 @defvar minibuffer-scroll-window
1408 If the value of this variable is non-@code{nil}, it should be a window
1409 object.  When the function @code{scroll-other-window} is called in the
1410 minibuffer, it scrolls this window.
1411 @end defvar
1413 Finally, some functions and variables deal with recursive minibuffers
1414 (@pxref{Recursive Editing}):
1416 @defun minibuffer-depth
1417 This function returns the current depth of activations of the
1418 minibuffer, a nonnegative integer.  If no minibuffers are active, it
1419 returns zero.
1420 @end defun
1422 @defopt enable-recursive-minibuffers
1423 If this variable is non-@code{nil}, you can invoke commands (such as
1424 @code{find-file}) that use minibuffers even while in the minibuffer
1425 window.  Such invocation produces a recursive editing level for a new
1426 minibuffer.  The outer-level minibuffer is invisible while you are
1427 editing the inner one.
1429 This variable only affects invoking the minibuffer while the
1430 minibuffer window is selected.   If you switch windows while in the 
1431 minibuffer, you can always invoke minibuffer commands while some other
1432 window is selected.
1433 @end defopt
1435 @c Emacs 19 feature
1436 If a command name has a property @code{enable-recursive-minibuffers}
1437 that is non-@code{nil}, then the command can use the minibuffer to read
1438 arguments even if it is invoked from the minibuffer.  The minibuffer
1439 command @code{next-matching-history-element} (normally @kbd{M-s} in the
1440 minibuffer) uses this feature.