Next: Creating Buffers, Previous: Read Only Buffers, Up: Buffers
The buffer list is a list of all live buffers. The order of
the buffers in the list is based primarily on how recently each buffer
has been displayed in a window. Several functions, notably
other-buffer, use this ordering. A buffer list displayed for
the user also follows this order.
Creating a buffer adds it to the end of the buffer list, and killing
a buffer removes it. Buffers move to the front of the list when they
are selected for display in a window (see Displaying Buffers), and
to the end when they are buried (see bury-buffer, below).
There are no functions available to the Lisp programmer which directly
manipulate the buffer list.
In addition to the fundamental Emacs buffer list, each frame has its
own version of the buffer list, in which the buffers that have been
selected in that frame come first, starting with the buffers most
recently selected in that frame. (This order is recorded in
frame's buffer-list frame parameter; see Buffer Parameters.) The buffers that were never selected in frame come
afterward, ordered according to the fundamental Emacs buffer list.
This function returns the buffer list, including all buffers, even those whose names begin with a space. The elements are actual buffers, not their names.
If frame is a frame, this returns frame's buffer list. If frame is
nil, the fundamental Emacs buffer list is used: all the buffers appear in order of most recent selection, regardless of which frames they were selected in.(buffer-list) ⇒ (#<buffer buffers.texi> #<buffer *Minibuf-1*> #<buffer buffer.c> #<buffer *Help*> #<buffer TAGS>) ;; Note that the name of the minibuffer ;; begins with a space! (mapcar (function buffer-name) (buffer-list)) ⇒ ("buffers.texi" " *Minibuf-1*" "buffer.c" "*Help*" "TAGS")
The list that buffer-list returns is constructed specifically
by buffer-list; it is not an internal Emacs data structure, and
modifying it has no effect on the order of buffers. If you want to
change the order of buffers in the frame-independent buffer list, here
is an easy way:
(defun reorder-buffer-list (new-list)
(while new-list
(bury-buffer (car new-list))
(setq new-list (cdr new-list))))
With this method, you can specify any order for the list, but there is no danger of losing a buffer or adding something that is not a valid live buffer.
To change the order or value of a frame's buffer list, set the frame's
buffer-list frame parameter with modify-frame-parameters
(see Parameter Access).
This function returns the first buffer in the buffer list other than buffer. Usually this is the buffer selected most recently (in frame frame or else the currently selected frame, see Input Focus), aside from buffer. Buffers whose names start with a space are not considered at all.
If buffer is not supplied (or if it is not a buffer), then
other-bufferreturns the first buffer in the selected frame's buffer list that is not now visible in any window in a visible frame.If frame has a non-
nilbuffer-predicateparameter, thenother-bufferuses that predicate to decide which buffers to consider. It calls the predicate once for each buffer, and if the value isnil, that buffer is ignored. See Buffer Parameters.If visible-ok is
nil,other-bufferavoids returning a buffer visible in any window on any visible frame, except as a last resort. If visible-ok is non-nil, then it does not matter whether a buffer is displayed somewhere or not.If no suitable buffer exists, the buffer `*scratch*' is returned (and created, if necessary).
This function puts buffer-or-name at the end of the buffer list, without changing the order of any of the other buffers on the list. This buffer therefore becomes the least desirable candidate for
other-bufferto return. The argument can be either a buffer itself or the name of one.
bury-bufferoperates on each frame'sbuffer-listparameter as well as the frame-independent Emacs buffer list; therefore, the buffer that you bury will come last in the value of(buffer-listframe)and in the value of(buffer-list nil).If buffer-or-name is
nilor omitted, this means to bury the current buffer. In addition, if the buffer is displayed in the selected window, this switches to some other buffer (obtained usingother-buffer) in the selected window. But if the buffer is displayed in some other window, it remains displayed there.To replace a buffer in all the windows that display it, use
replace-buffer-in-windows. See Buffers and Windows.
