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