2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2001
4 @c Free Software Foundation, Inc.
5 @c See the file elisp.texi for copying conditions.
6 @setfilename ../info/minibuf
7 @node Minibuffers, Command Loop, Read and Print, Top
9 @cindex arguments, reading
10 @cindex complex arguments
13 A @dfn{minibuffer} is a special buffer that Emacs commands use to read
14 arguments more complicated than the single numeric prefix argument.
15 These arguments include file names, buffer names, and command names (as
16 in @kbd{M-x}). The minibuffer is displayed on the bottom line of the
17 frame, in the same place as the echo area, but only while it is in use
18 for reading an argument.
21 * Intro to Minibuffers:: Basic information about minibuffers.
22 * Text from Minibuffer:: How to read a straight text string.
23 * Object from Minibuffer:: How to read a Lisp object or expression.
24 * Minibuffer History:: Recording previous minibuffer inputs
25 so the user can reuse them.
26 * Initial Input:: Specifying initial contents for the minibuffer.
27 * Completion:: How to invoke and customize completion.
28 * Yes-or-No Queries:: Asking a question with a simple answer.
29 * Multiple Queries:: Asking a series of similar questions.
30 * Reading a Password:: Reading a password from the terminal.
31 * Minibuffer Misc:: Various customization hooks and variables.
34 @node Intro to Minibuffers
35 @section Introduction to Minibuffers
37 In most ways, a minibuffer is a normal Emacs buffer. Most operations
38 @emph{within} a buffer, such as editing commands, work normally in a
39 minibuffer. However, many operations for managing buffers do not apply
40 to minibuffers. The name of a minibuffer always has the form @w{@samp{
41 *Minibuf-@var{number}*}}, and it cannot be changed. Minibuffers are
42 displayed only in special windows used only for minibuffers; these
43 windows always appear at the bottom of a frame. (Sometimes frames have
44 no minibuffer window, and sometimes a special kind of frame contains
45 nothing but a minibuffer window; see @ref{Minibuffers and Frames}.)
47 The text in the minibuffer always starts with the @dfn{prompt string},
48 the text that was specified by the program that is using the minibuffer
49 to tell the user what sort of input to type. This text is marked
50 read-only so you won't accidentally delete or change it. It is also
51 marked as a field (@pxref{Fields}), so that certain motion functions,
52 including @code{beginning-of-line}, @code{forward-word},
53 @code{forward-sentence}, and @code{forward-paragraph}, stop at the
54 boundary between the prompt and the actual text. (In older Emacs
55 versions, the prompt was displayed using a special mechanism and was not
56 part of the buffer contents.)
58 The minibuffer's window is normally a single line; it grows
59 automatically if necessary if the contents require more space. You can
60 explicitly resize it temporarily with the window sizing commands; it
61 reverts to its normal size when the minibuffer is exited. You can
62 resize it permanently by using the window sizing commands in the frame's
63 other window, when the minibuffer is not active. If the frame contains
64 just a minibuffer, you can change the minibuffer's size by changing the
67 Use of the minibuffer reads input events, and that alters the values
68 of variables such as @code{this-command} and @code{last-command}
69 (@pxref{Command Loop Info}). Your program should bind them around the
70 code that uses the minibuffer, if you do not want that to change them.
72 If a command uses a minibuffer while there is an active minibuffer,
73 this is called a @dfn{recursive minibuffer}. The first minibuffer is
74 named @w{@samp{ *Minibuf-0*}}. Recursive minibuffers are named by
75 incrementing the number at the end of the name. (The names begin with a
76 space so that they won't show up in normal buffer lists.) Of several
77 recursive minibuffers, the innermost (or most recently entered) is the
78 active minibuffer. We usually call this ``the'' minibuffer. You can
79 permit or forbid recursive minibuffers by setting the variable
80 @code{enable-recursive-minibuffers} or by putting properties of that
81 name on command symbols (@pxref{Minibuffer Misc}).
83 Like other buffers, a minibuffer may use any of several local keymaps
84 (@pxref{Keymaps}); these contain various exit commands and in some cases
85 completion commands (@pxref{Completion}).
89 @code{minibuffer-local-map} is for ordinary input (no completion).
92 @code{minibuffer-local-ns-map} is similar, except that @key{SPC} exits
96 @code{minibuffer-local-completion-map} is for permissive completion.
99 @code{minibuffer-local-must-match-map} is for strict completion and
100 for cautious completion.
103 When Emacs is running in batch mode, any request to read from the
104 minibuffer actually reads a line from the standard input descriptor that
105 was supplied when Emacs was started.
107 @node Text from Minibuffer
108 @section Reading Text Strings with the Minibuffer
110 Most often, the minibuffer is used to read text as a string. It can
111 also be used to read a Lisp object in textual form. The most basic
112 primitive for minibuffer input is @code{read-from-minibuffer}; it can do
115 In most cases, you should not call minibuffer input functions in the
116 middle of a Lisp function. Instead, do all minibuffer input as part of
117 reading the arguments for a command, in the @code{interactive}
118 specification. @xref{Defining Commands}.
120 @defun read-from-minibuffer prompt-string &optional initial-contents keymap read hist default inherit-input-method
121 This function is the most general way to get input through the
122 minibuffer. By default, it accepts arbitrary text and returns it as a
123 string; however, if @var{read} is non-@code{nil}, then it uses
124 @code{read} to convert the text into a Lisp object (@pxref{Input
127 The first thing this function does is to activate a minibuffer and
128 display it with @var{prompt-string} as the prompt. This value must be a
129 string. Then the user can edit text in the minibuffer.
131 When the user types a command to exit the minibuffer,
132 @code{read-from-minibuffer} constructs the return value from the text in
133 the minibuffer. Normally it returns a string containing that text.
134 However, if @var{read} is non-@code{nil}, @code{read-from-minibuffer}
135 reads the text and returns the resulting Lisp object, unevaluated.
136 (@xref{Input Functions}, for information about reading.)
138 The argument @var{default} specifies a default value to make available
139 through the history commands. It should be a string, or @code{nil}.
140 If non-@code{nil}, the user can access it using
141 @code{next-history-element}, usually bound in the minibuffer to
142 @kbd{M-n}. If @var{read} is non-@code{nil}, then @var{default} is
143 also used as the input to @code{read}, if the user enters empty input.
144 (If @var{read} is non-@code{nil} and @var{default} is @code{nil}, empty
145 input results in an @code{end-of-file} error.) However, in the usual
146 case (where @var{read} is @code{nil}), @code{read-from-minibuffer}
147 ignores @var{default} when the user enters empty input and returns an
148 empty string, @code{""}. In this respect, it is different from all
149 the other minibuffer input functions in this chapter.
151 If @var{keymap} is non-@code{nil}, that keymap is the local keymap to
152 use in the minibuffer. If @var{keymap} is omitted or @code{nil}, the
153 value of @code{minibuffer-local-map} is used as the keymap. Specifying
154 a keymap is the most important way to customize the minibuffer for
155 various applications such as completion.
157 The argument @var{hist} specifies which history list variable to use
158 for saving the input and for history commands used in the minibuffer.
159 It defaults to @code{minibuffer-history}. @xref{Minibuffer History}.
161 If the variable @code{minibuffer-allow-text-properties} is
162 non-@code{nil}, then the string which is returned includes whatever text
163 properties were present in the minibuffer. Otherwise all the text
164 properties are stripped when the value is returned.
166 If the argument @var{inherit-input-method} is non-@code{nil}, then the
167 minibuffer inherits the current input method (@pxref{Input Methods}) and
168 the setting of @code{enable-multibyte-characters} (@pxref{Text
169 Representations}) from whichever buffer was current before entering the
172 Use of @var{initial-contents} is mostly deprecated; we recommend using
173 a non-@code{nil} value only in conjunction with specifying a cons cell
174 for @var{hist}. @xref{Initial Input}.
177 @defun read-string prompt &optional initial history default inherit-input-method
178 This function reads a string from the minibuffer and returns it. The
179 arguments @var{prompt}, @var{initial}, @var{history} and
180 @var{inherit-input-method} are used as in @code{read-from-minibuffer}.
181 The keymap used is @code{minibuffer-local-map}.
183 The optional argument @var{default} is used as in
184 @code{read-from-minibuffer}, except that, if non-@code{nil}, it also
185 specifies a default value to return if the user enters null input. As
186 in @code{read-from-minibuffer} it should be a string, or @code{nil},
187 which is equivalent to an empty string.
189 This function is a simplified interface to the
190 @code{read-from-minibuffer} function:
194 (read-string @var{prompt} @var{initial} @var{history} @var{default} @var{inherit})
197 (read-from-minibuffer @var{prompt} @var{initial} nil nil
198 @var{history} @var{default} @var{inherit})))
199 (if (and (equal value "") @var{default})
206 @defvar minibuffer-allow-text-properties
207 If this variable is @code{nil}, then @code{read-from-minibuffer} strips
208 all text properties from the minibuffer input before returning it.
209 This variable also affects @code{read-string}. However,
210 @code{read-no-blanks-input} (see below), as well as
211 @code{read-minibuffer} and related functions (@pxref{Object from
212 Minibuffer,, Reading Lisp Objects With the Minibuffer}), and all
213 functions that do minibuffer input with completion, discard text
214 properties unconditionally, regardless of the value of this variable.
217 @anchor{Definition of minibuffer-local-map}
218 @defvar minibuffer-local-map
219 This is the default local keymap for reading from the minibuffer. By
220 default, it makes the following bindings:
224 @code{exit-minibuffer}
227 @code{exit-minibuffer}
230 @code{abort-recursive-edit}
233 @code{next-history-element}
236 @code{previous-history-element}
239 @code{next-matching-history-element}
242 @code{previous-matching-history-element}
246 @c In version 18, initial is required
248 @defun read-no-blanks-input prompt &optional initial inherit-input-method
249 This function reads a string from the minibuffer, but does not allow
250 whitespace characters as part of the input: instead, those characters
251 terminate the input. The arguments @var{prompt}, @var{initial}, and
252 @var{inherit-input-method} are used as in @code{read-from-minibuffer}.
254 This is a simplified interface to the @code{read-from-minibuffer}
255 function, and passes the value of the @code{minibuffer-local-ns-map}
256 keymap as the @var{keymap} argument for that function. Since the keymap
257 @code{minibuffer-local-ns-map} does not rebind @kbd{C-q}, it @emph{is}
258 possible to put a space into the string, by quoting it.
260 This function discards text properties, regardless of the value of
261 @code{minibuffer-allow-text-properties}.
265 (read-no-blanks-input @var{prompt} @var{initial})
267 (let (minibuffer-allow-text-properties)
268 (read-from-minibuffer @var{prompt} @var{initial} minibuffer-local-ns-map))
273 @defvar minibuffer-local-ns-map
274 This built-in variable is the keymap used as the minibuffer local keymap
275 in the function @code{read-no-blanks-input}. By default, it makes the
276 following bindings, in addition to those of @code{minibuffer-local-map}:
280 @cindex @key{SPC} in minibuffer
281 @code{exit-minibuffer}
284 @cindex @key{TAB} in minibuffer
285 @code{exit-minibuffer}
288 @cindex @kbd{?} in minibuffer
289 @code{self-insert-and-exit}
293 @node Object from Minibuffer
294 @section Reading Lisp Objects with the Minibuffer
296 This section describes functions for reading Lisp objects with the
299 @defun read-minibuffer prompt &optional initial
300 This function reads a Lisp object using the minibuffer, and returns it
301 without evaluating it. The arguments @var{prompt} and @var{initial} are
302 used as in @code{read-from-minibuffer}.
304 This is a simplified interface to the
305 @code{read-from-minibuffer} function:
309 (read-minibuffer @var{prompt} @var{initial})
311 (let (minibuffer-allow-text-properties)
312 (read-from-minibuffer @var{prompt} @var{initial} nil t))
316 Here is an example in which we supply the string @code{"(testing)"} as
322 "Enter an expression: " (format "%s" '(testing)))
324 ;; @r{Here is how the minibuffer is displayed:}
328 ---------- Buffer: Minibuffer ----------
329 Enter an expression: (testing)@point{}
330 ---------- Buffer: Minibuffer ----------
335 The user can type @key{RET} immediately to use the initial input as a
336 default, or can edit the input.
339 @defun eval-minibuffer prompt &optional initial
340 This function reads a Lisp expression using the minibuffer, evaluates
341 it, then returns the result. The arguments @var{prompt} and
342 @var{initial} are used as in @code{read-from-minibuffer}.
344 This function simply evaluates the result of a call to
345 @code{read-minibuffer}:
349 (eval-minibuffer @var{prompt} @var{initial})
351 (eval (read-minibuffer @var{prompt} @var{initial}))
356 @defun edit-and-eval-command prompt form
357 This function reads a Lisp expression in the minibuffer, and then
358 evaluates it. The difference between this command and
359 @code{eval-minibuffer} is that here the initial @var{form} is not
360 optional and it is treated as a Lisp object to be converted to printed
361 representation rather than as a string of text. It is printed with
362 @code{prin1}, so if it is a string, double-quote characters (@samp{"})
363 appear in the initial text. @xref{Output Functions}.
365 The first thing @code{edit-and-eval-command} does is to activate the
366 minibuffer with @var{prompt} as the prompt. Then it inserts the printed
367 representation of @var{form} in the minibuffer, and lets the user edit it.
368 When the user exits the minibuffer, the edited text is read with
369 @code{read} and then evaluated. The resulting value becomes the value
370 of @code{edit-and-eval-command}.
372 In the following example, we offer the user an expression with initial
373 text which is a valid form already:
377 (edit-and-eval-command "Please edit: " '(forward-word 1))
379 ;; @r{After evaluation of the preceding expression,}
380 ;; @r{the following appears in the minibuffer:}
384 ---------- Buffer: Minibuffer ----------
385 Please edit: (forward-word 1)@point{}
386 ---------- Buffer: Minibuffer ----------
391 Typing @key{RET} right away would exit the minibuffer and evaluate the
392 expression, thus moving point forward one word.
393 @code{edit-and-eval-command} returns @code{nil} in this example.
396 @node Minibuffer History
397 @section Minibuffer History
398 @cindex minibuffer history
401 A @dfn{minibuffer history list} records previous minibuffer inputs so
402 the user can reuse them conveniently. A history list is actually a
403 symbol, not a list; it is a variable whose value is a list of strings
404 (previous inputs), most recent first.
406 There are many separate history lists, used for different kinds of
407 inputs. It's the Lisp programmer's job to specify the right history
408 list for each use of the minibuffer.
410 The basic minibuffer input functions @code{read-from-minibuffer} and
411 @code{completing-read} both accept an optional argument named @var{hist}
412 which is how you specify the history list. Here are the possible
417 Use @var{variable} (a symbol) as the history list.
419 @item (@var{variable} . @var{startpos})
420 Use @var{variable} (a symbol) as the history list, and assume that the
421 initial history position is @var{startpos} (a nonnegative integer).
423 Specifying 0 for @var{startpos} is equivalent to just specifying the
424 symbol @var{variable}. @code{previous-history-element} will display
425 the most recent element of the history list in the minibuffer. If you
426 specify a positive @var{startpos}, the minibuffer history functions
427 behave as if @code{(elt @var{variable} (1- @var{STARTPOS}))} were the
428 history element currently shown in the minibuffer.
430 For consistency, you should also specify that element of the history
431 as the initial minibuffer contents, using the @var{initial} argument
432 to the minibuffer input function (@pxref{Initial Input}).
435 If you don't specify @var{hist}, then the default history list
436 @code{minibuffer-history} is used. For other standard history lists,
437 see below. You can also create your own history list variable; just
438 initialize it to @code{nil} before the first use.
440 Both @code{read-from-minibuffer} and @code{completing-read} add new
441 elements to the history list automatically, and provide commands to
442 allow the user to reuse items on the list. The only thing your program
443 needs to do to use a history list is to initialize it and to pass its
444 name to the input functions when you wish. But it is safe to modify the
445 list by hand when the minibuffer input functions are not using it.
447 Emacs functions that add a new element to a history list can also
448 delete old elements if the list gets too long. The variable
449 @code{history-length} specifies the maximum length for most history
450 lists. To specify a different maximum length for a particular history
451 list, put the length in the @code{history-length} property of the
454 @defvar history-length
455 The value of this variable specifies the maximum length for all
456 history lists that don't specify their own maximum lengths. If the
457 value is @code{t}, that means there no maximum (don't delete old
461 Here are some of the standard minibuffer history list variables:
463 @defvar minibuffer-history
464 The default history list for minibuffer history input.
467 @defvar query-replace-history
468 A history list for arguments to @code{query-replace} (and similar
469 arguments to other commands).
472 @defvar file-name-history
473 A history list for file-name arguments.
476 @defvar buffer-name-history
477 A history list for buffer-name arguments.
480 @defvar regexp-history
481 A history list for regular expression arguments.
484 @defvar extended-command-history
485 A history list for arguments that are names of extended commands.
488 @defvar shell-command-history
489 A history list for arguments that are shell commands.
492 @defvar read-expression-history
493 A history list for arguments that are Lisp expressions to evaluate.
497 @section Initial Input
499 Several of the functions for minibuffer input have an argument called
500 @var{initial} or @var{initial-contents}. This is a mostly-deprecated
501 feature for specifiying that the minibuffer should start out with
502 certain text, instead of empty as usual.
504 If @var{initial} is a string, the minibuffer starts out containing the
505 text of the string, with point at the end, when the user starts to
506 edit the text. If the user simply types @key{RET} to exit the
507 minibuffer, it will use the initial input string to determine the
510 @strong{We discourage use of a non-@code{nil} value for
511 @var{initial}}, because initial input is an intrusive interface.
512 History lists and default values provide a much more convenient method
513 to offer useful default inputs to the user.
515 There is just one situation where you should specify a string for an
516 @var{initial} argument. This is when you specify a cons cell for the
517 @var{hist} or @var{history} argument. @xref{Minibuffer History}.
519 @var{initial} can also be a cons cell of the form @code{(@var{string}
520 . @var{position})}. This means to insert @var{string} in the
521 minibuffer but put point at @var{position} within the string's text.
523 As a historical accident, @var{position} was implemented
524 inconsistently in different functions. In @code{completing-read},
525 @var{position}'s value is interpreted as origin-zero; that is, a value
526 of 0 means the beginning of the string, 1 means after the first
527 character, etc. In @code{read-minibuffer}, and the other
528 non-completion minibuffer input functions that support this argument,
529 1 means the beginning of the string 2 means after the first character,
532 Use of a cons cell as the value for @var{initial} arguments is
533 deprecated in user code.
539 @dfn{Completion} is a feature that fills in the rest of a name
540 starting from an abbreviation for it. Completion works by comparing the
541 user's input against a list of valid names and determining how much of
542 the name is determined uniquely by what the user has typed. For
543 example, when you type @kbd{C-x b} (@code{switch-to-buffer}) and then
544 type the first few letters of the name of the buffer to which you wish
545 to switch, and then type @key{TAB} (@code{minibuffer-complete}), Emacs
546 extends the name as far as it can.
548 Standard Emacs commands offer completion for names of symbols, files,
549 buffers, and processes; with the functions in this section, you can
550 implement completion for other kinds of names.
552 The @code{try-completion} function is the basic primitive for
553 completion: it returns the longest determined completion of a given
554 initial string, with a given set of strings to match against.
556 The function @code{completing-read} provides a higher-level interface
557 for completion. A call to @code{completing-read} specifies how to
558 determine the list of valid names. The function then activates the
559 minibuffer with a local keymap that binds a few keys to commands useful
560 for completion. Other functions provide convenient simple interfaces
561 for reading certain kinds of names with completion.
564 * Basic Completion:: Low-level functions for completing strings.
565 (These are too low level to use the minibuffer.)
566 * Minibuffer Completion:: Invoking the minibuffer with completion.
567 * Completion Commands:: Minibuffer commands that do completion.
568 * High-Level Completion:: Convenient special cases of completion
569 (reading buffer name, file name, etc.)
570 * Reading File Names:: Using completion to read file names.
571 * Programmed Completion:: Writing your own completion-function.
574 @node Basic Completion
575 @subsection Basic Completion Functions
577 The functions @code{try-completion}, @code{all-completions} and
578 @code{test-completion} have nothing in themselves to do with
579 minibuffers. We describe them in this chapter so as to keep them near
580 the higher-level completion features that do use the minibuffer.
582 @defun try-completion string collection &optional predicate
583 This function returns the longest common substring of all possible
584 completions of @var{string} in @var{collection}. The value of
585 @var{collection} must be a list of strings, an alist, an obarray, a
586 hash table, or a function that implements a virtual set of strings
589 Completion compares @var{string} against each of the permissible
590 completions specified by @var{collection}; if the beginning of the
591 permissible completion equals @var{string}, it matches. If no permissible
592 completions match, @code{try-completion} returns @code{nil}. If only
593 one permissible completion matches, and the match is exact, then
594 @code{try-completion} returns @code{t}. Otherwise, the value is the
595 longest initial sequence common to all the permissible completions that
598 If @var{collection} is an alist (@pxref{Association Lists}), the
599 permissible completions are the elements of the alist that are either
600 strings or conses whose @sc{car} is a string. Other elements of the
601 alist are ignored. (Remember that in Emacs Lisp, the elements of
602 alists do not @emph{have} to be conses.) As all elements of the alist
603 can be strings, this case actually includes lists of strings, even
604 though we usually do not think of such lists as alists.
606 @cindex obarray in completion
607 If @var{collection} is an obarray (@pxref{Creating Symbols}), the names
608 of all symbols in the obarray form the set of permissible completions. The
609 global variable @code{obarray} holds an obarray containing the names of
610 all interned Lisp symbols.
612 Note that the only valid way to make a new obarray is to create it
613 empty and then add symbols to it one by one using @code{intern}.
614 Also, you cannot intern a given symbol in more than one obarray.
616 If @var{collection} is a hash table, then the keys that are strings
617 are the possible completions. Other keys are ignored.
619 You can also use a symbol that is a function as @var{collection}. Then
620 the function is solely responsible for performing completion;
621 @code{try-completion} returns whatever this function returns. The
622 function is called with three arguments: @var{string}, @var{predicate}
623 and @code{nil}. (The reason for the third argument is so that the same
624 function can be used in @code{all-completions} and do the appropriate
625 thing in either case.) @xref{Programmed Completion}.
627 If the argument @var{predicate} is non-@code{nil}, then it must be a
628 function of one argument, unless @var{collection} is a hash table, in
629 which case it should be a function of two arguments. It is used to
630 test each possible match, and the match is accepted only if
631 @var{predicate} returns non-@code{nil}. The argument given to
632 @var{predicate} is either a string or a cons cell (the @sc{car} of
633 which is a string) from the alist, or a symbol (@emph{not} a symbol
634 name) from the obarray. If @var{collection} is a hash table,
635 @var{predicate} is called with two arguments, the string key and the
638 In addition, to be acceptable, a completion must also match all the
639 regular expressions in @code{completion-regexp-list}. (Unless
640 @var{collection} is a function, in which case that function has to
641 handle @code{completion-regexp-list} itself.)
643 In the first of the following examples, the string @samp{foo} is
644 matched by three of the alist @sc{car}s. All of the matches begin with
645 the characters @samp{fooba}, so that is the result. In the second
646 example, there is only one possible match, and it is exact, so the value
653 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4)))
658 (try-completion "foo" '(("barfoo" 2) ("foo" 3)))
663 In the following example, numerous symbols begin with the characters
664 @samp{forw}, and all of them begin with the word @samp{forward}. In
665 most of the symbols, this is followed with a @samp{-}, but not in all,
666 so no more than @samp{forward} can be completed.
670 (try-completion "forw" obarray)
675 Finally, in the following example, only two of the three possible
676 matches pass the predicate @code{test} (the string @samp{foobaz} is
677 too short). Both of those begin with the string @samp{foobar}.
682 (> (length (car s)) 6))
688 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
695 @defun all-completions string collection &optional predicate nospace
696 This function returns a list of all possible completions of
697 @var{string}. The arguments to this function (aside from
698 @var{nospace}) are the same as those of @code{try-completion}. Also,
699 this function uses @code{completion-regexp-list} in the same way that
700 @code{try-completion} does. The optional argument @var{nospace} only
701 matters if @var{string} is the empty string. In that case, if
702 @var{nospace} is non-@code{nil}, completions that start with a space
705 If @var{collection} is a function, it is called with three arguments:
706 @var{string}, @var{predicate} and @code{t}; then @code{all-completions}
707 returns whatever the function returns. @xref{Programmed Completion}.
709 Here is an example, using the function @code{test} shown in the
710 example for @code{try-completion}:
715 (> (length (car s)) 6))
722 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
724 @result{} ("foobar1" "foobar2")
729 @anchor{Definition of test-completion}
730 @defun test-completion string collection &optional predicate
731 This function returns non-@code{nil} if @var{string} is a valid
732 completion possibility specified by @var{collection} and
733 @var{predicate}. The arguments are the same as in
734 @code{try-completion}. For instance, if @var{collection} is a list of
735 strings, this is true if @var{string} appears in the list and
736 @var{predicate} is satisfied.
738 @code{test-completion} uses @code{completion-regexp-list} in the same
739 way that @code{try-completion} does.
741 If @var{predicate} is non-@code{nil} and if @var{collection} contains
742 several strings that are equal to each other, as determined by
743 @code{compare-strings} according to @code{completion-ignore-case},
744 then @var{predicate} should accept either all or none of them.
745 Otherwise, the return value of @code{test-completion} is essentially
748 If @var{collection} is a function, it is called with three arguments,
749 the values @var{string}, @var{predicate} and @code{lambda}; whatever
750 it returns, @code{test-completion} returns in turn.
753 @defvar completion-ignore-case
754 If the value of this variable is non-@code{nil}, Emacs does not
755 consider case significant in completion.
758 @defvar completion-regexp-list
759 This is a list of regular expressions. The completion functions only
760 consider a completion acceptable if it matches all regular expressions
761 in this list, with @code{case-fold-search} (@pxref{Searching and Case})
762 bound to the value of @code{completion-ignore-case}.
765 @defmac lazy-completion-table var fun &rest args
766 This macro provides a way to initialize the variable @var{var} as a
767 collection for completion in a lazy way, not computing its actual
768 contents until they are first needed. You use this macro to produce a
769 value that you store in @var{var}. The actual computation of the
770 proper value is done the first time you do completion using @var{var}.
771 It is done by calling @var{fun} with the arguments @var{args}. The
772 value @var{fun} returns becomes the permanent value of @var{var}.
774 Here are two examples of use:
777 (defvar foo (lazy-completion-table foo make-my-alist 'global))
779 (make-local-variable 'bar)
780 (setq bar (lazy-completion-table foo make-my-alist 'local)
784 @node Minibuffer Completion
785 @subsection Completion and the Minibuffer
787 This section describes the basic interface for reading from the
788 minibuffer with completion.
790 @defun completing-read prompt collection &optional predicate require-match initial hist default inherit-input-method
791 This function reads a string in the minibuffer, assisting the user by
792 providing completion. It activates the minibuffer with prompt
793 @var{prompt}, which must be a string.
795 The actual completion is done by passing @var{collection} and
796 @var{predicate} to the function @code{try-completion}. This happens
797 in certain commands bound in the local keymaps used for completion.
798 Some of these commands also call @code{test-completion}. Thus, if
799 @var{predicate} is non-@code{nil}, it should be compatible with
800 @var{collection} and @code{completion-ignore-case}. @xref{Definition
803 If @var{require-match} is @code{nil}, the exit commands work regardless
804 of the input in the minibuffer. If @var{require-match} is @code{t}, the
805 usual minibuffer exit commands won't exit unless the input completes to
806 an element of @var{collection}. If @var{require-match} is neither
807 @code{nil} nor @code{t}, then the exit commands won't exit unless the
808 input already in the buffer matches an element of @var{collection}.
810 However, empty input is always permitted, regardless of the value of
811 @var{require-match}; in that case, @code{completing-read} returns
812 @var{default}, or @code{""}, if @var{default} is @code{nil}. The
813 value of @var{default} (if non-@code{nil}) is also available to the
814 user through the history commands.
816 The function @code{completing-read} uses
817 @code{minibuffer-local-completion-map} as the keymap if
818 @var{require-match} is @code{nil}, and uses
819 @code{minibuffer-local-must-match-map} if @var{require-match} is
820 non-@code{nil}. @xref{Completion Commands}.
822 The argument @var{hist} specifies which history list variable to use for
823 saving the input and for minibuffer history commands. It defaults to
824 @code{minibuffer-history}. @xref{Minibuffer History}.
826 The argument @var{initial} is mostly deprecated; we recommend using a
827 non-@code{nil} value only in conjunction with specifying a cons cell
828 for @var{hist}. @xref{Initial Input}. For default input, use
829 @var{default} instead.
831 If the argument @var{inherit-input-method} is non-@code{nil}, then the
832 minibuffer inherits the current input method (@pxref{Input
833 Methods}) and the setting of @code{enable-multibyte-characters}
834 (@pxref{Text Representations}) from whichever buffer was current before
835 entering the minibuffer.
837 Completion ignores case when comparing the input against the possible
838 matches, if the built-in variable @code{completion-ignore-case} is
839 non-@code{nil}. @xref{Basic Completion}.
841 Here's an example of using @code{completing-read}:
847 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
852 ;; @r{After evaluation of the preceding expression,}
853 ;; @r{the following appears in the minibuffer:}
855 ---------- Buffer: Minibuffer ----------
856 Complete a foo: fo@point{}
857 ---------- Buffer: Minibuffer ----------
862 If the user then types @kbd{@key{DEL} @key{DEL} b @key{RET}},
863 @code{completing-read} returns @code{barfoo}.
865 The @code{completing-read} function binds three variables to pass
866 information to the commands that actually do completion. These
867 variables are @code{minibuffer-completion-table},
868 @code{minibuffer-completion-predicate} and
869 @code{minibuffer-completion-confirm}. For more information about them,
870 see @ref{Completion Commands}.
873 @node Completion Commands
874 @subsection Minibuffer Commands that Do Completion
876 This section describes the keymaps, commands and user options used
877 in the minibuffer to do completion. The description refers to the
878 situation when Partial Completion mode is disabled (as it is by
879 default). When enabled, this minor mode uses its own alternatives to
880 some of the commands described below. @xref{Completion Options,,,
881 emacs, The GNU Emacs Manual}, for a short description of Partial
884 @defvar minibuffer-local-completion-map
885 @code{completing-read} uses this value as the local keymap when an
886 exact match of one of the completions is not required. By default, this
887 keymap makes the following bindings:
891 @code{minibuffer-completion-help}
894 @code{minibuffer-complete-word}
897 @code{minibuffer-complete}
901 with other characters bound as in @code{minibuffer-local-map}
902 (@pxref{Definition of minibuffer-local-map}).
905 @defvar minibuffer-local-must-match-map
906 @code{completing-read} uses this value as the local keymap when an
907 exact match of one of the completions is required. Therefore, no keys
908 are bound to @code{exit-minibuffer}, the command that exits the
909 minibuffer unconditionally. By default, this keymap makes the following
914 @code{minibuffer-completion-help}
917 @code{minibuffer-complete-word}
920 @code{minibuffer-complete}
923 @code{minibuffer-complete-and-exit}
926 @code{minibuffer-complete-and-exit}
930 with other characters bound as in @code{minibuffer-local-map}.
933 @defvar minibuffer-completion-table
934 The value of this variable is the collection used for completion in
935 the minibuffer. This is the global variable that contains what
936 @code{completing-read} passes to @code{try-completion}. It is used by
937 minibuffer completion commands such as @code{minibuffer-complete-word}.
940 @defvar minibuffer-completion-predicate
941 This variable's value is the predicate that @code{completing-read}
942 passes to @code{try-completion}. The variable is also used by the other
943 minibuffer completion functions.
946 @deffn Command minibuffer-complete-word
947 This function completes the minibuffer contents by at most a single
948 word. Even if the minibuffer contents have only one completion,
949 @code{minibuffer-complete-word} does not add any characters beyond the
950 first character that is not a word constituent. @xref{Syntax Tables}.
953 @deffn Command minibuffer-complete
954 This function completes the minibuffer contents as far as possible.
957 @deffn Command minibuffer-complete-and-exit
958 This function completes the minibuffer contents, and exits if
959 confirmation is not required, i.e., if
960 @code{minibuffer-completion-confirm} is @code{nil}. If confirmation
961 @emph{is} required, it is given by repeating this command
962 immediately---the command is programmed to work without confirmation
963 when run twice in succession.
966 @defvar minibuffer-completion-confirm
967 When the value of this variable is non-@code{nil}, Emacs asks for
968 confirmation of a completion before exiting the minibuffer. The
969 function @code{minibuffer-complete-and-exit} checks the value of this
970 variable before it exits.
973 @deffn Command minibuffer-completion-help
974 This function creates a list of the possible completions of the
975 current minibuffer contents. It works by calling @code{all-completions}
976 using the value of the variable @code{minibuffer-completion-table} as
977 the @var{collection} argument, and the value of
978 @code{minibuffer-completion-predicate} as the @var{predicate} argument.
979 The list of completions is displayed as text in a buffer named
980 @samp{*Completions*}.
983 @defun display-completion-list completions
984 This function displays @var{completions} to the stream in
985 @code{standard-output}, usually a buffer. (@xref{Read and Print}, for more
986 information about streams.) The argument @var{completions} is normally
987 a list of completions just returned by @code{all-completions}, but it
988 does not have to be. Each element may be a symbol or a string, either
989 of which is simply printed. It can also be a list of two strings,
990 which is printed as if the strings were concatenated. The first of
991 the two strings is the actual completion, the second string serves as
994 This function is called by @code{minibuffer-completion-help}. The
995 most common way to use it is together with
996 @code{with-output-to-temp-buffer}, like this:
999 (with-output-to-temp-buffer "*Completions*"
1000 (display-completion-list
1001 (all-completions (buffer-string) my-alist)))
1005 @defopt completion-auto-help
1006 If this variable is non-@code{nil}, the completion commands
1007 automatically display a list of possible completions whenever nothing
1008 can be completed because the next character is not uniquely determined.
1011 @node High-Level Completion
1012 @subsection High-Level Completion Functions
1014 This section describes the higher-level convenient functions for
1015 reading certain sorts of names with completion.
1017 In most cases, you should not call these functions in the middle of a
1018 Lisp function. When possible, do all minibuffer input as part of
1019 reading the arguments for a command, in the @code{interactive}
1020 specification. @xref{Defining Commands}.
1022 @defun read-buffer prompt &optional default existing
1023 This function reads the name of a buffer and returns it as a string.
1024 The argument @var{default} is the default name to use, the value to
1025 return if the user exits with an empty minibuffer. If non-@code{nil},
1026 it should be a string or a buffer. It is mentioned in the prompt, but
1027 is not inserted in the minibuffer as initial input.
1029 If @var{existing} is non-@code{nil}, then the name specified must be
1030 that of an existing buffer. The usual commands to exit the minibuffer
1031 do not exit if the text is not valid, and @key{RET} does completion to
1032 attempt to find a valid name. If @var{existing} is neither @code{nil}
1033 nor @code{t}, confirmation is required after completion. (However,
1034 @var{default} is not checked for validity; it is returned, whatever it
1035 is, if the user exits with the minibuffer empty.)
1037 In the following example, the user enters @samp{minibuffer.t}, and
1038 then types @key{RET}. The argument @var{existing} is @code{t}, and the
1039 only buffer name starting with the given input is
1040 @samp{minibuffer.texi}, so that name is the value.
1043 (read-buffer "Buffer name? " "foo" t)
1045 ;; @r{After evaluation of the preceding expression,}
1046 ;; @r{the following prompt appears,}
1047 ;; @r{with an empty minibuffer:}
1051 ---------- Buffer: Minibuffer ----------
1052 Buffer name? (default foo) @point{}
1053 ---------- Buffer: Minibuffer ----------
1057 ;; @r{The user types @kbd{minibuffer.t @key{RET}}.}
1058 @result{} "minibuffer.texi"
1063 @defvar read-buffer-function
1064 This variable specifies how to read buffer names. For example, if you
1065 set this variable to @code{iswitchb-read-buffer}, all Emacs commands
1066 that call @code{read-buffer} to read a buffer name will actually use the
1067 @code{iswitchb} package to read it.
1070 @defun read-command prompt &optional default
1071 This function reads the name of a command and returns it as a Lisp
1072 symbol. The argument @var{prompt} is used as in
1073 @code{read-from-minibuffer}. Recall that a command is anything for
1074 which @code{commandp} returns @code{t}, and a command name is a symbol
1075 for which @code{commandp} returns @code{t}. @xref{Interactive Call}.
1077 The argument @var{default} specifies what to return if the user enters
1078 null input. It can be a symbol or a string; if it is a string,
1079 @code{read-command} interns it before returning it. If @var{default} is
1080 @code{nil}, that means no default has been specified; then if the user
1081 enters null input, the return value is @code{(intern "")}, that is, a
1082 symbol whose name is an empty string.
1085 (read-command "Command name? ")
1088 ;; @r{After evaluation of the preceding expression,}
1089 ;; @r{the following prompt appears with an empty minibuffer:}
1093 ---------- Buffer: Minibuffer ----------
1095 ---------- Buffer: Minibuffer ----------
1100 If the user types @kbd{forward-c @key{RET}}, then this function returns
1101 @code{forward-char}.
1103 The @code{read-command} function is a simplified interface to
1104 @code{completing-read}. It uses the variable @code{obarray} so as to
1105 complete in the set of extant Lisp symbols, and it uses the
1106 @code{commandp} predicate so as to accept only command names:
1108 @cindex @code{commandp} example
1111 (read-command @var{prompt})
1113 (intern (completing-read @var{prompt} obarray
1119 @defun read-variable prompt &optional default
1120 This function reads the name of a user variable and returns it as a
1123 The argument @var{default} specifies what to return if the user enters
1124 null input. It can be a symbol or a string; if it is a string,
1125 @code{read-variable} interns it before returning it. If @var{default}
1126 is @code{nil}, that means no default has been specified; then if the
1127 user enters null input, the return value is @code{(intern "")}.
1131 (read-variable "Variable name? ")
1133 ;; @r{After evaluation of the preceding expression,}
1134 ;; @r{the following prompt appears,}
1135 ;; @r{with an empty minibuffer:}
1139 ---------- Buffer: Minibuffer ----------
1140 Variable name? @point{}
1141 ---------- Buffer: Minibuffer ----------
1146 If the user then types @kbd{fill-p @key{RET}}, @code{read-variable}
1147 returns @code{fill-prefix}.
1149 This function is similar to @code{read-command}, but uses the
1150 predicate @code{user-variable-p} instead of @code{commandp}:
1152 @cindex @code{user-variable-p} example
1155 (read-variable @var{prompt})
1158 (completing-read @var{prompt} obarray
1159 'user-variable-p t nil))
1164 See also the functions @code{read-coding-system} and
1165 @code{read-non-nil-coding-system}, in @ref{User-Chosen Coding Systems}.
1167 @node Reading File Names
1168 @subsection Reading File Names
1170 Here is another high-level completion function, designed for reading a
1171 file name. It provides special features including automatic insertion
1172 of the default directory.
1174 @defun read-file-name prompt &optional directory default existing initial predicate
1175 This function reads a file name in the minibuffer, prompting with
1176 @var{prompt} and providing completion.
1178 If @var{existing} is non-@code{nil}, then the user must specify the name
1179 of an existing file; @key{RET} performs completion to make the name
1180 valid if possible, and then refuses to exit if it is not valid. If the
1181 value of @var{existing} is neither @code{nil} nor @code{t}, then
1182 @key{RET} also requires confirmation after completion. If
1183 @var{existing} is @code{nil}, then the name of a nonexistent file is
1186 The argument @var{directory} specifies the directory to use for
1187 completion of relative file names. It should be an absolute directory
1188 name. If @code{insert-default-directory} is non-@code{nil},
1189 @var{directory} is also inserted in the minibuffer as initial input.
1190 It defaults to the current buffer's value of @code{default-directory}.
1193 If you specify @var{initial}, that is an initial file name to insert
1194 in the buffer (after @var{directory}, if that is inserted). In this
1195 case, point goes at the beginning of @var{initial}. The default for
1196 @var{initial} is @code{nil}---don't insert any file name. To see what
1197 @var{initial} does, try the command @kbd{C-x C-v}. @strong{Please
1198 note:} we recommend using @var{default} rather than @var{initial} in
1201 If @var{default} is non-@code{nil}, then the function returns
1202 @var{default} if the user exits the minibuffer with the same non-empty
1203 contents that @code{read-file-name} inserted initially. The initial
1204 minibuffer contents are always non-empty if
1205 @code{insert-default-directory} is non-@code{nil}, as it is by
1206 default. @var{default} is not checked for validity, regardless of the
1207 value of @var{existing}. However, if @var{existing} is
1208 non-@code{nil}, the initial minibuffer contents should be a valid file
1209 (or directory) name. Otherwise @code{read-file-name} attempts
1210 completion if the user exits without any editing, and does not return
1211 @var{default}. @var{default} is also available through the history
1214 If @var{default} is @code{nil}, @code{read-file-name} tries to find a
1215 substitute default to use in its place, which it treats in exactly the
1216 same way as if it had been specified explicitly. If @var{default} is
1217 @code{nil}, but @var{initial} is non-@code{nil}, then the default is
1218 the absolute file name obtained from @var{directory} and
1219 @var{initial}. If both @var{default} and @var{initial} are @code{nil}
1220 and the buffer is visiting a file, @code{read-file-name} uses the
1221 absolute file name of that file as default. If the buffer is not
1222 visiting a file, then there is no default. In that case, if the user
1223 types @key{RET} without any editing, @code{read-file-name} simply
1224 returns the pre-inserted contents of the minibuffer.
1226 If the user types @key{RET} in an empty minibuffer, this function
1227 returns an empty string, regardless of the value of @var{existing}.
1228 This is, for instance, how the user can make the current buffer visit
1229 no file using @code{M-x set-visited-file-name}.
1231 If @var{predicate} is non-@code{nil}, it specifies a function of one
1232 argument that decides which file names are acceptable completion
1233 possibilities. A file name is an acceptable value if @var{predicate}
1234 returns non-@code{nil} for it.
1236 @code{read-file-name} does not automatically expand file names. You
1237 must call @code{expand-file-name} yourself if an absolute file name is
1244 (read-file-name "The file is ")
1246 ;; @r{After evaluation of the preceding expression,}
1247 ;; @r{the following appears in the minibuffer:}
1251 ---------- Buffer: Minibuffer ----------
1252 The file is /gp/gnu/elisp/@point{}
1253 ---------- Buffer: Minibuffer ----------
1258 Typing @kbd{manual @key{TAB}} results in the following:
1262 ---------- Buffer: Minibuffer ----------
1263 The file is /gp/gnu/elisp/manual.texi@point{}
1264 ---------- Buffer: Minibuffer ----------
1268 @c Wordy to avoid overfull hbox in smallbook mode.
1270 If the user types @key{RET}, @code{read-file-name} returns the file name
1271 as the string @code{"/gp/gnu/elisp/manual.texi"}.
1274 @defun read-directory-name prompt &optional directory default existing initial
1275 This function is like @code{read-file-name} but allows only directory
1276 names as completion possibilities.
1278 If @var{default} is @code{nil} and @var{initial} is non-@code{nil},
1279 @code{read-directory-name} constructs a substitute default by
1280 combining @var{directory} (or the current buffer's default directory
1281 if @var{directory} is @code{nil}) and @var{initial}. If both
1282 @var{default} and @var{initial} are @code{nil}, this function uses the
1283 current buffer's default directory as substitute default, ignoring
1287 @defopt insert-default-directory
1288 This variable is used by @code{read-file-name}, and thus, indirectly,
1289 by most commands reading file names. (This includes all commands that
1290 use the code letters @samp{f} or @samp{F} in their interactive form.
1291 @xref{Interactive Codes,, Code Characters for interactive}.) Its
1292 value controls whether @code{read-file-name} starts by placing the
1293 name of the default directory in the minibuffer, plus the initial file
1294 name if any. If the value of this variable is @code{nil}, then
1295 @code{read-file-name} does not place any initial input in the
1296 minibuffer (unless you specify initial input with the @var{initial}
1297 argument). In that case, the default directory is still used for
1298 completion of relative file names, but is not displayed.
1300 If this variable is @code{nil} and the initial minibuffer contents are
1301 empty, the user may have to explicitly fetch the next history element
1302 to access a default value. If the variable is non-@code{nil}, the
1303 initial minibuffer contents are always non-empty and the user can
1304 always request a default value by immediately typing @key{RET} in an
1305 unedited minibuffer. (See above.)
1311 ;; @r{Here the minibuffer starts out with the default directory.}
1312 (let ((insert-default-directory t))
1313 (read-file-name "The file is "))
1317 ---------- Buffer: Minibuffer ----------
1318 The file is ~lewis/manual/@point{}
1319 ---------- Buffer: Minibuffer ----------
1323 ;; @r{Here the minibuffer is empty and only the prompt}
1324 ;; @r{appears on its line.}
1325 (let ((insert-default-directory nil))
1326 (read-file-name "The file is "))
1330 ---------- Buffer: Minibuffer ----------
1331 The file is @point{}
1332 ---------- Buffer: Minibuffer ----------
1337 @node Programmed Completion
1338 @subsection Programmed Completion
1339 @cindex programmed completion
1341 Sometimes it is not possible to create an alist or an obarray
1342 containing all the intended possible completions. In such a case, you
1343 can supply your own function to compute the completion of a given string.
1344 This is called @dfn{programmed completion}.
1346 To use this feature, pass a symbol with a function definition as the
1347 @var{collection} argument to @code{completing-read}. The function
1348 @code{completing-read} arranges to pass your completion function along
1349 to @code{try-completion} and @code{all-completions}, which will then let
1350 your function do all the work.
1352 The completion function should accept three arguments:
1356 The string to be completed.
1359 The predicate function to filter possible matches, or @code{nil} if
1360 none. Your function should call the predicate for each possible match,
1361 and ignore the possible match if the predicate returns @code{nil}.
1364 A flag specifying the type of operation.
1367 There are three flag values for three operations:
1371 @code{nil} specifies @code{try-completion}. The completion function
1372 should return the completion of the specified string, or @code{t} if the
1373 string is a unique and exact match already, or @code{nil} if the string
1374 matches no possibility.
1376 If the string is an exact match for one possibility, but also matches
1377 other longer possibilities, the function should return the string, not
1381 @code{t} specifies @code{all-completions}. The completion function
1382 should return a list of all possible completions of the specified
1386 @code{lambda} specifies @code{test-completion}. The completion
1387 function should return @code{t} if the specified string is an exact
1388 match for some possibility; @code{nil} otherwise.
1391 It would be consistent and clean for completion functions to allow
1392 lambda expressions (lists that are functions) as well as function
1393 symbols as @var{collection}, but this is impossible. Lists as
1394 completion tables already have other meanings, and it would be
1395 unreliable to treat one differently just because it is also a possible
1396 function. So you must arrange for any function you wish to use for
1397 completion to be encapsulated in a symbol.
1399 Emacs uses programmed completion when completing file names.
1400 @xref{File Name Completion}.
1402 @defmac dynamic-completion-table function
1403 This macro is a convenient way to write a function that can act as
1404 programmed completion function. The argument @var{function} should be
1405 a function that takes one argument, a string, and returns an alist of
1406 possible completions of it. You can think of
1407 @code{dynamic-completion-table} as a transducer between that interface
1408 and the interface for programmed completion functions.
1411 @node Yes-or-No Queries
1412 @section Yes-or-No Queries
1413 @cindex asking the user questions
1414 @cindex querying the user
1415 @cindex yes-or-no questions
1417 This section describes functions used to ask the user a yes-or-no
1418 question. The function @code{y-or-n-p} can be answered with a single
1419 character; it is useful for questions where an inadvertent wrong answer
1420 will not have serious consequences. @code{yes-or-no-p} is suitable for
1421 more momentous questions, since it requires three or four characters to
1424 If either of these functions is called in a command that was invoked
1425 using the mouse---more precisely, if @code{last-nonmenu-event}
1426 (@pxref{Command Loop Info}) is either @code{nil} or a list---then it
1427 uses a dialog box or pop-up menu to ask the question. Otherwise, it
1428 uses keyboard input. You can force use of the mouse or use of keyboard
1429 input by binding @code{last-nonmenu-event} to a suitable value around
1432 Strictly speaking, @code{yes-or-no-p} uses the minibuffer and
1433 @code{y-or-n-p} does not; but it seems best to describe them together.
1435 @defun y-or-n-p prompt
1436 This function asks the user a question, expecting input in the echo
1437 area. It returns @code{t} if the user types @kbd{y}, @code{nil} if the
1438 user types @kbd{n}. This function also accepts @key{SPC} to mean yes
1439 and @key{DEL} to mean no. It accepts @kbd{C-]} to mean ``quit'', like
1440 @kbd{C-g}, because the question might look like a minibuffer and for
1441 that reason the user might try to use @kbd{C-]} to get out. The answer
1442 is a single character, with no @key{RET} needed to terminate it. Upper
1443 and lower case are equivalent.
1445 ``Asking the question'' means printing @var{prompt} in the echo area,
1446 followed by the string @w{@samp{(y or n) }}. If the input is not one of
1447 the expected answers (@kbd{y}, @kbd{n}, @kbd{@key{SPC}},
1448 @kbd{@key{DEL}}, or something that quits), the function responds
1449 @samp{Please answer y or n.}, and repeats the request.
1451 This function does not actually use the minibuffer, since it does not
1452 allow editing of the answer. It actually uses the echo area (@pxref{The
1453 Echo Area}), which uses the same screen space as the minibuffer. The
1454 cursor moves to the echo area while the question is being asked.
1456 The answers and their meanings, even @samp{y} and @samp{n}, are not
1457 hardwired. The keymap @code{query-replace-map} specifies them.
1458 @xref{Search and Replace}.
1460 In the following example, the user first types @kbd{q}, which is
1461 invalid. At the next prompt the user types @kbd{y}.
1465 (y-or-n-p "Do you need a lift? ")
1467 ;; @r{After evaluation of the preceding expression,}
1468 ;; @r{the following prompt appears in the echo area:}
1472 ---------- Echo area ----------
1473 Do you need a lift? (y or n)
1474 ---------- Echo area ----------
1477 ;; @r{If the user then types @kbd{q}, the following appears:}
1480 ---------- Echo area ----------
1481 Please answer y or n. Do you need a lift? (y or n)
1482 ---------- Echo area ----------
1485 ;; @r{When the user types a valid answer,}
1486 ;; @r{it is displayed after the question:}
1489 ---------- Echo area ----------
1490 Do you need a lift? (y or n) y
1491 ---------- Echo area ----------
1496 We show successive lines of echo area messages, but only one actually
1497 appears on the screen at a time.
1500 @defun y-or-n-p-with-timeout prompt seconds default-value
1501 Like @code{y-or-n-p}, except that if the user fails to answer within
1502 @var{seconds} seconds, this function stops waiting and returns
1503 @var{default-value}. It works by setting up a timer; see @ref{Timers}.
1504 The argument @var{seconds} may be an integer or a floating point number.
1507 @defun yes-or-no-p prompt
1508 This function asks the user a question, expecting input in the
1509 minibuffer. It returns @code{t} if the user enters @samp{yes},
1510 @code{nil} if the user types @samp{no}. The user must type @key{RET} to
1511 finalize the response. Upper and lower case are equivalent.
1513 @code{yes-or-no-p} starts by displaying @var{prompt} in the echo area,
1514 followed by @w{@samp{(yes or no) }}. The user must type one of the
1515 expected responses; otherwise, the function responds @samp{Please answer
1516 yes or no.}, waits about two seconds and repeats the request.
1518 @code{yes-or-no-p} requires more work from the user than
1519 @code{y-or-n-p} and is appropriate for more crucial decisions.
1525 (yes-or-no-p "Do you really want to remove everything? ")
1527 ;; @r{After evaluation of the preceding expression,}
1528 ;; @r{the following prompt appears,}
1529 ;; @r{with an empty minibuffer:}
1533 ---------- Buffer: minibuffer ----------
1534 Do you really want to remove everything? (yes or no)
1535 ---------- Buffer: minibuffer ----------
1540 If the user first types @kbd{y @key{RET}}, which is invalid because this
1541 function demands the entire word @samp{yes}, it responds by displaying
1542 these prompts, with a brief pause between them:
1546 ---------- Buffer: minibuffer ----------
1547 Please answer yes or no.
1548 Do you really want to remove everything? (yes or no)
1549 ---------- Buffer: minibuffer ----------
1554 @node Multiple Queries
1555 @section Asking Multiple Y-or-N Questions
1557 When you have a series of similar questions to ask, such as ``Do you
1558 want to save this buffer'' for each buffer in turn, you should use
1559 @code{map-y-or-n-p} to ask the collection of questions, rather than
1560 asking each question individually. This gives the user certain
1561 convenient facilities such as the ability to answer the whole series at
1564 @defun map-y-or-n-p prompter actor list &optional help action-alist no-cursor-in-echo-area
1565 This function asks the user a series of questions, reading a
1566 single-character answer in the echo area for each one.
1568 The value of @var{list} specifies the objects to ask questions about.
1569 It should be either a list of objects or a generator function. If it is
1570 a function, it should expect no arguments, and should return either the
1571 next object to ask about, or @code{nil} meaning stop asking questions.
1573 The argument @var{prompter} specifies how to ask each question. If
1574 @var{prompter} is a string, the question text is computed like this:
1577 (format @var{prompter} @var{object})
1581 where @var{object} is the next object to ask about (as obtained from
1584 If not a string, @var{prompter} should be a function of one argument
1585 (the next object to ask about) and should return the question text. If
1586 the value is a string, that is the question to ask the user. The
1587 function can also return @code{t} meaning do act on this object (and
1588 don't ask the user), or @code{nil} meaning ignore this object (and don't
1591 The argument @var{actor} says how to act on the answers that the user
1592 gives. It should be a function of one argument, and it is called with
1593 each object that the user says yes for. Its argument is always an
1594 object obtained from @var{list}.
1596 If the argument @var{help} is given, it should be a list of this form:
1599 (@var{singular} @var{plural} @var{action})
1603 where @var{singular} is a string containing a singular noun that
1604 describes the objects conceptually being acted on, @var{plural} is the
1605 corresponding plural noun, and @var{action} is a transitive verb
1606 describing what @var{actor} does.
1608 If you don't specify @var{help}, the default is @code{("object"
1609 "objects" "act on")}.
1611 Each time a question is asked, the user may enter @kbd{y}, @kbd{Y}, or
1612 @key{SPC} to act on that object; @kbd{n}, @kbd{N}, or @key{DEL} to skip
1613 that object; @kbd{!} to act on all following objects; @key{ESC} or
1614 @kbd{q} to exit (skip all following objects); @kbd{.} (period) to act on
1615 the current object and then exit; or @kbd{C-h} to get help. These are
1616 the same answers that @code{query-replace} accepts. The keymap
1617 @code{query-replace-map} defines their meaning for @code{map-y-or-n-p}
1618 as well as for @code{query-replace}; see @ref{Search and Replace}.
1620 You can use @var{action-alist} to specify additional possible answers
1621 and what they mean. It is an alist of elements of the form
1622 @code{(@var{char} @var{function} @var{help})}, each of which defines one
1623 additional answer. In this element, @var{char} is a character (the
1624 answer); @var{function} is a function of one argument (an object from
1625 @var{list}); @var{help} is a string.
1627 When the user responds with @var{char}, @code{map-y-or-n-p} calls
1628 @var{function}. If it returns non-@code{nil}, the object is considered
1629 ``acted upon'', and @code{map-y-or-n-p} advances to the next object in
1630 @var{list}. If it returns @code{nil}, the prompt is repeated for the
1633 Normally, @code{map-y-or-n-p} binds @code{cursor-in-echo-area} while
1634 prompting. But if @var{no-cursor-in-echo-area} is non-@code{nil}, it
1637 If @code{map-y-or-n-p} is called in a command that was invoked using the
1638 mouse---more precisely, if @code{last-nonmenu-event} (@pxref{Command
1639 Loop Info}) is either @code{nil} or a list---then it uses a dialog box
1640 or pop-up menu to ask the question. In this case, it does not use
1641 keyboard input or the echo area. You can force use of the mouse or use
1642 of keyboard input by binding @code{last-nonmenu-event} to a suitable
1643 value around the call.
1645 The return value of @code{map-y-or-n-p} is the number of objects acted on.
1648 @node Reading a Password
1649 @section Reading a Password
1650 @cindex passwords, reading
1652 To read a password to pass to another program, you can use the
1653 function @code{read-passwd}.
1655 @defun read-passwd prompt &optional confirm default
1656 This function reads a password, prompting with @var{prompt}. It does
1657 not echo the password as the user types it; instead, it echoes @samp{.}
1658 for each character in the password.
1660 The optional argument @var{confirm}, if non-@code{nil}, says to read the
1661 password twice and insist it must be the same both times. If it isn't
1662 the same, the user has to type it over and over until the last two
1665 The optional argument @var{default} specifies the default password to
1666 return if the user enters empty input. If @var{default} is @code{nil},
1667 then @code{read-passwd} returns the null string in that case.
1670 @node Minibuffer Misc
1671 @section Minibuffer Miscellany
1673 This section describes some basic functions and variables related to
1676 @deffn Command exit-minibuffer
1677 This command exits the active minibuffer. It is normally bound to
1678 keys in minibuffer local keymaps.
1681 @deffn Command self-insert-and-exit
1682 This command exits the active minibuffer after inserting the last
1683 character typed on the keyboard (found in @code{last-command-char};
1684 @pxref{Command Loop Info}).
1687 @deffn Command previous-history-element n
1688 This command replaces the minibuffer contents with the value of the
1689 @var{n}th previous (older) history element.
1692 @deffn Command next-history-element n
1693 This command replaces the minibuffer contents with the value of the
1694 @var{n}th more recent history element.
1697 @deffn Command previous-matching-history-element pattern n
1698 This command replaces the minibuffer contents with the value of the
1699 @var{n}th previous (older) history element that matches @var{pattern} (a
1700 regular expression).
1703 @deffn Command next-matching-history-element pattern n
1704 This command replaces the minibuffer contents with the value of the
1705 @var{n}th next (newer) history element that matches @var{pattern} (a
1706 regular expression).
1709 @defun minibuffer-prompt
1710 This function returns the prompt string of the currently active
1711 minibuffer. If no minibuffer is active, it returns @code{nil}.
1714 @defun minibuffer-prompt-end
1715 @tindex minibuffer-prompt-end
1716 This function, available starting in Emacs 21, returns the current
1717 position of the end of the minibuffer prompt, if a minibuffer is
1718 current. Otherwise, it returns the minimum valid buffer position.
1721 @defun minibuffer-contents
1722 @tindex minibuffer-contents
1723 This function, available starting in Emacs 21, returns the editable
1724 contents of the minibuffer (that is, everything except the prompt) as
1725 a string, if a minibuffer is current. Otherwise, it returns the
1726 entire contents of the current buffer.
1729 @defun minibuffer-contents-no-properties
1730 @tindex minibuffer-contents-no-properties
1731 This is like @code{minibuffer-contents}, except that it does not copy text
1732 properties, just the characters themselves. @xref{Text Properties}.
1735 @defun delete-minibuffer-contents
1736 @tindex delete-minibuffer-contents
1737 This function, available starting in Emacs 21, erases the editable
1738 contents of the minibuffer (that is, everything except the prompt), if
1739 a minibuffer is current. Otherwise, it erases the entire buffer.
1742 @defun minibuffer-prompt-width
1743 This function returns the current display-width of the minibuffer
1744 prompt, if a minibuffer is current. Otherwise, it returns zero.
1747 @defvar minibuffer-setup-hook
1748 This is a normal hook that is run whenever the minibuffer is entered.
1752 @defvar minibuffer-exit-hook
1753 This is a normal hook that is run whenever the minibuffer is exited.
1757 @defvar minibuffer-help-form
1758 The current value of this variable is used to rebind @code{help-form}
1759 locally inside the minibuffer (@pxref{Help Functions}).
1762 @defun minibufferp &optional buffer-or-name
1763 This function returns non-@code{nil} if @var{buffer-or-name} is a
1764 minibuffer. If @var{buffer-or-name} is omitted, it tests the current
1768 @defun active-minibuffer-window
1769 This function returns the currently active minibuffer window, or
1770 @code{nil} if none is currently active.
1773 @defun minibuffer-window &optional frame
1774 This function returns the minibuffer window used for frame @var{frame}.
1775 If @var{frame} is @code{nil}, that stands for the current frame. Note
1776 that the minibuffer window used by a frame need not be part of that
1777 frame---a frame that has no minibuffer of its own necessarily uses some
1778 other frame's minibuffer window.
1781 @defun set-minibuffer-window window
1782 This function specifies @var{window} as the minibuffer window to use.
1783 This affects where the minibuffer is displayed if you put text in it
1784 without invoking the usual minibuffer commands. It has no effect on
1785 the usual minibuffer input functions because they all start by
1786 choosing the minibuffer window according to the current frame.
1790 @defun window-minibuffer-p &optional window
1791 This function returns non-@code{nil} if @var{window} is a minibuffer
1793 @var{window} defaults to the selected window.
1796 It is not correct to determine whether a given window is a minibuffer by
1797 comparing it with the result of @code{(minibuffer-window)}, because
1798 there can be more than one minibuffer window if there is more than one
1801 @defun minibuffer-window-active-p window
1802 This function returns non-@code{nil} if @var{window}, assumed to be
1803 a minibuffer window, is currently active.
1806 @defvar minibuffer-scroll-window
1807 If the value of this variable is non-@code{nil}, it should be a window
1808 object. When the function @code{scroll-other-window} is called in the
1809 minibuffer, it scrolls this window.
1812 @defun minibuffer-selected-window
1813 This function returns the window which was selected when the
1814 minibuffer was entered. If selected window is not a minibuffer
1815 window, it returns @code{nil}.
1818 Finally, some functions and variables deal with recursive minibuffers
1819 (@pxref{Recursive Editing}):
1821 @defun minibuffer-depth
1822 This function returns the current depth of activations of the
1823 minibuffer, a nonnegative integer. If no minibuffers are active, it
1827 @defopt enable-recursive-minibuffers
1828 If this variable is non-@code{nil}, you can invoke commands (such as
1829 @code{find-file}) that use minibuffers even while the minibuffer window
1830 is active. Such invocation produces a recursive editing level for a new
1831 minibuffer. The outer-level minibuffer is invisible while you are
1832 editing the inner one.
1834 If this variable is @code{nil}, you cannot invoke minibuffer
1835 commands when the minibuffer window is active, not even if you switch to
1836 another window to do it.
1840 If a command name has a property @code{enable-recursive-minibuffers}
1841 that is non-@code{nil}, then the command can use the minibuffer to read
1842 arguments even if it is invoked from the minibuffer. A command can
1843 also achieve this by binding @code{enable-recursive-minibuffers}
1844 to @code{t} in the interactive declaration (@pxref{Using Interactive}).
1845 The minibuffer command @code{next-matching-history-element} (normally
1846 @kbd{M-s} in the minibuffer) does the latter.
1848 @defun minibuffer-message string
1849 This function displays @var{string} temporarily at the end of the
1850 minibuffer text, for two seconds, or until the next input event
1851 arrives, whichever comes first.
1855 arch-tag: bba7f945-9078-477f-a2ce-18818a6e1218