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