Mercurial > emacs
annotate man/buffers.texi @ 36552:80aa67d879fb
*** empty log message ***
author | Dave Love <fx@gnu.org> |
---|---|
date | Mon, 05 Mar 2001 18:41:37 +0000 |
parents | 0f5618d75b4a |
children | 3067f258e551 |
rev | line source |
---|---|
25829 | 1 @c This is part of the Emacs manual. |
31311 | 2 @c Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 2000 |
3 @c Free Software Foundation, Inc. | |
25829 | 4 @c See file emacs.texi for copying conditions. |
5 @node Buffers, Windows, Files, Top | |
6 @chapter Using Multiple Buffers | |
7 | |
8 @cindex buffers | |
9 The text you are editing in Emacs resides in an object called a | |
10 @dfn{buffer}. Each time you visit a file, a buffer is created to hold the | |
11 file's text. Each time you invoke Dired, a buffer is created to hold the | |
12 directory listing. If you send a message with @kbd{C-x m}, a buffer named | |
13 @samp{*mail*} is used to hold the text of the message. When you ask for a | |
14 command's documentation, that appears in a buffer called @samp{*Help*}. | |
15 | |
16 @cindex selected buffer | |
17 @cindex current buffer | |
18 At any time, one and only one buffer is @dfn{selected}. It is also | |
19 called the @dfn{current buffer}. Often we say that a command operates on | |
20 ``the buffer'' as if there were only one; but really this means that the | |
21 command operates on the selected buffer (most commands do). | |
22 | |
23 When Emacs has multiple windows, each window has a chosen buffer which | |
24 is displayed there, but at any time only one of the windows is selected and | |
25 its chosen buffer is the selected buffer. Each window's mode line displays | |
26 the name of the buffer that the window is displaying (@pxref{Windows}). | |
27 | |
28 Each buffer has a name, which can be of any length, and you can select | |
29 any buffer by giving its name. Most buffers are made by visiting files, | |
30 and their names are derived from the files' names. But you can also create | |
31 an empty buffer with any name you want. A newly started Emacs has a buffer | |
32 named @samp{*scratch*} which can be used for evaluating Lisp expressions in | |
33 Emacs. The distinction between upper and lower case matters in buffer | |
34 names. | |
35 | |
36 Each buffer records individually what file it is visiting, whether it is | |
37 modified, and what major mode and minor modes are in effect in it | |
38 (@pxref{Major Modes}). Any Emacs variable can be made @dfn{local to} a | |
39 particular buffer, meaning its value in that buffer can be different from | |
40 the value in other buffers. @xref{Locals}. | |
41 | |
42 @menu | |
43 * Select Buffer:: Creating a new buffer or reselecting an old one. | |
44 * List Buffers:: Getting a list of buffers that exist. | |
45 * Misc Buffer:: Renaming; changing read-onlyness; copying text. | |
46 * Kill Buffer:: Killing buffers you no longer need. | |
47 * Several Buffers:: How to go through the list of all buffers | |
48 and operate variously on several of them. | |
49 * Indirect Buffers:: An indirect buffer shares the text of another buffer. | |
30869 | 50 * Buffer Convenience:: Convenience and customization features for |
51 buffer handling. | |
25829 | 52 @end menu |
53 | |
54 @node Select Buffer | |
55 @section Creating and Selecting Buffers | |
56 @cindex change buffers | |
57 @cindex switch buffers | |
58 | |
59 @table @kbd | |
60 @item C-x b @var{buffer} @key{RET} | |
61 Select or create a buffer named @var{buffer} (@code{switch-to-buffer}). | |
62 @item C-x 4 b @var{buffer} @key{RET} | |
63 Similar, but select @var{buffer} in another window | |
64 (@code{switch-to-buffer-other-window}). | |
65 @item C-x 5 b @var{buffer} @key{RET} | |
66 Similar, but select @var{buffer} in a separate frame | |
67 (@code{switch-to-buffer-other-frame}). | |
68 @end table | |
69 | |
70 @kindex C-x 4 b | |
71 @findex switch-to-buffer-other-window | |
72 @kindex C-x 5 b | |
73 @findex switch-to-buffer-other-frame | |
74 @kindex C-x b | |
75 @findex switch-to-buffer | |
76 To select the buffer named @var{bufname}, type @kbd{C-x b @var{bufname} | |
77 @key{RET}}. This runs the command @code{switch-to-buffer} with argument | |
78 @var{bufname}. You can use completion on an abbreviation for the buffer | |
79 name you want (@pxref{Completion}). An empty argument to @kbd{C-x b} | |
80 specifies the most recently selected buffer that is not displayed in any | |
81 window.@refill | |
82 | |
83 Most buffers are created by visiting files, or by Emacs commands that | |
84 want to display some text, but you can also create a buffer explicitly | |
85 by typing @kbd{C-x b @var{bufname} @key{RET}}. This makes a new, empty | |
86 buffer that is not visiting any file, and selects it for editing. Such | |
87 buffers are used for making notes to yourself. If you try to save one, | |
88 you are asked for the file name to use. The new buffer's major mode is | |
89 determined by the value of @code{default-major-mode} (@pxref{Major | |
90 Modes}). | |
91 | |
92 Note that @kbd{C-x C-f}, and any other command for visiting a file, | |
93 can also be used to switch to an existing file-visiting buffer. | |
94 @xref{Visiting}. | |
95 | |
96 Emacs uses buffer names that start with a space for internal purposes. | |
97 It treats these buffers specially in minor ways---for example, by | |
98 default they do not record undo information. It is best to avoid using | |
99 such buffer names yourself. | |
100 | |
101 @node List Buffers | |
102 @section Listing Existing Buffers | |
103 | |
104 @table @kbd | |
105 @item C-x C-b | |
106 List the existing buffers (@code{list-buffers}). | |
107 @end table | |
108 | |
109 @cindex listing current buffers | |
110 @kindex C-x C-b | |
111 @findex list-buffers | |
112 To display a list of all the buffers that exist, type @kbd{C-x C-b}. | |
113 Each line in the list shows one buffer's name, major mode and visited | |
114 file. The buffers are listed in the order that they were current; the | |
115 buffers that were current most recently come first. | |
116 | |
117 @samp{*} at the beginning of a line indicates the buffer is ``modified.'' | |
118 If several buffers are modified, it may be time to save some with @kbd{C-x s} | |
119 (@pxref{Saving}). @samp{%} indicates a read-only buffer. @samp{.} marks the | |
120 selected buffer. Here is an example of a buffer list:@refill | |
121 | |
122 @smallexample | |
123 MR Buffer Size Mode File | |
124 -- ------ ---- ---- ---- | |
125 .* emacs.tex 383402 Texinfo /u2/emacs/man/emacs.tex | |
126 *Help* 1287 Fundamental | |
127 files.el 23076 Emacs-Lisp /u2/emacs/lisp/files.el | |
128 % RMAIL 64042 RMAIL /u/rms/RMAIL | |
129 *% man 747 Dired /u2/emacs/man/ | |
130 net.emacs 343885 Fundamental /u/rms/net.emacs | |
131 fileio.c 27691 C /u2/emacs/src/fileio.c | |
132 NEWS 67340 Text /u2/emacs/etc/NEWS | |
133 *scratch* 0 Lisp Interaction | |
134 @end smallexample | |
135 | |
136 @noindent | |
36143
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
137 Note that the buffer @samp{*Help*} was made by a help request; it is |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
138 not visiting any file. The buffer @code{man} was made by Dired on the |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
139 directory @file{/u2/emacs/man/}. You can list only buffers that are |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
140 visiting files by giving the command a prefix; for instance, by typing |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
141 @kbd{C-u C-x C-b}. |
25829 | 142 |
143 @need 2000 | |
144 @node Misc Buffer | |
145 @section Miscellaneous Buffer Operations | |
146 | |
147 @table @kbd | |
148 @item C-x C-q | |
149 Toggle read-only status of buffer (@code{vc-toggle-read-only}). | |
150 @item M-x rename-buffer @key{RET} @var{name} @key{RET} | |
151 Change the name of the current buffer. | |
152 @item M-x rename-uniquely | |
153 Rename the current buffer by adding @samp{<@var{number}>} to the end. | |
154 @item M-x view-buffer @key{RET} @var{buffer} @key{RET} | |
155 Scroll through buffer @var{buffer}. | |
156 @end table | |
157 | |
158 @kindex C-x C-q | |
36263
11db0318031d
Remove redundant index entries.
Eli Zaretskii <eliz@gnu.org>
parents:
36143
diff
changeset
|
159 @c Don't index vc-toggle-read-only here, it is indexed in files.texi, |
11db0318031d
Remove redundant index entries.
Eli Zaretskii <eliz@gnu.org>
parents:
36143
diff
changeset
|
160 @c in the node "Basic VC Editing". |
11db0318031d
Remove redundant index entries.
Eli Zaretskii <eliz@gnu.org>
parents:
36143
diff
changeset
|
161 @c @findex vc-toggle-read-only |
25829 | 162 @vindex buffer-read-only |
163 @cindex read-only buffer | |
164 A buffer can be @dfn{read-only}, which means that commands to change | |
36143
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
165 its contents are not allowed. The mode line indicates read-only |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
166 buffers with @samp{%%} or @samp{%*} near the left margin. Read-only |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
167 buffers are usually made by subsystems such as Dired and Rmail that |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
168 have special commands to operate on the text; also by visiting a file |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
169 whose access control says you cannot write it. |
25829 | 170 |
171 If you wish to make changes in a read-only buffer, use the command | |
172 @kbd{C-x C-q} (@code{vc-toggle-read-only}). It makes a read-only buffer | |
173 writable, and makes a writable buffer read-only. In most cases, this | |
174 works by setting the variable @code{buffer-read-only}, which has a local | |
175 value in each buffer and makes the buffer read-only if its value is | |
176 non-@code{nil}. If the file is maintained with version control, | |
177 @kbd{C-x C-q} works through the version control system to change the | |
178 read-only status of the file as well as the buffer. @xref{Version | |
179 Control}. | |
180 | |
181 @findex rename-buffer | |
182 @kbd{M-x rename-buffer} changes the name of the current buffer. Specify | |
183 the new name as a minibuffer argument. There is no default. If you | |
184 specify a name that is in use for some other buffer, an error happens and | |
185 no renaming is done. | |
186 | |
187 @kbd{M-x rename-uniquely} renames the current buffer to a similar name | |
188 with a numeric suffix added to make it both different and unique. This | |
189 command does not need an argument. It is useful for creating multiple | |
190 shell buffers: if you rename the @samp{*Shell*} buffer, then do @kbd{M-x | |
191 shell} again, it makes a new shell buffer named @samp{*Shell*}; | |
192 meanwhile, the old shell buffer continues to exist under its new name. | |
193 This method is also good for mail buffers, compilation buffers, and most | |
194 Emacs features that create special buffers with particular names. | |
195 | |
196 @findex view-buffer | |
197 @kbd{M-x view-buffer} is much like @kbd{M-x view-file} (@pxref{Misc | |
198 File Ops}) except that it examines an already existing Emacs buffer. | |
199 View mode provides commands for scrolling through the buffer | |
200 conveniently but not for changing it. When you exit View mode with | |
201 @kbd{q}, that switches back to the buffer (and the position) which was | |
202 previously displayed in the window. Alternatively, if you exit View | |
203 mode with @kbd{e}, the buffer and the value of point that resulted from | |
204 your perusal remain in effect. | |
205 | |
206 The commands @kbd{M-x append-to-buffer} and @kbd{M-x insert-buffer} | |
207 can be used to copy text from one buffer to another. @xref{Accumulating | |
208 Text}.@refill | |
209 | |
210 @node Kill Buffer | |
211 @section Killing Buffers | |
212 | |
213 @cindex killing buffers | |
214 If you continue an Emacs session for a while, you may accumulate a | |
215 large number of buffers. You may then find it convenient to @dfn{kill} | |
216 the buffers you no longer need. On most operating systems, killing a | |
217 buffer releases its space back to the operating system so that other | |
218 programs can use it. Here are some commands for killing buffers: | |
219 | |
220 @c WideCommands | |
221 @table @kbd | |
222 @item C-x k @var{bufname} @key{RET} | |
223 Kill buffer @var{bufname} (@code{kill-buffer}). | |
224 @item M-x kill-some-buffers | |
225 Offer to kill each buffer, one by one. | |
226 @end table | |
227 | |
228 @findex kill-buffer | |
229 @findex kill-some-buffers | |
230 @kindex C-x k | |
231 | |
232 @kbd{C-x k} (@code{kill-buffer}) kills one buffer, whose name you | |
233 specify in the minibuffer. The default, used if you type just @key{RET} | |
234 in the minibuffer, is to kill the current buffer. If you kill the | |
235 current buffer, another buffer is selected; one that has been selected | |
236 recently but does not appear in any window now. If you ask to kill a | |
237 file-visiting buffer that is modified (has unsaved editing), then you | |
238 must confirm with @kbd{yes} before the buffer is killed. | |
239 | |
240 The command @kbd{M-x kill-some-buffers} asks about each buffer, one by | |
241 one. An answer of @kbd{y} means to kill the buffer. Killing the current | |
242 buffer or a buffer containing unsaved changes selects a new buffer or asks | |
243 for confirmation just like @code{kill-buffer}. | |
244 | |
245 The buffer menu feature (@pxref{Several Buffers}) is also convenient | |
246 for killing various buffers. | |
247 | |
248 @vindex kill-buffer-hook | |
249 If you want to do something special every time a buffer is killed, you | |
250 can add hook functions to the hook @code{kill-buffer-hook} (@pxref{Hooks}). | |
251 | |
252 @findex clean-buffer-list | |
253 If you run one Emacs session for a period of days, as many people do, | |
254 it can fill up with buffers that you used several days ago. The command | |
255 @kbd{M-x clean-buffer-list} is a convenient way to purge them; it kills | |
256 all the unmodified buffers that you have not used for a long time. An | |
257 ordinary buffer is killed if it has not been displayed for three days; | |
258 however, you can specify certain buffers that should never be killed | |
259 automatically, and others that should be killed if they have been unused | |
260 for a mere hour. | |
261 | |
262 @cindex Midnight mode | |
263 @vindex midnight-mode | |
264 @vindex midnight-hook | |
265 You can also have this buffer purging done for you, every day at | |
266 midnight, by enabling Midnight mode. Midnight mode operates each day at | |
267 midnight; at that time, it runs @code{clean-buffer-list}, or whichever | |
268 functions you have placed in the normal hook @code{midnight-hook} | |
269 (@pxref{Hooks}). | |
270 | |
271 To enable Midnight mode, use the Customization buffer to set the | |
272 variable @code{midnight-mode} to @code{t}. @xref{Easy Customization}. | |
273 | |
274 @node Several Buffers | |
275 @section Operating on Several Buffers | |
276 @cindex buffer menu | |
277 | |
278 The @dfn{buffer-menu} facility is like a ``Dired for buffers''; it allows | |
279 you to request operations on various Emacs buffers by editing an Emacs | |
280 buffer containing a list of them. You can save buffers, kill them | |
281 (here called @dfn{deleting} them, for consistency with Dired), or display | |
282 them. | |
283 | |
284 @table @kbd | |
285 @item M-x buffer-menu | |
286 Begin editing a buffer listing all Emacs buffers. | |
287 @end table | |
288 | |
289 @findex buffer-menu | |
290 The command @code{buffer-menu} writes a list of all Emacs buffers into | |
291 the buffer @samp{*Buffer List*}, and selects that buffer in Buffer Menu | |
292 mode. The buffer is read-only, and can be changed only through the | |
293 special commands described in this section. The usual Emacs cursor | |
294 motion commands can be used in the @samp{*Buffer List*} buffer. The | |
295 following commands apply to the buffer described on the current line. | |
296 | |
297 @table @kbd | |
298 @item d | |
299 Request to delete (kill) the buffer, then move down. The request | |
300 shows as a @samp{D} on the line, before the buffer name. Requested | |
301 deletions take place when you type the @kbd{x} command. | |
302 @item C-d | |
303 Like @kbd{d} but move up afterwards instead of down. | |
304 @item s | |
305 Request to save the buffer. The request shows as an @samp{S} on the | |
306 line. Requested saves take place when you type the @kbd{x} command. | |
307 You may request both saving and deletion for the same buffer. | |
308 @item x | |
309 Perform previously requested deletions and saves. | |
310 @item u | |
311 Remove any request made for the current line, and move down. | |
312 @item @key{DEL} | |
313 Move to previous line and remove any request made for that line. | |
314 @end table | |
315 | |
316 The @kbd{d}, @kbd{C-d}, @kbd{s} and @kbd{u} commands to add or remove | |
317 flags also move down (or up) one line. They accept a numeric argument | |
318 as a repeat count. | |
319 | |
320 These commands operate immediately on the buffer listed on the current | |
321 line: | |
322 | |
323 @table @kbd | |
324 @item ~ | |
325 Mark the buffer ``unmodified.'' The command @kbd{~} does this | |
326 immediately when you type it. | |
327 @item % | |
328 Toggle the buffer's read-only flag. The command @kbd{%} does | |
329 this immediately when you type it. | |
330 @item t | |
331 Visit the buffer as a tags table. @xref{Select Tags Table}. | |
332 @end table | |
333 | |
334 There are also commands to select another buffer or buffers: | |
335 | |
336 @table @kbd | |
337 @item q | |
338 Quit the buffer menu---immediately display the most recent formerly | |
339 visible buffer in its place. | |
340 @item @key{RET} | |
341 @itemx f | |
342 Immediately select this line's buffer in place of the @samp{*Buffer | |
343 List*} buffer. | |
344 @item o | |
345 Immediately select this line's buffer in another window as if by | |
346 @kbd{C-x 4 b}, leaving @samp{*Buffer List*} visible. | |
347 @item C-o | |
348 Immediately display this line's buffer in another window, but don't | |
349 select the window. | |
350 @item 1 | |
351 Immediately select this line's buffer in a full-screen window. | |
352 @item 2 | |
353 Immediately set up two windows, with this line's buffer in one, and the | |
354 previously selected buffer (aside from the buffer @samp{*Buffer List*}) | |
355 in the other. | |
356 @item b | |
357 Bury the buffer listed on this line. | |
358 @item m | |
359 Mark this line's buffer to be displayed in another window if you exit | |
360 with the @kbd{v} command. The request shows as a @samp{>} at the | |
361 beginning of the line. (A single buffer may not have both a delete | |
362 request and a display request.) | |
363 @item v | |
364 Immediately select this line's buffer, and also display in other windows | |
365 any buffers previously marked with the @kbd{m} command. If you have not | |
366 marked any buffers, this command is equivalent to @kbd{1}. | |
367 @end table | |
368 | |
369 All that @code{buffer-menu} does directly is create and switch to a | |
370 suitable buffer, and turn on Buffer Menu mode. Everything else | |
371 described above is implemented by the special commands provided in | |
372 Buffer Menu mode. One consequence of this is that you can switch from | |
373 the @samp{*Buffer List*} buffer to another Emacs buffer, and edit there. | |
374 You can reselect the @samp{*Buffer List*} buffer later, to perform the | |
375 operations already requested, or you can kill it, or pay no further | |
376 attention to it. | |
377 | |
378 The only difference between @code{buffer-menu} and @code{list-buffers} | |
379 is that @code{buffer-menu} switches to the @samp{*Buffer List*} buffer | |
380 in the selected window; @code{list-buffers} displays it in another | |
381 window. If you run @code{list-buffers} (that is, type @kbd{C-x C-b}) | |
382 and select the buffer list manually, you can use all of the commands | |
383 described here. | |
384 | |
385 The buffer @samp{*Buffer List*} is not updated automatically when | |
386 buffers are created and killed; its contents are just text. If you have | |
387 created, deleted or renamed buffers, the way to update @samp{*Buffer | |
388 List*} to show what you have done is to type @kbd{g} | |
389 (@code{revert-buffer}) or repeat the @code{buffer-menu} command. | |
390 | |
391 @node Indirect Buffers | |
392 @section Indirect Buffers | |
393 @cindex indirect buffer | |
394 @cindex base buffer | |
395 | |
396 An @dfn{indirect buffer} shares the text of some other buffer, which | |
397 is called the @dfn{base buffer} of the indirect buffer. In some ways it | |
398 is the analogue, for buffers, of a symbolic link between files. | |
399 | |
400 @table @kbd | |
401 @findex make-indirect-buffer | |
36455
0f5618d75b4a
(Indirect Buffers): Add a @key[RET}.
Gerd Moellmann <gerd@gnu.org>
parents:
36263
diff
changeset
|
402 @item M-x make-indirect-buffer @key{RET} @var{base-buffer} @key{RET} @var{indirect-name} @key{RET} |
25829 | 403 Create an indirect buffer named @var{indirect-name} whose base buffer |
404 is @var{base-buffer}. | |
31056
3d90d6c1f3b9
Document clone-indirect-buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
30869
diff
changeset
|
405 @findex clone-indirect-buffer |
3d90d6c1f3b9
Document clone-indirect-buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
30869
diff
changeset
|
406 @item M-x clone-indirect-buffer @key{RET} |
3d90d6c1f3b9
Document clone-indirect-buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
30869
diff
changeset
|
407 Create an indirect buffer that is a twin copy of the current buffer. |
3d90d6c1f3b9
Document clone-indirect-buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
30869
diff
changeset
|
408 @kindex C-x 4 c |
3d90d6c1f3b9
Document clone-indirect-buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
30869
diff
changeset
|
409 @findex clone-indirect-buffer-other-window |
3d90d6c1f3b9
Document clone-indirect-buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
30869
diff
changeset
|
410 Create an indirect buffer that is a twin copy of the current buffer, and |
3d90d6c1f3b9
Document clone-indirect-buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
30869
diff
changeset
|
411 select it in another window (@code{clone-indirect-buffer-other-window}). |
25829 | 412 @end table |
413 | |
414 The text of the indirect buffer is always identical to the text of its | |
415 base buffer; changes made by editing either one are visible immediately | |
416 in the other. But in all other respects, the indirect buffer and its | |
417 base buffer are completely separate. They have different names, | |
418 different values of point, different narrowing, different markers, | |
419 different major modes, and different local variables. | |
420 | |
421 An indirect buffer cannot visit a file, but its base buffer can. If | |
422 you try to save the indirect buffer, that actually works by saving the | |
423 base buffer. Killing the base buffer effectively kills the indirect | |
424 buffer, but killing an indirect buffer has no effect on its base buffer. | |
425 | |
426 One way to use indirect buffers is to display multiple views of an | |
427 outline. @xref{Outline Views}. | |
30869 | 428 |
36143
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
429 @cindex multiple @samp{*info*} and @samp{*Help*} buffers |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
430 A quick and handy way to make an indirect buffer is with the command |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
431 @kbd{M-x clone-indirect-buffer}. It creates and selects an indirect |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
432 buffer whose base buffer is the current buffer. With a numeric |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
433 argument, it prompts for the name of the indirect buffer; otherwise it |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
434 defaults to the name of the current buffer, modifying it by adding a |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
435 @samp{<@var{n}>} prefix if required. @kbd{C-x 4 c} |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
436 (@code{clone-indirect-buffer-other-window}) works like @kbd{M-x |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
437 clone-indirect-buffer}, but it selects the cloned buffer in another |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
438 window. These commands come in handy if you want to create new |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
439 @samp{*info*} or @samp{*Help*} buffers, for example. |
31056
3d90d6c1f3b9
Document clone-indirect-buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
30869
diff
changeset
|
440 |
36143
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
441 The more general way is with the command @kbd{M-x |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
442 make-indirect-buffer}. It creates an indirect buffer from buffer |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
443 @var{base-buffer}, under the name @var{indirect-name}. It prompts for |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
444 both @var{base-buffer} and @var{indirect-name} using the minibuffer. |
31056
3d90d6c1f3b9
Document clone-indirect-buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
30869
diff
changeset
|
445 |
30869 | 446 @node Buffer Convenience |
447 @section Convenience Features and Customization of Buffer Handling | |
448 | |
449 @menu | |
31311 | 450 * Uniquify:: Buffer names can contain directory parts. |
31815 | 451 * Iswitchb:: Switching between buffers with substrings. |
36143
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
452 * Buffer Menus:: Configurable buffer menu. |
30869 | 453 @end menu |
454 | |
455 @node Uniquify | |
36143
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
456 @subsection Making Buffer Names Unique |
30869 | 457 |
458 @cindex unique buffer names | |
459 @cindex directories in buffer names | |
36143
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
460 When several buffers visit identically-named files, Emacs must give |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
461 the buffers distinct names. The usual method for making buffer names |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
462 unique adds @samp{<2>}, @samp{<3>}, etc. to the end of the buffer |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
463 names (all but one of them). |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
464 |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
465 @vindex uniquify-buffer-name-style |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
466 Other methods work by adding parts of each file's directory to the |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
467 buffer name. To select one, customize the variable |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
468 @code{uniquify-buffer-name-style} (@pxref{Easy Customization}). |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
469 |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
470 For instance, the @code{forward} naming method puts part of the |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
471 directory name at the beginning of the buffer name; using this method, |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
472 buffers visiting @file{/u/mernst/tmp/Makefile} and |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
473 @file{/usr/projects/zaphod/Makefile} would be named |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
474 @samp{tmp/Makefile} and @samp{zaphod/Makefile}, respectively (instead |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
475 of @samp{Makefile} and @samp{Makefile<2>}). |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
476 |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
477 By contrast, the @code{post-forward} naming method would call the |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
478 buffers @samp{Makefile|tmp} and @samp{Makefile|zaphod}, and the |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
479 @code{reverse} naming method would call them @samp{Makefile\tmp} and |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
480 @samp{Makefile\zaphod}. The nontrivial difference between |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
481 @code{post-forward} and @code{reverse} occurs when just one directory |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
482 name is not enough to distinguish two files; then @code{reverse} puts |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
483 the directory names in reverse order, so that @file{/top/middle/file} |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
484 becomes @samp{file\middle\top}, while @code{post-forward} puts them in |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
485 forward order after the file name, as in @samp{file|top/middle}. |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
486 |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
487 Which rule to follow for putting the directory names in the buffer |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
488 name is not very important if you are going to @emph{look} at the |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
489 buffer names before you type one. But as an experienced user, if you |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
490 know the rule, you won't have to look. And then you may find that one |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
491 rule or another is easier for you to remember and utilize fast. |
30869 | 492 |
31815 | 493 @node Iswitchb |
494 @subsection Switching Between Buffers using Substrings | |
495 | |
496 @findex iswitchb-mode | |
497 @cindex Iswitchb mode | |
498 @cindex mode, Iswitchb | |
499 @kindex C-x b @r{(Iswitchb mode)} | |
500 @kindex C-x 4 b @r{(Iswitchb mode)} | |
501 @kindex C-x 5 b @r{(Iswitchb mode)} | |
502 @kindex C-x 4 C-o @r{(Iswitchb mode)} | |
503 | |
36143
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
504 Iswitchb global minor mode provides convenient switching between |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
505 buffers using substrings of their names. It replaces the normal |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
506 definitions of @kbd{C-x b}, @kbd{C-x 4 b}, @kbd{C-x 5 b}, and @kbd{C-x |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
507 4 C-o} with alternative commands that are somewhat ``smarter.'' |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
508 |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
509 When one of these commands prompts you for a buffer name, you can |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
510 type in just a substring of the name you want to choose. As you enter |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
511 the substring, Iswitchb mode continuously displays a list of buffers |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
512 that match the substring you have typed. |
31815 | 513 |
36143
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
514 At any time, you can type @key{RET} to select the first buffer in |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
515 the list. So the way to select a particular buffer is to make it the |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
516 first in the list. There are two ways to do this. You can type more |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
517 of the buffer name and thus narrow down the list, excluding unwanted |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
518 buffers above the desired one. Alternatively, you can use @kbd{C-s} |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
519 and @kbd{C-r} to rotate the list until the desired buffer is first. |
31815 | 520 |
36143
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
521 @key{TAB} while entering the buffer name performs completion on the |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
522 string you have entered, based on the displayed list of buffers. |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
523 |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
524 @node Buffer Menus |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
525 @subsection Customizing Buffer Menus |
30869 | 526 |
31311 | 527 @findex bs-show |
528 @cindex buffer list, customizable | |
529 @table @kbd | |
530 @item M-x bs-show | |
531 Make a list of buffers similarly to @kbd{M-x list-buffers} but | |
532 customizable. | |
533 @end table | |
534 | |
36143
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
535 @kbd{M-x bs-show} pops up a buffer list similar to the one normally |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
536 displayed by @kbd{C-x C-b} but which you can customize. If you prefer |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
537 this to the usual buffer list, you can bind this command to @kbd{C-x |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
538 C-b}. To customize this buffer list, use the @code{bs} Custom group |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
539 (@pxref{Easy Customization}). |
30869 | 540 |
31815 | 541 @findex msb-mode |
542 @cindex mode, MSB | |
543 @cindex MSB mode | |
544 @cindex buffer menu | |
545 @findex mouse-buffer-menu | |
36143
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
546 @kindex C-Down-Mouse-1 |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
547 MSB global minor mode (``MSB'' stands for ``mouse select buffer'') |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
548 provides a different and customizable mouse buffer menu which you may |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
549 prefer. It replaces the bindings of @code{mouse-buffer-menu}, |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
550 normally on @kbd{C-Down-Mouse-1}, and the menu bar buffer menu. You |
44a6f7ea121f
Major rewrite of Uniquify node and Iswitchb node.
Richard M. Stallman <rms@gnu.org>
parents:
31815
diff
changeset
|
551 can customize the menu in the @code{msb} Custom group. |