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