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