Remove string.h hack.
[bpt/emacs.git] / man / buffers.texi
CommitLineData
6bf7aab6
DL
1@c This is part of the Emacs manual.
2@c Copyright (C) 1985, 86, 87, 93, 94, 95, 1997 Free Software Foundation, Inc.
3@c See file emacs.texi for copying conditions.
4@node Buffers, Windows, Files, Top
5@chapter Using Multiple Buffers
6
7@cindex buffers
8 The text you are editing in Emacs resides in an object called a
9@dfn{buffer}. Each time you visit a file, a buffer is created to hold the
10file's text. Each time you invoke Dired, a buffer is created to hold the
11directory listing. If you send a message with @kbd{C-x m}, a buffer named
12@samp{*mail*} is used to hold the text of the message. When you ask for a
13command's documentation, that appears in a buffer called @samp{*Help*}.
14
15@cindex selected buffer
16@cindex current buffer
17 At any time, one and only one buffer is @dfn{selected}. It is also
18called the @dfn{current buffer}. Often we say that a command operates on
19``the buffer'' as if there were only one; but really this means that the
20command operates on the selected buffer (most commands do).
21
22 When Emacs has multiple windows, each window has a chosen buffer which
23is displayed there, but at any time only one of the windows is selected and
24its chosen buffer is the selected buffer. Each window's mode line displays
25the name of the buffer that the window is displaying (@pxref{Windows}).
26
27 Each buffer has a name, which can be of any length, and you can select
28any buffer by giving its name. Most buffers are made by visiting files,
29and their names are derived from the files' names. But you can also create
30an empty buffer with any name you want. A newly started Emacs has a buffer
31named @samp{*scratch*} which can be used for evaluating Lisp expressions in
32Emacs. The distinction between upper and lower case matters in buffer
33names.
34
35 Each buffer records individually what file it is visiting, whether it is
36modified, and what major mode and minor modes are in effect in it
37(@pxref{Major Modes}). Any Emacs variable can be made @dfn{local to} a
38particular buffer, meaning its value in that buffer can be different from
39the value in other buffers. @xref{Locals}.
40
41@menu
42* Select Buffer:: Creating a new buffer or reselecting an old one.
43* List Buffers:: Getting a list of buffers that exist.
44* Misc Buffer:: Renaming; changing read-onlyness; copying text.
45* Kill Buffer:: Killing buffers you no longer need.
46* Several Buffers:: How to go through the list of all buffers
47 and operate variously on several of them.
48* Indirect Buffers:: An indirect buffer shares the text of another buffer.
49@end menu
50
51@node Select Buffer
52@section Creating and Selecting Buffers
53@cindex change buffers
54@cindex switch buffers
55
56@table @kbd
57@item C-x b @var{buffer} @key{RET}
58Select or create a buffer named @var{buffer} (@code{switch-to-buffer}).
59@item C-x 4 b @var{buffer} @key{RET}
60Similar, but select @var{buffer} in another window
61(@code{switch-to-buffer-other-window}).
62@item C-x 5 b @var{buffer} @key{RET}
63Similar, but select @var{buffer} in a separate frame
64(@code{switch-to-buffer-other-frame}).
65@end table
66
67@kindex C-x 4 b
68@findex switch-to-buffer-other-window
69@kindex C-x 5 b
70@findex switch-to-buffer-other-frame
71@kindex C-x b
72@findex switch-to-buffer
73 To select the buffer named @var{bufname}, type @kbd{C-x b @var{bufname}
74@key{RET}}. This runs the command @code{switch-to-buffer} with argument
75@var{bufname}. You can use completion on an abbreviation for the buffer
76name you want (@pxref{Completion}). An empty argument to @kbd{C-x b}
77specifies the most recently selected buffer that is not displayed in any
78window.@refill
79
80 Most buffers are created by visiting files, or by Emacs commands that
81want to display some text, but you can also create a buffer explicitly
82by typing @kbd{C-x b @var{bufname} @key{RET}}. This makes a new, empty
83buffer that is not visiting any file, and selects it for editing. Such
84buffers are used for making notes to yourself. If you try to save one,
85you are asked for the file name to use. The new buffer's major mode is
86determined by the value of @code{default-major-mode} (@pxref{Major
87Modes}).
88
89 Note that @kbd{C-x C-f}, and any other command for visiting a file,
90can also be used to switch to an existing file-visiting buffer.
91@xref{Visiting}.
92
93 Emacs uses buffer names that start with a space for internal purposes.
94It treats these buffers specially in minor ways---for example, by
95default they do not record undo information. It is best to avoid using
96such buffer names yourself.
97
98@node List Buffers
99@section Listing Existing Buffers
100
101@table @kbd
102@item C-x C-b
103List the existing buffers (@code{list-buffers}).
104@end table
105
106@cindex listing current buffers
107@kindex C-x C-b
108@findex list-buffers
109 To display a list of all the buffers that exist, type @kbd{C-x C-b}.
110Each line in the list shows one buffer's name, major mode and visited
111file. The buffers are listed in the order that they were current; the
112buffers that were current most recently come first.
113
114 @samp{*} at the beginning of a line indicates the buffer is ``modified.''
115If several buffers are modified, it may be time to save some with @kbd{C-x s}
116(@pxref{Saving}). @samp{%} indicates a read-only buffer. @samp{.} marks the
117selected buffer. Here is an example of a buffer list:@refill
118
119@smallexample
120 MR Buffer Size Mode File
121 -- ------ ---- ---- ----
122.* emacs.tex 383402 Texinfo /u2/emacs/man/emacs.tex
123 *Help* 1287 Fundamental
124 files.el 23076 Emacs-Lisp /u2/emacs/lisp/files.el
125 % RMAIL 64042 RMAIL /u/rms/RMAIL
126 *% man 747 Dired /u2/emacs/man/
127 net.emacs 343885 Fundamental /u/rms/net.emacs
128 fileio.c 27691 C /u2/emacs/src/fileio.c
129 NEWS 67340 Text /u2/emacs/etc/NEWS
130 *scratch* 0 Lisp Interaction
131@end smallexample
132
133@noindent
134Note that the buffer @samp{*Help*} was made by a help request; it is not
135visiting any file. The buffer @code{man} was made by Dired on the
e469e878
GM
136directory @file{/u2/emacs/man/}. You can list buffers visiting files
137only by giving the command a prefix, i.e. type @kbd{C-u C-x C-b}.
6bf7aab6
DL
138
139@need 2000
140@node Misc Buffer
141@section Miscellaneous Buffer Operations
142
143@table @kbd
144@item C-x C-q
145Toggle read-only status of buffer (@code{vc-toggle-read-only}).
146@item M-x rename-buffer @key{RET} @var{name} @key{RET}
147Change the name of the current buffer.
148@item M-x rename-uniquely
149Rename the current buffer by adding @samp{<@var{number}>} to the end.
150@item M-x view-buffer @key{RET} @var{buffer} @key{RET}
151Scroll through buffer @var{buffer}.
152@end table
153
154@kindex C-x C-q
155@findex vc-toggle-read-only
156@vindex buffer-read-only
157@cindex read-only buffer
158 A buffer can be @dfn{read-only}, which means that commands to change
159its contents are not allowed. The mode line indicates read-only buffers
160with @samp{%%} or @samp{%*} near the left margin. Read-only buffers are
161usually made by subsystems such as Dired and Rmail that have special
162commands to operate on the text; also by visiting a file whose access
163control says you cannot write it.
164
165 If you wish to make changes in a read-only buffer, use the command
166@kbd{C-x C-q} (@code{vc-toggle-read-only}). It makes a read-only buffer
167writable, and makes a writable buffer read-only. In most cases, this
168works by setting the variable @code{buffer-read-only}, which has a local
169value in each buffer and makes the buffer read-only if its value is
170non-@code{nil}. If the file is maintained with version control,
171@kbd{C-x C-q} works through the version control system to change the
172read-only status of the file as well as the buffer. @xref{Version
173Control}.
174
175@findex rename-buffer
176 @kbd{M-x rename-buffer} changes the name of the current buffer. Specify
177the new name as a minibuffer argument. There is no default. If you
178specify a name that is in use for some other buffer, an error happens and
179no renaming is done.
180
181 @kbd{M-x rename-uniquely} renames the current buffer to a similar name
182with a numeric suffix added to make it both different and unique. This
183command does not need an argument. It is useful for creating multiple
184shell buffers: if you rename the @samp{*Shell*} buffer, then do @kbd{M-x
185shell} again, it makes a new shell buffer named @samp{*Shell*};
186meanwhile, the old shell buffer continues to exist under its new name.
187This method is also good for mail buffers, compilation buffers, and most
188Emacs features that create special buffers with particular names.
189
190@findex view-buffer
191 @kbd{M-x view-buffer} is much like @kbd{M-x view-file} (@pxref{Misc
192File Ops}) except that it examines an already existing Emacs buffer.
193View mode provides commands for scrolling through the buffer
194conveniently but not for changing it. When you exit View mode with
195@kbd{q}, that switches back to the buffer (and the position) which was
196previously displayed in the window. Alternatively, if you exit View
197mode with @kbd{e}, the buffer and the value of point that resulted from
198your perusal remain in effect.
199
200 The commands @kbd{M-x append-to-buffer} and @kbd{M-x insert-buffer}
201can be used to copy text from one buffer to another. @xref{Accumulating
202Text}.@refill
203
204@node Kill Buffer
205@section Killing Buffers
206
207@cindex killing buffers
208 If you continue an Emacs session for a while, you may accumulate a
209large number of buffers. You may then find it convenient to @dfn{kill}
210the buffers you no longer need. On most operating systems, killing a
211buffer releases its space back to the operating system so that other
212programs can use it. Here are some commands for killing buffers:
213
214@c WideCommands
215@table @kbd
216@item C-x k @var{bufname} @key{RET}
217Kill buffer @var{bufname} (@code{kill-buffer}).
218@item M-x kill-some-buffers
219Offer to kill each buffer, one by one.
220@end table
221
222@findex kill-buffer
223@findex kill-some-buffers
224@kindex C-x k
225
226 @kbd{C-x k} (@code{kill-buffer}) kills one buffer, whose name you
227specify in the minibuffer. The default, used if you type just @key{RET}
228in the minibuffer, is to kill the current buffer. If you kill the
229current buffer, another buffer is selected; one that has been selected
230recently but does not appear in any window now. If you ask to kill a
231file-visiting buffer that is modified (has unsaved editing), then you
232must confirm with @kbd{yes} before the buffer is killed.
233
234 The command @kbd{M-x kill-some-buffers} asks about each buffer, one by
235one. An answer of @kbd{y} means to kill the buffer. Killing the current
236buffer or a buffer containing unsaved changes selects a new buffer or asks
237for confirmation just like @code{kill-buffer}.
238
239 The buffer menu feature (@pxref{Several Buffers}) is also convenient
240for killing various buffers.
241
242@vindex kill-buffer-hook
243 If you want to do something special every time a buffer is killed, you
244can add hook functions to the hook @code{kill-buffer-hook} (@pxref{Hooks}).
245
246@findex clean-buffer-list
247 If you run one Emacs session for a period of days, as many people do,
248it can fill up with buffers that you used several days ago. The command
249@kbd{M-x clean-buffer-list} is a convenient way to purge them; it kills
250all the unmodified buffers that you have not used for a long time. An
251ordinary buffer is killed if it has not been displayed for three days;
252however, you can specify certain buffers that should never be killed
253automatically, and others that should be killed if they have been unused
254for a mere hour.
255
256@cindex Midnight mode
257@vindex midnight-mode
258@vindex midnight-hook
259 You can also have this buffer purging done for you, every day at
260midnight, by enabling Midnight mode. Midnight mode operates each day at
261midnight; at that time, it runs @code{clean-buffer-list}, or whichever
262functions you have placed in the normal hook @code{midnight-hook}
263(@pxref{Hooks}).
264
265 To enable Midnight mode, use the Customization buffer to set the
266variable @code{midnight-mode} to @code{t}. @xref{Easy Customization}.
267
268@node Several Buffers
269@section Operating on Several Buffers
270@cindex buffer menu
271
272 The @dfn{buffer-menu} facility is like a ``Dired for buffers''; it allows
273you to request operations on various Emacs buffers by editing an Emacs
274buffer containing a list of them. You can save buffers, kill them
275(here called @dfn{deleting} them, for consistency with Dired), or display
276them.
277
278@table @kbd
279@item M-x buffer-menu
280Begin editing a buffer listing all Emacs buffers.
281@end table
282
283@findex buffer-menu
284 The command @code{buffer-menu} writes a list of all Emacs buffers into
285the buffer @samp{*Buffer List*}, and selects that buffer in Buffer Menu
286mode. The buffer is read-only, and can be changed only through the
287special commands described in this section. The usual Emacs cursor
288motion commands can be used in the @samp{*Buffer List*} buffer. The
289following commands apply to the buffer described on the current line.
290
291@table @kbd
292@item d
293Request to delete (kill) the buffer, then move down. The request
294shows as a @samp{D} on the line, before the buffer name. Requested
295deletions take place when you type the @kbd{x} command.
296@item C-d
297Like @kbd{d} but move up afterwards instead of down.
298@item s
299Request to save the buffer. The request shows as an @samp{S} on the
300line. Requested saves take place when you type the @kbd{x} command.
301You may request both saving and deletion for the same buffer.
302@item x
303Perform previously requested deletions and saves.
304@item u
305Remove any request made for the current line, and move down.
306@item @key{DEL}
307Move to previous line and remove any request made for that line.
308@end table
309
310 The @kbd{d}, @kbd{C-d}, @kbd{s} and @kbd{u} commands to add or remove
311flags also move down (or up) one line. They accept a numeric argument
312as a repeat count.
313
314 These commands operate immediately on the buffer listed on the current
315line:
316
317@table @kbd
318@item ~
319Mark the buffer ``unmodified.'' The command @kbd{~} does this
320immediately when you type it.
321@item %
322Toggle the buffer's read-only flag. The command @kbd{%} does
323this immediately when you type it.
324@item t
325Visit the buffer as a tags table. @xref{Select Tags Table}.
326@end table
327
328 There are also commands to select another buffer or buffers:
329
330@table @kbd
331@item q
332Quit the buffer menu---immediately display the most recent formerly
333visible buffer in its place.
334@item @key{RET}
335@itemx f
336Immediately select this line's buffer in place of the @samp{*Buffer
337List*} buffer.
338@item o
339Immediately select this line's buffer in another window as if by
340@kbd{C-x 4 b}, leaving @samp{*Buffer List*} visible.
341@item C-o
342Immediately display this line's buffer in another window, but don't
343select the window.
344@item 1
345Immediately select this line's buffer in a full-screen window.
346@item 2
347Immediately set up two windows, with this line's buffer in one, and the
348previously selected buffer (aside from the buffer @samp{*Buffer List*})
349in the other.
350@item b
351Bury the buffer listed on this line.
352@item m
353Mark this line's buffer to be displayed in another window if you exit
354with the @kbd{v} command. The request shows as a @samp{>} at the
355beginning of the line. (A single buffer may not have both a delete
356request and a display request.)
357@item v
358Immediately select this line's buffer, and also display in other windows
359any buffers previously marked with the @kbd{m} command. If you have not
360marked any buffers, this command is equivalent to @kbd{1}.
361@end table
362
363 All that @code{buffer-menu} does directly is create and switch to a
364suitable buffer, and turn on Buffer Menu mode. Everything else
365described above is implemented by the special commands provided in
366Buffer Menu mode. One consequence of this is that you can switch from
367the @samp{*Buffer List*} buffer to another Emacs buffer, and edit there.
368You can reselect the @samp{*Buffer List*} buffer later, to perform the
369operations already requested, or you can kill it, or pay no further
370attention to it.
371
372 The only difference between @code{buffer-menu} and @code{list-buffers}
373is that @code{buffer-menu} switches to the @samp{*Buffer List*} buffer
374in the selected window; @code{list-buffers} displays it in another
375window. If you run @code{list-buffers} (that is, type @kbd{C-x C-b})
376and select the buffer list manually, you can use all of the commands
377described here.
378
379 The buffer @samp{*Buffer List*} is not updated automatically when
380buffers are created and killed; its contents are just text. If you have
381created, deleted or renamed buffers, the way to update @samp{*Buffer
382List*} to show what you have done is to type @kbd{g}
383(@code{revert-buffer}) or repeat the @code{buffer-menu} command.
384
385@node Indirect Buffers
386@section Indirect Buffers
387@cindex indirect buffer
388@cindex base buffer
389
390 An @dfn{indirect buffer} shares the text of some other buffer, which
391is called the @dfn{base buffer} of the indirect buffer. In some ways it
392is the analogue, for buffers, of a symbolic link between files.
393
394@table @kbd
395@findex make-indirect-buffer
396@item M-x make-indirect-buffer @var{base-buffer} @key{RET} @var{indirect-name} @key{RET}
397Create an indirect buffer named @var{indirect-name} whose base buffer
398is @var{base-buffer}.
399@end table
400
401 The text of the indirect buffer is always identical to the text of its
402base buffer; changes made by editing either one are visible immediately
403in the other. But in all other respects, the indirect buffer and its
404base buffer are completely separate. They have different names,
405different values of point, different narrowing, different markers,
406different major modes, and different local variables.
407
408 An indirect buffer cannot visit a file, but its base buffer can. If
409you try to save the indirect buffer, that actually works by saving the
410base buffer. Killing the base buffer effectively kills the indirect
411buffer, but killing an indirect buffer has no effect on its base buffer.
412
413 One way to use indirect buffers is to display multiple views of an
414outline. @xref{Outline Views}.