* doc/lispref/customize.texi (Custom Themes): Clarify .el preference.
[emacs.git] / doc / emacs / buffers.texi
blobf8c1856058a8a4ce0ba42fa5d241e64f3a413660
1 @c This is part of the Emacs manual.
2 @c Copyright (C) 1985-1987, 1993-1995, 1997, 2000-2018 Free Software
3 @c Foundation, Inc.
4 @c See file emacs.texi for copying conditions.
5 @node Buffers
6 @chapter Using Multiple Buffers
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 used to hold
11 the file's text.  Each time you invoke Dired, a buffer is used to hold
12 the directory listing.  If you send a message with @kbd{C-x m}, a
13 buffer is used to hold the text of the message.  When you ask for a
14 command's documentation, that appears in a buffer named @file{*Help*}.
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 several buffers, including one named @file{*scratch*}, which can
23 be used for evaluating Lisp expressions and is not associated with any
24 file (@pxref{Lisp Interaction}).
26 @cindex selected buffer
27 @cindex current buffer
28   At any time, one and only one buffer is @dfn{selected}; we call it
29 the @dfn{current buffer}.  We sometimes say that a command operates on
30 ``the buffer''; this really means that it operates on the current
31 buffer.  When there is only one Emacs window, the buffer displayed in
32 that window is current.  When there are multiple windows, the buffer
33 displayed in the @dfn{selected window} is current.  @xref{Windows}.
35   Aside from its textual contents, each buffer records several pieces
36 of information, such as what file it is visiting (if any), whether it
37 is modified, and what major mode and minor modes are in effect
38 (@pxref{Modes}).  These are stored in @dfn{buffer-local
39 variables}---variables that can have a different value in each buffer.
40 @xref{Locals}.
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 @dfn{Emacs integers}.
45 This is because Emacs tracks buffer positions using that data type.
46 For typical 64-bit machines, this maximum buffer size is @math{2^{61} - 2}
47 bytes, or about 2 EiB@.  For typical 32-bit machines, the maximum is
48 usually @math{2^{29} - 2} bytes, or about 512 MiB@.  Buffer sizes are
49 also limited by the amount of memory in the system.
51 @menu
52 * Select Buffer::       Creating a new buffer or reselecting an old one.
53 * List Buffers::        Getting a list of buffers that exist.
54 * Misc Buffer::         Renaming; changing read-only status; copying text.
55 * Kill Buffer::         Killing buffers you no longer need.
56 * Several Buffers::     How to go through the list of all buffers
57                           and operate variously on several of them.
58 * Indirect Buffers::    An indirect buffer shares the text of another buffer.
59 * Buffer Convenience::  Convenience and customization features for
60                           buffer handling.
61 @end menu
63 @node Select Buffer
64 @section Creating and Selecting Buffers
65 @cindex change buffers
66 @cindex switch buffers
68 @table @kbd
69 @item C-x b @var{buffer} @key{RET}
70 Select or create a buffer named @var{buffer} (@code{switch-to-buffer}).
71 @item C-x 4 b @var{buffer} @key{RET}
72 Similar, but select @var{buffer} in another window
73 (@code{switch-to-buffer-other-window}).
74 @item C-x 5 b @var{buffer} @key{RET}
75 Similar, but select @var{buffer} in a separate frame
76 (@code{switch-to-buffer-other-frame}).
77 @item C-x @key{LEFT}
78 Select the previous buffer in the buffer list (@code{previous-buffer}).
79 @item C-x @key{RIGHT}
80 Select the next buffer in the buffer list (@code{next-buffer}).
81 @item C-u M-g M-g
82 @itemx C-u M-g g
83 Read a number @var{n} and move to line @var{n} in the most recently
84 selected buffer other than the current buffer, in another window.
85 @end table
87 @kindex C-x b
88 @findex switch-to-buffer
89   The @kbd{C-x b} (@code{switch-to-buffer}) command reads a buffer
90 name using the minibuffer.  Then it makes that buffer current, and
91 displays it in the currently-selected window.  An empty input
92 specifies the buffer that was current most recently among those not
93 now displayed in any window.
95   While entering the buffer name, you can use the usual completion and
96 history commands (@pxref{Minibuffer}).  Note that @kbd{C-x b}, and
97 related commands, use @dfn{permissive completion with confirmation}
98 for minibuffer completion: if you type @key{RET} when the minibuffer
99 text names a nonexistent buffer, Emacs prints @samp{[Confirm]} and you
100 must type a second @key{RET} to submit that buffer name.
101 @xref{Completion Exit}, for details.  For other completion options and
102 features, see @ref{Completion Options}.
104   If you specify a buffer that does not exist, @kbd{C-x b} creates a
105 new, empty buffer that is not visiting any file, and selects it for
106 editing.  The default value of the variable @code{major-mode}
107 determines the new buffer's major mode; the default value is
108 Fundamental mode.  @xref{Major Modes}.  One reason to create a new
109 buffer is to use it for making temporary notes.  If you try to save
110 it, Emacs asks for the file name to use, and the buffer's major mode
111 is re-established taking that file name into account (@pxref{Choosing
112 Modes}).
114 @kindex C-x LEFT
115 @kindex C-x RIGHT
116 @findex next-buffer
117 @findex previous-buffer
118   For conveniently switching between a few buffers, use the commands
119 @kbd{C-x @key{LEFT}} and @kbd{C-x @key{RIGHT}}.  @kbd{C-x @key{LEFT}}
120 (@code{previous-buffer}) selects the previous buffer (following the
121 order of most recent selection in the current frame), while @kbd{C-x
122 @key{RIGHT}} (@code{next-buffer}) moves through buffers in the reverse
123 direction.
125 @kindex C-x 4 b
126 @findex switch-to-buffer-other-window
127   To select a buffer in a window other than the current one
128 (@pxref{Windows}), type @kbd{C-x 4 b}
129 (@code{switch-to-buffer-other-window}).  This prompts for a buffer
130 name using the minibuffer, displays that buffer in another window, and
131 selects that window.
133 @kindex C-x 5 b
134 @findex switch-to-buffer-other-frame
135   Similarly, @kbd{C-x 5 b} (@code{switch-to-buffer-other-frame})
136 prompts for a buffer name, displays that buffer in another frame
137 (@pxref{Frames}), and selects that frame.  If the buffer is already
138 being shown in a window on another frame, Emacs selects that window
139 and frame instead of creating a new frame.
141   @xref{Displaying Buffers}, for how the @kbd{C-x 4 b} and @kbd{C-x 5
142 b} commands get the window and/or frame to display in.
144   In addition, @kbd{C-x C-f}, and any other command for visiting a
145 file, can also be used to switch to an existing file-visiting buffer.
146 @xref{Visiting}.
148 @findex goto-line@r{, with an argument}
149   @kbd{C-u M-g M-g}, that is @code{goto-line} with a plain prefix
150 argument, reads a number @var{n} using the minibuffer, selects the
151 most recently selected buffer other than the current buffer in another
152 window, and then moves point to the beginning of line number @var{n}
153 in that buffer.  This is mainly useful in a buffer that refers to line
154 numbers in another buffer: if point is on or just after a number,
155 @code{goto-line} uses that number as the default for @var{n}.  Note
156 that prefix arguments other than just @kbd{C-u} behave differently.
157 @kbd{C-u 4 M-g M-g} goes to line 4 in the @emph{current} buffer,
158 without reading a number from the minibuffer.  (Remember that @kbd{M-g
159 M-g} without prefix argument reads a number @var{n} and then moves to
160 line number @var{n} in the current buffer.  @xref{Moving Point}.)
162   Emacs uses buffer names that start with a space for internal purposes.
163 It treats these buffers specially in minor ways---for example, by
164 default they do not record undo information.  It is best to avoid using
165 such buffer names yourself.
167 @node List Buffers
168 @section Listing Existing Buffers
170 @table @kbd
171 @item C-x C-b
172 List the existing buffers (@code{list-buffers}).
173 @end table
175 @cindex listing current buffers
176 @kindex C-x C-b
177 @findex list-buffers
178   To display a list of existing buffers, type @kbd{C-x C-b}.  This
179 pops up a buffer menu in a buffer named @file{*Buffer List*}.  Each
180 line in the list shows one buffer's name, size, major mode and visited file.
181 The buffers are listed in the order that they were current; the
182 buffers that were current most recently come first.  This section
183 describes how the list of buffers is displayed and how to interpret
184 the various indications in the list; see @ref{Several Buffers}, for
185 description of the special mode in the @file{*Buffer List*} buffer and
186 the commands available there.
188   @samp{.} in the first field of a line indicates that the buffer is
189 current.  @samp{%} indicates a read-only buffer.  @samp{*} indicates
190 that the buffer is modified.  If several buffers are modified, it
191 may be time to save some with @kbd{C-x s} (@pxref{Save Commands}).
192 Here is an example of a buffer list:
194 @smallexample
195 CRM Buffer                Size  Mode              File
196 . * .emacs                3294  Emacs-Lisp        ~/.emacs
197  %  *Help*                 101  Help
198     search.c             86055  C                 ~/cvs/emacs/src/search.c
199  %  src                  20959  Dired by name     ~/cvs/emacs/src/
200   * *mail*                  42  Mail
201  %  HELLO                 1607  Fundamental       ~/cvs/emacs/etc/HELLO
202  %  NEWS                481184  Outline           ~/cvs/emacs/etc/NEWS
203     *scratch*              191  Lisp Interaction
204   * *Messages*            1554  Messages
205 @end smallexample
207 @noindent
208 The buffer @file{*Help*} was made by a help request (@pxref{Help}); it
209 is not visiting any file.  The buffer @code{src} was made by Dired on
210 the directory @file{~/cvs/emacs/src/}.  You can list only buffers that
211 are visiting files by giving the command a prefix argument, as in
212 @kbd{C-u C-x C-b}.
214   @code{list-buffers} omits buffers whose names begin with a space,
215 unless they visit files: such buffers are used internally by Emacs.
217 @node Misc Buffer
218 @section Miscellaneous Buffer Operations
220 @table @kbd
221 @item C-x C-q
222 Toggle read-only status of buffer (@code{read-only-mode}).
223 @item M-x rename-buffer @key{RET} @var{buffer} @key{RET}
224 Change the name of the current buffer.
225 @item M-x rename-uniquely
226 Rename the current buffer by adding @samp{<@var{number}>} to the end.
227 @item M-x view-buffer @key{RET} @var{buffer} @key{RET}
228 Scroll through buffer @var{buffer}.  @xref{View Mode}.
229 @end table
231 @kindex C-x C-q
232 @vindex buffer-read-only
233 @cindex read-only buffer
234   A buffer can be @dfn{read-only}, which means that commands to change
235 its contents are not allowed.  The mode line indicates read-only
236 buffers with @samp{%%} or @samp{%*} near the left margin.  @xref{Mode
237 Line}.  Read-only buffers are usually made by subsystems such as Dired
238 and Rmail that have special commands to operate on the text.  Visiting
239 a file whose access control says you cannot write it also makes the
240 buffer read-only.
242 @findex read-only-mode
243 @vindex view-read-only
244  The command @kbd{C-x C-q} (@code{read-only-mode}) makes a read-only
245 buffer writable, and makes a writable buffer read-only.  This works by
246 setting the variable @code{buffer-read-only}, which has a local value
247 in each buffer and makes the buffer read-only if its value is
248 non-@code{nil}.  If you change the option @code{view-read-only} to a
249 non-@code{nil} value, making the buffer read-only with @kbd{C-x C-q}
250 also enables View mode in the buffer (@pxref{View Mode}).
252 @findex rename-buffer
253   @kbd{M-x rename-buffer} changes the name of the current buffer.  You
254 specify the new name as a minibuffer argument; there is no default.
255 If you specify a name that is in use for some other buffer, an error
256 happens and no renaming is done.
258 @findex rename-uniquely
259   @kbd{M-x rename-uniquely} renames the current buffer to a similar
260 name with a numeric suffix added to make it both different and unique.
261 This command does not need an argument.  It is useful for creating
262 multiple shell buffers: if you rename the @file{*shell*} buffer, then
263 do @kbd{M-x shell} again, it makes a new shell buffer named
264 @file{*shell*}; meanwhile, the old shell buffer continues to exist
265 under its new name.  This method is also good for mail buffers,
266 compilation buffers, and most Emacs features that create special
267 buffers with particular names.  (With some of these features, such as
268 @kbd{M-x compile}, @kbd{M-x grep}, you need to switch to some other
269 buffer before using the command again, otherwise it will reuse the
270 current buffer despite the name change.)
272   The commands @kbd{M-x append-to-buffer} and @kbd{M-x insert-buffer}
273 can also be used to copy text from one buffer to another.
274 @xref{Accumulating Text}.
276 @node Kill Buffer
277 @section Killing Buffers
279 @cindex killing buffers
280 @cindex close buffer
281 @cindex close file
282   If you continue an Emacs session for a while, you may accumulate a
283 large number of buffers.  You may then find it convenient to @dfn{kill}
284 the buffers you no longer need.  (Some other editors call this
285 operation @dfn{close}, and talk about ``closing the buffer'' or
286 ``closing the file'' visited in the buffer.)  On most operating
287 systems, killing a buffer releases the memory Emacs used for the buffer
288 back to the operating system so that other programs can use it.  Here
289 are some commands for killing buffers:
291 @table @kbd
292 @item C-x k @var{buffer} @key{RET}
293 Kill buffer @var{buffer} (@code{kill-buffer}).
294 @item M-x kill-some-buffers
295 Offer to kill each buffer, one by one.
296 @item M-x kill-matching-buffers
297 Offer to kill all buffers matching a regular expression.
298 @end table
300 @findex kill-buffer
301 @kindex C-x k
302   @kbd{C-x k} (@code{kill-buffer}) kills one buffer, whose name you
303 specify in the minibuffer.  The default, used if you type just
304 @key{RET} in the minibuffer, is to kill the current buffer.  If you
305 kill the current buffer, another buffer becomes current: one that was
306 current in the recent past but is not displayed in any window now.  If
307 you ask to kill a file-visiting buffer that is modified, then you must
308 confirm with @kbd{yes} before the buffer is killed.
310 @findex kill-some-buffers
311   The command @kbd{M-x kill-some-buffers} asks about each buffer, one
312 by one.  An answer of @kbd{yes} means to kill the buffer, just like
313 @code{kill-buffer}.  This command ignores buffers whose names begin
314 with a space, which are used internally by Emacs.
316 @findex kill-matching-buffers
317   The command @kbd{M-x kill-matching-buffers} prompts for a regular
318 expression and kills all buffers whose names match that expression.
319 @xref{Regexps}.  Like @code{kill-some-buffers}, it asks for
320 confirmation before each kill.  This command normally ignores buffers
321 whose names begin with a space, which are used internally by Emacs.
322 To kill internal buffers as well, call @code{kill-matching-buffers}
323 with a prefix argument.
325   The Buffer Menu feature is also convenient for killing various
326 buffers.  @xref{Several Buffers}.
328 @vindex kill-buffer-hook
329   If you want to do something special every time a buffer is killed, you
330 can add hook functions to the hook @code{kill-buffer-hook} (@pxref{Hooks}).
332 @findex clean-buffer-list
333   If you run one Emacs session for a period of days, as many people do,
334 it can fill up with buffers that you used several days ago.  The command
335 @kbd{M-x clean-buffer-list} is a convenient way to purge them; it kills
336 all the unmodified buffers that you have not used for a long time.  An
337 ordinary buffer is killed if it has not been displayed for three days;
338 however, you can specify certain buffers that should never be killed
339 automatically, and others that should be killed if they have been unused
340 for a mere hour.  These defaults, and other aspects of this command's
341 behavior, can be controlled by customizing several options described
342 in the doc string of @code{clean-buffer-list}.
344 @cindex Midnight mode
345 @vindex midnight-mode
346 @vindex midnight-hook
347   You can also have this buffer purging done for you, once a day,
348 by enabling Midnight mode.  Midnight mode operates each day
349 at midnight; at that time, it runs @code{clean-buffer-list}, or
350 whichever functions you have placed in the normal hook
351 @code{midnight-hook} (@pxref{Hooks}).  To enable Midnight mode, use
352 the Customization buffer to set the variable @code{midnight-mode} to
353 @code{t}.  @xref{Easy Customization}.
355 @node Several Buffers
356 @section Operating on Several Buffers
357 @cindex Buffer Menu
359 @table @kbd
360 @item M-x buffer-menu
361 Begin editing a buffer listing all Emacs buffers.
362 @item M-x buffer-menu-other-window
363 Similar, but do it in another window.
364 @end table
366   The @dfn{Buffer Menu} opened by @kbd{C-x C-b} (@pxref{List Buffers})
367 does not merely list buffers.  It also allows you to perform various
368 operations on buffers, through an interface similar to Dired
369 (@pxref{Dired}).  You can save buffers, kill them (here called
370 @dfn{deleting} them, for consistency with Dired), or display them.
372 @findex buffer-menu
373 @findex buffer-menu-other-window
374   To use the Buffer Menu, type @kbd{C-x C-b} and switch to the window
375 displaying the @file{*Buffer List*} buffer.  You can also type
376 @kbd{M-x buffer-menu} to open the Buffer Menu in the selected window.
377 Alternatively, the command @kbd{M-x buffer-menu-other-window} opens
378 the Buffer Menu in another window, and selects that window.
380   The Buffer Menu is a read-only buffer, and can be changed only
381 through the special commands described in this section.  The usual
382 cursor motion commands can be used in this buffer.  The following
383 commands apply to the buffer described on the current line:
385 @table @kbd
386 @item d
387 @findex Buffer-menu-delete
388 @kindex d @r{(Buffer Menu)}
389 Flag the buffer for deletion (killing), then move point to the next
390 line (@code{Buffer-menu-delete}).  The deletion flag is indicated by
391 the character @samp{D} on the line, before the buffer name.  The
392 deletion occurs only when you type the @kbd{x} command (see below).
394 @item C-d
395 @findex Buffer-menu-delete-backwards
396 @kindex C-d @r{(Buffer Menu)}
397 Like @kbd{d}, but move point up instead of down
398 (@code{Buffer-menu-delete-backwards}).
400 @item s
401 @findex Buffer-menu-save
402 @kindex s @r{(Buffer Menu)}
403 Flag the buffer for saving (@code{Buffer-menu-save}).  The save flag
404 is indicated by the character @samp{S} on the line, before the buffer
405 name.  The saving occurs only when you type @kbd{x}.  You may request
406 both saving and deletion for the same buffer.
408 @item x
409 @findex Buffer-menu-execute
410 @kindex x @r{(Buffer Menu)}
411 Perform all flagged deletions and saves (@code{Buffer-menu-execute}).
413 @item u
414 @findex Buffer-menu-unmark
415 @kindex u @r{(Buffer Menu)}
416 Remove all flags from the current line, and move down
417 (@code{Buffer-menu-unmark}).  With a prefix argument, moves up after
418 removing the flags.
420 @item @key{DEL}
421 @findex Buffer-menu-backup-unmark
422 @kindex DEL @r{(Buffer Menu)}
423 Move to the previous line and remove all flags on that line
424 (@code{Buffer-menu-backup-unmark}).
426 @item M-@key{DEL}
427 @findex Buffer-menu-unmark-all-buffers
428 @kindex M-DEL @r{(Buffer Menu)}
429 Remove a particular flag from all lines
430 (@code{Buffer-menu-unmark-all-buffers}).  This asks for a single
431 character, and unmarks buffers marked with that character; typing
432 @key{RET} removes all marks.
434 @item U
435 @findex Buffer-menu-unmark-all
436 @kindex U @r{(Buffer Menu)}
437 Remove all flags from all the lines
438 (@code{Buffer-menu-unmark-all}).
439 @end table
441 @noindent
442 The commands for removing flags, @kbd{d} and @kbd{C-d}, accept a
443 numeric argument as a repeat count.
445   The following commands operate immediately on the buffer listed on
446 the current line.  They also accept a numeric argument as a repeat
447 count.
449 @table @kbd
450 @item ~
451 @findex Buffer-menu-not-modified
452 @kindex ~ @r{(Buffer Menu)}
453 Mark the buffer as unmodified (@code{Buffer-menu-not-modified}).
454 @xref{Save Commands}.
456 @item %
457 @findex Buffer-menu-toggle-read-only
458 @kindex % @r{(Buffer Menu)}
459 Toggle the buffer's read-only status
460 (@code{Buffer-menu-toggle-read-only}).  @xref{Misc Buffer}.
462 @item t
463 @findex Buffer-menu-visit-tags-table
464 @kindex t @r{(Buffer Menu)}
465 Visit the buffer as a tags table
466 (@code{Buffer-menu-visit-tags-table}).  @xref{Select Tags Table}.
467 @end table
469   The following commands are used to select another buffer or buffers:
471 @table @kbd
472 @item q
473 @findex quit-window
474 @kindex q @r{(Buffer Menu)}
475 Quit the Buffer Menu (@code{quit-window}).  The most recent formerly
476 visible buffer is displayed in its place.
478 @item @key{RET}
479 @itemx f
480 @findex Buffer-menu-this-window
481 @kindex f @r{(Buffer Menu)}
482 @kindex RET @r{(Buffer Menu)}
483 Select this line's buffer, replacing the @file{*Buffer List*} buffer
484 in its window (@code{Buffer-menu-this-window}).
486 @item o
487 @findex Buffer-menu-other-window
488 @kindex o @r{(Buffer Menu)}
489 Select this line's buffer in another window, as if by @kbd{C-x 4 b},
490 leaving @file{*Buffer List*} visible
491 (@code{Buffer-menu-other-window}).
493 @item C-o
494 @findex Buffer-menu-switch-other-window
495 @kindex C-o @r{(Buffer Menu)}
496 Display this line's buffer in another window, without selecting it
497 (@code{Buffer-menu-switch-other-window}).
499 @item 1
500 @findex Buffer-menu-1-window
501 @kindex 1 @r{(Buffer Menu)}
502 Select this line's buffer in a full-frame window
503 (@code{Buffer-menu-1-window}).
505 @item 2
506 @findex Buffer-menu-2-window
507 @kindex 2 @r{(Buffer Menu)}
508 Set up two windows on the current frame, with this line's buffer
509 selected in one, and a previously current buffer (aside from
510 @file{*Buffer List*}) in the other (@code{Buffer-menu-2-window}).
512 @item b
513 @findex Buffer-menu-bury
514 @kindex b @r{(Buffer Menu)}
515 Bury this line's buffer (@code{Buffer-menu-bury}) (i.e., move it to
516 the end of the buffer list).
518 @item m
519 @findex Buffer-menu-mark
520 @kindex m @r{(Buffer Menu)}
521 Mark this line's buffer to be displayed in another window if you exit
522 with the @kbd{v} command (@code{Buffer-menu-mark}).  The display flag
523 is indicated by the character @samp{>} at the beginning of the line.
524 (A single buffer may not have both deletion and display flags.)
526 @item v
527 @findex Buffer-menu-select
528 @kindex v @r{(Buffer Menu)}
529 Select this line's buffer, and also display in other windows any
530 buffers flagged with the @kbd{m} command (@code{Buffer-menu-select}).
531 If you have not flagged any buffers, this command is equivalent to
532 @kbd{1}.
533 @end table
535   The following commands affect the entire buffer list:
537 @table @kbd
538 @item S
539 @findex tabulated-list-sort
540 @kindex S @r{(Buffer Menu)}
541 Sort the Buffer Menu entries according to their values in the column
542 at point.  With a numeric prefix argument @var{n}, sort according to
543 the @var{n}-th column (@code{tabulated-list-sort}).
545 @item T
546 @findex Buffer-menu-toggle-files-only
547 @kindex T @r{(Buffer Menu)}
548 Delete, or reinsert, lines for non-file buffers
549 (@code{Buffer-menu-toggle-files-only}).  This command toggles the
550 inclusion of such buffers in the buffer list.
551 @end table
553   Normally, the buffer @file{*Buffer List*} is not updated
554 automatically when buffers are created and killed; its contents are
555 just text.  If you have created, deleted or renamed buffers, the way
556 to update @file{*Buffer List*} to show what you have done is to type
557 @kbd{g} (@code{revert-buffer}).  You can make this happen regularly
558 every @code{auto-revert-interval} seconds if you enable Auto Revert
559 mode in this buffer, as long as it is not marked modified.  Global
560 Auto Revert mode applies to the @file{*Buffer List*} buffer only if
561 @code{global-auto-revert-non-file-buffers} is non-@code{nil}.
562 @iftex
563 @inforef{Autorevert,, emacs-xtra}, for details.
564 @end iftex
565 @ifnottex
566 @xref{Autorevert, global-auto-revert-non-file-buffers}, for details.
567 @end ifnottex
569 @node Indirect Buffers
570 @section Indirect Buffers
571 @cindex indirect buffer
572 @cindex base buffer
574   An @dfn{indirect buffer} shares the text of some other buffer, which
575 is called the @dfn{base buffer} of the indirect buffer.  In some ways it
576 is a buffer analogue of a symbolic link between files.
578 @table @kbd
579 @findex make-indirect-buffer
580 @item M-x make-indirect-buffer @key{RET} @var{base-buffer} @key{RET} @var{indirect-name} @key{RET}
581 Create an indirect buffer named @var{indirect-name} with base buffer
582 @var{base-buffer}.
583 @findex clone-indirect-buffer
584 @item M-x clone-indirect-buffer @key{RET}
585 Create an indirect buffer that is a twin copy of the current buffer.
586 @item C-x 4 c
587 @kindex C-x 4 c
588 @findex clone-indirect-buffer-other-window
589 Create an indirect buffer that is a twin copy of the current buffer, and
590 select it in another window (@code{clone-indirect-buffer-other-window}).
591 @end table
593   The text of the indirect buffer is always identical to the text of its
594 base buffer; changes made by editing either one are visible immediately
595 in the other.  But in all other respects, the indirect buffer and its
596 base buffer are completely separate.  They can have different names,
597 different values of point, different narrowing, different markers,
598 different major modes, and different local variables.
600   An indirect buffer cannot visit a file, but its base buffer can.  If
601 you try to save the indirect buffer, that actually works by saving the
602 base buffer.  Killing the base buffer effectively kills the indirect
603 buffer, but killing an indirect buffer has no effect on its base buffer.
605   One way to use indirect buffers is to display multiple views of an
606 outline.  @xref{Outline Views}.
608 @vindex clone-indirect-buffer-hook
609   A quick and handy way to make an indirect buffer is with the command
610 @kbd{M-x clone-indirect-buffer}.  It creates and selects an indirect
611 buffer whose base buffer is the current buffer.  With a numeric
612 argument, it prompts for the name of the indirect buffer; otherwise it
613 uses the name of the current buffer, with a @samp{<@var{n}>} suffix
614 added.  @kbd{C-x 4 c} (@code{clone-indirect-buffer-other-window})
615 works like @kbd{M-x clone-indirect-buffer}, but it selects the new
616 buffer in another window.  These functions run the hook
617 @code{clone-indirect-buffer-hook} after creating the indirect buffer.
619   The more general way to make an indirect buffer is with the command
620 @kbd{M-x make-indirect-buffer}.  It creates an indirect buffer
621 named @var{indirect-name} from a buffer @var{base-buffer}, prompting for
622 both using the minibuffer.
624 @node Buffer Convenience
625 @section Convenience Features and Customization of Buffer Handling
627    This section describes several modes and features that make it more
628 convenient to switch between buffers.
630 @menu
631 * Uniquify::               Making buffer names unique with directory parts.
632 * Icomplete::              Fast minibuffer selection.
633 * Buffer Menus::           Configurable buffer menu.
634 @end menu
636 @node Uniquify
637 @subsection Making Buffer Names Unique
639 @cindex unique buffer names
640 @cindex directories in buffer names
641   When several buffers visit identically-named files, Emacs must give
642 the buffers distinct names.  The default method adds a suffix based on
643 the names of the directories that contain the files.  For example, if
644 you visit files @file{/foo/bar/mumble/name} and
645 @file{/baz/quux/mumble/name} at the same time, their buffers will be
646 named @samp{name<bar/mumble>} and @samp{name<quux/mumble>}, respectively.
647 Emacs adds as many directory parts as are needed to make a unique name.
649 @vindex uniquify-buffer-name-style
650   You can choose from several different styles for constructing unique
651 buffer names, by customizing the option @code{uniquify-buffer-name-style}.
653   The @code{forward} naming method includes part of the file's
654 directory name at the beginning of the buffer name; using this method,
655 buffers visiting the files @file{/u/rms/tmp/Makefile} and
656 @file{/usr/projects/zaphod/Makefile} would be named
657 @samp{tmp/Makefile} and @samp{zaphod/Makefile}.
659   In contrast, the @code{post-forward} naming method would call the
660 buffers @samp{Makefile|tmp} and @samp{Makefile|zaphod}.  The default
661 method @code{post-forward-angle-brackets} is like @code{post-forward},
662 except that it encloses the unique path in angle brackets.  The
663 @code{reverse} naming method would call them @samp{Makefile\tmp} and
664 @samp{Makefile\zaphod}.  The nontrivial difference between
665 @code{post-forward} and @code{reverse} occurs when just one directory
666 name is not enough to distinguish two files; then @code{reverse} puts
667 the directory names in reverse order, so that @file{/top/middle/file}
668 becomes @samp{file\middle\top}, while @code{post-forward} puts them in
669 forward order after the file name, as in @samp{file|top/middle}.  If
670 @code{uniquify-buffer-name-style} is set to @code{nil}, the buffer
671 names simply get @samp{<2>}, @samp{<3>}, etc.@: appended.
673   Which rule to follow for putting the directory names in the buffer
674 name is not very important if you are going to @emph{look} at the
675 buffer names before you type one.  But as an experienced user, if you
676 know the rule, you won't have to look.  And then you may find that one
677 rule or another is easier for you to remember and apply quickly.
679 @node Icomplete
680 @subsection Fast minibuffer selection
682 @findex icomplete-mode
683 @cindex Icomplete mode
685   Icomplete global minor mode provides a convenient way to quickly select an
686 element among the possible completions in a minibuffer.  When enabled, typing
687 in the minibuffer continuously displays a list of possible completions that
688 match the string you have typed.
690   At any time, you can type @kbd{C-j} to select the first completion in
691 the list.  So the way to select a particular completion is to make it the
692 first in the list.  There are two ways to do this.  You can type more
693 of the completion name and thus narrow down the list, excluding unwanted
694 completions above the desired one.  Alternatively, you can use @kbd{C-.}
695 and @kbd{C-,} to rotate the list until the desired buffer is first.
697   @kbd{M-@key{TAB}} will select the first completion in the list, like
698 @kbd{C-j} but without exiting the minibuffer, so you can edit it
699 further.  This is typically used when entering a file name, where
700 @kbd{M-@key{TAB}} can be used a few times to descend in the hierarchy
701 of directories.
703   To enable Icomplete mode, type @kbd{M-x icomplete-mode}, or customize
704 the variable @code{icomplete-mode} to @code{t} (@pxref{Easy
705 Customization}).
707 @node Buffer Menus
708 @subsection Customizing Buffer Menus
710 @findex bs-show
711 @cindex buffer list, customizable
712 @table @kbd
713 @item M-x bs-show
714 Make a list of buffers similarly to @kbd{M-x list-buffers} but
715 customizable.
716 @item M-x ibuffer
717 Make a list of buffers and operate on them in Dired-like fashion.
718 @end table
720 @findex bs-customize
721   @kbd{M-x bs-show} pops up a buffer list similar to the one normally
722 displayed by @kbd{C-x C-b}, but whose display you can customize in a
723 more flexible fashion.  For example, you can specify the list of
724 buffer attributes to show, the minimum and maximum width of buffer
725 name column, a regexp for names of buffers that will never be shown
726 and those which will always be shown, etc.  If you prefer
727 this to the usual buffer list, you can bind this command to @kbd{C-x
728 C-b}.  To customize this buffer list, use the @code{bs} Custom group
729 (@pxref{Easy Customization}), or invoke @kbd{bs-customize}.
731 @findex msb-mode
732 @cindex mode, MSB
733 @cindex MSB mode
734 @findex mouse-buffer-menu
735 @kindex C-Down-mouse-1
736   MSB global minor mode (``MSB'' stands for ``mouse select buffer'')
737 provides a different and customizable mouse buffer menu which you may
738 prefer.  It replaces the @code{mouse-buffer-menu} commands, normally
739 bound to @kbd{C-Down-mouse-1} and @kbd{C-@key{F10}}, with its own
740 commands, and also modifies the menu-bar buffer menu.  You can
741 customize the menu in the @code{msb} Custom group.
743 @findex ibuffer
744    IBuffer is a major mode for viewing a list of buffers and operating
745 on them in a way analogous to that of Dired (@pxref{Dired}), including
746 filtering, marking, sorting in various ways, and acting on buffers.