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