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