* buffers.texi (Buffers): Correct the size limit.
[bpt/emacs.git] / doc / emacs / buffers.texi
1 @c This is part of the Emacs manual.
2 @c Copyright (C) 1985-1987, 1993-1995, 1997, 2000-2011
3 @c Free Software Foundation, Inc.
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 Each buffer has a unique name, which can be of any length. When a
17 buffer is displayed in a window, its name is shown in the mode line
18 (@pxref{Mode Line}). The distinction between upper and lower case
19 matters in buffer names. Most buffers are made by visiting files, and
20 their names are derived from the files' names; however, you can also
21 create an empty buffer with any name you want. A newly started Emacs
22 has a buffer named @samp{*scratch*}, which is not associated with any
23 file and can be used for evaluating Lisp expressions in Emacs
24 (@pxref{Lisp Interaction}).
25
26 @cindex selected buffer
27 @cindex current buffer
28 At any time, one and only one buffer is @dfn{current}. This is also
29 called the @dfn{selected buffer}. We often say that a command
30 operates on ``the buffer''; this really means that the command
31 operates on the current buffer (most commands do). When there is only
32 one Emacs window, the buffer displayed in that window is current.
33 When there are multiple windows present, the buffer displayed in the
34 @dfn{selected window} is current. @xref{Windows}.
35
36 Each buffer records individually what file it is visiting (if any),
37 whether it is modified, and what major mode and minor modes are in
38 effect (@pxref{Major Modes}). Any Emacs variable can be made
39 @dfn{local to} a particular buffer, meaning its value in that buffer
40 can be different from the value in other buffers. @xref{Locals}.
41
42 @cindex buffer size, maximum
43 A buffer's size cannot be larger than some maximum, which is defined
44 by the largest buffer position representable by the @dfn{Emacs
45 integer} data type. This is because Emacs tracks buffer positions
46 using that data type. For 64-bit machines, the maximum buffer size
47 enforced by the data types is @math{2^61 - 2} bytes, or about 2 EiB.
48 For most 32-bit machines, the maximum is @math{2^31 - 1} bytes, or about 2 GiB.
49 For some older machines, the maximum is @math{2^29 - 2} bytes, or
50 about 512 MiB. Buffer sizes are also limited by the size of Emacs's
51 virtual memory.
52
53 @menu
54 * Select Buffer:: Creating a new buffer or reselecting an old one.
55 * List Buffers:: Getting a list of buffers that exist.
56 * Misc Buffer:: Renaming; changing read-onlyness; copying text.
57 * Kill Buffer:: Killing buffers you no longer need.
58 * Several Buffers:: How to go through the list of all buffers
59 and operate variously on several of them.
60 * Indirect Buffers:: An indirect buffer shares the text of another buffer.
61 * Buffer Convenience:: Convenience and customization features for
62 buffer handling.
63 @end menu
64
65 @node Select Buffer
66 @section Creating and Selecting Buffers
67 @cindex change buffers
68 @cindex switch buffers
69
70 @table @kbd
71 @item C-x b @var{buffer} @key{RET}
72 Select or create a buffer named @var{buffer} (@code{switch-to-buffer}).
73 @item C-x 4 b @var{buffer} @key{RET}
74 Similar, but select @var{buffer} in another window
75 (@code{switch-to-buffer-other-window}).
76 @item C-x 5 b @var{buffer} @key{RET}
77 Similar, but select @var{buffer} in a separate frame
78 (@code{switch-to-buffer-other-frame}).
79 @item C-x @key{LEFT}
80 Select the previous buffer in the list of existing buffers.
81 @item C-x @key{RIGHT}
82 Select the next buffer in the list of existing buffers.
83 @item C-u M-g M-g
84 @itemx C-u M-g g
85 Read a number @var{n} and move to line @var{n} in the most recently
86 selected buffer other than the current buffer.
87 @end table
88
89 @kindex C-x b
90 @findex switch-to-buffer
91 To select the buffer named @var{bufname}, type @kbd{C-x b
92 @var{bufname} @key{RET}}. This runs the command
93 @code{switch-to-buffer} with argument @var{bufname}. While entering
94 the buffer name, you can use the usual minibuffer completion and
95 history commands (@pxref{Minibuffer}). An empty argument to @kbd{C-x
96 b} specifies the buffer that was current most recently among those not
97 now displayed in any window.
98
99 @cindex minibuffer confirmation
100 @cindex confirming in the minibuffer
101 If you specify a buffer that does not exist, @kbd{C-x b} creates a
102 new, empty buffer that is not visiting any file, and selects it for
103 editing. First, however, Emacs might prompt you for confirmation, in
104 case you entered the wrong buffer name. Emacs asks for confirmation
105 only if the last key you typed, before submitting the minibuffer input
106 with @key{RET}, was @key{TAB} (@code{minibuffer-complete}). This
107 catches a common mistake, in which one types @key{RET} before
108 realizing that @key{TAB} did not complete far enough to yield the
109 desired buffer name (@pxref{Completion}). Emacs asks for confirmation
110 by putting the message @samp{[Confirm]} in the minibuffer; type
111 @key{RET} again to confirm and visit the buffer.
112
113 @vindex confirm-nonexistent-file-or-buffer
114 The variable @code{confirm-nonexistent-file-or-buffer} controls
115 whether Emacs asks for confirmation before visiting a buffer that did
116 not previously exist. The default value, @code{after-completion},
117 gives the behavior we have just described. If the value is
118 @code{nil}, Emacs never asks for confirmation; for any other
119 non-@code{nil} value, Emacs always asks for confirmation. This
120 variable also affects the @code{find-file} command (@pxref{Visiting}).
121
122 One reason to create a new buffer is to use it for making temporary
123 notes. If you try to save it, Emacs asks for the file name to use.
124 The default value of the variable @code{major-mode} determines the new
125 buffer's major mode; the default value is Fundamental mode. @xref{Major
126 Modes}.
127
128 @kindex C-x @key{LEFT}
129 @kindex C-x @key{RIGHT}
130 @findex next-buffer
131 @findex previous-buffer
132 For conveniently switching between a few buffers, use the commands
133 @kbd{C-x @key{LEFT}} and @kbd{C-x @key{RIGHT}}. @kbd{C-x @key{RIGHT}}
134 (@code{previous-buffer}) selects the previous buffer (following the order
135 of most recent selection in the current frame), while @kbd{C-x @key{LEFT}}
136 (@code{next-buffer}) moves through buffers in the reverse direction.
137
138 @kindex C-x 4 b
139 @findex switch-to-buffer-other-window
140 @vindex even-window-heights
141 To select a buffer in a window other than the current one, type
142 @kbd{C-x 4 b} (@code{switch-to-buffer-other-window}). This prompts
143 for a buffer name using the minibuffer, displays that buffer in
144 another window, and selects that window. By default, if displaying
145 the buffer causes two vertically adjacent windows to be displayed, the
146 heights of those windows are evened out; to countermand that and
147 preserve the window configuration, set the variable
148 @code{even-window-heights} to @code{nil}.
149
150 @kindex C-x 5 b
151 @findex switch-to-buffer-other-frame
152 Similarly, @kbd{C-x 5 b} (@code{switch-to-buffer-other-frame})
153 prompts for a buffer name, displays that buffer in another frame, and
154 selects that frame.
155
156 In addition, @kbd{C-x C-f}, and any other command for visiting a
157 file, can also be used to switch to an existing file-visiting buffer.
158 @xref{Visiting}.
159
160 @vindex display-buffer-reuse-frames
161 You can control how certain buffers are handled by these commands by
162 customizing the variables @code{special-display-buffer-names},
163 @code{special-display-regexps}, @code{same-window-buffer-names}, and
164 @code{same-window-regexps}. See @ref{Force Same Window}, and
165 @ref{Special Buffer Frames}, for more about these variables. In
166 addition, if the value of @code{display-buffer-reuse-frames} is
167 non-@code{nil}, and the buffer you want to switch to is already
168 displayed in some frame, Emacs will just raise that frame.
169
170 @findex goto-line
171 @kbd{C-u M-g M-g}, that is @code{goto-line} with a plain prefix
172 argument, reads a number @var{n} using the minibuffer, selects the
173 most recently selected buffer other than the current buffer in another
174 window, and then moves point to the beginning of line number @var{n}
175 in that buffer. This is mainly useful in a buffer that refers to line
176 numbers in another buffer: if point is on or just after a number,
177 @code{goto-line} uses that number as the default for @var{n}. Note
178 that prefix arguments other than just @kbd{C-u} behave differently.
179 @kbd{C-u 4 M-g M-g} goes to line 4 in the @emph{current} buffer,
180 without reading a number from the minibuffer. (Remember that @kbd{M-g
181 M-g} without prefix argument reads a number @var{n} and then moves to
182 line number @var{n} in the current buffer. @xref{Moving Point}.)
183
184 Emacs uses buffer names that start with a space for internal purposes.
185 It treats these buffers specially in minor ways---for example, by
186 default they do not record undo information. It is best to avoid using
187 such buffer names yourself.
188
189 @node List Buffers
190 @section Listing Existing Buffers
191
192 @table @kbd
193 @item C-x C-b
194 List the existing buffers (@code{list-buffers}).
195 @end table
196
197 @cindex listing current buffers
198 @kindex C-x C-b
199 @findex list-buffers
200 To display a list of existing buffers, type @kbd{C-x C-b}. Each
201 line in the list shows one buffer's name, major mode and visited file.
202 The buffers are listed in the order that they were current; the
203 buffers that were current most recently come first.
204
205 @samp{.} in the first field of a line indicates that the buffer is
206 current. @samp{%} indicates a read-only buffer. @samp{*} indicates
207 that the buffer is ``modified.'' If several buffers are modified, it
208 may be time to save some with @kbd{C-x s} (@pxref{Save Commands}).
209 Here is an example of a buffer list:
210
211 @smallexample
212 CRM Buffer Size Mode File
213 . * .emacs 3294 Emacs-Lisp ~/.emacs
214 % *Help* 101 Help
215 search.c 86055 C ~/cvs/emacs/src/search.c
216 % src 20959 Dired by name ~/cvs/emacs/src/
217 * *mail* 42 Mail
218 % HELLO 1607 Fundamental ~/cvs/emacs/etc/HELLO
219 % NEWS 481184 Outline ~/cvs/emacs/etc/NEWS
220 *scratch* 191 Lisp Interaction
221 * *Messages* 1554 Fundamental
222 @end smallexample
223
224 @noindent
225 The buffer @samp{*Help*} was made by a help request (@pxref{Help}); it
226 is not visiting any file. The buffer @code{src} was made by Dired on
227 the directory @file{~/cvs/emacs/src/}. You can list only buffers that
228 are visiting files by giving the command a prefix argument, as in
229 @kbd{C-u C-x C-b}.
230
231 @code{list-buffers} omits buffers whose names begin with a space,
232 unless they visit files: such buffers are used internally by Emacs.
233
234 @node Misc Buffer
235 @section Miscellaneous Buffer Operations
236
237 @table @kbd
238 @item C-x C-q
239 Toggle read-only status of buffer (@code{toggle-read-only}).
240 @item M-x rename-buffer @key{RET} @var{name} @key{RET}
241 Change the name of the current buffer.
242 @item M-x rename-uniquely
243 Rename the current buffer by adding @samp{<@var{number}>} to the end.
244 @item M-x view-buffer @key{RET} @var{buffer} @key{RET}
245 Scroll through buffer @var{buffer}.
246 @end table
247
248 @kindex C-x C-q
249 @vindex buffer-read-only
250 @cindex read-only buffer
251 A buffer can be @dfn{read-only}, which means that commands to change
252 its contents are not allowed. The mode line indicates read-only
253 buffers with @samp{%%} or @samp{%*} near the left margin. Read-only
254 buffers are usually made by subsystems such as Dired and Rmail that
255 have special commands to operate on the text; also by visiting a file
256 whose access control says you cannot write it.
257
258 @findex toggle-read-only
259 If you wish to make changes in a read-only buffer, use the command
260 @kbd{C-x C-q} (@code{toggle-read-only}). It makes a read-only buffer
261 writable, and makes a writable buffer read-only. This
262 works by setting the variable @code{buffer-read-only}, which has a local
263 value in each buffer and makes the buffer read-only if its value is
264 non-@code{nil}. If you have files under version control, you may find
265 it convenient to bind @kbd{C-x C-q} to @code{vc-toggle-read-only}
266 instead. This will guard you against an operation that will confuse
267 most modern version-conmtrol systems. @xref{Version Control}.
268
269 @findex rename-buffer
270 @kbd{M-x rename-buffer} changes the name of the current buffer. You
271 specify the new name as a minibuffer argument; there is no default.
272 If you specify a name that is in use for some other buffer, an error
273 happens and no renaming is done.
274
275 @findex rename-uniquely
276 @kbd{M-x rename-uniquely} renames the current buffer to a similar
277 name with a numeric suffix added to make it both different and unique.
278 This command does not need an argument. It is useful for creating
279 multiple shell buffers: if you rename the @samp{*shell*} buffer, then
280 do @kbd{M-x shell} again, it makes a new shell buffer named
281 @samp{*shell*}; meanwhile, the old shell buffer continues to exist
282 under its new name. This method is also good for mail buffers,
283 compilation buffers, and most Emacs features that create special
284 buffers with particular names. (With some of these features, such as
285 @kbd{M-x compile}, @kbd{M-x grep} an @kbd{M-x info}, you need to
286 switch to some other buffer before using the command, in order for it
287 to make a different buffer.)
288
289 @findex view-buffer
290 @kbd{M-x view-buffer} is much like @kbd{M-x view-file} (@pxref{Misc
291 File Ops}) except that it examines an already existing Emacs buffer.
292 View mode provides commands for scrolling through the buffer
293 conveniently but not for changing it. When you exit View mode with
294 @kbd{q}, that switches back to the buffer (and the position) which was
295 previously displayed in the window. Alternatively, if you exit View
296 mode with @kbd{e}, the buffer and the value of point that resulted from
297 your perusal remain in effect.
298
299 The commands @kbd{M-x append-to-buffer} and @kbd{M-x insert-buffer}
300 can be used to copy text from one buffer to another. @xref{Accumulating
301 Text}.
302
303 @node Kill Buffer
304 @section Killing Buffers
305
306 @cindex killing buffers
307 If you continue an Emacs session for a while, you may accumulate a
308 large number of buffers. You may then find it convenient to @dfn{kill}
309 the buffers you no longer need. On most operating systems, killing a
310 buffer releases its space back to the operating system so that other
311 programs can use it. Here are some commands for killing buffers:
312
313 @table @kbd
314 @item C-x k @var{bufname} @key{RET}
315 Kill buffer @var{bufname} (@code{kill-buffer}).
316 @item M-x kill-some-buffers
317 Offer to kill each buffer, one by one.
318 @item M-x kill-matching-buffers
319 Offer to kill all buffers matching a regular expression.
320 @end table
321
322 @findex kill-buffer
323 @kindex C-x k
324 @kbd{C-x k} (@code{kill-buffer}) kills one buffer, whose name you
325 specify in the minibuffer. The default, used if you type just
326 @key{RET} in the minibuffer, is to kill the current buffer. If you
327 kill the current buffer, another buffer becomes current: one that was
328 current in the recent past but is not displayed in any window now. If
329 you ask to kill a file-visiting buffer that is modified, then you must
330 confirm with @kbd{yes} before the buffer is killed.
331
332 @findex kill-some-buffers
333 The command @kbd{M-x kill-some-buffers} asks about each buffer, one
334 by one. An answer of @kbd{y} means to kill the buffer, just like
335 @code{kill-buffer}. This command ignores buffers whose names begin
336 with a space, which are used internally by Emacs.
337
338 @findex kill-matching-buffers
339 The command @kbd{M-x kill-matching-buffers} prompts for a regular
340 expression and kills all buffers whose names match that expression.
341 @xref{Regexps}. Like @code{kill-some-buffers}, it asks for
342 confirmation before each kill. This command normally ignores buffers
343 whose names begin with a space, which are used internally by Emacs.
344 To kill internal buffers as well, call @code{kill-matching-buffers}
345 with a prefix argument.
346
347 The buffer menu feature is also convenient for killing various
348 buffers. @xref{Several Buffers}.
349
350 @vindex kill-buffer-hook
351 If you want to do something special every time a buffer is killed, you
352 can add hook functions to the hook @code{kill-buffer-hook} (@pxref{Hooks}).
353
354 @findex clean-buffer-list
355 If you run one Emacs session for a period of days, as many people do,
356 it can fill up with buffers that you used several days ago. The command
357 @kbd{M-x clean-buffer-list} is a convenient way to purge them; it kills
358 all the unmodified buffers that you have not used for a long time. An
359 ordinary buffer is killed if it has not been displayed for three days;
360 however, you can specify certain buffers that should never be killed
361 automatically, and others that should be killed if they have been unused
362 for a mere hour.
363
364 @cindex Midnight mode
365 @vindex midnight-mode
366 @vindex midnight-hook
367 You can also have this buffer purging done for you, every day at
368 midnight, by enabling Midnight mode. Midnight mode operates each day
369 at midnight; at that time, it runs @code{clean-buffer-list}, or
370 whichever functions you have placed in the normal hook
371 @code{midnight-hook} (@pxref{Hooks}). To enable Midnight mode, use
372 the Customization buffer to set the variable @code{midnight-mode} to
373 @code{t}. @xref{Easy Customization}.
374
375 @node Several Buffers
376 @section Operating on Several Buffers
377 @cindex buffer menu
378
379 @table @kbd
380 @item M-x buffer-menu
381 Begin editing a buffer listing all Emacs buffers.
382 @item M-x buffer-menu-other-window.
383 Similar, but do it in another window.
384 @end table
385
386 The @dfn{buffer menu} opened by @kbd{C-x C-b} (@pxref{List Buffers})
387 does not merely list buffers. It also allows you to perform various
388 operations on buffers, through an interface similar to Dired
389 (@pxref{Dired}). You can save buffers, kill them (here called
390 @dfn{deleting} them, for consistency with Dired), or display them.
391
392 @findex buffer-menu
393 @findex buffer-menu-other-window
394 To use the buffer menu, type @kbd{C-x C-b} and switch to the window
395 displaying the @samp{*Buffer List*} buffer. You can also type
396 @kbd{M-x buffer-menu} to open the buffer menu in the selected window.
397 Alternatively, the command @kbd{M-x buffer-menu-other-window} opens
398 the buffer menu in another window, and selects that window.
399
400 The buffer menu is a read-only buffer, and can be changed only
401 through the special commands described in this section. The usual
402 Emacs cursor motion commands can be used in this buffer. The
403 following commands apply to the buffer described on the current line:
404
405 @table @kbd
406 @item d
407 Request to delete (kill) the buffer, then move down. The request
408 shows as a @samp{D} on the line, before the buffer name. Requested
409 deletions take place when you type the @kbd{x} command.
410 @item C-d
411 Like @kbd{d} but move up afterwards instead of down.
412 @item s
413 Request to save the buffer. The request shows as an @samp{S} on the
414 line. Requested saves take place when you type the @kbd{x} command.
415 You may request both saving and deletion for the same buffer.
416 @item x
417 Perform previously requested deletions and saves.
418 @item u
419 Remove any request made for the current line, and move down.
420 @item @key{DEL}
421 Move to previous line and remove any request made for that line.
422 @end table
423
424 The @kbd{d}, @kbd{C-d}, @kbd{s} and @kbd{u} commands to add or remove
425 flags also move down (or up) one line. They accept a numeric argument
426 as a repeat count.
427
428 These commands operate immediately on the buffer listed on the current
429 line:
430
431 @table @kbd
432 @item ~
433 Mark the buffer ``unmodified.'' The command @kbd{~} does this
434 immediately when you type it.
435 @item %
436 Toggle the buffer's read-only flag. The command @kbd{%} does
437 this immediately when you type it.
438 @item t
439 Visit the buffer as a tags table. @xref{Select Tags Table}.
440 @end table
441
442 There are also commands to select another buffer or buffers:
443
444 @table @kbd
445 @item q
446 Quit the buffer menu---immediately display the most recent formerly
447 visible buffer in its place.
448 @item @key{RET}
449 @itemx f
450 Immediately select this line's buffer in place of the @samp{*Buffer
451 List*} buffer.
452 @item o
453 Immediately select this line's buffer in another window as if by
454 @kbd{C-x 4 b}, leaving @samp{*Buffer List*} visible.
455 @item C-o
456 Immediately display this line's buffer in another window, but don't
457 select the window.
458 @item 1
459 Immediately select this line's buffer in a full-screen window.
460 @item 2
461 Immediately set up two windows, with this line's buffer selected in
462 one, and the previously current buffer (aside from the buffer
463 @samp{*Buffer List*}) displayed in the other.
464 @item b
465 Bury the buffer listed on this line.
466 @item m
467 Mark this line's buffer to be displayed in another window if you exit
468 with the @kbd{v} command. The request shows as a @samp{>} at the
469 beginning of the line. (A single buffer may not have both a delete
470 request and a display request.)
471 @item v
472 Immediately select this line's buffer, and also display in other windows
473 any buffers previously marked with the @kbd{m} command. If you have not
474 marked any buffers, this command is equivalent to @kbd{1}.
475 @end table
476
477 There is also a command that affects the entire buffer list:
478
479 @table @kbd
480 @item T
481 Delete, or reinsert, lines for non-file buffers. This command toggles
482 the inclusion of such buffers in the buffer list.
483 @end table
484
485 What @code{buffer-menu} actually does is create and switch to a
486 suitable buffer, and turn on Buffer Menu mode in it. Everything else
487 described above is implemented by the special commands provided in
488 Buffer Menu mode. One consequence of this is that you can switch from
489 the @samp{*Buffer List*} buffer to another Emacs buffer, and edit
490 there. You can reselect the @samp{*Buffer List*} buffer later, to
491 perform the operations already requested, or you can kill it, or pay
492 no further attention to it.
493
494 Normally, the buffer @samp{*Buffer List*} is not updated
495 automatically when buffers are created and killed; its contents are
496 just text. If you have created, deleted or renamed buffers, the way
497 to update @samp{*Buffer List*} to show what you have done is to type
498 @kbd{g} (@code{revert-buffer}). You can make this happen regularly
499 every @code{auto-revert-interval} seconds if you enable Auto Revert
500 mode in this buffer, as long as it is not marked modified. Global
501 Auto Revert mode applies to the @samp{*Buffer List*} buffer only if
502 @code{global-auto-revert-non-file-buffers} is non-@code{nil}.
503 @iftex
504 @inforef{Autorevert,, emacs-xtra}, for details.
505 @end iftex
506 @ifnottex
507 @xref{Autorevert, global-auto-revert-non-file-buffers}, for details.
508 @end ifnottex
509
510 @node Indirect Buffers
511 @section Indirect Buffers
512 @cindex indirect buffer
513 @cindex base buffer
514
515 An @dfn{indirect buffer} shares the text of some other buffer, which
516 is called the @dfn{base buffer} of the indirect buffer. In some ways it
517 is the analogue, for buffers, of a symbolic link between files.
518
519 @table @kbd
520 @findex make-indirect-buffer
521 @item M-x make-indirect-buffer @key{RET} @var{base-buffer} @key{RET} @var{indirect-name} @key{RET}
522 Create an indirect buffer named @var{indirect-name} whose base buffer
523 is @var{base-buffer}.
524 @findex clone-indirect-buffer
525 @item M-x clone-indirect-buffer @key{RET}
526 Create an indirect buffer that is a twin copy of the current buffer.
527 @item C-x 4 c
528 @kindex C-x 4 c
529 @findex clone-indirect-buffer-other-window
530 Create an indirect buffer that is a twin copy of the current buffer, and
531 select it in another window (@code{clone-indirect-buffer-other-window}).
532 @end table
533
534 The text of the indirect buffer is always identical to the text of its
535 base buffer; changes made by editing either one are visible immediately
536 in the other. But in all other respects, the indirect buffer and its
537 base buffer are completely separate. They can have different names,
538 different values of point, different narrowing, different markers,
539 different major modes, and different local variables.
540
541 An indirect buffer cannot visit a file, but its base buffer can. If
542 you try to save the indirect buffer, that actually works by saving the
543 base buffer. Killing the base buffer effectively kills the indirect
544 buffer, but killing an indirect buffer has no effect on its base buffer.
545
546 One way to use indirect buffers is to display multiple views of an
547 outline. @xref{Outline Views}.
548
549 @vindex clone-indirect-buffer-hook
550 A quick and handy way to make an indirect buffer is with the command
551 @kbd{M-x clone-indirect-buffer}. It creates and selects an indirect
552 buffer whose base buffer is the current buffer. With a numeric
553 argument, it prompts for the name of the indirect buffer; otherwise it
554 uses the name of the current buffer, with a @samp{<@var{n}>} suffix
555 added. @kbd{C-x 4 c} (@code{clone-indirect-buffer-other-window})
556 works like @kbd{M-x clone-indirect-buffer}, but it selects the new
557 buffer in another window. These functions run the hook
558 @code{clone-indirect-buffer-hook} after creating the indirect buffer.
559
560 The more general way to make an indirect buffer is with the command
561 @kbd{M-x make-indirect-buffer}. It creates an indirect buffer from
562 buffer @var{base-buffer}, under the name @var{indirect-name}. It
563 prompts for both @var{base-buffer} and @var{indirect-name} using the
564 minibuffer.
565
566 @node Buffer Convenience
567 @section Convenience Features and Customization of Buffer Handling
568
569 This section describes several modes and features that make it more
570 convenient to switch between buffers.
571
572 @menu
573 * Uniquify:: Making buffer names unique with directory parts.
574 * Iswitchb:: Switching between buffers with substrings.
575 * Buffer Menus:: Configurable buffer menu.
576 @end menu
577
578 @node Uniquify
579 @subsection Making Buffer Names Unique
580
581 @cindex unique buffer names
582 @cindex directories in buffer names
583 When several buffers visit identically-named files, Emacs must give
584 the buffers distinct names. The usual method for making buffer names
585 unique adds @samp{<2>}, @samp{<3>}, etc. to the end of the buffer
586 names (all but one of them).
587
588 @vindex uniquify-buffer-name-style
589 Other methods work by adding parts of each file's directory to the
590 buffer name. To select one, load the library @file{uniquify} (e.g.
591 using @code{(require 'uniquify)}), and customize the variable
592 @code{uniquify-buffer-name-style} (@pxref{Easy Customization}).
593
594 To begin with, the @code{forward} naming method includes part of the
595 file's directory name at the beginning of the buffer name; using this
596 method, buffers visiting the files @file{/u/rms/tmp/Makefile} and
597 @file{/usr/projects/zaphod/Makefile} would be named
598 @samp{tmp/Makefile} and @samp{zaphod/Makefile}, respectively (instead
599 of @samp{Makefile} and @samp{Makefile<2>}).
600
601 In contrast, the @code{post-forward} naming method would call the
602 buffers @samp{Makefile|tmp} and @samp{Makefile|zaphod}, and the
603 @code{reverse} naming method would call them @samp{Makefile\tmp} and
604 @samp{Makefile\zaphod}. The nontrivial difference between
605 @code{post-forward} and @code{reverse} occurs when just one directory
606 name is not enough to distinguish two files; then @code{reverse} puts
607 the directory names in reverse order, so that @file{/top/middle/file}
608 becomes @samp{file\middle\top}, while @code{post-forward} puts them in
609 forward order after the file name, as in @samp{file|top/middle}.
610
611 Which rule to follow for putting the directory names in the buffer
612 name is not very important if you are going to @emph{look} at the
613 buffer names before you type one. But as an experienced user, if you
614 know the rule, you won't have to look. And then you may find that one
615 rule or another is easier for you to remember and apply quickly.
616
617 @node Iswitchb
618 @subsection Switching Between Buffers using Substrings
619
620 @findex iswitchb-mode
621 @cindex Iswitchb mode
622 @cindex mode, Iswitchb
623 @kindex C-x b @r{(Iswitchb mode)}
624 @kindex C-x 4 b @r{(Iswitchb mode)}
625 @kindex C-x 5 b @r{(Iswitchb mode)}
626 @kindex C-x 4 C-o @r{(Iswitchb mode)}
627
628 Iswitchb global minor mode provides convenient switching between
629 buffers using substrings of their names. It replaces the normal
630 definitions of @kbd{C-x b}, @kbd{C-x 4 b}, @kbd{C-x 5 b}, and @kbd{C-x
631 4 C-o} with alternative commands that are somewhat ``smarter.''
632
633 When one of these commands prompts you for a buffer name, you can
634 type in just a substring of the name you want to choose. As you enter
635 the substring, Iswitchb mode continuously displays a list of buffers
636 that match the substring you have typed.
637
638 At any time, you can type @key{RET} to select the first buffer in
639 the list. So the way to select a particular buffer is to make it the
640 first in the list. There are two ways to do this. You can type more
641 of the buffer name and thus narrow down the list, excluding unwanted
642 buffers above the desired one. Alternatively, you can use @kbd{C-s}
643 and @kbd{C-r} to rotate the list until the desired buffer is first.
644
645 @key{TAB} while entering the buffer name performs completion on the
646 string you have entered, based on the displayed list of buffers.
647
648 To enable Iswitchb mode, type @kbd{M-x iswitchb-mode}, or customize
649 the variable @code{iswitchb-mode} to @code{t} (@pxref{Easy
650 Customization}).
651
652 @node Buffer Menus
653 @subsection Customizing Buffer Menus
654
655 @findex bs-show
656 @cindex buffer list, customizable
657 @table @kbd
658 @item M-x bs-show
659 Make a list of buffers similarly to @kbd{M-x list-buffers} but
660 customizable.
661 @end table
662
663 @kbd{M-x bs-show} pops up a buffer list similar to the one normally
664 displayed by @kbd{C-x C-b} but which you can customize. If you prefer
665 this to the usual buffer list, you can bind this command to @kbd{C-x
666 C-b}. To customize this buffer list, use the @code{bs} Custom group
667 (@pxref{Easy Customization}).
668
669 @findex msb-mode
670 @cindex mode, MSB
671 @cindex MSB mode
672 @cindex buffer menu
673 @findex mouse-buffer-menu
674 @kindex C-Down-Mouse-1
675 MSB global minor mode (``MSB'' stands for ``mouse select buffer'')
676 provides a different and customizable mouse buffer menu which you may
677 prefer. It replaces the bindings of @code{mouse-buffer-menu},
678 normally on @kbd{C-Down-Mouse-1}, and the menu bar buffer menu. You
679 can customize the menu in the @code{msb} Custom group.