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