0
|
1 @c -*-texinfo-*-
|
|
2 @c This is part of the XEmacs Lisp Reference Manual.
|
70
|
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
|
0
|
4 @c See the file lispref.texi for copying conditions.
|
|
5 @setfilename ../../info/minibuf.info
|
|
6 @node Minibuffers, Command Loop, Read and Print, Top
|
|
7 @chapter Minibuffers
|
|
8 @cindex arguments, reading
|
|
9 @cindex complex arguments
|
|
10 @cindex minibuffer
|
|
11
|
|
12 A @dfn{minibuffer} is a special buffer that XEmacs commands use to read
|
|
13 arguments more complicated than the single numeric prefix argument.
|
|
14 These arguments include file names, buffer names, and command names (as
|
|
15 in @kbd{M-x}). The minibuffer is displayed on the bottom line of the
|
|
16 frame, in the same place as the echo area, but only while it is in
|
|
17 use for reading an argument.
|
|
18
|
|
19 @menu
|
|
20 * Intro to Minibuffers:: Basic information about minibuffers.
|
|
21 * Text from Minibuffer:: How to read a straight text string.
|
|
22 * Object from Minibuffer:: How to read a Lisp object or expression.
|
|
23 * Minibuffer History:: Recording previous minibuffer inputs
|
|
24 so the user can reuse them.
|
|
25 * Completion:: How to invoke and customize completion.
|
|
26 * Yes-or-No Queries:: Asking a question with a simple answer.
|
|
27 * Multiple Queries:: Asking a series of similar questions.
|
|
28 * Minibuffer Misc:: Various customization hooks and variables.
|
|
29 @end menu
|
|
30
|
|
31 @node Intro to Minibuffers
|
|
32 @section Introduction to Minibuffers
|
|
33
|
|
34 In most ways, a minibuffer is a normal XEmacs buffer. Most operations
|
|
35 @emph{within} a buffer, such as editing commands, work normally in a
|
|
36 minibuffer. However, many operations for managing buffers do not apply
|
|
37 to minibuffers. The name of a minibuffer always has the form @w{@samp{
|
|
38 *Minibuf-@var{number}}}, and it cannot be changed. Minibuffers are
|
|
39 displayed only in special windows used only for minibuffers; these
|
|
40 windows always appear at the bottom of a frame. (Sometime frames have
|
|
41 no minibuffer window, and sometimes a special kind of frame contains
|
|
42 nothing but a minibuffer window; see @ref{Minibuffers and Frames}.)
|
|
43
|
|
44 The minibuffer's window is normally a single line. You can resize it
|
|
45 temporarily with the window sizing commands; it reverts to its normal
|
|
46 size when the minibuffer is exited. You can resize it permanently by
|
|
47 using the window sizing commands in the frame's other window, when the
|
|
48 minibuffer is not active. If the frame contains just a minibuffer, you
|
|
49 can change the minibuffer's size by changing the frame's size.
|
|
50
|
|
51 If a command uses a minibuffer while there is an active minibuffer,
|
|
52 this is called a @dfn{recursive minibuffer}. The first minibuffer is
|
|
53 named @w{@samp{ *Minibuf-0*}}. Recursive minibuffers are named by
|
|
54 incrementing the number at the end of the name. (The names begin with a
|
|
55 space so that they won't show up in normal buffer lists.) Of several
|
|
56 recursive minibuffers, the innermost (or most recently entered) is the
|
|
57 active minibuffer. We usually call this ``the'' minibuffer. You can
|
|
58 permit or forbid recursive minibuffers by setting the variable
|
|
59 @code{enable-recursive-minibuffers}.
|
|
60
|
|
61 Like other buffers, a minibuffer may use any of several local keymaps
|
|
62 (@pxref{Keymaps}); these contain various exit commands and in some cases
|
|
63 completion commands (@pxref{Completion}).
|
|
64
|
|
65 @itemize @bullet
|
|
66 @item
|
|
67 @code{minibuffer-local-map} is for ordinary input (no completion).
|
|
68
|
|
69 @item
|
|
70 @code{minibuffer-local-ns-map} is similar, except that @key{SPC} exits
|
|
71 just like @key{RET}. This is used mainly for Mocklisp compatibility.
|
|
72
|
|
73 @item
|
|
74 @code{minibuffer-local-completion-map} is for permissive completion.
|
|
75
|
|
76 @item
|
|
77 @code{minibuffer-local-must-match-map} is for strict completion and
|
|
78 for cautious completion.
|
|
79 @end itemize
|
|
80
|
|
81 @node Text from Minibuffer
|
|
82 @section Reading Text Strings with the Minibuffer
|
|
83
|
|
84 Most often, the minibuffer is used to read text as a string. It can
|
|
85 also be used to read a Lisp object in textual form. The most basic
|
|
86 primitive for minibuffer input is @code{read-from-minibuffer}; it can do
|
|
87 either one.
|
|
88
|
|
89 In most cases, you should not call minibuffer input functions in the
|
|
90 middle of a Lisp function. Instead, do all minibuffer input as part of
|
|
91 reading the arguments for a command, in the @code{interactive} spec.
|
|
92 @xref{Defining Commands}.
|
|
93
|
|
94 @defun read-from-minibuffer prompt-string &optional initial-contents keymap read hist
|
|
95 This function is the most general way to get input through the
|
|
96 minibuffer. By default, it accepts arbitrary text and returns it as a
|
|
97 string; however, if @var{read} is non-@code{nil}, then it uses
|
|
98 @code{read} to convert the text into a Lisp object (@pxref{Input
|
|
99 Functions}).
|
|
100
|
|
101 The first thing this function does is to activate a minibuffer and
|
|
102 display it with @var{prompt-string} as the prompt. This value must be a
|
|
103 string.
|
|
104
|
|
105 Then, if @var{initial-contents} is a string, @code{read-from-minibuffer}
|
|
106 inserts it into the minibuffer, leaving point at the end. The
|
|
107 minibuffer appears with this text as its contents.
|
|
108
|
|
109 @c Emacs 19 feature
|
|
110 The value of @var{initial-contents} may also be a cons cell of the form
|
|
111 @code{(@var{string} . @var{position})}. This means to insert
|
|
112 @var{string} in the minibuffer but put point @var{position} characters
|
|
113 from the beginning, rather than at the end.
|
|
114
|
|
115 If @var{keymap} is non-@code{nil}, that keymap is the local keymap to
|
|
116 use in the minibuffer. If @var{keymap} is omitted or @code{nil}, the
|
|
117 value of @code{minibuffer-local-map} is used as the keymap. Specifying
|
|
118 a keymap is the most important way to customize the minibuffer for
|
|
119 various applications such as completion.
|
|
120
|
|
121 The argument @var{hist} specifies which history list variable to use
|
|
122 for saving the input and for history commands used in the minibuffer.
|
|
123 It defaults to @code{minibuffer-history}. @xref{Minibuffer History}.
|
|
124
|
|
125 When the user types a command to exit the minibuffer,
|
|
126 @code{read-from-minibuffer} uses the text in the minibuffer to produce
|
|
127 its return value. Normally it simply makes a string containing that
|
|
128 text. However, if @var{read} is non-@code{nil},
|
|
129 @code{read-from-minibuffer} reads the text and returns the resulting
|
|
130 Lisp object, unevaluated. (@xref{Input Functions}, for information
|
|
131 about reading.)
|
|
132 @end defun
|
|
133
|
|
134 @defun read-string prompt &optional initial
|
|
135 This function reads a string from the minibuffer and returns it. The
|
|
136 arguments @var{prompt} and @var{initial} are used as in
|
|
137 @code{read-from-minibuffer}. The keymap used is
|
|
138 @code{minibuffer-local-map}.
|
|
139
|
|
140 This is a simplified interface to the
|
|
141 @code{read-from-minibuffer} function:
|
|
142
|
|
143 @smallexample
|
|
144 @group
|
|
145 (read-string @var{prompt} @var{initial})
|
|
146 @equiv{}
|
|
147 (read-from-minibuffer @var{prompt} @var{initial} nil nil nil)
|
|
148 @end group
|
|
149 @end smallexample
|
|
150 @end defun
|
|
151
|
|
152 @defvar minibuffer-local-map
|
|
153 This is the default local keymap for reading from the minibuffer. By
|
|
154 default, it makes the following bindings:
|
|
155
|
|
156 @table @asis
|
|
157 @item @key{LFD}
|
|
158 @code{exit-minibuffer}
|
|
159
|
|
160 @item @key{RET}
|
|
161 @code{exit-minibuffer}
|
|
162
|
|
163 @item @kbd{C-g}
|
|
164 @code{abort-recursive-edit}
|
|
165
|
|
166 @item @kbd{M-n}
|
|
167 @code{next-history-element}
|
|
168
|
|
169 @item @kbd{M-p}
|
|
170 @code{previous-history-element}
|
|
171
|
|
172 @item @kbd{M-r}
|
|
173 @code{next-matching-history-element}
|
|
174
|
|
175 @item @kbd{M-s}
|
|
176 @code{previous-matching-history-element}
|
|
177 @end table
|
|
178 @end defvar
|
|
179
|
|
180 @c In version 18, initial is required
|
|
181 @c Emacs 19 feature
|
|
182 @defun read-no-blanks-input prompt &optional initial
|
|
183 This function reads a string from the minibuffer, but does not allow
|
|
184 whitespace characters as part of the input: instead, those characters
|
|
185 terminate the input. The arguments @var{prompt} and @var{initial} are
|
|
186 used as in @code{read-from-minibuffer}.
|
|
187
|
|
188 This is a simplified interface to the @code{read-from-minibuffer}
|
|
189 function, and passes the value of the @code{minibuffer-local-ns-map}
|
|
190 keymap as the @var{keymap} argument for that function. Since the keymap
|
|
191 @code{minibuffer-local-ns-map} does not rebind @kbd{C-q}, it @emph{is}
|
|
192 possible to put a space into the string, by quoting it.
|
|
193
|
|
194 @smallexample
|
|
195 @group
|
|
196 (read-no-blanks-input @var{prompt} @var{initial})
|
|
197 @equiv{}
|
|
198 (read-from-minibuffer @var{prompt} @var{initial} minibuffer-local-ns-map)
|
|
199 @end group
|
|
200 @end smallexample
|
|
201 @end defun
|
|
202
|
|
203 @defvar minibuffer-local-ns-map
|
|
204 This built-in variable is the keymap used as the minibuffer local keymap
|
|
205 in the function @code{read-no-blanks-input}. By default, it makes the
|
|
206 following bindings, in addition to those of @code{minibuffer-local-map}:
|
|
207
|
|
208 @table @asis
|
|
209 @item @key{SPC}
|
|
210 @cindex @key{SPC} in minibuffer
|
|
211 @code{exit-minibuffer}
|
|
212
|
|
213 @item @key{TAB}
|
|
214 @cindex @key{TAB} in minibuffer
|
|
215 @code{exit-minibuffer}
|
|
216
|
|
217 @item @kbd{?}
|
|
218 @cindex @kbd{?} in minibuffer
|
|
219 @code{self-insert-and-exit}
|
|
220 @end table
|
|
221 @end defvar
|
|
222
|
|
223 @node Object from Minibuffer
|
|
224 @section Reading Lisp Objects with the Minibuffer
|
|
225
|
|
226 This section describes functions for reading Lisp objects with the
|
|
227 minibuffer.
|
|
228
|
|
229 @defun read-minibuffer prompt &optional initial
|
|
230 This function reads a Lisp object in the minibuffer and returns it,
|
|
231 without evaluating it. The arguments @var{prompt} and @var{initial} are
|
|
232 used as in @code{read-from-minibuffer}.
|
|
233
|
|
234 This is a simplified interface to the
|
|
235 @code{read-from-minibuffer} function:
|
|
236
|
|
237 @smallexample
|
|
238 @group
|
|
239 (read-minibuffer @var{prompt} @var{initial})
|
|
240 @equiv{}
|
|
241 (read-from-minibuffer @var{prompt} @var{initial} nil t)
|
|
242 @end group
|
|
243 @end smallexample
|
|
244
|
|
245 Here is an example in which we supply the string @code{"(testing)"} as
|
|
246 initial input:
|
|
247
|
|
248 @smallexample
|
|
249 @group
|
|
250 (read-minibuffer
|
|
251 "Enter an expression: " (format "%s" '(testing)))
|
|
252
|
|
253 ;; @r{Here is how the minibuffer is displayed:}
|
|
254 @end group
|
|
255
|
|
256 @group
|
|
257 ---------- Buffer: Minibuffer ----------
|
|
258 Enter an expression: (testing)@point{}
|
|
259 ---------- Buffer: Minibuffer ----------
|
|
260 @end group
|
|
261 @end smallexample
|
|
262
|
|
263 @noindent
|
|
264 The user can type @key{RET} immediately to use the initial input as a
|
|
265 default, or can edit the input.
|
|
266 @end defun
|
|
267
|
|
268 @defun eval-minibuffer prompt &optional initial
|
|
269 This function reads a Lisp expression in the minibuffer, evaluates it,
|
|
270 then returns the result. The arguments @var{prompt} and @var{initial}
|
|
271 are used as in @code{read-from-minibuffer}.
|
|
272
|
|
273 This function simply evaluates the result of a call to
|
|
274 @code{read-minibuffer}:
|
|
275
|
|
276 @smallexample
|
|
277 @group
|
|
278 (eval-minibuffer @var{prompt} @var{initial})
|
|
279 @equiv{}
|
|
280 (eval (read-minibuffer @var{prompt} @var{initial}))
|
|
281 @end group
|
|
282 @end smallexample
|
|
283 @end defun
|
|
284
|
|
285 @defun edit-and-eval-command prompt form
|
|
286 This function reads a Lisp expression in the minibuffer, and then
|
|
287 evaluates it. The difference between this command and
|
|
288 @code{eval-minibuffer} is that here the initial @var{form} is not
|
|
289 optional and it is treated as a Lisp object to be converted to printed
|
|
290 representation rather than as a string of text. It is printed with
|
|
291 @code{prin1}, so if it is a string, double-quote characters (@samp{"})
|
|
292 appear in the initial text. @xref{Output Functions}.
|
|
293
|
|
294 The first thing @code{edit-and-eval-command} does is to activate the
|
|
295 minibuffer with @var{prompt} as the prompt. Then it inserts the printed
|
|
296 representation of @var{form} in the minibuffer, and lets the user edit.
|
|
297 When the user exits the minibuffer, the edited text is read with
|
|
298 @code{read} and then evaluated. The resulting value becomes the value
|
|
299 of @code{edit-and-eval-command}.
|
|
300
|
|
301 In the following example, we offer the user an expression with initial
|
|
302 text which is a valid form already:
|
|
303
|
|
304 @smallexample
|
|
305 @group
|
|
306 (edit-and-eval-command "Please edit: " '(forward-word 1))
|
|
307
|
|
308 ;; @r{After evaluation of the preceding expression,}
|
|
309 ;; @r{the following appears in the minibuffer:}
|
|
310 @end group
|
|
311
|
|
312 @group
|
|
313 ---------- Buffer: Minibuffer ----------
|
|
314 Please edit: (forward-word 1)@point{}
|
|
315 ---------- Buffer: Minibuffer ----------
|
|
316 @end group
|
|
317 @end smallexample
|
|
318
|
|
319 @noindent
|
|
320 Typing @key{RET} right away would exit the minibuffer and evaluate the
|
|
321 expression, thus moving point forward one word.
|
70
|
322 @code{edit-and-eval-command} returns @code{nil} in this example.
|
0
|
323 @end defun
|
|
324
|
|
325 @node Minibuffer History
|
|
326 @section Minibuffer History
|
|
327 @cindex minibuffer history
|
|
328 @cindex history list
|
|
329
|
|
330 A @dfn{minibuffer history list} records previous minibuffer inputs so
|
|
331 the user can reuse them conveniently. A history list is actually a
|
|
332 symbol, not a list; it is a variable whose value is a list of strings
|
|
333 (previous inputs), most recent first.
|
|
334
|
|
335 There are many separate history lists, used for different kinds of
|
|
336 inputs. It's the Lisp programmer's job to specify the right history
|
|
337 list for each use of the minibuffer.
|
|
338
|
|
339 The basic minibuffer input functions @code{read-from-minibuffer} and
|
|
340 @code{completing-read} both accept an optional argument named @var{hist}
|
|
341 which is how you specify the history list. Here are the possible
|
|
342 values:
|
|
343
|
|
344 @table @asis
|
|
345 @item @var{variable}
|
|
346 Use @var{variable} (a symbol) as the history list.
|
|
347
|
|
348 @item (@var{variable} . @var{startpos})
|
|
349 Use @var{variable} (a symbol) as the history list, and assume that the
|
|
350 initial history position is @var{startpos} (an integer, counting from
|
|
351 zero which specifies the most recent element of the history).
|
|
352
|
|
353 If you specify @var{startpos}, then you should also specify that element
|
|
354 of the history as the initial minibuffer contents, for consistency.
|
|
355 @end table
|
|
356
|
|
357 If you don't specify @var{hist}, then the default history list
|
|
358 @code{minibuffer-history} is used. For other standard history lists,
|
|
359 see below. You can also create your own history list variable; just
|
|
360 initialize it to @code{nil} before the first use.
|
|
361
|
|
362 Both @code{read-from-minibuffer} and @code{completing-read} add new
|
|
363 elements to the history list automatically, and provide commands to
|
|
364 allow the user to reuse items on the list. The only thing your program
|
|
365 needs to do to use a history list is to initialize it and to pass its
|
|
366 name to the input functions when you wish. But it is safe to modify the
|
|
367 list by hand when the minibuffer input functions are not using it.
|
|
368
|
|
369 @defvar minibuffer-history
|
|
370 The default history list for minibuffer history input.
|
|
371 @end defvar
|
|
372
|
|
373 @defvar query-replace-history
|
|
374 A history list for arguments to @code{query-replace} (and similar
|
|
375 arguments to other commands).
|
|
376 @end defvar
|
|
377
|
|
378 @defvar file-name-history
|
|
379 A history list for file name arguments.
|
|
380 @end defvar
|
|
381
|
|
382 @defvar regexp-history
|
|
383 A history list for regular expression arguments.
|
|
384 @end defvar
|
|
385
|
|
386 @defvar extended-command-history
|
|
387 A history list for arguments that are names of extended commands.
|
|
388 @end defvar
|
|
389
|
|
390 @defvar shell-command-history
|
|
391 A history list for arguments that are shell commands.
|
|
392 @end defvar
|
|
393
|
|
394 @defvar read-expression-history
|
|
395 A history list for arguments that are Lisp expressions to evaluate.
|
|
396 @end defvar
|
|
397
|
|
398 @node Completion
|
|
399 @section Completion
|
|
400 @cindex completion
|
|
401
|
|
402 @dfn{Completion} is a feature that fills in the rest of a name
|
|
403 starting from an abbreviation for it. Completion works by comparing the
|
|
404 user's input against a list of valid names and determining how much of
|
|
405 the name is determined uniquely by what the user has typed. For
|
|
406 example, when you type @kbd{C-x b} (@code{switch-to-buffer}) and then
|
|
407 type the first few letters of the name of the buffer to which you wish
|
|
408 to switch, and then type @key{TAB} (@code{minibuffer-complete}), Emacs
|
|
409 extends the name as far as it can.
|
|
410
|
|
411 Standard XEmacs commands offer completion for names of symbols, files,
|
|
412 buffers, and processes; with the functions in this section, you can
|
|
413 implement completion for other kinds of names.
|
|
414
|
|
415 The @code{try-completion} function is the basic primitive for
|
|
416 completion: it returns the longest determined completion of a given
|
|
417 initial string, with a given set of strings to match against.
|
|
418
|
|
419 The function @code{completing-read} provides a higher-level interface
|
|
420 for completion. A call to @code{completing-read} specifies how to
|
|
421 determine the list of valid names. The function then activates the
|
|
422 minibuffer with a local keymap that binds a few keys to commands useful
|
|
423 for completion. Other functions provide convenient simple interfaces
|
|
424 for reading certain kinds of names with completion.
|
|
425
|
|
426 @menu
|
|
427 * Basic Completion:: Low-level functions for completing strings.
|
|
428 (These are too low level to use the minibuffer.)
|
|
429 * Minibuffer Completion:: Invoking the minibuffer with completion.
|
|
430 * Completion Commands:: Minibuffer commands that do completion.
|
|
431 * High-Level Completion:: Convenient special cases of completion
|
|
432 (reading buffer name, file name, etc.)
|
|
433 * Reading File Names:: Using completion to read file names.
|
|
434 * Programmed Completion:: Finding the completions for a given file name.
|
|
435 @end menu
|
|
436
|
|
437 @node Basic Completion
|
|
438 @subsection Basic Completion Functions
|
|
439
|
|
440 The two functions @code{try-completion} and @code{all-completions}
|
|
441 have nothing in themselves to do with minibuffers. We describe them in
|
|
442 this chapter so as to keep them near the higher-level completion
|
|
443 features that do use the minibuffer.
|
|
444
|
|
445 @defun try-completion string collection &optional predicate
|
|
446 This function returns the longest common substring of all possible
|
|
447 completions of @var{string} in @var{collection}. The value of
|
|
448 @var{collection} must be an alist, an obarray, or a function that
|
|
449 implements a virtual set of strings (see below).
|
|
450
|
|
451 Completion compares @var{string} against each of the permissible
|
|
452 completions specified by @var{collection}; if the beginning of the
|
|
453 permissible completion equals @var{string}, it matches. If no permissible
|
|
454 completions match, @code{try-completion} returns @code{nil}. If only
|
|
455 one permissible completion matches, and the match is exact, then
|
|
456 @code{try-completion} returns @code{t}. Otherwise, the value is the
|
|
457 longest initial sequence common to all the permissible completions that
|
|
458 match.
|
|
459
|
|
460 If @var{collection} is an alist (@pxref{Association Lists}), the
|
|
461 @sc{car}s of the alist elements form the set of permissible completions.
|
|
462
|
|
463 @cindex obarray in completion
|
|
464 If @var{collection} is an obarray (@pxref{Creating Symbols}), the names
|
|
465 of all symbols in the obarray form the set of permissible completions. The
|
|
466 global variable @code{obarray} holds an obarray containing the names of
|
|
467 all interned Lisp symbols.
|
|
468
|
|
469 Note that the only valid way to make a new obarray is to create it
|
|
470 empty and then add symbols to it one by one using @code{intern}.
|
|
471 Also, you cannot intern a given symbol in more than one obarray.
|
|
472
|
|
473 If the argument @var{predicate} is non-@code{nil}, then it must be a
|
|
474 function of one argument. It is used to test each possible match, and
|
|
475 the match is accepted only if @var{predicate} returns non-@code{nil}.
|
|
476 The argument given to @var{predicate} is either a cons cell from the alist
|
|
477 (the @sc{car} of which is a string) or else it is a symbol (@emph{not} a
|
|
478 symbol name) from the obarray.
|
|
479
|
|
480 You can also use a symbol that is a function as @var{collection}. Then
|
|
481 the function is solely responsible for performing completion;
|
|
482 @code{try-completion} returns whatever this function returns. The
|
|
483 function is called with three arguments: @var{string}, @var{predicate}
|
|
484 and @code{nil}. (The reason for the third argument is so that the same
|
|
485 function can be used in @code{all-completions} and do the appropriate
|
|
486 thing in either case.) @xref{Programmed Completion}.
|
|
487
|
|
488 In the first of the following examples, the string @samp{foo} is
|
|
489 matched by three of the alist @sc{car}s. All of the matches begin with
|
|
490 the characters @samp{fooba}, so that is the result. In the second
|
|
491 example, there is only one possible match, and it is exact, so the value
|
|
492 is @code{t}.
|
|
493
|
|
494 @smallexample
|
|
495 @group
|
|
496 (try-completion
|
|
497 "foo"
|
|
498 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4)))
|
|
499 @result{} "fooba"
|
|
500 @end group
|
|
501
|
|
502 @group
|
|
503 (try-completion "foo" '(("barfoo" 2) ("foo" 3)))
|
|
504 @result{} t
|
|
505 @end group
|
|
506 @end smallexample
|
|
507
|
|
508 In the following example, numerous symbols begin with the characters
|
|
509 @samp{forw}, and all of them begin with the word @samp{forward}. In
|
|
510 most of the symbols, this is followed with a @samp{-}, but not in all,
|
|
511 so no more than @samp{forward} can be completed.
|
|
512
|
|
513 @smallexample
|
|
514 @group
|
|
515 (try-completion "forw" obarray)
|
|
516 @result{} "forward"
|
|
517 @end group
|
|
518 @end smallexample
|
|
519
|
|
520 Finally, in the following example, only two of the three possible
|
|
521 matches pass the predicate @code{test} (the string @samp{foobaz} is
|
|
522 too short). Both of those begin with the string @samp{foobar}.
|
|
523
|
|
524 @smallexample
|
|
525 @group
|
|
526 (defun test (s)
|
|
527 (> (length (car s)) 6))
|
|
528 @result{} test
|
|
529 @end group
|
|
530 @group
|
|
531 (try-completion
|
|
532 "foo"
|
|
533 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
|
|
534 'test)
|
|
535 @result{} "foobar"
|
|
536 @end group
|
|
537 @end smallexample
|
|
538 @end defun
|
|
539
|
|
540 @defun all-completions string collection &optional predicate nospace
|
|
541 This function returns a list of all possible completions of
|
|
542 @var{string}. The parameters to this function are the same as to
|
|
543 @code{try-completion}.
|
|
544
|
|
545 If @var{collection} is a function, it is called with three arguments:
|
|
546 @var{string}, @var{predicate} and @code{t}; then @code{all-completions}
|
|
547 returns whatever the function returns. @xref{Programmed Completion}.
|
|
548
|
|
549 If @var{nospace} is non-@code{nil}, completions that start with a space
|
|
550 are ignored unless @var{string} also starts with a space.
|
|
551
|
|
552 Here is an example, using the function @code{test} shown in the
|
|
553 example for @code{try-completion}:
|
|
554
|
|
555 @smallexample
|
|
556 @group
|
|
557 (defun test (s)
|
|
558 (> (length (car s)) 6))
|
|
559 @result{} test
|
|
560 @end group
|
|
561
|
|
562 @group
|
|
563 (all-completions
|
|
564 "foo"
|
|
565 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
|
|
566 'test)
|
|
567 @result{} ("foobar1" "foobar2")
|
|
568 @end group
|
|
569 @end smallexample
|
|
570 @end defun
|
|
571
|
|
572 @defvar completion-ignore-case
|
|
573 If the value of this variable is
|
|
574 non-@code{nil}, XEmacs does not consider case significant in completion.
|
|
575 @end defvar
|
|
576
|
|
577 @node Minibuffer Completion
|
|
578 @subsection Completion and the Minibuffer
|
|
579
|
|
580 This section describes the basic interface for reading from the
|
|
581 minibuffer with completion.
|
|
582
|
|
583 @defun completing-read prompt collection &optional predicate require-match initial hist
|
|
584 This function reads a string in the minibuffer, assisting the user by
|
|
585 providing completion. It activates the minibuffer with prompt
|
|
586 @var{prompt}, which must be a string. If @var{initial} is
|
|
587 non-@code{nil}, @code{completing-read} inserts it into the minibuffer as
|
|
588 part of the input. Then it allows the user to edit the input, providing
|
|
589 several commands to attempt completion.
|
|
590
|
|
591 The actual completion is done by passing @var{collection} and
|
|
592 @var{predicate} to the function @code{try-completion}. This happens in
|
|
593 certain commands bound in the local keymaps used for completion.
|
|
594
|
|
595 If @var{require-match} is @code{t}, the usual minibuffer exit commands
|
|
596 won't exit unless the input completes to an element of @var{collection}.
|
|
597 If @var{require-match} is neither @code{nil} nor @code{t}, then the exit
|
|
598 commands won't exit unless the input typed is itself an element of
|
|
599 @var{collection}. If @var{require-match} is @code{nil}, the exit
|
|
600 commands work regardless of the input in the minibuffer.
|
|
601
|
|
602 The user can exit with null input by typing @key{RET} with an empty
|
|
603 minibuffer. Then @code{completing-read} returns @code{nil}. This is
|
|
604 how the user requests whatever default the command uses for the value
|
|
605 being read. The user can return using @key{RET} in this way regardless
|
|
606 of the value of @var{require-match}.
|
|
607
|
|
608 The function @code{completing-read} works by calling
|
|
609 @code{read-minibuffer}. It uses @code{minibuffer-local-completion-map}
|
|
610 as the keymap if @var{require-match} is @code{nil}, and uses
|
|
611 @code{minibuffer-local-must-match-map} if @var{require-match} is
|
|
612 non-@code{nil}. @xref{Completion Commands}.
|
|
613
|
|
614 The argument @var{hist} specifies which history list variable to use for
|
|
615 saving the input and for minibuffer history commands. It defaults to
|
|
616 @code{minibuffer-history}. @xref{Minibuffer History}.
|
|
617
|
|
618 Completion ignores case when comparing the input against the possible
|
|
619 matches, if the built-in variable @code{completion-ignore-case} is
|
|
620 non-@code{nil}. @xref{Basic Completion}.
|
|
621
|
|
622 Here's an example of using @code{completing-read}:
|
|
623
|
|
624 @smallexample
|
|
625 @group
|
|
626 (completing-read
|
|
627 "Complete a foo: "
|
|
628 '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
|
|
629 nil t "fo")
|
|
630 @end group
|
|
631
|
|
632 @group
|
|
633 ;; @r{After evaluation of the preceding expression,}
|
|
634 ;; @r{the following appears in the minibuffer:}
|
|
635
|
|
636 ---------- Buffer: Minibuffer ----------
|
|
637 Complete a foo: fo@point{}
|
|
638 ---------- Buffer: Minibuffer ----------
|
|
639 @end group
|
|
640 @end smallexample
|
|
641
|
|
642 @noindent
|
|
643 If the user then types @kbd{@key{DEL} @key{DEL} b @key{RET}},
|
|
644 @code{completing-read} returns @code{barfoo}.
|
|
645
|
|
646 The @code{completing-read} function binds three variables to pass
|
|
647 information to the commands that actually do completion. These
|
|
648 variables are @code{minibuffer-completion-table},
|
|
649 @code{minibuffer-completion-predicate} and
|
|
650 @code{minibuffer-completion-confirm}. For more information about them,
|
|
651 see @ref{Completion Commands}.
|
|
652 @end defun
|
|
653
|
|
654 @node Completion Commands
|
|
655 @subsection Minibuffer Commands That Do Completion
|
|
656
|
|
657 This section describes the keymaps, commands and user options used in
|
|
658 the minibuffer to do completion.
|
|
659
|
|
660 @defvar minibuffer-local-completion-map
|
|
661 @code{completing-read} uses this value as the local keymap when an
|
|
662 exact match of one of the completions is not required. By default, this
|
|
663 keymap makes the following bindings:
|
|
664
|
|
665 @table @asis
|
|
666 @item @kbd{?}
|
|
667 @code{minibuffer-completion-help}
|
|
668
|
|
669 @item @key{SPC}
|
|
670 @code{minibuffer-complete-word}
|
|
671
|
|
672 @item @key{TAB}
|
|
673 @code{minibuffer-complete}
|
|
674 @end table
|
|
675
|
|
676 @noindent
|
|
677 with other characters bound as in @code{minibuffer-local-map}
|
|
678 (@pxref{Text from Minibuffer}).
|
|
679 @end defvar
|
|
680
|
|
681 @defvar minibuffer-local-must-match-map
|
|
682 @code{completing-read} uses this value as the local keymap when an
|
|
683 exact match of one of the completions is required. Therefore, no keys
|
|
684 are bound to @code{exit-minibuffer}, the command that exits the
|
|
685 minibuffer unconditionally. By default, this keymap makes the following
|
|
686 bindings:
|
|
687
|
|
688 @table @asis
|
|
689 @item @kbd{?}
|
|
690 @code{minibuffer-completion-help}
|
|
691
|
|
692 @item @key{SPC}
|
|
693 @code{minibuffer-complete-word}
|
|
694
|
|
695 @item @key{TAB}
|
|
696 @code{minibuffer-complete}
|
|
697
|
|
698 @item @key{LFD}
|
|
699 @code{minibuffer-complete-and-exit}
|
|
700
|
|
701 @item @key{RET}
|
|
702 @code{minibuffer-complete-and-exit}
|
|
703 @end table
|
|
704
|
|
705 @noindent
|
|
706 with other characters bound as in @code{minibuffer-local-map}.
|
|
707 @end defvar
|
|
708
|
|
709 @defvar minibuffer-completion-table
|
|
710 The value of this variable is the alist or obarray used for completion
|
|
711 in the minibuffer. This is the global variable that contains what
|
|
712 @code{completing-read} passes to @code{try-completion}. It is used by
|
|
713 minibuffer completion commands such as @code{minibuffer-complete-word}.
|
|
714 @end defvar
|
|
715
|
|
716 @defvar minibuffer-completion-predicate
|
|
717 This variable's value is the predicate that @code{completing-read}
|
|
718 passes to @code{try-completion}. The variable is also used by the other
|
|
719 minibuffer completion functions.
|
|
720 @end defvar
|
|
721
|
|
722 @deffn Command minibuffer-complete-word
|
|
723 This function completes the minibuffer contents by at most a single
|
|
724 word. Even if the minibuffer contents have only one completion,
|
|
725 @code{minibuffer-complete-word} does not add any characters beyond the
|
|
726 first character that is not a word constituent. @xref{Syntax Tables}.
|
|
727 @end deffn
|
|
728
|
|
729 @deffn Command minibuffer-complete
|
|
730 This function completes the minibuffer contents as far as possible.
|
|
731 @end deffn
|
|
732
|
|
733 @deffn Command minibuffer-complete-and-exit
|
|
734 This function completes the minibuffer contents, and exits if
|
|
735 confirmation is not required, i.e., if
|
|
736 @code{minibuffer-completion-confirm} is non-@code{nil}. If confirmation
|
|
737 @emph{is} required, it is given by repeating this command
|
|
738 immediately---the command is programmed to work without confirmation
|
|
739 when run twice in succession.
|
|
740 @end deffn
|
|
741
|
|
742 @defvar minibuffer-completion-confirm
|
|
743 When the value of this variable is non-@code{nil}, XEmacs asks for
|
|
744 confirmation of a completion before exiting the minibuffer. The
|
|
745 function @code{minibuffer-complete-and-exit} checks the value of this
|
|
746 variable before it exits.
|
|
747 @end defvar
|
|
748
|
|
749 @deffn Command minibuffer-completion-help
|
|
750 This function creates a list of the possible completions of the
|
|
751 current minibuffer contents. It works by calling @code{all-completions}
|
|
752 using the value of the variable @code{minibuffer-completion-table} as
|
|
753 the @var{collection} argument, and the value of
|
|
754 @code{minibuffer-completion-predicate} as the @var{predicate} argument.
|
|
755 The list of completions is displayed as text in a buffer named
|
|
756 @samp{*Completions*}.
|
|
757 @end deffn
|
|
758
|
|
759 @defun display-completion-list completions
|
|
760 This function displays @var{completions} to the stream in
|
|
761 @code{standard-output}, usually a buffer. (@xref{Read and Print}, for more
|
|
762 information about streams.) The argument @var{completions} is normally
|
|
763 a list of completions just returned by @code{all-completions}, but it
|
|
764 does not have to be. Each element may be a symbol or a string, either
|
|
765 of which is simply printed, or a list of two strings, which is printed
|
|
766 as if the strings were concatenated.
|
|
767
|
|
768 This function is called by @code{minibuffer-completion-help}. The
|
|
769 most common way to use it is together with
|
|
770 @code{with-output-to-temp-buffer}, like this:
|
|
771
|
|
772 @example
|
|
773 (with-output-to-temp-buffer "*Completions*"
|
|
774 (display-completion-list
|
|
775 (all-completions (buffer-string) my-alist)))
|
|
776 @end example
|
|
777 @end defun
|
|
778
|
|
779 @defopt completion-auto-help
|
|
780 If this variable is non-@code{nil}, the completion commands
|
|
781 automatically display a list of possible completions whenever nothing
|
|
782 can be completed because the next character is not uniquely determined.
|
|
783 @end defopt
|
|
784
|
|
785 @node High-Level Completion
|
|
786 @subsection High-Level Completion Functions
|
|
787
|
|
788 This section describes the higher-level convenient functions for
|
|
789 reading certain sorts of names with completion.
|
|
790
|
|
791 In most cases, you should not call these functions in the middle of a
|
|
792 Lisp function. When possible, do all minibuffer input as part of
|
|
793 reading the arguments for a command, in the @code{interactive} spec.
|
|
794 @xref{Defining Commands}.
|
|
795
|
|
796 @defun read-buffer prompt &optional default existing
|
|
797 This function reads the name of a buffer and returns it as a string.
|
|
798 The argument @var{default} is the default name to use, the value to
|
|
799 return if the user exits with an empty minibuffer. If non-@code{nil},
|
|
800 it should be a string or a buffer. It is mentioned in the prompt, but
|
|
801 is not inserted in the minibuffer as initial input.
|
|
802
|
|
803 If @var{existing} is non-@code{nil}, then the name specified must be
|
|
804 that of an existing buffer. The usual commands to exit the minibuffer
|
|
805 do not exit if the text is not valid, and @key{RET} does completion to
|
|
806 attempt to find a valid name. (However, @var{default} is not checked
|
|
807 for validity; it is returned, whatever it is, if the user exits with the
|
|
808 minibuffer empty.)
|
|
809
|
|
810 In the following example, the user enters @samp{minibuffer.t}, and
|
|
811 then types @key{RET}. The argument @var{existing} is @code{t}, and the
|
|
812 only buffer name starting with the given input is
|
|
813 @samp{minibuffer.texi}, so that name is the value.
|
|
814
|
|
815 @example
|
|
816 (read-buffer "Buffer name? " "foo" t)
|
|
817 @group
|
|
818 ;; @r{After evaluation of the preceding expression,}
|
|
819 ;; @r{the following prompt appears,}
|
|
820 ;; @r{with an empty minibuffer:}
|
|
821 @end group
|
|
822
|
|
823 @group
|
|
824 ---------- Buffer: Minibuffer ----------
|
|
825 Buffer name? (default foo) @point{}
|
|
826 ---------- Buffer: Minibuffer ----------
|
|
827 @end group
|
|
828
|
|
829 @group
|
|
830 ;; @r{The user types @kbd{minibuffer.t @key{RET}}.}
|
|
831 @result{} "minibuffer.texi"
|
|
832 @end group
|
|
833 @end example
|
|
834 @end defun
|
|
835
|
|
836 @defun read-command prompt
|
|
837 This function reads the name of a command and returns it as a Lisp
|
|
838 symbol. The argument @var{prompt} is used as in
|
|
839 @code{read-from-minibuffer}. Recall that a command is anything for
|
|
840 which @code{commandp} returns @code{t}, and a command name is a symbol
|
|
841 for which @code{commandp} returns @code{t}. @xref{Interactive Call}.
|
|
842
|
|
843 @example
|
|
844 (read-command "Command name? ")
|
|
845
|
|
846 @group
|
|
847 ;; @r{After evaluation of the preceding expression,}
|
|
848 ;; @r{the following prompt appears with an empty minibuffer:}
|
|
849 @end group
|
|
850
|
|
851 @group
|
|
852 ---------- Buffer: Minibuffer ----------
|
|
853 Command name?
|
|
854 ---------- Buffer: Minibuffer ----------
|
|
855 @end group
|
|
856 @end example
|
|
857
|
|
858 @noindent
|
|
859 If the user types @kbd{forward-c @key{RET}}, then this function returns
|
|
860 @code{forward-char}.
|
|
861
|
|
862 The @code{read-command} function is a simplified interface to the
|
|
863 function @code{completing-read}. It uses the variable @code{obarray} so
|
|
864 as to complete in the set of extant Lisp symbols, and it uses the
|
|
865 @code{commandp} predicate so as to accept only command names:
|
|
866
|
|
867 @cindex @code{commandp} example
|
|
868 @example
|
|
869 @group
|
|
870 (read-command @var{prompt})
|
|
871 @equiv{}
|
|
872 (intern (completing-read @var{prompt} obarray
|
|
873 'commandp t nil))
|
|
874 @end group
|
|
875 @end example
|
|
876 @end defun
|
|
877
|
|
878 @defun read-variable prompt
|
|
879 This function reads the name of a user variable and returns it as a
|
|
880 symbol.
|
|
881
|
|
882 @example
|
|
883 @group
|
|
884 (read-variable "Variable name? ")
|
|
885
|
|
886 ;; @r{After evaluation of the preceding expression,}
|
|
887 ;; @r{the following prompt appears,}
|
|
888 ;; @r{with an empty minibuffer:}
|
|
889 @end group
|
|
890
|
|
891 @group
|
|
892 ---------- Buffer: Minibuffer ----------
|
|
893 Variable name? @point{}
|
|
894 ---------- Buffer: Minibuffer ----------
|
|
895 @end group
|
|
896 @end example
|
|
897
|
|
898 @noindent
|
|
899 If the user then types @kbd{fill-p @key{RET}}, @code{read-variable}
|
|
900 returns @code{fill-prefix}.
|
|
901
|
|
902 This function is similar to @code{read-command}, but uses the
|
|
903 predicate @code{user-variable-p} instead of @code{commandp}:
|
|
904
|
|
905 @cindex @code{user-variable-p} example
|
|
906 @example
|
|
907 @group
|
|
908 (read-variable @var{prompt})
|
|
909 @equiv{}
|
|
910 (intern
|
|
911 (completing-read @var{prompt} obarray
|
|
912 'user-variable-p t nil))
|
|
913 @end group
|
|
914 @end example
|
|
915 @end defun
|
|
916
|
|
917 @node Reading File Names
|
|
918 @subsection Reading File Names
|
|
919
|
|
920 Here is another high-level completion function, designed for reading a
|
|
921 file name. It provides special features including automatic insertion
|
|
922 of the default directory.
|
|
923
|
|
924 @defun read-file-name prompt &optional directory default existing initial
|
|
925 This function reads a file name in the minibuffer, prompting with
|
|
926 @var{prompt} and providing completion. If @var{default} is
|
|
927 non-@code{nil}, then the function returns @var{default} if the user just
|
|
928 types @key{RET}. @var{default} is not checked for validity; it is
|
|
929 returned, whatever it is, if the user exits with the minibuffer empty.
|
|
930
|
|
931 If @var{existing} is non-@code{nil}, then the user must specify the name
|
|
932 of an existing file; @key{RET} performs completion to make the name
|
|
933 valid if possible, and then refuses to exit if it is not valid. If the
|
|
934 value of @var{existing} is neither @code{nil} nor @code{t}, then
|
|
935 @key{RET} also requires confirmation after completion. If
|
|
936 @var{existing} is @code{nil}, then the name of a nonexistent file is
|
|
937 acceptable.
|
|
938
|
|
939 The argument @var{directory} specifies the directory to use for
|
|
940 completion of relative file names. If @code{insert-default-directory}
|
|
941 is non-@code{nil}, @var{directory} is also inserted in the minibuffer as
|
|
942 initial input. It defaults to the current buffer's value of
|
|
943 @code{default-directory}.
|
|
944
|
|
945 @c Emacs 19 feature
|
|
946 If you specify @var{initial}, that is an initial file name to insert in
|
|
947 the buffer (after with @var{directory}, if that is inserted). In this
|
|
948 case, point goes at the beginning of @var{initial}. The default for
|
|
949 @var{initial} is @code{nil}---don't insert any file name. To see what
|
|
950 @var{initial} does, try the command @kbd{C-x C-v}.
|
|
951
|
|
952 Here is an example:
|
|
953
|
|
954 @example
|
|
955 @group
|
|
956 (read-file-name "The file is ")
|
|
957
|
|
958 ;; @r{After evaluation of the preceding expression,}
|
|
959 ;; @r{the following appears in the minibuffer:}
|
|
960 @end group
|
|
961
|
|
962 @group
|
|
963 ---------- Buffer: Minibuffer ----------
|
|
964 The file is /gp/gnu/elisp/@point{}
|
|
965 ---------- Buffer: Minibuffer ----------
|
|
966 @end group
|
|
967 @end example
|
|
968
|
|
969 @noindent
|
|
970 Typing @kbd{manual @key{TAB}} results in the following:
|
|
971
|
|
972 @example
|
|
973 @group
|
|
974 ---------- Buffer: Minibuffer ----------
|
|
975 The file is /gp/gnu/elisp/manual.texi@point{}
|
|
976 ---------- Buffer: Minibuffer ----------
|
|
977 @end group
|
|
978 @end example
|
|
979
|
|
980 @c Wordy to avoid overfull hbox in smallbook mode.
|
|
981 @noindent
|
|
982 If the user types @key{RET}, @code{read-file-name} returns the file name
|
|
983 as the string @code{"/gp/gnu/elisp/manual.texi"}.
|
|
984 @end defun
|
|
985
|
|
986 @defopt insert-default-directory
|
|
987 This variable is used by @code{read-file-name}. Its value controls
|
|
988 whether @code{read-file-name} starts by placing the name of the default
|
|
989 directory in the minibuffer, plus the initial file name if any. If the
|
|
990 value of this variable is @code{nil}, then @code{read-file-name} does
|
|
991 not place any initial input in the minibuffer (unless you specify
|
|
992 initial input with the @var{initial} argument). In that case, the
|
|
993 default directory is still used for completion of relative file names,
|
|
994 but is not displayed.
|
|
995
|
|
996 For example:
|
|
997
|
|
998 @example
|
|
999 @group
|
|
1000 ;; @r{Here the minibuffer starts out with the default directory.}
|
|
1001 (let ((insert-default-directory t))
|
|
1002 (read-file-name "The file is "))
|
|
1003 @end group
|
|
1004
|
|
1005 @group
|
|
1006 ---------- Buffer: Minibuffer ----------
|
|
1007 The file is ~lewis/manual/@point{}
|
|
1008 ---------- Buffer: Minibuffer ----------
|
|
1009 @end group
|
|
1010
|
|
1011 @group
|
|
1012 ;; @r{Here the minibuffer is empty and only the prompt}
|
|
1013 ;; @r{appears on its line.}
|
|
1014 (let ((insert-default-directory nil))
|
|
1015 (read-file-name "The file is "))
|
|
1016 @end group
|
|
1017
|
|
1018 @group
|
|
1019 ---------- Buffer: Minibuffer ----------
|
|
1020 The file is @point{}
|
|
1021 ---------- Buffer: Minibuffer ----------
|
|
1022 @end group
|
|
1023 @end example
|
|
1024 @end defopt
|
|
1025
|
|
1026 @node Programmed Completion
|
|
1027 @subsection Programmed Completion
|
|
1028 @cindex programmed completion
|
|
1029
|
|
1030 Sometimes it is not possible to create an alist or an obarray
|
|
1031 containing all the intended possible completions. In such a case, you
|
|
1032 can supply your own function to compute the completion of a given string.
|
|
1033 This is called @dfn{programmed completion}.
|
|
1034
|
|
1035 To use this feature, pass a symbol with a function definition as the
|
|
1036 @var{collection} argument to @code{completing-read}. The function
|
|
1037 @code{completing-read} arranges to pass your completion function along
|
|
1038 to @code{try-completion} and @code{all-completions}, which will then let
|
|
1039 your function do all the work.
|
|
1040
|
|
1041 The completion function should accept three arguments:
|
|
1042
|
|
1043 @itemize @bullet
|
|
1044 @item
|
|
1045 The string to be completed.
|
|
1046
|
|
1047 @item
|
|
1048 The predicate function to filter possible matches, or @code{nil} if
|
|
1049 none. Your function should call the predicate for each possible match,
|
|
1050 and ignore the possible match if the predicate returns @code{nil}.
|
|
1051
|
|
1052 @item
|
|
1053 A flag specifying the type of operation.
|
|
1054 @end itemize
|
|
1055
|
|
1056 There are three flag values for three operations:
|
|
1057
|
|
1058 @itemize @bullet
|
|
1059 @item
|
|
1060 @code{nil} specifies @code{try-completion}. The completion function
|
|
1061 should return the completion of the specified string, or @code{t} if the
|
|
1062 string is an exact match already, or @code{nil} if the string matches no
|
|
1063 possibility.
|
|
1064
|
|
1065 @item
|
|
1066 @code{t} specifies @code{all-completions}. The completion function
|
|
1067 should return a list of all possible completions of the specified
|
|
1068 string.
|
|
1069
|
|
1070 @item
|
|
1071 @code{lambda} specifies a test for an exact match. The completion
|
|
1072 function should return @code{t} if the specified string is an exact
|
|
1073 match for some possibility; @code{nil} otherwise.
|
|
1074 @end itemize
|
|
1075
|
|
1076 It would be consistent and clean for completion functions to allow
|
|
1077 lambda expressions (lists that are functions) as well as function
|
|
1078 symbols as @var{collection}, but this is impossible. Lists as
|
|
1079 completion tables are already assigned another meaning---as alists. It
|
|
1080 would be unreliable to fail to handle an alist normally because it is
|
|
1081 also a possible function. So you must arrange for any function you wish
|
|
1082 to use for completion to be encapsulated in a symbol.
|
|
1083
|
|
1084 Emacs uses programmed completion when completing file names.
|
|
1085 @xref{File Name Completion}.
|
|
1086
|
|
1087 @node Yes-or-No Queries
|
|
1088 @section Yes-or-No Queries
|
|
1089 @cindex asking the user questions
|
|
1090 @cindex querying the user
|
|
1091 @cindex yes-or-no questions
|
|
1092
|
|
1093 This section describes functions used to ask the user a yes-or-no
|
|
1094 question. The function @code{y-or-n-p} can be answered with a single
|
|
1095 character; it is useful for questions where an inadvertent wrong answer
|
|
1096 will not have serious consequences. @code{yes-or-no-p} is suitable for
|
|
1097 more momentous questions, since it requires three or four characters to
|
|
1098 answer. Variations of these functions can be used to ask a yes-or-no
|
|
1099 question using a dialog box, or optionally using one.
|
|
1100
|
|
1101 If either of these functions is called in a command that was invoked
|
|
1102 using the mouse, then it uses a dialog box or pop-up menu to ask the
|
|
1103 question. Otherwise, it uses keyboard input.
|
|
1104
|
|
1105 Strictly speaking, @code{yes-or-no-p} uses the minibuffer and
|
|
1106 @code{y-or-n-p} does not; but it seems best to describe them together.
|
|
1107
|
|
1108 @defun y-or-n-p prompt
|
|
1109 This function asks the user a question, expecting input in the echo
|
|
1110 area. It returns @code{t} if the user types @kbd{y}, @code{nil} if the
|
|
1111 user types @kbd{n}. This function also accepts @key{SPC} to mean yes
|
|
1112 and @key{DEL} to mean no. It accepts @kbd{C-]} to mean ``quit'', like
|
|
1113 @kbd{C-g}, because the question might look like a minibuffer and for
|
|
1114 that reason the user might try to use @kbd{C-]} to get out. The answer
|
|
1115 is a single character, with no @key{RET} needed to terminate it. Upper
|
|
1116 and lower case are equivalent.
|
|
1117
|
|
1118 ``Asking the question'' means printing @var{prompt} in the echo area,
|
|
1119 followed by the string @w{@samp{(y or n) }}. If the input is not one of
|
|
1120 the expected answers (@kbd{y}, @kbd{n}, @kbd{@key{SPC}},
|
|
1121 @kbd{@key{DEL}}, or something that quits), the function responds
|
|
1122 @samp{Please answer y or n.}, and repeats the request.
|
|
1123
|
|
1124 This function does not actually use the minibuffer, since it does not
|
|
1125 allow editing of the answer. It actually uses the echo area (@pxref{The
|
|
1126 Echo Area}), which uses the same screen space as the minibuffer. The
|
|
1127 cursor moves to the echo area while the question is being asked.
|
|
1128
|
|
1129 The answers and their meanings, even @samp{y} and @samp{n}, are not
|
|
1130 hardwired. The keymap @code{query-replace-map} specifies them.
|
|
1131 @xref{Search and Replace}.
|
|
1132
|
|
1133 In the following example, the user first types @kbd{q}, which is
|
|
1134 invalid. At the next prompt the user types @kbd{y}.
|
|
1135
|
|
1136 @smallexample
|
|
1137 @group
|
|
1138 (y-or-n-p "Do you need a lift? ")
|
|
1139
|
|
1140 ;; @r{After evaluation of the preceding expression,}
|
|
1141 ;; @r{the following prompt appears in the echo area:}
|
|
1142 @end group
|
|
1143
|
|
1144 @group
|
|
1145 ---------- Echo area ----------
|
|
1146 Do you need a lift? (y or n)
|
|
1147 ---------- Echo area ----------
|
|
1148 @end group
|
|
1149
|
|
1150 ;; @r{If the user then types @kbd{q}, the following appears:}
|
|
1151
|
|
1152 @group
|
|
1153 ---------- Echo area ----------
|
|
1154 Please answer y or n. Do you need a lift? (y or n)
|
|
1155 ---------- Echo area ----------
|
|
1156 @end group
|
|
1157
|
|
1158 ;; @r{When the user types a valid answer,}
|
|
1159 ;; @r{it is displayed after the question:}
|
|
1160
|
|
1161 @group
|
|
1162 ---------- Echo area ----------
|
|
1163 Do you need a lift? (y or n) y
|
|
1164 ---------- Echo area ----------
|
|
1165 @end group
|
|
1166 @end smallexample
|
|
1167
|
|
1168 @noindent
|
|
1169 We show successive lines of echo area messages, but only one actually
|
|
1170 appears on the screen at a time.
|
|
1171 @end defun
|
|
1172
|
|
1173 @defun yes-or-no-p prompt
|
|
1174 This function asks the user a question, expecting input in the
|
|
1175 minibuffer. It returns @code{t} if the user enters @samp{yes},
|
|
1176 @code{nil} if the user types @samp{no}. The user must type @key{RET} to
|
|
1177 finalize the response. Upper and lower case are equivalent.
|
|
1178
|
|
1179 @code{yes-or-no-p} starts by displaying @var{prompt} in the echo area,
|
|
1180 followed by @w{@samp{(yes or no) }}. The user must type one of the
|
|
1181 expected responses; otherwise, the function responds @samp{Please answer
|
|
1182 yes or no.}, waits about two seconds and repeats the request.
|
|
1183
|
|
1184 @code{yes-or-no-p} requires more work from the user than
|
|
1185 @code{y-or-n-p} and is appropriate for more crucial decisions.
|
|
1186
|
|
1187 Here is an example:
|
|
1188
|
|
1189 @smallexample
|
|
1190 @group
|
|
1191 (yes-or-no-p "Do you really want to remove everything? ")
|
|
1192
|
|
1193 ;; @r{After evaluation of the preceding expression,}
|
|
1194 ;; @r{the following prompt appears,}
|
|
1195 ;; @r{with an empty minibuffer:}
|
|
1196 @end group
|
|
1197
|
|
1198 @group
|
|
1199 ---------- Buffer: minibuffer ----------
|
|
1200 Do you really want to remove everything? (yes or no)
|
|
1201 ---------- Buffer: minibuffer ----------
|
|
1202 @end group
|
|
1203 @end smallexample
|
|
1204
|
|
1205 @noindent
|
|
1206 If the user first types @kbd{y @key{RET}}, which is invalid because this
|
|
1207 function demands the entire word @samp{yes}, it responds by displaying
|
|
1208 these prompts, with a brief pause between them:
|
|
1209
|
|
1210 @smallexample
|
|
1211 @group
|
|
1212 ---------- Buffer: minibuffer ----------
|
|
1213 Please answer yes or no.
|
|
1214 Do you really want to remove everything? (yes or no)
|
|
1215 ---------- Buffer: minibuffer ----------
|
|
1216 @end group
|
|
1217 @end smallexample
|
|
1218 @end defun
|
|
1219
|
|
1220 @c The rest is XEmacs stuff
|
|
1221 @defun yes-or-no-p-dialog-box prompt
|
|
1222 This function asks the user a ``y or n'' question with a popup dialog
|
|
1223 box. It returns @code{t} if the answer is ``yes''. @var{prompt} is the
|
|
1224 string to display to ask the question.
|
|
1225 @end defun
|
|
1226
|
|
1227 The following functions ask a question either in the minibuffer or a
|
|
1228 dialog box, depending on whether the last user event (which presumably
|
|
1229 invoked this command) was a keyboard or mouse event. When XEmacs is
|
|
1230 running on a window system, the functions @code{y-or-n-p} and
|
|
1231 @code{yes-or-no-p} are replaced with the following functions, so that
|
|
1232 menu items bring up dialog boxes instead of minibuffer questions.
|
|
1233
|
|
1234 @defun y-or-n-p-maybe-dialog-box prompt
|
|
1235 This function asks user a ``y or n'' question, using either a dialog box
|
|
1236 or the minibuffer, as appropriate.
|
|
1237 @end defun
|
|
1238
|
|
1239 @defun yes-or-no-p-maybe-dialog-box prompt
|
|
1240 This function asks user a ``yes or no'' question, using either a dialog
|
|
1241 box or the minibuffer, as appropriate.
|
|
1242 @end defun
|
|
1243
|
|
1244 @node Multiple Queries
|
|
1245 @section Asking Multiple Y-or-N Questions
|
|
1246
|
|
1247 When you have a series of similar questions to ask, such as ``Do you
|
|
1248 want to save this buffer'' for each buffer in turn, you should use
|
|
1249 @code{map-y-or-n-p} to ask the collection of questions, rather than
|
|
1250 asking each question individually. This gives the user certain
|
|
1251 convenient facilities such as the ability to answer the whole series at
|
|
1252 once.
|
|
1253
|
|
1254 @defun map-y-or-n-p prompter actor list &optional help action-alist
|
|
1255 This function, new in Emacs 19, asks the user a series of questions,
|
|
1256 reading a single-character answer in the echo area for each one.
|
|
1257
|
|
1258 The value of @var{list} specifies the objects to ask questions about.
|
|
1259 It should be either a list of objects or a generator function. If it is
|
|
1260 a function, it should expect no arguments, and should return either the
|
|
1261 next object to ask about, or @code{nil} meaning stop asking questions.
|
|
1262
|
|
1263 The argument @var{prompter} specifies how to ask each question. If
|
|
1264 @var{prompter} is a string, the question text is computed like this:
|
|
1265
|
|
1266 @example
|
|
1267 (format @var{prompter} @var{object})
|
|
1268 @end example
|
|
1269
|
|
1270 @noindent
|
|
1271 where @var{object} is the next object to ask about (as obtained from
|
|
1272 @var{list}).
|
|
1273
|
|
1274 If not a string, @var{prompter} should be a function of one argument
|
|
1275 (the next object to ask about) and should return the question text. If
|
|
1276 the value is a string, that is the question to ask the user. The
|
|
1277 function can also return @code{t} meaning do act on this object (and
|
|
1278 don't ask the user), or @code{nil} meaning ignore this object (and don't
|
|
1279 ask the user).
|
|
1280
|
|
1281 The argument @var{actor} says how to act on the answers that the user
|
|
1282 gives. It should be a function of one argument, and it is called with
|
|
1283 each object that the user says yes for. Its argument is always an
|
|
1284 object obtained from @var{list}.
|
|
1285
|
|
1286 If the argument @var{help} is given, it should be a list of this form:
|
|
1287
|
|
1288 @example
|
|
1289 (@var{singular} @var{plural} @var{action})
|
|
1290 @end example
|
|
1291
|
|
1292 @noindent
|
|
1293 where @var{singular} is a string containing a singular noun that
|
|
1294 describes the objects conceptually being acted on, @var{plural} is the
|
|
1295 corresponding plural noun, and @var{action} is a transitive verb
|
|
1296 describing what @var{actor} does.
|
|
1297
|
|
1298 If you don't specify @var{help}, the default is @code{("object"
|
|
1299 "objects" "act on")}.
|
|
1300
|
|
1301 Each time a question is asked, the user may enter @kbd{y}, @kbd{Y}, or
|
|
1302 @key{SPC} to act on that object; @kbd{n}, @kbd{N}, or @key{DEL} to skip
|
|
1303 that object; @kbd{!} to act on all following objects; @key{ESC} or
|
|
1304 @kbd{q} to exit (skip all following objects); @kbd{.} (period) to act on
|
|
1305 the current object and then exit; or @kbd{C-h} to get help. These are
|
|
1306 the same answers that @code{query-replace} accepts. The keymap
|
|
1307 @code{query-replace-map} defines their meaning for @code{map-y-or-n-p}
|
|
1308 as well as for @code{query-replace}; see @ref{Search and Replace}.
|
|
1309
|
|
1310 You can use @var{action-alist} to specify additional possible answers
|
|
1311 and what they mean. It is an alist of elements of the form
|
|
1312 @code{(@var{char} @var{function} @var{help})}, each of which defines one
|
|
1313 additional answer. In this element, @var{char} is a character (the
|
|
1314 answer); @var{function} is a function of one argument (an object from
|
|
1315 @var{list}); @var{help} is a string.
|
|
1316
|
|
1317 When the user responds with @var{char}, @code{map-y-or-n-p} calls
|
|
1318 @var{function}. If it returns non-@code{nil}, the object is considered
|
|
1319 ``acted upon'', and @code{map-y-or-n-p} advances to the next object in
|
|
1320 @var{list}. If it returns @code{nil}, the prompt is repeated for the
|
|
1321 same object.
|
|
1322
|
|
1323 If @code{map-y-or-n-p} is called in a command that was invoked using the
|
|
1324 mouse---more precisely, if @code{last-nonmenu-event} (@pxref{Command
|
|
1325 Loop Info}) is either @code{nil} or a list---then it uses a dialog box
|
|
1326 or pop-up menu to ask the question. In this case, it does not use
|
|
1327 keyboard input or the echo area. You can force use of the mouse or use
|
|
1328 of keyboard input by binding @code{last-nonmenu-event} to a suitable
|
|
1329 value around the call.
|
|
1330
|
|
1331 The return value of @code{map-y-or-n-p} is the number of objects acted on.
|
|
1332 @end defun
|
|
1333
|
|
1334 @node Minibuffer Misc
|
|
1335 @section Minibuffer Miscellany
|
|
1336
|
|
1337 This section describes some basic functions and variables related to
|
|
1338 minibuffers.
|
|
1339
|
|
1340 @deffn Command exit-minibuffer
|
|
1341 This command exits the active minibuffer. It is normally bound to
|
|
1342 keys in minibuffer local keymaps.
|
|
1343 @end deffn
|
|
1344
|
|
1345 @deffn Command self-insert-and-exit
|
|
1346 This command exits the active minibuffer after inserting the last
|
|
1347 character typed on the keyboard (found in @code{last-command-char};
|
|
1348 @pxref{Command Loop Info}).
|
|
1349 @end deffn
|
|
1350
|
|
1351 @deffn Command previous-history-element n
|
|
1352 This command replaces the minibuffer contents with the value of the
|
|
1353 @var{n}th previous (older) history element.
|
|
1354 @end deffn
|
|
1355
|
|
1356 @deffn Command next-history-element n
|
|
1357 This command replaces the minibuffer contents with the value of the
|
|
1358 @var{n}th more recent history element.
|
|
1359 @end deffn
|
|
1360
|
|
1361 @deffn Command previous-matching-history-element pattern
|
|
1362 This command replaces the minibuffer contents with the value of the
|
|
1363 previous (older) history element that matches @var{pattern} (a regular
|
|
1364 expression).
|
|
1365 @end deffn
|
|
1366
|
|
1367 @deffn Command next-matching-history-element pattern
|
|
1368 This command replaces the minibuffer contents with the value of the next
|
|
1369 (newer) history element that matches @var{pattern} (a regular
|
|
1370 expression).
|
|
1371 @end deffn
|
|
1372
|
|
1373 @defun minibuffer-prompt
|
|
1374 This function returns the prompt string of the currently active
|
|
1375 minibuffer. If no minibuffer is active, it returns @code{nil}.
|
|
1376 @end defun
|
|
1377
|
|
1378 @defun minibuffer-prompt-width
|
|
1379 This function returns the display width of the prompt string of the
|
|
1380 currently active minibuffer. If no minibuffer is active, it returns 0.
|
|
1381 @end defun
|
|
1382
|
|
1383 @defvar minibuffer-setup-hook
|
|
1384 This is a normal hook that is run whenever the minibuffer is entered.
|
|
1385 @xref{Hooks}.
|
|
1386 @end defvar
|
|
1387
|
|
1388 @defvar minibuffer-exit-hook
|
|
1389 This is a normal hook that is run whenever the minibuffer is exited.
|
|
1390 @xref{Hooks}.
|
|
1391 @end defvar
|
|
1392
|
|
1393 @defvar minibuffer-help-form
|
|
1394 The current value of this variable is used to rebind @code{help-form}
|
|
1395 locally inside the minibuffer (@pxref{Help Functions}).
|
|
1396 @end defvar
|
|
1397
|
|
1398 @defun active-minibuffer-window
|
|
1399 This function returns the currently active minibuffer window, or
|
|
1400 @code{nil} if none is currently active.
|
|
1401 @end defun
|
|
1402
|
|
1403 @defun minibuffer-window &optional frame
|
|
1404 This function returns the minibuffer window used for frame @var{frame}.
|
|
1405 If @var{frame} is @code{nil}, that stands for the current frame. Note
|
|
1406 that the minibuffer window used by a frame need not be part of that
|
|
1407 frame---a frame that has no minibuffer of its own necessarily uses some
|
|
1408 other frame's minibuffer window.
|
|
1409 @end defun
|
|
1410
|
|
1411 @c Emacs 19 feature
|
|
1412 @defun window-minibuffer-p window
|
|
1413 This function returns non-@code{nil} if @var{window} is a minibuffer window.
|
|
1414 @end defun
|
|
1415
|
|
1416 It is not correct to determine whether a given window is a minibuffer by
|
|
1417 comparing it with the result of @code{(minibuffer-window)}, because
|
|
1418 there can be more than one minibuffer window if there is more than one
|
|
1419 frame.
|
|
1420
|
|
1421 @defun minibuffer-window-active-p window
|
|
1422 This function returns non-@code{nil} if @var{window}, assumed to be
|
|
1423 a minibuffer window, is currently active.
|
|
1424 @end defun
|
|
1425
|
|
1426 @defvar minibuffer-scroll-window
|
|
1427 If the value of this variable is non-@code{nil}, it should be a window
|
|
1428 object. When the function @code{scroll-other-window} is called in the
|
|
1429 minibuffer, it scrolls this window.
|
|
1430 @end defvar
|
|
1431
|
|
1432 Finally, some functions and variables deal with recursive minibuffers
|
|
1433 (@pxref{Recursive Editing}):
|
|
1434
|
|
1435 @defun minibuffer-depth
|
|
1436 This function returns the current depth of activations of the
|
|
1437 minibuffer, a nonnegative integer. If no minibuffers are active, it
|
|
1438 returns zero.
|
|
1439 @end defun
|
|
1440
|
|
1441 @defopt enable-recursive-minibuffers
|
|
1442 If this variable is non-@code{nil}, you can invoke commands (such as
|
|
1443 @code{find-file}) that use minibuffers even while in the minibuffer
|
|
1444 window. Such invocation produces a recursive editing level for a new
|
|
1445 minibuffer. The outer-level minibuffer is invisible while you are
|
|
1446 editing the inner one.
|
|
1447
|
|
1448 This variable only affects invoking the minibuffer while the
|
|
1449 minibuffer window is selected. If you switch windows while in the
|
|
1450 minibuffer, you can always invoke minibuffer commands while some other
|
|
1451 window is selected.
|
|
1452 @end defopt
|
|
1453
|
|
1454 @c Emacs 19 feature
|
|
1455 In FSF Emacs 19, if a command name has a property
|
|
1456 @code{enable-recursive-minibuffers} that is non-@code{nil}, then the
|
|
1457 command can use the minibuffer to read arguments even if it is invoked
|
|
1458 from the minibuffer. The minibuffer command
|
|
1459 @code{next-matching-history-element} (normally @kbd{M-s} in the
|
|
1460 minibuffer) uses this feature.
|
|
1461
|
|
1462 This is not implemented in XEmacs because it is a kludge. If you
|
|
1463 want to explicitly set the value of @code{enable-recursive-minibuffers}
|
|
1464 in this fashion, just use an evaluated interactive spec and bind
|
|
1465 @code{enable-recursive-minibuffers} while reading from the minibuffer.
|
|
1466 See the definition of @code{next-matching-history-element} in
|
|
1467 @file{lisp/prim/minibuf.el}.
|