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