]> code.delx.au - gnu-emacs/blob - doc/lispref/windows.texi
Merge from origin/emacs-25
[gnu-emacs] / doc / lispref / windows.texi
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990-1995, 1998-1999, 2001-2016 Free Software
4 @c Foundation, Inc.
5 @c See the file elisp.texi for copying conditions.
6 @node Windows
7 @chapter Windows
8
9 This chapter describes the functions and variables related to Emacs
10 windows. @xref{Frames}, for how windows are assigned an area of screen
11 available for Emacs to use. @xref{Display}, for information on how text
12 is displayed in windows.
13
14 @menu
15 * Basic Windows:: Basic information on using windows.
16 * Windows and Frames:: Relating windows to the frame they appear on.
17 * Window Sizes:: Accessing a window's size.
18 * Resizing Windows:: Changing the sizes of windows.
19 * Preserving Window Sizes:: Preserving the size of windows.
20 * Splitting Windows:: Creating a new window.
21 * Deleting Windows:: Removing a window from its frame.
22 * Recombining Windows:: Preserving the frame layout when splitting and
23 deleting windows.
24 * Selecting Windows:: The selected window is the one that you edit in.
25 * Cyclic Window Ordering:: Moving around the existing windows.
26 * Buffers and Windows:: Each window displays the contents of a buffer.
27 * Switching Buffers:: Higher-level functions for switching to a buffer.
28 * Choosing Window:: How to choose a window for displaying a buffer.
29 * Display Action Functions:: Subroutines for @code{display-buffer}.
30 * Choosing Window Options:: Extra options affecting how buffers are displayed.
31 * Window History:: Each window remembers the buffers displayed in it.
32 * Dedicated Windows:: How to avoid displaying another buffer in
33 a specific window.
34 * Quitting Windows:: How to restore the state prior to displaying a
35 buffer.
36 * Window Point:: Each window has its own location of point.
37 * Window Start and End:: Buffer positions indicating which text is
38 on-screen in a window.
39 * Textual Scrolling:: Moving text up and down through the window.
40 * Vertical Scrolling:: Moving the contents up and down on the window.
41 * Horizontal Scrolling:: Moving the contents sideways on the window.
42 * Coordinates and Windows:: Converting coordinates to windows.
43 * Window Configurations:: Saving and restoring the state of the screen.
44 * Window Parameters:: Associating additional information with windows.
45 * Window Hooks:: Hooks for scrolling, window size changes,
46 redisplay going past a certain point,
47 or window configuration changes.
48 @end menu
49
50
51 @node Basic Windows
52 @section Basic Concepts of Emacs Windows
53 @cindex window
54
55 A @dfn{window} is an area of the screen that is used to display a buffer
56 (@pxref{Buffers}). In Emacs Lisp, windows are represented by a special
57 Lisp object type.
58
59 @cindex multiple windows
60 Windows are grouped into frames (@pxref{Frames}). Each frame
61 contains at least one window; the user can subdivide it into multiple,
62 non-overlapping windows to view several buffers at once. Lisp
63 programs can use multiple windows for a variety of purposes. In
64 Rmail, for example, you can view a summary of message titles in one
65 window, and the contents of the selected message in another window.
66
67 @cindex terminal screen
68 @cindex screen of terminal
69 Emacs uses the word ``window'' with a different meaning than in
70 graphical desktop environments and window systems, such as the X
71 Window System. When Emacs is run on X, each of its graphical X
72 windows is an Emacs frame (containing one or more Emacs windows).
73 When Emacs is run on a text terminal, the frame fills the entire
74 terminal screen.
75
76 @cindex tiled windows
77 Unlike X windows, Emacs windows are @dfn{tiled}; they never overlap
78 within the area of the frame. When a window is created, resized, or
79 deleted, the change in window space is taken from or given to the
80 adjacent windows, so that the total area of the frame is unchanged.
81
82 @defun windowp object
83 This function returns @code{t} if @var{object} is a window (whether or
84 not it displays a buffer). Otherwise, it returns @code{nil}.
85 @end defun
86
87 @cindex live windows
88 A @dfn{live window} is one that is actually displaying a buffer in a
89 frame.
90
91 @defun window-live-p object
92 This function returns @code{t} if @var{object} is a live window and
93 @code{nil} otherwise. A live window is one that displays a buffer.
94 @end defun
95
96 @cindex internal windows
97 The windows in each frame are organized into a @dfn{window tree}.
98 @xref{Windows and Frames}. The leaf nodes of each window tree are live
99 windows---the ones actually displaying buffers. The internal nodes of
100 the window tree are @dfn{internal windows}, which are not live.
101
102 @cindex valid windows
103 A @dfn{valid window} is one that is either live or internal. A valid
104 window can be @dfn{deleted}, i.e., removed from its frame
105 (@pxref{Deleting Windows}); then it is no longer valid, but the Lisp
106 object representing it might be still referenced from other Lisp
107 objects. A deleted window may be made valid again by restoring a saved
108 window configuration (@pxref{Window Configurations}).
109
110 You can distinguish valid windows from deleted windows with
111 @code{window-valid-p}.
112
113 @defun window-valid-p object
114 This function returns @code{t} if @var{object} is a live window, or an
115 internal window in a window tree. Otherwise, it returns @code{nil},
116 including for the case where @var{object} is a deleted window.
117 @end defun
118
119 @cindex selected window
120 @cindex window selected within a frame
121 In each frame, at any time, exactly one Emacs window is designated
122 as @dfn{selected within the frame}. For the selected frame, that
123 window is called the @dfn{selected window}---the one in which most
124 editing takes place, and in which the cursor for selected windows
125 appears (@pxref{Cursor Parameters}). The selected window's buffer is
126 usually also the current buffer, except when @code{set-buffer} has
127 been used (@pxref{Current Buffer}). As for non-selected frames, the
128 window selected within the frame becomes the selected window if the
129 frame is ever selected. @xref{Selecting Windows}.
130
131 @defun selected-window
132 This function returns the selected window (which is always a live
133 window).
134 @end defun
135
136 @anchor{Window Group}Sometimes several windows collectively and
137 cooperatively display a buffer, for example, under the management of
138 Follow Mode (@pxref{Follow Mode,,, emacs}), where the windows together
139 display a bigger portion of the buffer than one window could alone.
140 It is often useful to consider such a @dfn{window group} as a single
141 entity. Several functions such as @code{window-group-start}
142 (@pxref{Window Start and End}) allow you to do this by supplying, as
143 an argument, one of the windows as a stand in for the whole group.
144
145 @defun selected-window-group
146 @vindex selected-window-group-function
147 When the selected window is a member of a group of windows, this
148 function returns a list of the windows in the group, ordered such that
149 the first window in the list is displaying the earliest part of the
150 buffer, and so on. Otherwise the function returns a list containing
151 just the selected window.
152
153 The selected window is considered part of a group when the buffer
154 local variable @code{selected-window-group-function} is set to a
155 function. In this case, @code{selected-window-group} calls it with no
156 arguments and returns its result (which should be the list of windows
157 in the group).
158 @end defun
159
160 @node Windows and Frames
161 @section Windows and Frames
162
163 Each window belongs to exactly one frame (@pxref{Frames}).
164
165 @defun window-frame &optional window
166 This function returns the frame that the window @var{window} belongs
167 to. If @var{window} is @code{nil}, it defaults to the selected
168 window.
169 @end defun
170
171 @defun window-list &optional frame minibuffer window
172 This function returns a list of live windows belonging to the frame
173 @var{frame}. If @var{frame} is omitted or @code{nil}, it defaults to
174 the selected frame.
175
176 The optional argument @var{minibuffer} specifies whether to include
177 the minibuffer window in the returned list. If @var{minibuffer} is
178 @code{t}, the minibuffer window is included. If @var{minibuffer} is
179 @code{nil} or omitted, the minibuffer window is included only if it is
180 active. If @var{minibuffer} is neither @code{nil} nor @code{t}, the
181 minibuffer window is never included.
182
183 The optional argument @var{window}, if non-@code{nil}, should be a live
184 window on the specified frame; then @var{window} will be the first
185 element in the returned list. If @var{window} is omitted or @code{nil},
186 the window selected within the frame is the first element.
187 @end defun
188
189 @cindex window tree
190 @cindex root window
191 Windows in the same frame are organized into a @dfn{window tree},
192 whose leaf nodes are the live windows. The internal nodes of a window
193 tree are not live; they exist for the purpose of organizing the
194 relationships between live windows. The root node of a window tree is
195 called the @dfn{root window}. It can be either a live window (if the
196 frame has just one window), or an internal window.
197
198 A minibuffer window (@pxref{Minibuffer Windows}) is not part of its
199 frame's window tree unless the frame is a minibuffer-only frame.
200 Nonetheless, most of the functions in this section accept the
201 minibuffer window as an argument. Also, the function
202 @code{window-tree} described at the end of this section lists the
203 minibuffer window alongside the actual window tree.
204
205 @defun frame-root-window &optional frame-or-window
206 This function returns the root window for @var{frame-or-window}. The
207 argument @var{frame-or-window} should be either a window or a frame;
208 if omitted or @code{nil}, it defaults to the selected frame. If
209 @var{frame-or-window} is a window, the return value is the root window
210 of that window's frame.
211 @end defun
212
213 @cindex parent window
214 @cindex child window
215 @cindex sibling window
216 When a window is split, there are two live windows where previously
217 there was one. One of these is represented by the same Lisp window
218 object as the original window, and the other is represented by a
219 newly-created Lisp window object. Both of these live windows become
220 leaf nodes of the window tree, as @dfn{child windows} of a single
221 internal window. If necessary, Emacs automatically creates this
222 internal window, which is also called the @dfn{parent window}, and
223 assigns it to the appropriate position in the window tree. A set of
224 windows that share the same parent are called @dfn{siblings}.
225
226 @cindex parent window
227 @defun window-parent &optional window
228 This function returns the parent window of @var{window}. If
229 @var{window} is omitted or @code{nil}, it defaults to the selected
230 window. The return value is @code{nil} if @var{window} has no parent
231 (i.e., it is a minibuffer window or the root window of its frame).
232 @end defun
233
234 Each internal window always has at least two child windows. If this
235 number falls to one as a result of window deletion, Emacs
236 automatically deletes the internal window, and its sole remaining
237 child window takes its place in the window tree.
238
239 Each child window can be either a live window, or an internal window
240 (which in turn would have its own child windows). Therefore, each
241 internal window can be thought of as occupying a certain rectangular
242 @dfn{screen area}---the union of the areas occupied by the live
243 windows that are ultimately descended from it.
244
245 @cindex window combination
246 @cindex vertical combination
247 @cindex horizontal combination
248 For each internal window, the screen areas of the immediate children
249 are arranged either vertically or horizontally (never both). If the
250 child windows are arranged one above the other, they are said to form
251 a @dfn{vertical combination}; if they are arranged side by side, they
252 are said to form a @dfn{horizontal combination}. Consider the
253 following example:
254
255 @smallexample
256 @group
257 ______________________________________
258 | ______ ____________________________ |
259 || || __________________________ ||
260 || ||| |||
261 || ||| |||
262 || ||| |||
263 || |||____________W4____________|||
264 || || __________________________ ||
265 || ||| |||
266 || ||| |||
267 || |||____________W5____________|||
268 ||__W2__||_____________W3_____________ |
269 |__________________W1__________________|
270
271 @end group
272 @end smallexample
273
274 @noindent
275 The root window of this frame is an internal window, @var{W1}. Its
276 child windows form a horizontal combination, consisting of the live
277 window @var{W2} and the internal window @var{W3}. The child windows
278 of @var{W3} form a vertical combination, consisting of the live
279 windows @var{W4} and @var{W5}. Hence, the live windows in this
280 window tree are @var{W2}, @var{W4}, and @var{W5}.
281
282 The following functions can be used to retrieve a child window of an
283 internal window, and the siblings of a child window.
284
285 @defun window-top-child &optional window
286 This function returns the topmost child window of @var{window}, if
287 @var{window} is an internal window whose children form a vertical
288 combination. For any other type of window, the return value is
289 @code{nil}.
290 @end defun
291
292 @defun window-left-child &optional window
293 This function returns the leftmost child window of @var{window}, if
294 @var{window} is an internal window whose children form a horizontal
295 combination. For any other type of window, the return value is
296 @code{nil}.
297 @end defun
298
299 @defun window-child window
300 This function returns the first child window of the internal window
301 @var{window}---the topmost child window for a vertical combination, or
302 the leftmost child window for a horizontal combination. If
303 @var{window} is a live window, the return value is @code{nil}.
304 @end defun
305
306 @defun window-combined-p &optional window horizontal
307 This function returns a non-@code{nil} value if and only if
308 @var{window} is part of a vertical combination. If @var{window} is
309 omitted or @code{nil}, it defaults to the selected one.
310
311 If the optional argument @var{horizontal} is non-@code{nil}, this
312 means to return non-@code{nil} if and only if @var{window} is part of
313 a horizontal combination.
314 @end defun
315
316 @defun window-next-sibling &optional window
317 This function returns the next sibling of the window @var{window}. If
318 omitted or @code{nil}, @var{window} defaults to the selected window.
319 The return value is @code{nil} if @var{window} is the last child of
320 its parent.
321 @end defun
322
323 @defun window-prev-sibling &optional window
324 This function returns the previous sibling of the window @var{window}.
325 If omitted or @code{nil}, @var{window} defaults to the selected
326 window. The return value is @code{nil} if @var{window} is the first
327 child of its parent.
328 @end defun
329
330 The functions @code{window-next-sibling} and
331 @code{window-prev-sibling} should not be confused with the functions
332 @code{next-window} and @code{previous-window}, which return the next
333 and previous window, respectively, in the cyclic ordering of windows
334 (@pxref{Cyclic Window Ordering}).
335
336 You can use the following functions to find the first live window on a
337 frame and the window nearest to a given window.
338
339 @defun frame-first-window &optional frame-or-window
340 This function returns the live window at the upper left corner of the
341 frame specified by @var{frame-or-window}. The argument
342 @var{frame-or-window} must denote a window or a live frame and defaults
343 to the selected frame. If @var{frame-or-window} specifies a window,
344 this function returns the first window on that window's frame. Under
345 the assumption that the frame from our canonical example is selected
346 @code{(frame-first-window)} returns @var{W2}.
347 @end defun
348
349 @cindex window in direction
350 @defun window-in-direction direction &optional window ignore sign wrap mini
351 This function returns the nearest live window in direction
352 @var{direction} as seen from the position of @code{window-point} in
353 window @var{window}. The argument @var{direction} must be one of
354 @code{above}, @code{below}, @code{left} or @code{right}. The optional
355 argument @var{window} must denote a live window and defaults to the
356 selected one.
357
358 This function does not return a window whose @code{no-other-window}
359 parameter is non-@code{nil} (@pxref{Window Parameters}). If the nearest
360 window's @code{no-other-window} parameter is non-@code{nil}, this
361 function tries to find another window in the indicated direction whose
362 @code{no-other-window} parameter is @code{nil}. If the optional
363 argument @var{ignore} is non-@code{nil}, a window may be returned even
364 if its @code{no-other-window} parameter is non-@code{nil}.
365
366 If the optional argument @var{sign} is a negative number, it means to
367 use the right or bottom edge of @var{window} as reference position
368 instead of @code{window-point}. If @var{sign} is a positive number, it
369 means to use the left or top edge of @var{window} as reference position.
370
371 If the optional argument @var{wrap} is non-@code{nil}, this means to
372 wrap @var{direction} around frame borders. For example, if @var{window}
373 is at the top of the frame and @var{direction} is @code{above}, then
374 this function usually returns the frame's minibuffer window if it's
375 active and a window at the bottom of the frame otherwise.
376
377 If the optional argument @var{mini} is @code{nil}, this means to return
378 the minibuffer window if and only if it is currently active. If
379 @var{mini} is non-@code{nil}, this function may return the minibuffer
380 window even when it's not active. However, if @var{wrap} is
381 non-@code{nil}, it always acts as if @var{mini} were @code{nil}.
382
383 If it doesn't find a suitable window, this function returns @code{nil}.
384 @end defun
385
386 The following function allows the entire window tree of a frame to be
387 retrieved:
388
389 @defun window-tree &optional frame
390 This function returns a list representing the window tree for frame
391 @var{frame}. If @var{frame} is omitted or @code{nil}, it defaults to
392 the selected frame.
393
394 The return value is a list of the form @code{(@var{root} @var{mini})},
395 where @var{root} represents the window tree of the frame's root
396 window, and @var{mini} is the frame's minibuffer window.
397
398 If the root window is live, @var{root} is that window itself.
399 Otherwise, @var{root} is a list @code{(@var{dir} @var{edges} @var{w1}
400 @var{w2} ...)} where @var{dir} is @code{nil} for a horizontal
401 combination and @code{t} for a vertical combination, @var{edges} gives
402 the size and position of the combination, and the remaining elements
403 are the child windows. Each child window may again be a window object
404 (for a live window) or a list with the same format as above (for an
405 internal window). The @var{edges} element is a list @code{(@var{left}
406 @var{top} @var{right} @var{bottom})}, similar to the value returned by
407 @code{window-edges} (@pxref{Coordinates and Windows}).
408 @end defun
409
410
411 @node Window Sizes
412 @section Window Sizes
413 @cindex window size
414 @cindex size of window
415
416 The following schematic shows the structure of a live window:
417
418 @smallexample
419 @group
420 ____________________________________________
421 |______________ Header Line ______________|RD| ^
422 ^ |LS|LM|LF| |RF|RM|RS| | |
423 | | | | | | | | | | |
424 Window | | | | Text Area | | | | | Window
425 Body | | | | | (Window Body) | | | | | Total
426 Height | | | | | | | | | Height
427 | | | | |<- Window Body Width ->| | | | | |
428 v |__|__|__|_______________________|__|__|__| | |
429 |_________ Horizontal Scroll Bar _________| | |
430 |_______________ Mode Line _______________|__| |
431 |_____________ Bottom Divider _______________| v
432 <---------- Window Total Width ------------>
433
434 @end group
435 @end smallexample
436
437 @cindex window body
438 @cindex text area of a window
439 @cindex body of a window
440 At the center of the window is the @dfn{text area}, or @dfn{body},
441 where the buffer text is displayed. The text area can be surrounded by
442 a series of optional areas. On the left and right, from innermost to
443 outermost, these are the left and right fringes, denoted by LF and RF
444 (@pxref{Fringes}); the left and right margins, denoted by LM and RM in
445 the schematic (@pxref{Display Margins}); the left or right vertical
446 scroll bar, only one of which is present at any time, denoted by LS and
447 RS (@pxref{Scroll Bars}); and the right divider, denoted by RD
448 (@pxref{Window Dividers}). At the top of the window is the header line
449 (@pxref{Header Lines}). At the bottom of the window are the horizontal
450 scroll bar (@pxref{Scroll Bars}); the mode line (@pxref{Mode Line
451 Format}); and the bottom divider (@pxref{Window Dividers}).
452
453 Emacs provides miscellaneous functions for finding the height and
454 width of a window. The return value of many of these functions can be
455 specified either in units of pixels or in units of lines and columns.
456 On a graphical display, the latter actually correspond to the height and
457 width of a default character specified by the frame's default font
458 as returned by @code{frame-char-height} and @code{frame-char-width}
459 (@pxref{Frame Font}). Thus, if a window is displaying text with a
460 different font or size, the reported line height and column width for
461 that window may differ from the actual number of text lines or columns
462 displayed within it.
463
464 @cindex window height
465 @cindex height of a window
466 @cindex total height of a window
467 The @dfn{total height} of a window is the number of lines comprising
468 the window's body, the header line, the horizontal scroll bar, the mode
469 line and the bottom divider (if any).
470
471 @defun window-total-height &optional window round
472 This function returns the total height, in lines, of the window
473 @var{window}. If @var{window} is omitted or @code{nil}, it defaults to
474 the selected window. If @var{window} is an internal window, the return
475 value is the total height occupied by its descendant windows.
476
477 If a window's pixel height is not an integral multiple of its frame's
478 default character height, the number of lines occupied by the window is
479 rounded internally. This is done in a way such that, if the window is a
480 parent window, the sum of the total heights of all its child windows
481 internally equals the total height of their parent. This means that
482 although two windows have the same pixel height, their internal total
483 heights may differ by one line. This means also, that if window is
484 vertically combined and has a next sibling, the topmost row of that
485 sibling can be calculated as the sum of this window's topmost row and
486 total height (@pxref{Coordinates and Windows})
487
488 If the optional argument @var{round} is @code{ceiling}, this
489 function returns the smallest integer larger than @var{window}'s pixel
490 height divided by the character height of its frame; if it is
491 @code{floor}, it returns the largest integer smaller than said value;
492 with any other @var{round} it returns the internal value of
493 @var{windows}'s total height.
494 @end defun
495
496 @cindex window width
497 @cindex width of a window
498 @cindex total width of a window
499 The @dfn{total width} of a window is the number of lines comprising the
500 window's body, its margins, fringes, scroll bars and a right divider (if
501 any).
502
503 @defun window-total-width &optional window round
504 This function returns the total width, in columns, of the window
505 @var{window}. If @var{window} is omitted or @code{nil}, it defaults to
506 the selected window. If @var{window} is internal, the return value is
507 the total width occupied by its descendant windows.
508
509 If a window's pixel width is not an integral multiple of its frame's
510 character width, the number of lines occupied by the window is rounded
511 internally. This is done in a way such that, if the window is a parent
512 window, the sum of the total widths of all its children internally
513 equals the total width of their parent. This means that although two
514 windows have the same pixel width, their internal total widths may
515 differ by one column. This means also, that if this window is
516 horizontally combined and has a next sibling, the leftmost column of
517 that sibling can be calculated as the sum of this window's leftmost
518 column and total width (@pxref{Coordinates and Windows}). The optional
519 argument @var{round} behaves as it does for @code{window-total-height}.
520 @end defun
521
522 @defun window-total-size &optional window horizontal round
523 This function returns either the total height in lines or the total
524 width in columns of the window @var{window}. If @var{horizontal} is
525 omitted or @code{nil}, this is equivalent to calling
526 @code{window-total-height} for @var{window}; otherwise it is equivalent
527 to calling @code{window-total-width} for @var{window}. The optional
528 argument @var{round} behaves as it does for @code{window-total-height}.
529 @end defun
530
531 The following two functions can be used to return the total size of a
532 window in units of pixels.
533
534 @cindex window pixel height
535 @cindex pixel height of a window
536 @cindex total pixel height of a window
537
538 @defun window-pixel-height &optional window
539 This function returns the total height of window @var{window} in pixels.
540 @var{window} must be a valid window and defaults to the selected one.
541
542 The return value includes mode and header line, a horizontal scroll bar
543 and a bottom divider, if any. If @var{window} is an internal window,
544 its pixel height is the pixel height of the screen areas spanned by its
545 children.
546 @end defun
547
548 @defun window-pixel-height-before-size-change &optional Lisp_Object &optional window
549 This function returns the height of window @var{window} in pixels at the
550 time @code{window-size-change-functions} was run for the last time on
551 @var{window}'s frame (@pxref{Window Hooks}).
552 @end defun
553
554 @cindex window pixel width
555 @cindex pixel width of a window
556 @cindex total pixel width of a window
557
558 @defun window-pixel-width &optional Lisp_Object &optional window
559 This function returns the width of window @var{window} in pixels.
560 @var{window} must be a valid window and defaults to the selected one.
561
562 The return value includes the fringes and margins of @var{window} as
563 well as any vertical dividers or scroll bars belonging to @var{window}.
564 If @var{window} is an internal window, its pixel width is the width of
565 the screen areas spanned by its children.
566 @end defun
567
568 @defun window-pixel-width-before-size-change &optional Lisp_Object &optional window
569 This function returns the width of window @var{window} in pixels at the
570 time @code{window-size-change-functions} was run for the last time on
571 @var{window}'s frame (@pxref{Window Hooks}).
572 @end defun
573
574 @cindex full-width window
575 @cindex full-height window
576 The following functions can be used to determine whether a given
577 window has any adjacent windows.
578
579 @defun window-full-height-p &optional window
580 This function returns non-@code{nil} if @var{window} has no other window
581 above or below it in its frame. More precisely, this means that the
582 total height of @var{window} equals the total height of the root window
583 on that frame. The minibuffer window does not count in this regard. If
584 @var{window} is omitted or @code{nil}, it defaults to the selected
585 window.
586 @end defun
587
588 @defun window-full-width-p &optional window
589 This function returns non-@code{nil} if @var{window} has no other
590 window to the left or right in its frame, i.e., its total width equals
591 that of the root window on that frame. If @var{window} is omitted or
592 @code{nil}, it defaults to the selected window.
593 @end defun
594
595 @cindex window body height
596 @cindex body height of a window
597 The @dfn{body height} of a window is the height of its text area, which
598 does not include a mode or header line, a horizontal scroll bar, or a
599 bottom divider.
600
601 @defun window-body-height &optional window pixelwise
602 This function returns the height, in lines, of the body of window
603 @var{window}. If @var{window} is omitted or @code{nil}, it defaults to
604 the selected window; otherwise it must be a live window.
605
606 If the optional argument @var{pixelwise} is non-@code{nil}, this
607 function returns the body height of @var{window} counted in pixels.
608
609 If @var{pixelwise} is @code{nil}, the return value is rounded down to
610 the nearest integer, if necessary. This means that if a line at the
611 bottom of the text area is only partially visible, that line is not
612 counted. It also means that the height of a window's body can never
613 exceed its total height as returned by @code{window-total-height}.
614 @end defun
615
616 @cindex window body width
617 @cindex body width of a window
618 The @dfn{body width} of a window is the width of its text area, which
619 does not include the scroll bar, fringes, margins or a right divider.
620 Note that when one or both fringes are removed (by setting their width
621 to zero), the display engine reserves two character cells, one on each
622 side of the window, for displaying the continuation and truncation
623 glyphs, which leaves 2 columns less for text display. (The function
624 @code{window-max-chars-per-line}, described below, takes this
625 peculiarity into account.)
626
627 @defun window-body-width &optional window pixelwise
628 This function returns the width, in columns, of the body of window
629 @var{window}. If @var{window} is omitted or @code{nil}, it defaults to
630 the selected window; otherwise it must be a live window.
631
632 If the optional argument @var{pixelwise} is non-@code{nil}, this
633 function returns the body width of @var{window} in units of pixels.
634
635 If @var{pixelwise} is @code{nil}, the return value is rounded down to
636 the nearest integer, if necessary. This means that if a column on the
637 right of the text area is only partially visible, that column is not
638 counted. It also means that the width of a window's body can never
639 exceed its total width as returned by @code{window-total-width}.
640 @end defun
641
642 @cindex window body size
643 @cindex body size of a window
644 @defun window-body-size &optional window horizontal pixelwise
645 This function returns the body height or body width of @var{window}. If
646 @var{horizontal} is omitted or @code{nil}, it is equivalent to calling
647 @code{window-body-height} for @var{window}; otherwise it is equivalent
648 to calling @code{window-body-width}. In either case, the optional
649 argument @var{pixelwise} is passed to the function called.
650 @end defun
651
652 For compatibility with previous versions of Emacs,
653 @code{window-height} is an alias for @code{window-total-height}, and
654 @code{window-width} is an alias for @code{window-body-width}. These
655 aliases are considered obsolete and will be removed in the future.
656
657 The pixel heights of a window's mode and header line can be retrieved
658 with the functions given below. Their return value is usually accurate
659 unless the window has not been displayed before: In that case, the
660 return value is based on an estimate of the font used for the window's
661 frame.
662
663 @defun window-mode-line-height &optional window
664 This function returns the height in pixels of @var{window}'s mode line.
665 @var{window} must be a live window and defaults to the selected one. If
666 @var{window} has no mode line, the return value is zero.
667 @end defun
668
669 @defun window-header-line-height &optional window
670 This function returns the height in pixels of @var{window}'s header
671 line. @var{window} must be a live window and defaults to the selected
672 one. If @var{window} has no header line, the return value is zero.
673 @end defun
674
675 Functions for retrieving the height and/or width of window dividers
676 (@pxref{Window Dividers}), fringes (@pxref{Fringes}), scroll bars
677 (@pxref{Scroll Bars}), and display margins (@pxref{Display Margins}) are
678 described in the corresponding sections.
679
680 If your Lisp program needs to make layout decisions, you will find the
681 following function useful:
682
683 @defun window-max-chars-per-line &optional window face
684 This function returns the number of characters displayed in the
685 specified face @var{face} in the specified window @var{window} (which
686 must be a live window). If @var{face} was remapped (@pxref{Face
687 Remapping}), the information is returned for the remapped face. If
688 omitted or @code{nil}, @var{face} defaults to the default face, and
689 @var{window} defaults to the selected window.
690
691 Unlike @code{window-body-width}, this function accounts for the actual
692 size of @var{face}'s font, instead of working in units of the canonical
693 character width of @var{window}'s frame (@pxref{Frame Font}). It also
694 accounts for space used by the continuation glyph, if @var{window} lacks
695 one or both of its fringes.
696 @end defun
697
698 @cindex fixed-size window
699 @vindex window-min-height
700 @vindex window-min-width
701 Commands that change the size of windows (@pxref{Resizing Windows}),
702 or split them (@pxref{Splitting Windows}), obey the variables
703 @code{window-min-height} and @code{window-min-width}, which specify the
704 smallest allowable window height and width. They also obey the variable
705 @code{window-size-fixed}, with which a window can be @dfn{fixed} in
706 size (@pxref{Preserving Window Sizes}).
707
708 @defopt window-min-height
709 This option specifies the minimum total height, in lines, of any window.
710 Its value has to accommodate at least one text line as well as a mode
711 and header line, a horizontal scroll bar and a bottom divider, if
712 present.
713 @end defopt
714
715 @defopt window-min-width
716 This option specifies the minimum total width, in columns, of any
717 window. Its value has to accommodate two text columns as well as
718 margins, fringes, a scroll bar and a right divider, if present.
719 @end defopt
720
721 The following function tells how small a specific window can get taking
722 into account the sizes of its areas and the values of
723 @code{window-min-height}, @code{window-min-width} and
724 @code{window-size-fixed} (@pxref{Preserving Window Sizes}).
725
726 @defun window-min-size &optional window horizontal ignore pixelwise
727 This function returns the minimum size of @var{window}. @var{window}
728 must be a valid window and defaults to the selected one. The optional
729 argument @var{horizontal} non-@code{nil} means to return the minimum
730 number of columns of @var{window}; otherwise return the minimum number
731 of @var{window}'s lines.
732
733 The return value makes sure that all components of @var{window} remain
734 fully visible if @var{window}'s size were actually set to it. With
735 @var{horizontal} @code{nil} it includes the mode and header line, the
736 horizontal scroll bar and the bottom divider, if present. With
737 @var{horizontal} non-@code{nil} it includes the margins and fringes, the
738 vertical scroll bar and the right divider, if present.
739
740 The optional argument @var{ignore}, if non-@code{nil}, means ignore
741 restrictions imposed by fixed size windows, @code{window-min-height} or
742 @code{window-min-width} settings. If @var{ignore} equals @code{safe},
743 live windows may get as small as @code{window-safe-min-height} lines and
744 @code{window-safe-min-width} columns. If @var{ignore} is a window,
745 ignore restrictions for that window only. Any other non-@code{nil}
746 value means ignore all of the above restrictions for all windows.
747
748 The optional argument @var{pixelwise} non-@code{nil} means to return the
749 minimum size of @var{window} counted in pixels.
750 @end defun
751
752 @node Resizing Windows
753 @section Resizing Windows
754 @cindex window resizing
755 @cindex resize window
756 @cindex changing window size
757 @cindex window size, changing
758
759 This section describes functions for resizing a window without
760 changing the size of its frame. Because live windows do not overlap,
761 these functions are meaningful only on frames that contain two or more
762 windows: resizing a window also changes the size of a neighboring
763 window. If there is just one window on a frame, its size cannot be
764 changed except by resizing the frame (@pxref{Size and Position}).
765
766 Except where noted, these functions also accept internal windows as
767 arguments. Resizing an internal window causes its child windows to be
768 resized to fit the same space.
769
770 @defun window-resizable window delta &optional horizontal ignore pixelwise
771 This function returns @var{delta} if the size of @var{window} can be
772 changed vertically by @var{delta} lines. If the optional argument
773 @var{horizontal} is non-@code{nil}, it instead returns @var{delta} if
774 @var{window} can be resized horizontally by @var{delta} columns. It
775 does not actually change the window size.
776
777 If @var{window} is @code{nil}, it defaults to the selected window.
778
779 A positive value of @var{delta} means to check whether the window can be
780 enlarged by that number of lines or columns; a negative value of
781 @var{delta} means to check whether the window can be shrunk by that many
782 lines or columns. If @var{delta} is non-zero, a return value of 0 means
783 that the window cannot be resized.
784
785 Normally, the variables @code{window-min-height} and
786 @code{window-min-width} specify the smallest allowable window size
787 (@pxref{Window Sizes}). However, if the optional argument @var{ignore}
788 is non-@code{nil}, this function ignores @code{window-min-height} and
789 @code{window-min-width}, as well as @code{window-size-fixed}. Instead,
790 it considers the minimum-height window to be one consisting of a header
791 and a mode line, a horizontal scrollbar and a bottom divider (if any),
792 plus a text area one line tall; and a minimum-width window as one
793 consisting of fringes, margins, a scroll bar and a right divider (if
794 any), plus a text area two columns wide.
795
796 If the optional argument @var{pixelwise} is non-@code{nil},
797 @var{delta} is interpreted as pixels.
798 @end defun
799
800 @defun window-resize window delta &optional horizontal ignore pixelwise
801 This function resizes @var{window} by @var{delta} increments. If
802 @var{horizontal} is @code{nil}, it changes the height by @var{delta}
803 lines; otherwise, it changes the width by @var{delta} columns. A
804 positive @var{delta} means to enlarge the window, and a negative
805 @var{delta} means to shrink it.
806
807 If @var{window} is @code{nil}, it defaults to the selected window. If
808 the window cannot be resized as demanded, an error is signaled.
809
810 The optional argument @var{ignore} has the same meaning as for the
811 function @code{window-resizable} above.
812
813 If the optional argument @var{pixelwise} is non-@code{nil},
814 @var{delta} will be interpreted as pixels.
815
816 The choice of which window edges this function alters depends on the
817 values of the option @code{window-combination-resize} and the
818 combination limits of the involved windows; in some cases, it may alter
819 both edges. @xref{Recombining Windows}. To resize by moving only the
820 bottom or right edge of a window, use the function
821 @code{adjust-window-trailing-edge}.
822 @end defun
823
824 @c The commands enlarge-window, enlarge-window-horizontally,
825 @c shrink-window, and shrink-window-horizontally are documented in the
826 @c Emacs manual. They are not preferred for calling from Lisp.
827
828 @defun adjust-window-trailing-edge window delta &optional horizontal pixelwise
829 This function moves @var{window}'s bottom edge by @var{delta} lines.
830 If optional argument @var{horizontal} is non-@code{nil}, it instead
831 moves the right edge by @var{delta} columns. If @var{window} is
832 @code{nil}, it defaults to the selected window.
833
834 If the optional argument @var{pixelwise} is non-@code{nil},
835 @var{delta} is interpreted as pixels.
836
837 A positive @var{delta} moves the edge downwards or to the right; a
838 negative @var{delta} moves it upwards or to the left. If the edge
839 cannot be moved as far as specified by @var{delta}, this function
840 moves it as far as possible but does not signal a error.
841
842 This function tries to resize windows adjacent to the edge that is
843 moved. If this is not possible for some reason (e.g., if that adjacent
844 window is fixed-size), it may resize other windows.
845 @end defun
846
847 @cindex pixelwise, resizing windows
848 @defopt window-resize-pixelwise
849 If the value of this option is non-@code{nil}, Emacs resizes windows in
850 units of pixels. This currently affects functions like
851 @code{split-window} (@pxref{Splitting Windows}), @code{maximize-window},
852 @code{minimize-window}, @code{fit-window-to-buffer},
853 @code{fit-frame-to-buffer} and
854 @code{shrink-window-if-larger-than-buffer} (all listed below).
855
856 Note that when a frame's pixel size is not a multiple of its character
857 size, at least one window may get resized pixelwise even if this
858 option is @code{nil}. The default value is @code{nil}.
859 @end defopt
860
861 The following commands resize windows in more specific ways. When
862 called interactively, they act on the selected window.
863
864 @deffn Command fit-window-to-buffer &optional window max-height min-height max-width min-width preserve-size
865 This command adjusts the height or width of @var{window} to fit the text
866 in it. It returns non-@code{nil} if it was able to resize @var{window},
867 and @code{nil} otherwise. If @var{window} is omitted or @code{nil}, it
868 defaults to the selected window. Otherwise, it should be a live window.
869
870 If @var{window} is part of a vertical combination, this function adjusts
871 @var{window}'s height. The new height is calculated from the actual
872 height of the accessible portion of its buffer. The optional argument
873 @var{max-height}, if non-@code{nil}, specifies the maximum total height
874 that this function can give @var{window}. The optional argument
875 @var{min-height}, if non-@code{nil}, specifies the minimum total height
876 that it can give, which overrides the variable @code{window-min-height}.
877 Both @var{max-height} and @var{min-height} are specified in lines and
878 include mode and header line and a bottom divider, if any.
879
880 If @var{window} is part of a horizontal combination and the value of the
881 option @code{fit-window-to-buffer-horizontally} (see below) is
882 non-@code{nil}, this function adjusts @var{window}'s height. The new
883 width of @var{window} is calculated from the maximum length of its
884 buffer's lines that follow the current start position of @var{window}.
885 The optional argument @var{max-width} specifies a maximum width and
886 defaults to the width of @var{window}'s frame. The optional argument
887 @var{min-width} specifies a minimum width and defaults to
888 @code{window-min-width}. Both @var{max-width} and @var{min-width} are
889 specified in columns and include fringes, margins and scrollbars, if
890 any.
891
892 The optional argument @var{preserve-size}, if non-@code{nil}, will
893 install a parameter to preserve the size of @var{window} during future
894 resize operations (@pxref{Preserving Window Sizes}).
895
896 If the option @code{fit-frame-to-buffer} (see below) is non-@code{nil},
897 this function will try to resize the frame of @var{window} to fit its
898 contents by calling @code{fit-frame-to-buffer} (see below).
899 @end deffn
900
901 @defopt fit-window-to-buffer-horizontally
902 If this is non-@code{nil}, @code{fit-window-to-buffer} can resize
903 windows horizontally. If this is @code{nil} (the default)
904 @code{fit-window-to-buffer} never resizes windows horizontally. If this
905 is @code{only}, it can resize windows horizontally only. Any other
906 value means @code{fit-window-to-buffer} can resize windows in both
907 dimensions.
908 @end defopt
909
910 @defopt fit-frame-to-buffer
911 If this option is non-@code{nil}, @code{fit-window-to-buffer} can fit a
912 frame to its buffer. A frame is fit if and only if its root window is a
913 live window and this option is non-@code{nil}. If this is
914 @code{horizontally}, frames are fit horizontally only. If this is
915 @code{vertically}, frames are fit vertically only. Any other
916 non-@code{nil} value means frames can be resized in both dimensions.
917 @end defopt
918
919 If you have a frame that displays only one window, you can fit that
920 frame to its buffer using the command @code{fit-frame-to-buffer}.
921
922 @deffn Command fit-frame-to-buffer &optional frame max-height min-height max-width min-width only
923 This command adjusts the size of @var{frame} to display the contents of
924 its buffer exactly. @var{frame} can be any live frame and defaults to
925 the selected one. Fitting is done only if @var{frame}'s root window is
926 live. The arguments @var{max-height}, @var{min-height}, @var{max-width}
927 and @var{min-width} specify bounds on the new total size of
928 @var{frame}'s root window. @var{min-height} and @var{min-width} default
929 to the values of @code{window-min-height} and @code{window-min-width}
930 respectively.
931
932 If the optional argument @var{only} is @code{vertically}, this function
933 may resize the frame vertically only. If @var{only} is
934 @code{horizontally}, it may resize the frame horizontally only.
935 @end deffn
936
937 The behavior of @code{fit-frame-to-buffer} can be controlled with the
938 help of the two options listed next.
939
940 @defopt fit-frame-to-buffer-margins
941 This option can be used to specify margins around frames to be fit by
942 @code{fit-frame-to-buffer}. Such margins can be useful to avoid, for
943 example, that such frames overlap the taskbar.
944
945 It specifies the numbers of pixels to be left free on the left, above,
946 the right, and below a frame that shall be fit. The default specifies
947 @code{nil} for each which means to use no margins. The value specified
948 here can be overridden for a specific frame by that frame's
949 @code{fit-frame-to-buffer-margins} parameter, if present.
950 @end defopt
951
952 @defopt fit-frame-to-buffer-sizes
953 This option specifies size boundaries for @code{fit-frame-to-buffer}.
954 It specifies the total maximum and minimum lines and maximum and minimum
955 columns of the root window of any frame that shall be fit to its buffer.
956 If any of these values is non-@code{nil}, it overrides the corresponding
957 argument of @code{fit-frame-to-buffer}.
958 @end defopt
959
960 @deffn Command shrink-window-if-larger-than-buffer &optional window
961 This command attempts to reduce @var{window}'s height as much as
962 possible while still showing its full buffer, but no less than
963 @code{window-min-height} lines. The return value is non-@code{nil} if
964 the window was resized, and @code{nil} otherwise. If @var{window} is
965 omitted or @code{nil}, it defaults to the selected window. Otherwise,
966 it should be a live window.
967
968 This command does nothing if the window is already too short to
969 display all of its buffer, or if any of the buffer is scrolled
970 off-screen, or if the window is the only live window in its frame.
971
972 This command calls @code{fit-window-to-buffer} (see above) to do its
973 work.
974 @end deffn
975
976
977 @cindex balancing window sizes
978 @deffn Command balance-windows &optional window-or-frame
979 This function balances windows in a way that gives more space to
980 full-width and/or full-height windows. If @var{window-or-frame}
981 specifies a frame, it balances all windows on that frame. If
982 @var{window-or-frame} specifies a window, it balances only that window
983 and its siblings (@pxref{Windows and Frames}).
984 @end deffn
985
986 @deffn Command balance-windows-area
987 This function attempts to give all windows on the selected frame
988 approximately the same share of the screen area. Full-width or
989 full-height windows are not given more space than other windows.
990 @end deffn
991
992 @cindex maximizing windows
993 @deffn Command maximize-window &optional window
994 This function attempts to make @var{window} as large as possible, in
995 both dimensions, without resizing its frame or deleting other windows.
996 If @var{window} is omitted or @code{nil}, it defaults to the selected
997 window.
998 @end deffn
999
1000 @cindex minimizing windows
1001 @deffn Command minimize-window &optional window
1002 This function attempts to make @var{window} as small as possible, in
1003 both dimensions, without deleting it or resizing its frame. If
1004 @var{window} is omitted or @code{nil}, it defaults to the selected
1005 window.
1006 @end deffn
1007
1008
1009 @node Preserving Window Sizes
1010 @section Preserving Window Sizes
1011 @cindex preserving window sizes
1012
1013 A window can get resized explicitly by using one of the functions from
1014 the preceding section or implicitly, for example, when resizing an
1015 adjacent window, when splitting or deleting a window (@pxref{Splitting
1016 Windows}, @pxref{Deleting Windows}) or when resizing the window's frame
1017 (@pxref{Size and Position}).
1018
1019 It is possible to avoid implicit resizing of a specific window when
1020 there are one or more other resizable windows on the same frame. For
1021 this purpose, Emacs must be advised to @dfn{preserve} the size of that
1022 window. There are two basic ways to do that.
1023
1024 @defvar window-size-fixed
1025 If this buffer-local variable is non-@code{nil}, the size of any window
1026 displaying the buffer cannot normally be changed. Deleting a window or
1027 changing the frame's size may still change the window's size, if there
1028 is no choice.
1029
1030 If the value is @code{height}, then only the window's height is fixed;
1031 if the value is @code{width}, then only the window's width is fixed.
1032 Any other non-@code{nil} value fixes both the width and the height.
1033
1034 If this variable is @code{nil}, this does not necessarily mean that any
1035 window showing the buffer can be resized in the desired direction. To
1036 determine that, use the function @code{window-resizable}.
1037 @xref{Resizing Windows}.
1038 @end defvar
1039
1040 Often @code{window-size-fixed} is overly aggressive because it inhibits
1041 any attempt to explicitly resize or split an affected window as well.
1042 This may even happen after the window has been resized implicitly, for
1043 example, when deleting an adjacent window or resizing the window's
1044 frame. The following function tries hard to never disallow resizing
1045 such a window explicitly:
1046
1047 @defun window-preserve-size &optional window horizontal preserve
1048 This function (un-)marks the height of window @var{window} as preserved
1049 for future resize operations. @var{window} must be a live window and
1050 defaults to the selected one. If the optional argument @var{horizontal}
1051 is non-@code{nil}, it (un-)marks the width of @var{window} as preserved.
1052
1053 If the optional argument @var{preserve} is @code{t}, this means to
1054 preserve the current height/width of @var{window}'s body. The
1055 height/width of @var{window} will change only if Emacs has no better
1056 choice. Resizing a window whose height/width is preserved by this
1057 function never throws an error.
1058
1059 If @var{preserve} is @code{nil}, this means to stop preserving the
1060 height/width of @var{window}, lifting any respective restraint induced
1061 by a previous call of this function for @var{window}. Calling
1062 @code{enlarge-window}, @code{shrink-window} or
1063 @code{fit-window-to-buffer} with @var{window} as argument may also
1064 remove the respective restraint.
1065 @end defun
1066
1067 @code{window-preserve-size} is currently invoked by the following
1068 functions:
1069
1070 @table @code
1071 @item fit-window-to-buffer
1072 If the optional argument @var{preserve-size} of that function
1073 (@pxref{Resizing Windows}) is non-@code{nil}, the size established by
1074 that function is preserved.
1075
1076 @item display-buffer
1077 If the @var{alist} argument of that function (@pxref{Choosing Window})
1078 contains a @code{preserve-size} entry, the size of the window produced
1079 by that function is preserved.
1080 @end table
1081
1082 @code{window-preserve-size} installs a window parameter (@pxref{Window
1083 Parameters}) called @code{preserved-size} which is consulted by the
1084 window resizing functions. This parameter will not prevent resizing the
1085 window when the window shows another buffer than the one when
1086 @code{window-preserve-size} was invoked or if its size has changed since
1087 then.
1088
1089 The following function can be used to check whether the height of a
1090 particular window is preserved:
1091
1092 @defun window-preserved-size &optional window horizontal
1093 This function returns the preserved height of window @var{window} in
1094 pixels. @var{window} must be a live window and defaults to the selected
1095 one. If the optional argument @var{horizontal} is non-@code{nil}, it
1096 returns the preserved width of @var{window}. It returns @code{nil} if
1097 the size of @var{window} is not preserved.
1098 @end defun
1099
1100
1101 @node Splitting Windows
1102 @section Splitting Windows
1103 @cindex splitting windows
1104 @cindex window splitting
1105
1106 This section describes functions for creating a new window by
1107 @dfn{splitting} an existing one.
1108
1109 @defun split-window &optional window size side pixelwise
1110 This function creates a new live window next to the window
1111 @var{window}. If @var{window} is omitted or @code{nil}, it defaults
1112 to the selected window. That window is split, and reduced in
1113 size. The space is taken up by the new window, which is returned.
1114
1115 The optional second argument @var{size} determines the sizes of
1116 @var{window} and/or the new window. If it is omitted or @code{nil},
1117 both windows are given equal sizes; if there is an odd line, it is
1118 allocated to the new window. If @var{size} is a positive number,
1119 @var{window} is given @var{size} lines (or columns, depending on the
1120 value of @var{side}). If @var{size} is a negative number, the new
1121 window is given @minus{}@var{size} lines (or columns).
1122
1123 If @var{size} is @code{nil}, this function obeys the variables
1124 @code{window-min-height} and @code{window-min-width} (@pxref{Window
1125 Sizes}). Thus, it signals an error if splitting would result in making
1126 a window smaller than those variables specify. However, a
1127 non-@code{nil} value for @var{size} causes those variables to be
1128 ignored; in that case, the smallest allowable window is considered to be
1129 one that has space for a text area one line tall and/or two columns
1130 wide.
1131
1132 Hence, if @var{size} is specified, it's the caller's responsibility to
1133 check whether the emanating windows are large enough to encompass all
1134 areas like a mode line or a scroll bar. The function
1135 @code{window-min-size} (@pxref{Window Sizes}) can be used to determine
1136 the minimum requirements of @var{window} in this regard. Since the new
1137 window usually inherits areas like the mode line or the scroll bar
1138 from @var{window}, that function is also a good guess for the minimum
1139 size of the new window. The caller should specify a smaller size only
1140 if it correspondingly removes an inherited area before the next
1141 redisplay.
1142
1143 The optional third argument @var{side} determines the position of the
1144 new window relative to @var{window}. If it is @code{nil} or
1145 @code{below}, the new window is placed below @var{window}. If it is
1146 @code{above}, the new window is placed above @var{window}. In both
1147 these cases, @var{size} specifies a total window height, in lines.
1148
1149 If @var{side} is @code{t} or @code{right}, the new window is placed on
1150 the right of @var{window}. If @var{side} is @code{left}, the new
1151 window is placed on the left of @var{window}. In both these cases,
1152 @var{size} specifies a total window width, in columns.
1153
1154 The optional fourth argument @var{pixelwise}, if non-@code{nil}, means
1155 to interpret @var{size} in units of pixels, instead of lines and
1156 columns.
1157
1158 If @var{window} is a live window, the new window inherits various
1159 properties from it, including margins and scroll bars. If
1160 @var{window} is an internal window, the new window inherits the
1161 properties of the window selected within @var{window}'s frame.
1162
1163 The behavior of this function may be altered by the window parameters
1164 of @var{window}, so long as the variable
1165 @code{ignore-window-parameters} is @code{nil}. If the value of
1166 the @code{split-window} window parameter is @code{t}, this function
1167 ignores all other window parameters. Otherwise, if the value of the
1168 @code{split-window} window parameter is a function, that function is
1169 called with the arguments @var{window}, @var{size}, and @var{side}, in
1170 lieu of the usual action of @code{split-window}. Otherwise, this
1171 function obeys the @code{window-atom} or @code{window-side} window
1172 parameter, if any. @xref{Window Parameters}.
1173 @end defun
1174
1175 As an example, here is a sequence of @code{split-window} calls that
1176 yields the window configuration discussed in @ref{Windows and Frames}.
1177 This example demonstrates splitting a live window as well as splitting
1178 an internal window. We begin with a frame containing a single window
1179 (a live root window), which we denote by @var{W4}. Calling
1180 @code{(split-window W4)} yields this window configuration:
1181
1182 @smallexample
1183 @group
1184 ______________________________________
1185 | ____________________________________ |
1186 || ||
1187 || ||
1188 || ||
1189 ||_________________W4_________________||
1190 | ____________________________________ |
1191 || ||
1192 || ||
1193 || ||
1194 ||_________________W5_________________||
1195 |__________________W3__________________|
1196
1197 @end group
1198 @end smallexample
1199
1200 @noindent
1201 The @code{split-window} call has created a new live window, denoted by
1202 @var{W5}. It has also created a new internal window, denoted by
1203 @var{W3}, which becomes the root window and the parent of both
1204 @var{W4} and @var{W5}.
1205
1206 Next, we call @code{(split-window W3 nil 'left)}, passing the
1207 internal window @var{W3} as the argument. The result:
1208
1209 @smallexample
1210 @group
1211 ______________________________________
1212 | ______ ____________________________ |
1213 || || __________________________ ||
1214 || ||| |||
1215 || ||| |||
1216 || ||| |||
1217 || |||____________W4____________|||
1218 || || __________________________ ||
1219 || ||| |||
1220 || ||| |||
1221 || |||____________W5____________|||
1222 ||__W2__||_____________W3_____________ |
1223 |__________________W1__________________|
1224 @end group
1225 @end smallexample
1226
1227 @noindent
1228 A new live window @var{W2} is created, to the left of the internal
1229 window @var{W3}. A new internal window @var{W1} is created, becoming
1230 the new root window.
1231
1232 For interactive use, Emacs provides two commands which always split
1233 the selected window. These call @code{split-window} internally.
1234
1235 @deffn Command split-window-right &optional size
1236 This function splits the selected window into two side-by-side
1237 windows, putting the selected window on the left. If @var{size} is
1238 positive, the left window gets @var{size} columns; if @var{size} is
1239 negative, the right window gets @minus{}@var{size} columns.
1240 @end deffn
1241
1242 @deffn Command split-window-below &optional size
1243 This function splits the selected window into two windows, one above
1244 the other, leaving the upper window selected. If @var{size} is
1245 positive, the upper window gets @var{size} lines; if @var{size} is
1246 negative, the lower window gets @minus{}@var{size} lines.
1247 @end deffn
1248
1249 @defopt split-window-keep-point
1250 If the value of this variable is non-@code{nil} (the default),
1251 @code{split-window-below} behaves as described above.
1252
1253 If it is @code{nil}, @code{split-window-below} adjusts point in each
1254 of the two windows to minimize redisplay. (This is useful on slow
1255 terminals.) It selects whichever window contains the screen line that
1256 point was previously on. Note that this only affects
1257 @code{split-window-below}, not the lower-level @code{split-window}
1258 function.
1259 @end defopt
1260
1261
1262 @node Deleting Windows
1263 @section Deleting Windows
1264 @cindex deleting windows
1265
1266 @dfn{Deleting} a window removes it from the frame's window tree. If
1267 the window is a live window, it disappears from the screen. If the
1268 window is an internal window, its child windows are deleted too.
1269
1270 Even after a window is deleted, it continues to exist as a Lisp
1271 object, until there are no more references to it. Window deletion can
1272 be reversed, by restoring a saved window configuration (@pxref{Window
1273 Configurations}).
1274
1275 @deffn Command delete-window &optional window
1276 This function removes @var{window} from display and returns
1277 @code{nil}. If @var{window} is omitted or @code{nil}, it defaults to
1278 the selected window. If deleting the window would leave no more
1279 windows in the window tree (e.g., if it is the only live window in the
1280 frame), an error is signaled.
1281
1282 By default, the space taken up by @var{window} is given to one of its
1283 adjacent sibling windows, if any. However, if the variable
1284 @code{window-combination-resize} is non-@code{nil}, the space is
1285 proportionally distributed among any remaining windows in the same
1286 window combination. @xref{Recombining Windows}.
1287
1288 The behavior of this function may be altered by the window parameters
1289 of @var{window}, so long as the variable
1290 @code{ignore-window-parameters} is @code{nil}. If the value of
1291 the @code{delete-window} window parameter is @code{t}, this function
1292 ignores all other window parameters. Otherwise, if the value of the
1293 @code{delete-window} window parameter is a function, that function is
1294 called with the argument @var{window}, in lieu of the usual action of
1295 @code{delete-window}. Otherwise, this function obeys the
1296 @code{window-atom} or @code{window-side} window parameter, if any.
1297 @xref{Window Parameters}.
1298 @end deffn
1299
1300 @deffn Command delete-other-windows &optional window
1301 This function makes @var{window} fill its frame, by deleting other
1302 windows as necessary. If @var{window} is omitted or @code{nil}, it
1303 defaults to the selected window. The return value is @code{nil}.
1304
1305 The behavior of this function may be altered by the window parameters
1306 of @var{window}, so long as the variable
1307 @code{ignore-window-parameters} is @code{nil}. If the value of
1308 the @code{delete-other-windows} window parameter is @code{t}, this
1309 function ignores all other window parameters. Otherwise, if the value
1310 of the @code{delete-other-windows} window parameter is a function,
1311 that function is called with the argument @var{window}, in lieu of the
1312 usual action of @code{delete-other-windows}. Otherwise, this function
1313 obeys the @code{window-atom} or @code{window-side} window parameter,
1314 if any. @xref{Window Parameters}.
1315 @end deffn
1316
1317 @deffn Command delete-windows-on &optional buffer-or-name frame
1318 This function deletes all windows showing @var{buffer-or-name}, by
1319 calling @code{delete-window} on those windows. @var{buffer-or-name}
1320 should be a buffer, or the name of a buffer; if omitted or @code{nil},
1321 it defaults to the current buffer. If there are no windows showing
1322 the specified buffer, this function does nothing. If the specified
1323 buffer is a minibuffer, an error is signaled.
1324
1325 If there is a dedicated window showing the buffer, and that window is
1326 the only one on its frame, this function also deletes that frame if it
1327 is not the only frame on the terminal.
1328
1329 The optional argument @var{frame} specifies which frames to operate
1330 on:
1331
1332 @itemize @bullet
1333 @item @code{nil}
1334 means operate on all frames.
1335 @item @code{t}
1336 means operate on the selected frame.
1337 @item @code{visible}
1338 means operate on all visible frames.
1339 @item @code{0}
1340 means operate on all visible or iconified frames.
1341 @item A frame
1342 means operate on that frame.
1343 @end itemize
1344
1345 Note that this argument does not have the same meaning as in other
1346 functions which scan all live windows (@pxref{Cyclic Window
1347 Ordering}). Specifically, the meanings of @code{t} and @code{nil} here
1348 are the opposite of what they are in those other functions.
1349 @end deffn
1350
1351
1352 @node Recombining Windows
1353 @section Recombining Windows
1354 @cindex recombining windows
1355 @cindex windows, recombining
1356
1357 When deleting the last sibling of a window @var{W}, its parent window
1358 is deleted too, with @var{W} replacing it in the window tree. This
1359 means that @var{W} must be recombined with its parent's siblings to
1360 form a new window combination (@pxref{Windows and Frames}). In some
1361 occasions, deleting a live window may even entail the deletion of two
1362 internal windows.
1363
1364 @smallexample
1365 @group
1366 ______________________________________
1367 | ______ ____________________________ |
1368 || || __________________________ ||
1369 || ||| ___________ ___________ |||
1370 || |||| || ||||
1371 || ||||____W6_____||_____W7____||||
1372 || |||____________W4____________|||
1373 || || __________________________ ||
1374 || ||| |||
1375 || ||| |||
1376 || |||____________W5____________|||
1377 ||__W2__||_____________W3_____________ |
1378 |__________________W1__________________|
1379
1380 @end group
1381 @end smallexample
1382
1383 @noindent
1384 Deleting @var{W5} in this configuration normally causes the deletion of
1385 @var{W3} and @var{W4}. The remaining live windows @var{W2},
1386 @var{W6} and @var{W7} are recombined to form a new horizontal
1387 combination with parent @var{W1}.
1388
1389 Sometimes, however, it makes sense to not delete a parent window like
1390 @var{W4}. In particular, a parent window should not be removed when it
1391 was used to preserve a combination embedded in a combination of the same
1392 type. Such embeddings make sense to assure that when you split a window
1393 and subsequently delete the new window, Emacs reestablishes the layout
1394 of the associated frame as it existed before the splitting.
1395
1396 Consider a scenario starting with two live windows @var{W2} and
1397 @var{W3} and their parent @var{W1}.
1398
1399 @smallexample
1400 @group
1401 ______________________________________
1402 | ____________________________________ |
1403 || ||
1404 || ||
1405 || ||
1406 || ||
1407 || ||
1408 || ||
1409 ||_________________W2_________________||
1410 | ____________________________________ |
1411 || ||
1412 || ||
1413 ||_________________W3_________________||
1414 |__________________W1__________________|
1415
1416 @end group
1417 @end smallexample
1418
1419 @noindent
1420 Split @var{W2} to make a new window @var{W4} as follows.
1421
1422 @smallexample
1423 @group
1424 ______________________________________
1425 | ____________________________________ |
1426 || ||
1427 || ||
1428 ||_________________W2_________________||
1429 | ____________________________________ |
1430 || ||
1431 || ||
1432 ||_________________W4_________________||
1433 | ____________________________________ |
1434 || ||
1435 || ||
1436 ||_________________W3_________________||
1437 |__________________W1__________________|
1438
1439 @end group
1440 @end smallexample
1441
1442 @noindent
1443 Now, when enlarging a window vertically, Emacs tries to obtain the
1444 corresponding space from its lower sibling, provided such a window
1445 exists. In our scenario, enlarging @var{W4} will steal space from
1446 @var{W3}.
1447
1448 @smallexample
1449 @group
1450 ______________________________________
1451 | ____________________________________ |
1452 || ||
1453 || ||
1454 ||_________________W2_________________||
1455 | ____________________________________ |
1456 || ||
1457 || ||
1458 || ||
1459 || ||
1460 ||_________________W4_________________||
1461 | ____________________________________ |
1462 ||_________________W3_________________||
1463 |__________________W1__________________|
1464
1465 @end group
1466 @end smallexample
1467
1468 @noindent
1469 Deleting @var{W4} will now give its entire space to @var{W2},
1470 including the space earlier stolen from @var{W3}.
1471
1472 @smallexample
1473 @group
1474 ______________________________________
1475 | ____________________________________ |
1476 || ||
1477 || ||
1478 || ||
1479 || ||
1480 || ||
1481 || ||
1482 || ||
1483 || ||
1484 ||_________________W2_________________||
1485 | ____________________________________ |
1486 ||_________________W3_________________||
1487 |__________________W1__________________|
1488
1489 @end group
1490 @end smallexample
1491
1492 @noindent
1493 This can be counterintuitive, in particular if @var{W4} were used for
1494 displaying a buffer only temporarily (@pxref{Temporary Displays}), and
1495 you want to continue working with the initial layout.
1496
1497 The behavior can be fixed by making a new parent window when splitting
1498 @var{W2}. The variable described next allows that to be done.
1499
1500 @defopt window-combination-limit
1501 This variable controls whether splitting a window shall make a new
1502 parent window. The following values are recognized:
1503
1504 @table @code
1505 @item nil
1506 This means that the new live window is allowed to share the existing
1507 parent window, if one exists, provided the split occurs in the same
1508 direction as the existing window combination (otherwise, a new internal
1509 window is created anyway).
1510
1511 @item window-size
1512 In this case @code{display-buffer} makes a new parent window if it is
1513 passed a @code{window-height} or @code{window-width} entry in the
1514 @var{alist} argument (@pxref{Display Action Functions}).
1515
1516 @item temp-buffer
1517 This value causes the creation of a new parent window when a window is
1518 split for showing a temporary buffer (@pxref{Temporary Displays}) only.
1519
1520 @item display-buffer
1521 This means that when @code{display-buffer} (@pxref{Choosing Window})
1522 splits a window it always makes a new parent window.
1523
1524 @item t
1525 In this case a new parent window is always created when splitting a
1526 window. Thus, if the value of this variable is at all times @code{t},
1527 then at all times every window tree is a binary tree (a tree where each
1528 window except the root window has exactly one sibling).
1529 @end table
1530
1531 The default is @code{nil}. Other values are reserved for future use.
1532
1533 If, as a consequence of this variable's setting, @code{split-window}
1534 makes a new parent window, it also calls
1535 @code{set-window-combination-limit} (see below) on the newly-created
1536 internal window. This affects how the window tree is rearranged when
1537 the child windows are deleted (see below).
1538 @end defopt
1539
1540 If @code{window-combination-limit} is @code{t}, splitting @var{W2} in
1541 the initial configuration of our scenario would have produced this:
1542
1543 @smallexample
1544 @group
1545 ______________________________________
1546 | ____________________________________ |
1547 || __________________________________ ||
1548 ||| |||
1549 |||________________W2________________|||
1550 || __________________________________ ||
1551 ||| |||
1552 |||________________W4________________|||
1553 ||_________________W5_________________||
1554 | ____________________________________ |
1555 || ||
1556 || ||
1557 ||_________________W3_________________||
1558 |__________________W1__________________|
1559
1560 @end group
1561 @end smallexample
1562
1563 @noindent
1564 A new internal window @var{W5} has been created; its children are
1565 @var{W2} and the new live window @var{W4}. Now, @var{W2} is the only
1566 sibling of @var{W4}, so enlarging @var{W4} will try to shrink
1567 @var{W2}, leaving @var{W3} unaffected. Observe that @var{W5}
1568 represents a vertical combination of two windows embedded in the
1569 vertical combination @var{W1}.
1570
1571 @cindex window combination limit
1572 @defun set-window-combination-limit window limit
1573 This function sets the @dfn{combination limit} of the window
1574 @var{window} to @var{limit}. This value can be retrieved via the
1575 function @code{window-combination-limit}. See below for its effects;
1576 note that it is only meaningful for internal windows. The
1577 @code{split-window} function automatically calls this function, passing
1578 it @code{t} as @var{limit}, provided the value of the variable
1579 @code{window-combination-limit} is @code{t} when it is called.
1580 @end defun
1581
1582 @defun window-combination-limit window
1583 This function returns the combination limit for @var{window}.
1584
1585 The combination limit is meaningful only for an internal window. If it
1586 is @code{nil}, then Emacs is allowed to automatically delete
1587 @var{window}, in response to a window deletion, in order to group the
1588 child windows of @var{window} with its sibling windows to form a new
1589 window combination. If the combination limit is @code{t}, the child
1590 windows of @var{window} are never automatically recombined with its
1591 siblings.
1592
1593 If, in the configuration shown at the beginning of this section, the
1594 combination limit of @var{W4} (the parent window of @var{W6} and
1595 @var{W7}) is @code{t}, deleting @var{W5} will not implicitly delete
1596 @var{W4} too.
1597 @end defun
1598
1599 Alternatively, the problems sketched above can be avoided by always
1600 resizing all windows in the same combination whenever one of its windows
1601 is split or deleted. This also permits splitting windows that would be
1602 otherwise too small for such an operation.
1603
1604 @defopt window-combination-resize
1605 If this variable is @code{nil}, @code{split-window} can only split a
1606 window (denoted by @var{window}) if @var{window}'s screen area is large
1607 enough to accommodate both itself and the new window.
1608
1609 If this variable is @code{t}, @code{split-window} tries to resize all
1610 windows that are part of the same combination as @var{window}, in order
1611 to accommodate the new window. In particular, this may allow
1612 @code{split-window} to succeed even if @var{window} is a fixed-size
1613 window or too small to ordinarily split. Furthermore, subsequently
1614 resizing or deleting @var{window} may resize all other windows in its
1615 combination.
1616
1617 The default is @code{nil}. Other values are reserved for future use.
1618 The value of this variable is ignored when
1619 @code{window-combination-limit} is non-@code{nil}.
1620 @end defopt
1621
1622 To illustrate the effect of @code{window-combination-resize}, consider
1623 the following frame layout.
1624
1625 @smallexample
1626 @group
1627 ______________________________________
1628 | ____________________________________ |
1629 || ||
1630 || ||
1631 || ||
1632 || ||
1633 ||_________________W2_________________||
1634 | ____________________________________ |
1635 || ||
1636 || ||
1637 || ||
1638 || ||
1639 ||_________________W3_________________||
1640 |__________________W1__________________|
1641
1642 @end group
1643 @end smallexample
1644
1645 @noindent
1646 If @code{window-combination-resize} is @code{nil}, splitting window
1647 @var{W3} leaves the size of @var{W2} unchanged:
1648
1649 @smallexample
1650 @group
1651 ______________________________________
1652 | ____________________________________ |
1653 || ||
1654 || ||
1655 || ||
1656 || ||
1657 ||_________________W2_________________||
1658 | ____________________________________ |
1659 || ||
1660 ||_________________W3_________________||
1661 | ____________________________________ |
1662 || ||
1663 ||_________________W4_________________||
1664 |__________________W1__________________|
1665
1666 @end group
1667 @end smallexample
1668
1669 @noindent
1670 If @code{window-combination-resize} is @code{t}, splitting @var{W3}
1671 instead leaves all three live windows with approximately the same
1672 height:
1673
1674 @smallexample
1675 @group
1676 ______________________________________
1677 | ____________________________________ |
1678 || ||
1679 || ||
1680 ||_________________W2_________________||
1681 | ____________________________________ |
1682 || ||
1683 || ||
1684 ||_________________W3_________________||
1685 | ____________________________________ |
1686 || ||
1687 || ||
1688 ||_________________W4_________________||
1689 |__________________W1__________________|
1690
1691 @end group
1692 @end smallexample
1693
1694 @noindent
1695 Deleting any of the live windows @var{W2}, @var{W3} or @var{W4} will
1696 distribute its space proportionally among the two remaining live
1697 windows.
1698
1699
1700 @node Selecting Windows
1701 @section Selecting Windows
1702 @cindex selecting a window
1703
1704 @defun select-window window &optional norecord
1705 This function makes @var{window} the selected window and the window
1706 selected within its frame (@pxref{Basic Windows}) and selects that
1707 frame. It also makes @var{window}'s buffer (@pxref{Buffers and
1708 Windows}) current and sets that buffer's value of @code{point} to the
1709 value of @code{window-point} (@pxref{Window Point}) in @var{window}.
1710 @var{window} must be a live window. The return value is @var{window}.
1711
1712 By default, this function also moves @var{window}'s buffer to the front
1713 of the buffer list (@pxref{Buffer List}), and makes @var{window} the
1714 most recently selected window. However, if the optional argument
1715 @var{norecord} is non-@code{nil}, these additional actions are omitted.
1716
1717 This function runs @code{buffer-list-update-hook} (@pxref{Buffer List})
1718 unless @var{norecord} is non-@code{nil}. Note that applications and
1719 internal routines often temporarily select a window in order to simplify
1720 coding. As a rule, such selections (including those made by the macros
1721 @code{save-selected-window} and @code{with-selected-window} below) are
1722 not recorded thus avoiding to pollute @code{buffer-list-update-hook}.
1723 Selections that really count are those causing a visible change in
1724 the next redisplay of @var{window}'s frame and should be always
1725 recorded. This also means that to run a function each time a window
1726 gets selected, putting it on @code{buffer-list-update-hook} should be
1727 the right choice.
1728 @end defun
1729
1730 @cindex most recently selected windows
1731 The sequence of calls to @code{select-window} with a non-@code{nil}
1732 @var{norecord} argument determines an ordering of windows by their
1733 selection time. The function @code{get-lru-window} can be used to
1734 retrieve the least recently selected live window (@pxref{Cyclic Window
1735 Ordering}).
1736
1737 @defmac save-selected-window forms@dots{}
1738 This macro records the selected frame, as well as the selected window
1739 of each frame, executes @var{forms} in sequence, then restores the
1740 earlier selected frame and windows. It also saves and restores the
1741 current buffer. It returns the value of the last form in @var{forms}.
1742
1743 This macro does not save or restore anything about the sizes,
1744 arrangement or contents of windows; therefore, if @var{forms} change
1745 them, the change persists. If the previously selected window of some
1746 frame is no longer live at the time of exit from @var{forms}, that
1747 frame's selected window is left alone. If the previously selected
1748 window is no longer live, then whatever window is selected at the end of
1749 @var{forms} remains selected. The current buffer is restored if and
1750 only if it is still live when exiting @var{forms}.
1751
1752 This macro changes neither the ordering of recently selected windows nor
1753 the buffer list.
1754 @end defmac
1755
1756 @defmac with-selected-window window forms@dots{}
1757 This macro selects @var{window}, executes @var{forms} in sequence, then
1758 restores the previously selected window and current buffer. The ordering
1759 of recently selected windows and the buffer list remain unchanged unless
1760 you deliberately change them within @var{forms}; for example, by calling
1761 @code{select-window} with argument @var{norecord} @code{nil}.
1762
1763 This macro does not change the order of recently selected windows or
1764 the buffer list.
1765 @end defmac
1766
1767 @defun frame-selected-window &optional frame
1768 This function returns the window on @var{frame} that is selected
1769 within that frame. @var{frame} should be a live frame; if omitted or
1770 @code{nil}, it defaults to the selected frame.
1771 @end defun
1772
1773 @defun set-frame-selected-window frame window &optional norecord
1774 This function makes @var{window} the window selected within the frame
1775 @var{frame}. @var{frame} should be a live frame; if @code{nil}, it
1776 defaults to the selected frame. @var{window} should be a live window;
1777 if @code{nil}, it defaults to the selected window.
1778
1779 If @var{frame} is the selected frame, this makes @var{window} the
1780 selected window.
1781
1782 If the optional argument @var{norecord} is non-@code{nil}, this
1783 function does not alter the list of most recently selected windows,
1784 nor the buffer list.
1785 @end defun
1786
1787 @cindex window use time
1788 @cindex use time of window
1789 @cindex window order by time of last use
1790 @defun window-use-time &optional window
1791 This functions returns the use time of window @var{window}.
1792 @var{window} must be a live window and defaults to the selected one.
1793
1794 The @dfn{use time} of a window is not really a time value, but an
1795 integer that does increase monotonically with each call of
1796 @code{select-window} with a @code{nil} @var{norecord} argument. The
1797 window with the lowest use time is usually called the least recently
1798 used window while the window with the highest use time is called the
1799 most recently used one (@pxref{Cyclic Window Ordering}).
1800 @end defun
1801
1802
1803 @node Cyclic Window Ordering
1804 @section Cyclic Ordering of Windows
1805 @cindex cyclic ordering of windows
1806 @cindex ordering of windows, cyclic
1807 @cindex window ordering, cyclic
1808
1809 When you use the command @kbd{C-x o} (@code{other-window}) to select
1810 some other window, it moves through live windows in a specific order.
1811 For any given configuration of windows, this order never varies. It
1812 is called the @dfn{cyclic ordering of windows}.
1813
1814 The ordering is determined by a depth-first traversal of each frame's
1815 window tree, retrieving the live windows which are the leaf nodes of the
1816 tree (@pxref{Windows and Frames}). If the minibuffer is active, the
1817 minibuffer window is included too. The ordering is cyclic, so the last
1818 window in the sequence is followed by the first one.
1819
1820 @defun next-window &optional window minibuf all-frames
1821 @cindex minibuffer window, and @code{next-window}
1822 This function returns a live window, the one following @var{window} in
1823 the cyclic ordering of windows. @var{window} should be a live window;
1824 if omitted or @code{nil}, it defaults to the selected window.
1825
1826 The optional argument @var{minibuf} specifies whether minibuffer windows
1827 should be included in the cyclic ordering. Normally, when @var{minibuf}
1828 is @code{nil}, a minibuffer window is included only if it is currently
1829 active; this matches the behavior of @kbd{C-x o}. (Note that a
1830 minibuffer window is active as long as its minibuffer is in use; see
1831 @ref{Minibuffers}).
1832
1833 If @var{minibuf} is @code{t}, the cyclic ordering includes all
1834 minibuffer windows. If @var{minibuf} is neither @code{t} nor
1835 @code{nil}, minibuffer windows are not included even if they are active.
1836
1837 The optional argument @var{all-frames} specifies which frames to
1838 consider:
1839
1840 @itemize @bullet
1841 @item @code{nil}
1842 means to consider windows on @var{window}'s frame. If the minibuffer
1843 window is considered (as specified by the @var{minibuf} argument),
1844 then frames that share the minibuffer window are considered too.
1845
1846 @item @code{t}
1847 means to consider windows on all existing frames.
1848
1849 @item @code{visible}
1850 means to consider windows on all visible frames.
1851
1852 @item 0
1853 means to consider windows on all visible or iconified frames.
1854
1855 @item A frame
1856 means to consider windows on that specific frame.
1857
1858 @item Anything else
1859 means to consider windows on @var{window}'s frame, and no others.
1860 @end itemize
1861
1862 If more than one frame is considered, the cyclic ordering is obtained
1863 by appending the orderings for those frames, in the same order as the
1864 list of all live frames (@pxref{Finding All Frames}).
1865 @end defun
1866
1867 @defun previous-window &optional window minibuf all-frames
1868 This function returns a live window, the one preceding @var{window} in
1869 the cyclic ordering of windows. The other arguments are handled like
1870 in @code{next-window}.
1871 @end defun
1872
1873 @deffn Command other-window count &optional all-frames
1874 This function selects a live window, one @var{count} places from the
1875 selected window in the cyclic ordering of windows. If @var{count} is
1876 a positive number, it skips @var{count} windows forwards; if
1877 @var{count} is negative, it skips @minus{}@var{count} windows
1878 backwards; if @var{count} is zero, that simply re-selects the selected
1879 window. When called interactively, @var{count} is the numeric prefix
1880 argument.
1881
1882 The optional argument @var{all-frames} has the same meaning as in
1883 @code{next-window}, like a @code{nil} @var{minibuf} argument to
1884 @code{next-window}.
1885
1886 This function does not select a window that has a non-@code{nil}
1887 @code{no-other-window} window parameter (@pxref{Window Parameters}).
1888 @end deffn
1889
1890 @defun walk-windows fun &optional minibuf all-frames
1891 This function calls the function @var{fun} once for each live window,
1892 with the window as the argument.
1893
1894 It follows the cyclic ordering of windows. The optional arguments
1895 @var{minibuf} and @var{all-frames} specify the set of windows
1896 included; these have the same arguments as in @code{next-window}. If
1897 @var{all-frames} specifies a frame, the first window walked is the
1898 first window on that frame (the one returned by
1899 @code{frame-first-window}), not necessarily the selected window.
1900
1901 If @var{fun} changes the window configuration by splitting or deleting
1902 windows, that does not alter the set of windows walked, which is
1903 determined prior to calling @var{fun} for the first time.
1904 @end defun
1905
1906 @defun one-window-p &optional no-mini all-frames
1907 This function returns @code{t} if the selected window is the only live
1908 window, and @code{nil} otherwise.
1909
1910 If the minibuffer window is active, it is normally considered (so that
1911 this function returns @code{nil}). However, if the optional argument
1912 @var{no-mini} is non-@code{nil}, the minibuffer window is ignored even
1913 if active. The optional argument @var{all-frames} has the same
1914 meaning as for @code{next-window}.
1915 @end defun
1916
1917 @cindex finding windows
1918 The following functions return a window which satisfies some
1919 criterion, without selecting it:
1920
1921 @cindex least recently used window
1922 @defun get-lru-window &optional all-frames dedicated not-selected
1923 This function returns a live window which is heuristically the least
1924 recently used. The optional argument @var{all-frames} has
1925 the same meaning as in @code{next-window}.
1926
1927 If any full-width windows are present, only those windows are
1928 considered. A minibuffer window is never a candidate. A dedicated
1929 window (@pxref{Dedicated Windows}) is never a candidate unless the
1930 optional argument @var{dedicated} is non-@code{nil}. The selected
1931 window is never returned, unless it is the only candidate. However, if
1932 the optional argument @var{not-selected} is non-@code{nil}, this
1933 function returns @code{nil} in that case.
1934 @end defun
1935
1936 @cindex most recently used window
1937 @defun get-mru-window &optional all-frames dedicated not-selected
1938 This function is like @code{get-lru-window}, but it returns the most
1939 recently used window instead. The meaning of the arguments is the
1940 same as described for @code{get-lru-window}.
1941 @end defun
1942
1943 @cindex largest window
1944 @defun get-largest-window &optional all-frames dedicated not-selected
1945 This function returns the window with the largest area (height times
1946 width). The optional argument @var{all-frames} specifies the windows to
1947 search, and has the same meaning as in @code{next-window}.
1948
1949 A minibuffer window is never a candidate. A dedicated window
1950 (@pxref{Dedicated Windows}) is never a candidate unless the optional
1951 argument @var{dedicated} is non-@code{nil}. The selected window is not
1952 a candidate if the optional argument @var{not-selected} is
1953 non-@code{nil}. If the optional argument @var{not-selected} is
1954 non-@code{nil} and the selected window is the only candidate, this
1955 function returns @code{nil}.
1956
1957 If there are two candidate windows of the same size, this function
1958 prefers the one that comes first in the cyclic ordering of windows,
1959 starting from the selected window.
1960 @end defun
1961
1962 @cindex window that satisfies a predicate
1963 @cindex conditional selection of windows
1964 @defun get-window-with-predicate predicate &optional minibuf all-frames default
1965 This function calls the function @var{predicate} for each of the
1966 windows in the cyclic order of windows in turn, passing it the window
1967 as an argument. If the predicate returns non-@code{nil} for any
1968 window, this function stops and returns that window. If no such
1969 window is found, the return value is @var{default} (which defaults to
1970 @code{nil}).
1971
1972 The optional arguments @var{minibuf} and @var{all-frames} specify the
1973 windows to search, and have the same meanings as in
1974 @code{next-window}.
1975 @end defun
1976
1977
1978 @node Buffers and Windows
1979 @section Buffers and Windows
1980 @cindex examining windows
1981 @cindex windows, controlling precisely
1982 @cindex buffers, controlled in windows
1983
1984 This section describes low-level functions for examining and setting
1985 the contents of windows. @xref{Switching Buffers}, for higher-level
1986 functions for displaying a specific buffer in a window.
1987
1988 @defun window-buffer &optional window
1989 This function returns the buffer that @var{window} is displaying. If
1990 @var{window} is omitted or @code{nil} it defaults to the selected
1991 window. If @var{window} is an internal window, this function returns
1992 @code{nil}.
1993 @end defun
1994
1995 @defun set-window-buffer window buffer-or-name &optional keep-margins
1996 This function makes @var{window} display @var{buffer-or-name}.
1997 @var{window} should be a live window; if @code{nil}, it defaults to
1998 the selected window. @var{buffer-or-name} should be a buffer, or the
1999 name of an existing buffer. This function does not change which
2000 window is selected, nor does it directly change which buffer is
2001 current (@pxref{Current Buffer}). Its return value is @code{nil}.
2002
2003 If @var{window} is @dfn{strongly dedicated} to a buffer and
2004 @var{buffer-or-name} does not specify that buffer, this function
2005 signals an error. @xref{Dedicated Windows}.
2006
2007 By default, this function resets @var{window}'s position, display
2008 margins, fringe widths, and scroll bar settings, based on the local
2009 variables in the specified buffer. However, if the optional argument
2010 @var{keep-margins} is non-@code{nil}, it leaves the display margins
2011 and fringe widths unchanged.
2012
2013 When writing an application, you should normally use the higher-level
2014 functions described in @ref{Switching Buffers}, instead of calling
2015 @code{set-window-buffer} directly.
2016
2017 This runs @code{window-scroll-functions}, followed by
2018 @code{window-configuration-change-hook}. @xref{Window Hooks}.
2019 @end defun
2020
2021 @defvar buffer-display-count
2022 This buffer-local variable records the number of times a buffer has been
2023 displayed in a window. It is incremented each time
2024 @code{set-window-buffer} is called for the buffer.
2025 @end defvar
2026
2027 @defvar buffer-display-time
2028 This buffer-local variable records the time at which a buffer was last
2029 displayed in a window. The value is @code{nil} if the buffer has
2030 never been displayed. It is updated each time
2031 @code{set-window-buffer} is called for the buffer, with the value
2032 returned by @code{current-time} (@pxref{Time of Day}).
2033 @end defvar
2034
2035 @defun get-buffer-window &optional buffer-or-name all-frames
2036 This function returns the first window displaying @var{buffer-or-name}
2037 in the cyclic ordering of windows, starting from the selected window
2038 (@pxref{Cyclic Window Ordering}). If no such window exists, the
2039 return value is @code{nil}.
2040
2041 @var{buffer-or-name} should be a buffer or the name of a buffer; if
2042 omitted or @code{nil}, it defaults to the current buffer. The
2043 optional argument @var{all-frames} specifies which windows to
2044 consider:
2045
2046 @itemize @bullet
2047 @item
2048 @code{t} means consider windows on all existing frames.
2049 @item
2050 @code{visible} means consider windows on all visible frames.
2051 @item
2052 0 means consider windows on all visible or iconified frames.
2053 @item
2054 A frame means consider windows on that frame only.
2055 @item
2056 Any other value means consider windows on the selected frame.
2057 @end itemize
2058
2059 Note that these meanings differ slightly from those of the
2060 @var{all-frames} argument to @code{next-window} (@pxref{Cyclic Window
2061 Ordering}). This function may be changed in a future version of Emacs
2062 to eliminate this discrepancy.
2063 @end defun
2064
2065 @defun get-buffer-window-list &optional buffer-or-name minibuf all-frames
2066 This function returns a list of all windows currently displaying
2067 @var{buffer-or-name}. @var{buffer-or-name} should be a buffer or the
2068 name of an existing buffer. If omitted or @code{nil}, it defaults to
2069 the current buffer. If the currently selected window displays
2070 @var{buffer-or-name}, it will be the first in the list returned by
2071 this function.
2072
2073 The arguments @var{minibuf} and @var{all-frames} have the same
2074 meanings as in the function @code{next-window} (@pxref{Cyclic Window
2075 Ordering}). Note that the @var{all-frames} argument does @emph{not}
2076 behave exactly like in @code{get-buffer-window}.
2077 @end defun
2078
2079 @deffn Command replace-buffer-in-windows &optional buffer-or-name
2080 This command replaces @var{buffer-or-name} with some other buffer, in
2081 all windows displaying it. @var{buffer-or-name} should be a buffer, or
2082 the name of an existing buffer; if omitted or @code{nil}, it defaults to
2083 the current buffer.
2084
2085 The replacement buffer in each window is chosen via
2086 @code{switch-to-prev-buffer} (@pxref{Window History}). Any dedicated
2087 window displaying @var{buffer-or-name} is deleted if possible
2088 (@pxref{Dedicated Windows}). If such a window is the only window on its
2089 frame and there are other frames on the same terminal, the frame is
2090 deleted as well. If the dedicated window is the only window on the only
2091 frame on its terminal, the buffer is replaced anyway.
2092 @end deffn
2093
2094
2095 @node Switching Buffers
2096 @section Switching to a Buffer in a Window
2097 @cindex switching to a buffer
2098 @cindex displaying a buffer
2099
2100 This section describes high-level functions for switching to a specified
2101 buffer in some window. In general, ``switching to a buffer'' means to
2102 (1) show the buffer in some window, (2) make that window the selected
2103 window (and its frame the selected frame), and (3) make the buffer the
2104 current buffer.
2105
2106 Do @emph{not} use these functions to make a buffer temporarily
2107 current just so a Lisp program can access or modify it. They have
2108 side-effects, such as changing window histories (@pxref{Window
2109 History}), which will surprise the user if used that way. If you want
2110 to make a buffer current to modify it in Lisp, use
2111 @code{with-current-buffer}, @code{save-current-buffer}, or
2112 @code{set-buffer}. @xref{Current Buffer}.
2113
2114 @deffn Command switch-to-buffer buffer-or-name &optional norecord force-same-window
2115 This command attempts to display @var{buffer-or-name} in the selected
2116 window and make it the current buffer. It is often used interactively
2117 (as the binding of @kbd{C-x b}), as well as in Lisp programs. The
2118 return value is the buffer switched to.
2119
2120 If @var{buffer-or-name} is @code{nil}, it defaults to the buffer
2121 returned by @code{other-buffer} (@pxref{Buffer List}). If
2122 @var{buffer-or-name} is a string that is not the name of any existing
2123 buffer, this function creates a new buffer with that name; the new
2124 buffer's major mode is determined by the variable @code{major-mode}
2125 (@pxref{Major Modes}).
2126
2127 Normally, the specified buffer is put at the front of the buffer
2128 list---both the global buffer list and the selected frame's buffer
2129 list (@pxref{Buffer List}). However, this is not done if the
2130 optional argument @var{norecord} is non-@code{nil}.
2131
2132 Sometimes, the selected window may not be suitable for displaying the
2133 buffer. This happens if the selected window is a minibuffer window, or
2134 if the selected window is strongly dedicated to its buffer
2135 (@pxref{Dedicated Windows}). In such cases, the command normally tries
2136 to display the buffer in some other window, by invoking
2137 @code{pop-to-buffer} (see below).
2138
2139 If the optional argument @var{force-same-window} is non-@code{nil} and
2140 the selected window is not suitable for displaying the buffer, this
2141 function always signals an error when called non-interactively. In
2142 interactive use, if the selected window is a minibuffer window, this
2143 function will try to use some other window instead. If the selected
2144 window is strongly dedicated to its buffer, the option
2145 @code{switch-to-buffer-in-dedicated-window} described next can be used
2146 to proceed.
2147 @end deffn
2148
2149 @defopt switch-to-buffer-in-dedicated-window
2150 This option, if non-@code{nil}, allows @code{switch-to-buffer} to
2151 proceed when called interactively and the selected window is strongly
2152 dedicated to its buffer.
2153
2154 The following values are respected:
2155
2156 @table @code
2157 @item nil
2158 Disallows switching and signals an error as in non-interactive use.
2159
2160 @item prompt
2161 Prompts the user whether to allow switching.
2162
2163 @item pop
2164 Invokes @code{pop-to-buffer} to proceed.
2165
2166 @item t
2167 Marks the selected window as non-dedicated and proceeds.
2168 @end table
2169
2170 This option does not affect non-interactive calls of
2171 @code{switch-to-buffer}.
2172 @end defopt
2173
2174 By default, @code{switch-to-buffer} shows the buffer at its position of
2175 @code{point}. This behavior can be tuned using the following option.
2176
2177 @defopt switch-to-buffer-preserve-window-point
2178 If this variable is @code{nil}, @code{switch-to-buffer} displays the
2179 buffer specified by @var{buffer-or-name} at the position of that
2180 buffer's @code{point}. If this variable is @code{already-displayed}, it
2181 tries to display the buffer at its previous position in the selected
2182 window, provided the buffer is currently displayed in some other window
2183 on any visible or iconified frame. If this variable is @code{t},
2184 @code{switch-to-buffer} unconditionally tries to display the buffer at
2185 its previous position in the selected window.
2186
2187 This variable is ignored if the buffer is already displayed in the
2188 selected window or never appeared in it before, or if
2189 @code{switch-to-buffer} calls @code{pop-to-buffer} to display the
2190 buffer.
2191 @end defopt
2192
2193 The next two commands are similar to @code{switch-to-buffer}, except for
2194 the described features.
2195
2196 @deffn Command switch-to-buffer-other-window buffer-or-name &optional norecord
2197 This function displays the buffer specified by @var{buffer-or-name} in
2198 some window other than the selected window. It uses the function
2199 @code{pop-to-buffer} internally (see below).
2200
2201 If the selected window already displays the specified buffer, it
2202 continues to do so, but another window is nonetheless found to display
2203 it as well.
2204
2205 The @var{buffer-or-name} and @var{norecord} arguments have the same
2206 meanings as in @code{switch-to-buffer}.
2207 @end deffn
2208
2209 @deffn Command switch-to-buffer-other-frame buffer-or-name &optional norecord
2210 This function displays the buffer specified by @var{buffer-or-name} in a
2211 new frame. It uses the function @code{pop-to-buffer} internally (see
2212 below).
2213
2214 If the specified buffer is already displayed in another window, in any
2215 frame on the current terminal, this switches to that window instead of
2216 creating a new frame. However, the selected window is never used for
2217 this.
2218
2219 The @var{buffer-or-name} and @var{norecord} arguments have the same
2220 meanings as in @code{switch-to-buffer}.
2221 @end deffn
2222
2223 The above commands use the function @code{pop-to-buffer}, which
2224 flexibly displays a buffer in some window and selects that window for
2225 editing. In turn, @code{pop-to-buffer} uses @code{display-buffer} for
2226 displaying the buffer. Hence, all the variables affecting
2227 @code{display-buffer} will affect it as well. @xref{Choosing Window},
2228 for the documentation of @code{display-buffer}.
2229
2230 @deffn Command pop-to-buffer buffer-or-name &optional action norecord
2231 This function makes @var{buffer-or-name} the current buffer and
2232 displays it in some window, preferably not the window currently
2233 selected. It then selects the displaying window. If that window is
2234 on a different graphical frame, that frame is given input focus if
2235 possible (@pxref{Input Focus}). The return value is the buffer that
2236 was switched to.
2237
2238 If @var{buffer-or-name} is @code{nil}, it defaults to the buffer
2239 returned by @code{other-buffer} (@pxref{Buffer List}). If
2240 @var{buffer-or-name} is a string that is not the name of any existing
2241 buffer, this function creates a new buffer with that name; the new
2242 buffer's major mode is determined by the variable @code{major-mode}
2243 (@pxref{Major Modes}).
2244
2245 If @var{action} is non-@code{nil}, it should be a display action to
2246 pass to @code{display-buffer} (@pxref{Choosing Window}).
2247 Alternatively, a non-@code{nil}, non-list value means to pop to a
2248 window other than the selected one---even if the buffer is already
2249 displayed in the selected window.
2250
2251 Like @code{switch-to-buffer}, this function updates the buffer list
2252 unless @var{norecord} is non-@code{nil}.
2253 @end deffn
2254
2255
2256 @node Choosing Window
2257 @section Choosing a Window for Display
2258
2259 The command @code{display-buffer} flexibly chooses a window for
2260 display, and displays a specified buffer in that window. It can be
2261 called interactively, via the key binding @kbd{C-x 4 C-o}. It is also
2262 used as a subroutine by many functions and commands, including
2263 @code{switch-to-buffer} and @code{pop-to-buffer} (@pxref{Switching
2264 Buffers}).
2265
2266 @cindex display action
2267 @cindex action function, for @code{display-buffer}
2268 @cindex action alist, for @code{display-buffer}
2269 This command performs several complex steps to find a window to
2270 display in. These steps are described by means of @dfn{display
2271 actions}, which have the form @code{(@var{function} . @var{alist})}.
2272 Here, @var{function} is either a function or a list of functions,
2273 which we refer to as @dfn{action functions}; @var{alist} is an
2274 association list, which we refer to as an @dfn{action alist}.
2275
2276 An action function accepts two arguments: the buffer to display and
2277 an action alist. It attempts to display the buffer in some window,
2278 picking or creating a window according to its own criteria. If
2279 successful, it returns the window; otherwise, it returns @code{nil}.
2280 @xref{Display Action Functions}, for a list of predefined action
2281 functions.
2282
2283 @code{display-buffer} works by combining display actions from
2284 several sources, and calling the action functions in turn, until one
2285 of them manages to display the buffer and returns a non-@code{nil}
2286 value.
2287
2288 @deffn Command display-buffer buffer-or-name &optional action frame
2289 This command makes @var{buffer-or-name} appear in some window, without
2290 selecting the window or making the buffer current. The argument
2291 @var{buffer-or-name} must be a buffer or the name of an existing
2292 buffer. The return value is the window chosen to display the buffer.
2293
2294 The optional argument @var{action}, if non-@code{nil}, should normally
2295 be a display action (described above). @code{display-buffer} builds a
2296 list of action functions and an action alist, by consolidating display
2297 actions from the following sources (in order):
2298
2299 @itemize
2300 @item
2301 The variable @code{display-buffer-overriding-action}.
2302
2303 @item
2304 The user option @code{display-buffer-alist}.
2305
2306 @item
2307 The @var{action} argument.
2308
2309 @item
2310 The user option @code{display-buffer-base-action}.
2311
2312 @item
2313 The constant @code{display-buffer-fallback-action}.
2314 @end itemize
2315
2316 @noindent
2317 Each action function is called in turn, passing the buffer as the
2318 first argument and the combined action alist as the second argument,
2319 until one of the functions returns non-@code{nil}. The caller can
2320 pass @code{(allow-no-window . t)} as an element of the action alist to
2321 indicate its readiness to handle the case of not displaying the
2322 buffer in a window.
2323
2324 The argument @var{action} can also have a non-@code{nil}, non-list
2325 value. This has the special meaning that the buffer should be
2326 displayed in a window other than the selected one, even if the
2327 selected window is already displaying it. If called interactively
2328 with a prefix argument, @var{action} is @code{t}.
2329
2330 The optional argument @var{frame}, if non-@code{nil}, specifies which
2331 frames to check when deciding whether the buffer is already displayed.
2332 It is equivalent to adding an element @code{(reusable-frames
2333 . @var{frame})} to the action alist of @var{action}. @xref{Display
2334 Action Functions}.
2335 @end deffn
2336
2337 @defvar display-buffer-overriding-action
2338 The value of this variable should be a display action, which is
2339 treated with the highest priority by @code{display-buffer}. The
2340 default value is empty, i.e., @code{(nil . nil)}.
2341 @end defvar
2342
2343 @defopt display-buffer-alist
2344 The value of this option is an alist mapping conditions to display
2345 actions. Each condition may be either a regular expression matching a
2346 buffer name or a function that takes two arguments: a buffer name and
2347 the @var{action} argument passed to @code{display-buffer}. If the name
2348 of the buffer passed to @code{display-buffer} either matches a regular
2349 expression in this alist or the function specified by a condition
2350 returns non-@code{nil}, then @code{display-buffer} uses the
2351 corresponding display action to display the buffer.
2352 @end defopt
2353
2354 @defopt display-buffer-base-action
2355 The value of this option should be a display action. This option can
2356 be used to define a standard display action for calls to
2357 @code{display-buffer}.
2358 @end defopt
2359
2360 @defvr Constant display-buffer-fallback-action
2361 This display action specifies the fallback behavior for
2362 @code{display-buffer} if no other display actions are given.
2363 @end defvr
2364
2365
2366 @node Display Action Functions
2367 @section Action Functions for @code{display-buffer}
2368
2369 The following basic action functions are defined in Emacs. Each of
2370 these functions takes two arguments: @var{buffer}, the buffer to
2371 display, and @var{alist}, an action alist. Each action function
2372 returns the window if it succeeds, and @code{nil} if it fails.
2373
2374 @defun display-buffer-same-window buffer alist
2375 This function tries to display @var{buffer} in the selected window.
2376 It fails if the selected window is a minibuffer window or is dedicated
2377 to another buffer (@pxref{Dedicated Windows}). It also fails if
2378 @var{alist} has a non-@code{nil} @code{inhibit-same-window} entry.
2379 @end defun
2380
2381 @defun display-buffer-reuse-window buffer alist
2382 This function tries to display @var{buffer} by finding a window
2383 that is already displaying it.
2384
2385 If @var{alist} has a non-@code{nil} @code{inhibit-same-window} entry,
2386 the selected window is not eligible for reuse. If @var{alist}
2387 contains a @code{reusable-frames} entry, its value determines which
2388 frames to search for a reusable window:
2389
2390 @itemize @bullet
2391 @item
2392 @code{nil} means consider windows on the selected frame.
2393 (Actually, the last non-minibuffer frame.)
2394 @item
2395 @code{t} means consider windows on all frames.
2396 @item
2397 @code{visible} means consider windows on all visible frames.
2398 @item
2399 0 means consider windows on all visible or iconified frames.
2400 @item
2401 A frame means consider windows on that frame only.
2402 @end itemize
2403
2404 Note that these meanings differ slightly from those of the
2405 @var{all-frames} argument to @code{next-window} (@pxref{Cyclic Window
2406 Ordering}).
2407
2408 If @var{alist} contains no @code{reusable-frames} entry, this function
2409 normally searches just the selected frame; however, if the variable
2410 @code{pop-up-frames} is non-@code{nil}, it searches all frames on the
2411 current terminal. @xref{Choosing Window Options}.
2412
2413 If this function chooses a window on another frame, it makes that frame
2414 visible and, unless @var{alist} contains an @code{inhibit-switch-frame}
2415 entry (@pxref{Choosing Window Options}), raises that frame if necessary.
2416 @end defun
2417
2418 @defun display-buffer-reuse-mode-window buffer alist
2419 This function tries to display @var{buffer} by finding a window
2420 that is displaying a buffer in a given mode.
2421
2422 If @var{alist} contains a @code{mode} entry, its value is a major mode
2423 (a symbol) or a list of major modes. If @var{alist} contains no
2424 @code{mode} entry, the current major mode of @var{buffer} is used. A
2425 window is a candidate if it displays a buffer that derives from one of
2426 the given modes.
2427
2428 The behaviour is also controlled by entries for
2429 @code{inhibit-same-window}, @code{reusable-frames} and
2430 @code{inhibit-switch-frame} as is done in the function
2431 @code{display-buffer-reuse-window}.
2432
2433 @end defun
2434
2435 @defun display-buffer-pop-up-frame buffer alist
2436 This function creates a new frame, and displays the buffer in that
2437 frame's window. It actually performs the frame creation by calling
2438 the function specified in @code{pop-up-frame-function}
2439 (@pxref{Choosing Window Options}). If @var{alist} contains a
2440 @code{pop-up-frame-parameters} entry, the associated value
2441 is added to the newly created frame's parameters.
2442 @end defun
2443
2444 @defun display-buffer-use-some-frame buffer alist
2445 This function tries to display @var{buffer} by trying to find a
2446 frame that meets a predicate (by default any frame other than the
2447 current frame).
2448
2449 If this function chooses a window on another frame, it makes that frame
2450 visible and, unless @var{alist} contains an @code{inhibit-switch-frame}
2451 entry (@pxref{Choosing Window Options}), raises that frame if necessary.
2452
2453 If @var{alist} has a non-@code{nil} @code{frame-predicate} entry, its
2454 value is a function taking one argument (a frame), returning
2455 non-@code{nil} if the frame is a candidate; this function replaces the
2456 default predicate.
2457
2458 If @var{alist} has a non-@code{nil} @code{inhibit-same-window} entry,
2459 the selected window is used; thus if the selected frame has a single
2460 window, it is not used.
2461 @end defun
2462
2463 @defun display-buffer-pop-up-window buffer alist
2464 This function tries to display @var{buffer} by splitting the largest
2465 or least recently-used window (typically one on the selected frame).
2466 It actually performs the split by calling the function specified in
2467 @code{split-window-preferred-function} (@pxref{Choosing Window
2468 Options}).
2469
2470 The size of the new window can be adjusted by supplying
2471 @code{window-height} and @code{window-width} entries in @var{alist}. To
2472 adjust the window's height, use an entry whose @sc{car} is
2473 @code{window-height} and whose @sc{cdr} is one of:
2474
2475 @itemize @bullet
2476 @item
2477 @code{nil} means to leave the height of the new window alone.
2478
2479 @item
2480 A number specifies the desired height of the new window. An integer
2481 specifies the number of lines of the window. A floating-point
2482 number gives the fraction of the window's height with respect to the
2483 height of the frame's root window.
2484
2485 @item
2486 If the @sc{cdr} specifies a function, that function is called with one
2487 argument: the new window. The function is supposed to adjust the
2488 height of the window; its return value is ignored. Suitable functions
2489 are @code{shrink-window-if-larger-than-buffer} and
2490 @code{fit-window-to-buffer}, see @ref{Resizing Windows}.
2491 @end itemize
2492
2493 To adjust the window's width, use an entry whose @sc{car} is
2494 @code{window-width} and whose @sc{cdr} is one of:
2495
2496 @itemize @bullet
2497 @item
2498 @code{nil} means to leave the width of the new window alone.
2499
2500 @item
2501 A number specifies the desired width of the new window. An integer
2502 specifies the number of columns of the window. A floating-point
2503 number gives the fraction of the window's width with respect to the
2504 width of the frame's root window.
2505
2506 @item
2507 If the @sc{cdr} specifies a function, that function is called with one
2508 argument: the new window. The function is supposed to adjust the width
2509 of the window; its return value is ignored.
2510 @end itemize
2511
2512 If @var{alist} contains a @code{preserve-size} entry, Emacs will try to
2513 preserve the size of the new window during future resize operations
2514 (@pxref{Preserving Window Sizes}). The @sc{cdr} of that entry must be a
2515 cons cell whose @sc{car}, if non-@code{nil}, means to preserve the width
2516 of the window and whose @sc{cdr}, if non-@code{nil}, means to preserve
2517 the height of the window.
2518
2519 This function can fail if no window splitting can be performed for some
2520 reason (e.g., if the selected frame has an @code{unsplittable} frame
2521 parameter; @pxref{Buffer Parameters}).
2522 @end defun
2523
2524 @defun display-buffer-below-selected buffer alist
2525 This function tries to display @var{buffer} in a window below the
2526 selected window. This means to either split the selected window or use
2527 the window below the selected one. If it does create a new window, it
2528 will also adjust its size provided @var{alist} contains a suitable
2529 @code{window-height} or @code{window-width} entry, see above.
2530 @end defun
2531
2532 @defun display-buffer-in-previous-window buffer alist
2533 This function tries to display @var{buffer} in a window previously
2534 showing it. If @var{alist} has a non-@code{nil}
2535 @code{inhibit-same-window} entry, the selected window is not eligible
2536 for reuse. If @var{alist} contains a @code{reusable-frames} entry, its
2537 value determines which frames to search for a suitable window as with
2538 @code{display-buffer-reuse-window}.
2539
2540 If @var{alist} has a @code{previous-window} entry, the window
2541 specified by that entry will override any other window found by the
2542 methods above, even if that window never showed @var{buffer} before.
2543 @end defun
2544
2545 @defun display-buffer-at-bottom buffer alist
2546 This function tries to display @var{buffer} in a window at the bottom
2547 of the selected frame.
2548
2549 This either splits the window at the bottom of the frame or the
2550 frame's root window, or reuses an existing window at the bottom of the
2551 selected frame.
2552 @end defun
2553
2554 @defun display-buffer-use-some-window buffer alist
2555 This function tries to display @var{buffer} by choosing an existing
2556 window and displaying the buffer in that window. It can fail if all
2557 windows are dedicated to another buffer (@pxref{Dedicated Windows}).
2558 @end defun
2559
2560 @defun display-buffer-no-window buffer alist
2561 If @var{alist} has a non-@code{nil} @code{allow-no-window} entry, then
2562 this function does not display @code{buffer}. This allows you to
2563 override the default action and avoid displaying the buffer. It is
2564 assumed that when the caller specifies a non-@code{nil}
2565 @code{allow-no-window} value it can handle a @code{nil} value returned
2566 from @code{display-buffer} in this case.
2567 @end defun
2568
2569 To illustrate the use of action functions, consider the following
2570 example.
2571
2572 @example
2573 @group
2574 (display-buffer
2575 (get-buffer-create "*foo*")
2576 '((display-buffer-reuse-window
2577 display-buffer-pop-up-window
2578 display-buffer-pop-up-frame)
2579 (reusable-frames . 0)
2580 (window-height . 10) (window-width . 40)))
2581 @end group
2582 @end example
2583
2584 @noindent
2585 Evaluating the form above will cause @code{display-buffer} to proceed as
2586 follows: If a buffer called *foo* already appears on a visible or
2587 iconified frame, it will reuse its window. Otherwise, it will try to
2588 pop up a new window or, if that is impossible, a new frame and show the
2589 buffer there. If all these steps fail, it will proceed using whatever
2590 @code{display-buffer-base-action} and
2591 @code{display-buffer-fallback-action} prescribe.
2592
2593 Furthermore, @code{display-buffer} will try to adjust a reused window
2594 (provided *foo* was put by @code{display-buffer} there before) or a
2595 popped-up window as follows: If the window is part of a vertical
2596 combination, it will set its height to ten lines. Note that if, instead
2597 of the number 10, we specified the function
2598 @code{fit-window-to-buffer}, @code{display-buffer} would come up with a
2599 one-line window to fit the empty buffer. If the window is part of a
2600 horizontal combination, it sets its width to 40 columns. Whether a new
2601 window is vertically or horizontally combined depends on the shape of
2602 the window split and the values of
2603 @code{split-window-preferred-function}, @code{split-height-threshold}
2604 and @code{split-width-threshold} (@pxref{Choosing Window Options}).
2605
2606 Now suppose we combine this call with a preexisting setup for
2607 @code{display-buffer-alist} as follows.
2608
2609 @example
2610 @group
2611 (let ((display-buffer-alist
2612 (cons
2613 '("\\*foo\\*"
2614 (display-buffer-reuse-window display-buffer-below-selected)
2615 (reusable-frames)
2616 (window-height . 5))
2617 display-buffer-alist)))
2618 (display-buffer
2619 (get-buffer-create "*foo*")
2620 '((display-buffer-reuse-window
2621 display-buffer-pop-up-window
2622 display-buffer-pop-up-frame)
2623 (reusable-frames . 0)
2624 (window-height . 10) (window-width . 40))))
2625 @end group
2626 @end example
2627
2628 @noindent
2629 This form will have @code{display-buffer} first try reusing a window
2630 that shows *foo* on the selected frame. If there's no such window, it
2631 will try to split the selected window or, if that is impossible, use the
2632 window below the selected window.
2633
2634 If there's no window below the selected one, or the window below the
2635 selected one is dedicated to its buffer, @code{display-buffer} will
2636 proceed as described in the previous example. Note, however, that when
2637 it tries to adjust the height of any reused or popped-up window, it will
2638 in any case try to set its number of lines to 5 since that value
2639 overrides the corresponding specification in the @var{action} argument
2640 of @code{display-buffer}.
2641
2642
2643 @node Choosing Window Options
2644 @section Additional Options for Displaying Buffers
2645
2646 The behavior of the standard display actions of @code{display-buffer}
2647 (@pxref{Choosing Window}) can be modified by a variety of user
2648 options.
2649
2650 @defopt pop-up-windows
2651 If the value of this variable is non-@code{nil}, @code{display-buffer}
2652 is allowed to split an existing window to make a new window for
2653 displaying in. This is the default.
2654
2655 This variable is provided mainly for backward compatibility. It is
2656 obeyed by @code{display-buffer} via a special mechanism in
2657 @code{display-buffer-fallback-action}, which only calls the action
2658 function @code{display-buffer-pop-up-window} (@pxref{Display Action
2659 Functions}) when the value is @code{nil}. It is not consulted by
2660 @code{display-buffer-pop-up-window} itself, which the user may specify
2661 directly in @code{display-buffer-alist} etc.
2662 @end defopt
2663
2664 @defopt split-window-preferred-function
2665 This variable specifies a function for splitting a window, in order to
2666 make a new window for displaying a buffer. It is used by the
2667 @code{display-buffer-pop-up-window} action function to actually split
2668 the window (@pxref{Display Action Functions}).
2669
2670 The default value is @code{split-window-sensibly}, which is documented
2671 below. The value must be a function that takes one argument, a window,
2672 and return either a new window (which will be used to display the
2673 desired buffer) or @code{nil} (which means the splitting failed).
2674 @end defopt
2675
2676 @defun split-window-sensibly &optional window
2677 This function tries to split @var{window}, and return the newly created
2678 window. If @var{window} cannot be split, it returns @code{nil}. If
2679 @var{window} is omitted or @code{nil}, it defaults to the selected
2680 window.
2681
2682 This function obeys the usual rules that determine when a window may
2683 be split (@pxref{Splitting Windows}). It first tries to split by
2684 placing the new window below, subject to the restriction imposed by
2685 @code{split-height-threshold} (see below), in addition to any other
2686 restrictions. If that fails, it tries to split by placing the new
2687 window to the right, subject to @code{split-width-threshold} (see
2688 below). If that fails, and the window is the only window on its
2689 frame, this function again tries to split and place the new window
2690 below, disregarding @code{split-height-threshold}. If this fails as
2691 well, this function gives up and returns @code{nil}.
2692 @end defun
2693
2694 @defopt split-height-threshold
2695 This variable, used by @code{split-window-sensibly}, specifies whether
2696 to split the window placing the new window below. If it is an
2697 integer, that means to split only if the original window has at least
2698 that many lines. If it is @code{nil}, that means not to split this
2699 way.
2700 @end defopt
2701
2702 @defopt split-width-threshold
2703 This variable, used by @code{split-window-sensibly}, specifies whether
2704 to split the window placing the new window to the right. If the value
2705 is an integer, that means to split only if the original window has at
2706 least that many columns. If the value is @code{nil}, that means not
2707 to split this way.
2708 @end defopt
2709
2710 @defopt even-window-sizes
2711 This variable, if non-@code{nil}, causes @code{display-buffer} to even
2712 window sizes whenever it reuses an existing window and that window is
2713 adjacent to the selected one.
2714
2715 If its value is @code{width-only}, sizes are evened only if the reused
2716 window is on the left or right of the selected one and the selected
2717 window is wider than the reused one. If its value is @code{height-only}
2718 sizes are evened only if the reused window is above or beneath the
2719 selected window and the selected window is higher than the reused one.
2720 Any other non-@code{nil} value means to even sizes in any of these cases
2721 provided the selected window is larger than the reused one in the sense
2722 of their combination.
2723 @end defopt
2724
2725 @defopt pop-up-frames
2726 If the value of this variable is non-@code{nil}, that means
2727 @code{display-buffer} may display buffers by making new frames. The
2728 default is @code{nil}.
2729
2730 A non-@code{nil} value also means that when @code{display-buffer} is
2731 looking for a window already displaying @var{buffer-or-name}, it can
2732 search any visible or iconified frame, not just the selected frame.
2733
2734 This variable is provided mainly for backward compatibility. It is
2735 obeyed by @code{display-buffer} via a special mechanism in
2736 @code{display-buffer-fallback-action}, which calls the action function
2737 @code{display-buffer-pop-up-frame} (@pxref{Display Action Functions})
2738 if the value is non-@code{nil}. (This is done before attempting to
2739 split a window.) This variable is not consulted by
2740 @code{display-buffer-pop-up-frame} itself, which the user may specify
2741 directly in @code{display-buffer-alist} etc.
2742 @end defopt
2743
2744 @defopt pop-up-frame-function
2745 This variable specifies a function for creating a new frame, in order
2746 to make a new window for displaying a buffer. It is used by the
2747 @code{display-buffer-pop-up-frame} action function (@pxref{Display
2748 Action Functions}).
2749
2750 The value should be a function that takes no arguments and returns a
2751 frame, or @code{nil} if no frame could be created. The default value
2752 is a function that creates a frame using the parameters specified by
2753 @code{pop-up-frame-alist} (see below).
2754 @end defopt
2755
2756 @defopt pop-up-frame-alist
2757 This variable holds an alist of frame parameters (@pxref{Frame
2758 Parameters}), which is used by the default function in
2759 @code{pop-up-frame-function} to make a new frame. The default is
2760 @code{nil}.
2761 @end defopt
2762
2763 @defopt same-window-buffer-names
2764 A list of buffer names for buffers that should be displayed in the
2765 selected window. If a buffer's name is in this list,
2766 @code{display-buffer} handles the buffer by showing it in the selected
2767 window.
2768 @end defopt
2769
2770 @defopt same-window-regexps
2771 A list of regular expressions that specify buffers that should be
2772 displayed in the selected window. If the buffer's name matches any of
2773 the regular expressions in this list, @code{display-buffer} handles the
2774 buffer by showing it in the selected window.
2775 @end defopt
2776
2777 @defun same-window-p buffer-name
2778 This function returns @code{t} if displaying a buffer
2779 named @var{buffer-name} with @code{display-buffer} would
2780 put it in the selected window.
2781 @end defun
2782
2783 @node Window History
2784 @section Window History
2785 @cindex window history
2786
2787 Each window remembers in a list the buffers it has previously displayed,
2788 and the order in which these buffers were removed from it. This history
2789 is used, for example, by @code{replace-buffer-in-windows}
2790 (@pxref{Buffers and Windows}). The list is automatically maintained by
2791 Emacs, but you can use the following functions to explicitly inspect or
2792 alter it:
2793
2794 @defun window-prev-buffers &optional window
2795 This function returns a list specifying the previous contents of
2796 @var{window}. The optional argument @var{window} should be a live
2797 window and defaults to the selected one.
2798
2799 Each list element has the form @code{(@var{buffer} @var{window-start}
2800 @var{window-pos})}, where @var{buffer} is a buffer previously shown in
2801 the window, @var{window-start} is the window start position
2802 (@pxref{Window Start and End}) when that buffer was last shown, and
2803 @var{window-pos} is the point position (@pxref{Window Point}) when
2804 that buffer was last shown in @var{window}.
2805
2806 The list is ordered so that earlier elements correspond to more
2807 recently-shown buffers, and the first element usually corresponds to the
2808 buffer most recently removed from the window.
2809 @end defun
2810
2811 @defun set-window-prev-buffers window prev-buffers
2812 This function sets @var{window}'s previous buffers to the value of
2813 @var{prev-buffers}. The argument @var{window} must be a live window
2814 and defaults to the selected one. The argument @var{prev-buffers}
2815 should be a list of the same form as that returned by
2816 @code{window-prev-buffers}.
2817 @end defun
2818
2819 In addition, each buffer maintains a list of @dfn{next buffers}, which
2820 is a list of buffers re-shown by @code{switch-to-prev-buffer} (see
2821 below). This list is mainly used by @code{switch-to-prev-buffer} and
2822 @code{switch-to-next-buffer} for choosing buffers to switch to.
2823
2824 @defun window-next-buffers &optional window
2825 This function returns the list of buffers recently re-shown in
2826 @var{window} via @code{switch-to-prev-buffer}. The @var{window}
2827 argument must denote a live window or @code{nil} (meaning the selected
2828 window).
2829 @end defun
2830
2831 @defun set-window-next-buffers window next-buffers
2832 This function sets the next buffer list of @var{window} to
2833 @var{next-buffers}. The @var{window} argument should be a live window
2834 or @code{nil} (meaning the selected window). The argument
2835 @var{next-buffers} should be a list of buffers.
2836 @end defun
2837
2838 The following commands can be used to cycle through the global buffer
2839 list, much like @code{bury-buffer} and @code{unbury-buffer}. However,
2840 they cycle according to the specified window's history list, rather
2841 than the global buffer list. In addition, they restore
2842 window-specific window start and point positions, and may show a
2843 buffer even if it is already shown in another window. The
2844 @code{switch-to-prev-buffer} command, in particular, is used by
2845 @code{replace-buffer-in-windows}, @code{bury-buffer} and
2846 @code{quit-window} to find a replacement buffer for a window.
2847
2848 @deffn Command switch-to-prev-buffer &optional window bury-or-kill
2849 This command displays the previous buffer in @var{window}. The
2850 argument @var{window} should be a live window or @code{nil} (meaning
2851 the selected window). If the optional argument @var{bury-or-kill} is
2852 non-@code{nil}, this means that the buffer currently shown in
2853 @var{window} is about to be buried or killed and consequently should
2854 not be switched to in future invocations of this command.
2855
2856 The previous buffer is usually the buffer shown before the buffer
2857 currently shown in @var{window}. However, a buffer that has been buried
2858 or killed, or has been already shown by a recent invocation of
2859 @code{switch-to-prev-buffer}, does not qualify as previous buffer.
2860
2861 If repeated invocations of this command have already shown all buffers
2862 previously shown in @var{window}, further invocations will show buffers
2863 from the buffer list of the frame @var{window} appears on (@pxref{Buffer
2864 List}), trying to skip buffers that are already shown in another window
2865 on that frame.
2866 @end deffn
2867
2868 @deffn Command switch-to-next-buffer &optional window
2869 This command switches to the next buffer in @var{window}, thus undoing
2870 the effect of the last @code{switch-to-prev-buffer} command in
2871 @var{window}. The argument @var{window} must be a live window and
2872 defaults to the selected one.
2873
2874 If there is no recent invocation of @code{switch-to-prev-buffer} that
2875 can be undone, this function tries to show a buffer from the buffer list
2876 of the frame @var{window} appears on (@pxref{Buffer List}).
2877 @end deffn
2878
2879 By default @code{switch-to-prev-buffer} and @code{switch-to-next-buffer}
2880 can switch to a buffer that is already shown in another window on the
2881 same frame. The following option can be used to override this behavior.
2882
2883 @defopt switch-to-visible-buffer
2884 If this variable is non-@code{nil}, @code{switch-to-prev-buffer} and
2885 @code{switch-to-next-buffer} may switch to a buffer that is already
2886 visible on the same frame, provided the buffer was shown in the
2887 relevant window before. If it is @code{nil},
2888 @code{switch-to-prev-buffer} and @code{switch-to-next-buffer} always
2889 try to avoid switching to a buffer that is already visible in another
2890 window on the same frame. The default is @code{t}.
2891 @end defopt
2892
2893
2894 @node Dedicated Windows
2895 @section Dedicated Windows
2896 @cindex dedicated window
2897
2898 Functions for displaying a buffer can be told to not use specific
2899 windows by marking these windows as @dfn{dedicated} to their buffers.
2900 @code{display-buffer} (@pxref{Choosing Window}) never uses a dedicated
2901 window for displaying another buffer in it. @code{get-lru-window} and
2902 @code{get-largest-window} (@pxref{Cyclic Window Ordering}) do not
2903 consider dedicated windows as candidates when their @var{dedicated}
2904 argument is non-@code{nil}. The behavior of @code{set-window-buffer}
2905 (@pxref{Buffers and Windows}) with respect to dedicated windows is
2906 slightly different, see below.
2907
2908 Functions supposed to remove a buffer from a window or a window from
2909 a frame can behave specially when a window they operate on is dedicated.
2910 We will distinguish three basic cases, namely where (1) the window is
2911 not the only window on its frame, (2) the window is the only window on
2912 its frame but there are other frames on the same terminal left, and (3)
2913 the window is the only window on the only frame on the same terminal.
2914
2915 In particular, @code{delete-windows-on} (@pxref{Deleting Windows})
2916 handles case (2) by deleting the associated frame and case (3) by
2917 showing another buffer in that frame's only window. The function
2918 @code{replace-buffer-in-windows} (@pxref{Buffers and Windows}) which is
2919 called when a buffer gets killed, deletes the window in case (1) and
2920 behaves like @code{delete-windows-on} otherwise.
2921 @c FIXME: Does replace-buffer-in-windows _delete_ a window in case (1)?
2922
2923 When @code{bury-buffer} (@pxref{Buffer List}) operates on the
2924 selected window (which shows the buffer that shall be buried), it
2925 handles case (2) by calling @code{frame-auto-hide-function}
2926 (@pxref{Quitting Windows}) to deal with the selected frame. The other
2927 two cases are handled as with @code{replace-buffer-in-windows}.
2928
2929 @defun window-dedicated-p &optional window
2930 This function returns non-@code{nil} if @var{window} is dedicated to its
2931 buffer and @code{nil} otherwise. More precisely, the return value is
2932 the value assigned by the last call of @code{set-window-dedicated-p} for
2933 @var{window}, or @code{nil} if that function was never called with
2934 @var{window} as its argument. The default for @var{window} is the
2935 selected window.
2936 @end defun
2937
2938 @defun set-window-dedicated-p window flag
2939 This function marks @var{window} as dedicated to its buffer if
2940 @var{flag} is non-@code{nil}, and non-dedicated otherwise.
2941
2942 As a special case, if @var{flag} is @code{t}, @var{window} becomes
2943 @dfn{strongly} dedicated to its buffer. @code{set-window-buffer}
2944 signals an error when the window it acts upon is strongly dedicated to
2945 its buffer and does not already display the buffer it is asked to
2946 display. Other functions do not treat @code{t} differently from any
2947 non-@code{nil} value.
2948 @end defun
2949
2950
2951 @node Quitting Windows
2952 @section Quitting Windows
2953
2954 When you want to get rid of a window used for displaying a buffer, you
2955 can call @code{delete-window} or @code{delete-windows-on}
2956 (@pxref{Deleting Windows}) to remove that window from its frame. If the
2957 buffer is shown on a separate frame, you might want to call
2958 @code{delete-frame} (@pxref{Deleting Frames}) instead. If, on the other
2959 hand, a window has been reused for displaying the buffer, you might
2960 prefer showing the buffer previously shown in that window, by calling the
2961 function @code{switch-to-prev-buffer} (@pxref{Window History}).
2962 Finally, you might want to either bury (@pxref{Buffer List}) or kill
2963 (@pxref{Killing Buffers}) the window's buffer.
2964
2965 The following command uses information on how the window for
2966 displaying the buffer was obtained in the first place, thus attempting
2967 to automate the above decisions for you.
2968
2969 @deffn Command quit-window &optional kill window
2970 This command quits @var{window} and buries its buffer. The argument
2971 @var{window} must be a live window and defaults to the selected one.
2972 With prefix argument @var{kill} non-@code{nil}, it kills the buffer
2973 instead of burying it. It calls the function @code{quit-restore-window}
2974 described next to deal with the window and its buffer.
2975 @end deffn
2976
2977 @defun quit-restore-window &optional window bury-or-kill
2978 This function tries to restore the state of @var{window} that existed
2979 before its buffer was displayed in it. The optional argument
2980 @var{window} must be a live window and defaults to the selected one.
2981
2982 If @var{window} was created specially for displaying its buffer, this
2983 function deletes @var{window} provided its frame contains at least one
2984 other live window. If @var{window} is the only window on its frame and
2985 there are other frames on the frame's terminal, the value of the
2986 optional argument @var{bury-or-kill} determines how to proceed with the
2987 window. If @var{bury-or-kill} equals @code{kill}, the frame is deleted
2988 unconditionally. Otherwise, the fate of the frame is determined by
2989 calling @code{frame-auto-hide-function} (see below) with that frame as
2990 sole argument.
2991
2992 Otherwise, this function tries to redisplay the buffer previously shown
2993 in @var{window}. It also tries to restore the window start
2994 (@pxref{Window Start and End}) and point (@pxref{Window Point})
2995 positions of the previously shown buffer. If, in addition,
2996 @var{window}'s buffer was temporarily resized, this function will also
2997 try to restore the original height of @var{window}.
2998
2999 The cases described so far require that the buffer shown in @var{window}
3000 is still the buffer displayed by the last buffer display function for
3001 this window. If another buffer has been shown in the meantime, or the
3002 buffer previously shown no longer exists, this function calls
3003 @code{switch-to-prev-buffer} (@pxref{Window History}) to show some other
3004 buffer instead.
3005
3006 The optional argument @var{bury-or-kill} specifies how to deal with
3007 @var{window}'s buffer. The following values are handled:
3008
3009 @table @code
3010 @item nil
3011 This means to not deal with the buffer in any particular way. As a
3012 consequence, if @var{window} is not deleted, invoking
3013 @code{switch-to-prev-buffer} will usually show the buffer again.
3014
3015 @item append
3016 This means that if @var{window} is not deleted, its buffer is moved to
3017 the end of @var{window}'s list of previous buffers, so it's less likely
3018 that a future invocation of @code{switch-to-prev-buffer} will switch to
3019 it. Also, it moves the buffer to the end of the frame's buffer list.
3020
3021 @item bury
3022 This means that if @var{window} is not deleted, its buffer is removed
3023 from @var{window}'s list of previous buffers. Also, it moves the buffer
3024 to the end of the frame's buffer list. This value provides the most
3025 reliable remedy to not have @code{switch-to-prev-buffer} switch to this
3026 buffer again without killing the buffer.
3027
3028 @item kill
3029 This means to kill @var{window}'s buffer.
3030 @end table
3031
3032 @code{quit-restore-window} bases its decisions on information stored in
3033 @var{window}'s @code{quit-restore} window parameter (@pxref{Window
3034 Parameters}), and resets that parameter to @code{nil} after it's done.
3035 @end defun
3036
3037 The following option specifies how to deal with a frame containing just
3038 one window that should be either quit, or whose buffer should be buried.
3039
3040 @defopt frame-auto-hide-function
3041 The function specified by this option is called to automatically hide
3042 frames. This function is called with one argument---a frame.
3043
3044 The function specified here is called by @code{bury-buffer}
3045 (@pxref{Buffer List}) when the selected window is dedicated and shows
3046 the buffer to bury. It is also called by @code{quit-restore-window}
3047 (see above) when the frame of the window to quit has been specially
3048 created for displaying that window's buffer and the buffer is not
3049 killed.
3050
3051 The default is to call @code{iconify-frame} (@pxref{Visibility of
3052 Frames}). Alternatively, you may specify either @code{delete-frame}
3053 (@pxref{Deleting Frames}) to remove the frame from its display,
3054 @code{ignore} to leave the frame unchanged, or any other function that
3055 can take a frame as its sole argument.
3056
3057 Note that the function specified by this option is called only if the
3058 specified frame contains just one live window and there is at least one
3059 other frame on the same terminal.
3060 @end defopt
3061
3062
3063 @node Window Point
3064 @section Windows and Point
3065 @cindex window position
3066 @cindex window point
3067 @cindex position in window
3068 @cindex point in window
3069
3070 Each window has its own value of point (@pxref{Point}), independent of
3071 the value of point in other windows displaying the same buffer. This
3072 makes it useful to have multiple windows showing one buffer.
3073
3074 @itemize @bullet
3075 @item
3076 The window point is established when a window is first created; it is
3077 initialized from the buffer's point, or from the window point of another
3078 window opened on the buffer if such a window exists.
3079
3080 @item
3081 Selecting a window sets the value of point in its buffer from the
3082 window's value of point. Conversely, deselecting a window sets the
3083 window's value of point from that of the buffer. Thus, when you switch
3084 between windows that display a given buffer, the point value for the
3085 selected window is in effect in the buffer, while the point values for
3086 the other windows are stored in those windows.
3087
3088 @item
3089 As long as the selected window displays the current buffer, the window's
3090 point and the buffer's point always move together; they remain equal.
3091 @end itemize
3092
3093 @cindex cursor
3094 As far as the user is concerned, point is where the cursor is, and
3095 when the user switches to another buffer, the cursor jumps to the
3096 position of point in that buffer.
3097
3098 @defun window-point &optional window
3099 This function returns the current position of point in @var{window}.
3100 For a nonselected window, this is the value point would have (in that
3101 window's buffer) if that window were selected. The default for
3102 @var{window} is the selected window.
3103
3104 When @var{window} is the selected window, the value returned is the
3105 value of point in that window's buffer. Strictly speaking, it would be
3106 more correct to return the top-level value of point, outside of any
3107 @code{save-excursion} forms. But that value is hard to find.
3108 @end defun
3109
3110 @defun set-window-point window position
3111 This function positions point in @var{window} at position
3112 @var{position} in @var{window}'s buffer. It returns @var{position}.
3113
3114 If @var{window} is selected, this simply does @code{goto-char} in
3115 @var{window}'s buffer.
3116 @end defun
3117
3118 @defvar window-point-insertion-type
3119 This variable specifies the marker insertion type (@pxref{Marker
3120 Insertion Types}) of @code{window-point}. The default is @code{nil},
3121 so @code{window-point} will stay behind text inserted there.
3122 @end defvar
3123
3124 @node Window Start and End
3125 @section The Window Start and End Positions
3126 @cindex window start position
3127 @cindex display-start position
3128
3129 Each window maintains a marker used to keep track of a buffer position
3130 that specifies where in the buffer display should start. This position
3131 is called the @dfn{display-start} position of the window (or just the
3132 @dfn{start}). The character after this position is the one that appears
3133 at the upper left corner of the window. It is usually, but not
3134 inevitably, at the beginning of a text line.
3135
3136 After switching windows or buffers, and in some other cases, if the
3137 window start is in the middle of a line, Emacs adjusts the window
3138 start to the start of a line. This prevents certain operations from
3139 leaving the window start at a meaningless point within a line. This
3140 feature may interfere with testing some Lisp code by executing it
3141 using the commands of Lisp mode, because they trigger this
3142 readjustment. To test such code, put it into a command and bind the
3143 command to a key.
3144
3145 @defun window-start &optional window
3146 @cindex window top line
3147 This function returns the display-start position of window
3148 @var{window}. If @var{window} is @code{nil}, the selected window is
3149 used.
3150
3151 When you create a window, or display a different buffer in it, the
3152 display-start position is set to a display-start position recently used
3153 for the same buffer, or to @code{point-min} if the buffer doesn't have
3154 any.
3155
3156 Redisplay updates the window-start position (if you have not specified
3157 it explicitly since the previous redisplay)---to make sure point appears
3158 on the screen. Nothing except redisplay automatically changes the
3159 window-start position; if you move point, do not expect the window-start
3160 position to change in response until after the next redisplay.
3161 @end defun
3162
3163 @defun window-group-start &optional window
3164 @vindex window-group-start-function
3165 This function is like @code{window-start}, except that when
3166 @var{window} is a part of a group of windows (@pxref{Window Group}),
3167 @code{window-group-start} returns the start position of the entire
3168 group. This condition holds when the buffer local variable
3169 @code{window-group-start-function} is set to a function. In this
3170 case, @code{window-group-start} calls the function with the single
3171 argument @var{window}, then returns its result.
3172 @end defun
3173
3174 @cindex window end position
3175 @defun window-end &optional window update
3176 This function returns the position where display of its buffer ends in
3177 @var{window}. The default for @var{window} is the selected window.
3178
3179 Simply changing the buffer text or moving point does not update the
3180 value that @code{window-end} returns. The value is updated only when
3181 Emacs redisplays and redisplay completes without being preempted.
3182
3183 If the last redisplay of @var{window} was preempted, and did not finish,
3184 Emacs does not know the position of the end of display in that window.
3185 In that case, this function returns @code{nil}.
3186
3187 If @var{update} is non-@code{nil}, @code{window-end} always returns an
3188 up-to-date value for where display ends, based on the current
3189 @code{window-start} value. If a previously saved value of that position
3190 is still valid, @code{window-end} returns that value; otherwise it
3191 computes the correct value by scanning the buffer text.
3192
3193 Even if @var{update} is non-@code{nil}, @code{window-end} does not
3194 attempt to scroll the display if point has moved off the screen, the
3195 way real redisplay would do. It does not alter the
3196 @code{window-start} value. In effect, it reports where the displayed
3197 text will end if scrolling is not required.
3198 @end defun
3199
3200 @vindex window-group-end-function
3201 @defun window-group-end &optional window update
3202 This function is like @code{window-end}, except that when @var{window}
3203 is a part of a group of windows (@pxref{Window Group}),
3204 @code{window-group-end} returns the end position of the entire group.
3205 This condition holds when the buffer local variable
3206 @code{window-group-end-function} is set to a function. In this case,
3207 @code{window-group-end} calls the function with the two arguments
3208 @var{window} and @var{update}, then returns its result. The argument
3209 @var{update} has the same meaning as in @code{window-end}.
3210 @end defun
3211
3212 @defun set-window-start window position &optional noforce
3213 This function sets the display-start position of @var{window} to
3214 @var{position} in @var{window}'s buffer. It returns @var{position}.
3215
3216 The display routines insist that the position of point be visible when a
3217 buffer is displayed. Normally, they change the display-start position
3218 (that is, scroll the window) whenever necessary to make point visible.
3219 However, if you specify the start position with this function using
3220 @code{nil} for @var{noforce}, it means you want display to start at
3221 @var{position} even if that would put the location of point off the
3222 screen. If this does place point off screen, the display routines move
3223 point to the left margin on the middle line in the window.
3224
3225 For example, if point @w{is 1} and you set the start of the window
3226 @w{to 37}, the start of the next line, point will be above the top
3227 of the window. The display routines will automatically move point if
3228 it is still 1 when redisplay occurs. Here is an example:
3229
3230 @example
3231 @group
3232 ;; @r{Here is what @samp{foo} looks like before executing}
3233 ;; @r{the @code{set-window-start} expression.}
3234 @end group
3235
3236 @group
3237 ---------- Buffer: foo ----------
3238 @point{}This is the contents of buffer foo.
3239 2
3240 3
3241 4
3242 5
3243 6
3244 ---------- Buffer: foo ----------
3245 @end group
3246
3247 @group
3248 (set-window-start
3249 (selected-window)
3250 (save-excursion
3251 (goto-char 1)
3252 (forward-line 1)
3253 (point)))
3254 @result{} 37
3255 @end group
3256
3257 @group
3258 ;; @r{Here is what @samp{foo} looks like after executing}
3259 ;; @r{the @code{set-window-start} expression.}
3260 ---------- Buffer: foo ----------
3261 2
3262 3
3263 @point{}4
3264 5
3265 6
3266 ---------- Buffer: foo ----------
3267 @end group
3268 @end example
3269
3270 If @var{noforce} is non-@code{nil}, and @var{position} would place point
3271 off screen at the next redisplay, then redisplay computes a new window-start
3272 position that works well with point, and thus @var{position} is not used.
3273 @end defun
3274
3275 @vindex set-window-group-start-function
3276 @defun set-window-group-start window position &optional noforce
3277 This function is like @code{set-window-start}, except that when
3278 @var{window} is a part of a group of windows (@pxref{Window Group}),
3279 @code{set-window-group-start} sets the start position of the entire
3280 group. This condition holds when the buffer local variable
3281 @code{set-window-group-start-function} is set to a function. In this
3282 case, @code{set-window-group-start} calls the function with the three
3283 arguments @var{window}, @var{position}, and @var{noforce}, then
3284 returns its result. The arguments @var{position} and @var{noforce} in
3285 this function have the same meaning as in @code{set-window-start}.
3286 @end defun
3287
3288 @defun pos-visible-in-window-p &optional position window partially
3289 This function returns non-@code{nil} if @var{position} is within the
3290 range of text currently visible on the screen in @var{window}. It
3291 returns @code{nil} if @var{position} is scrolled vertically out of
3292 view. Locations that are partially obscured are not considered
3293 visible unless @var{partially} is non-@code{nil}. The argument
3294 @var{position} defaults to the current position of point in
3295 @var{window}; @var{window} defaults to the selected window. If
3296 @var{position} is @code{t}, that means to check either the first
3297 visible position of the last screen line in @var{window}, or the
3298 end-of-buffer position, whichever comes first.
3299
3300 This function considers only vertical scrolling. If @var{position} is
3301 out of view only because @var{window} has been scrolled horizontally,
3302 @code{pos-visible-in-window-p} returns non-@code{nil} anyway.
3303 @xref{Horizontal Scrolling}.
3304
3305 If @var{position} is visible, @code{pos-visible-in-window-p} returns
3306 @code{t} if @var{partially} is @code{nil}; if @var{partially} is
3307 non-@code{nil}, and the character following @var{position} is fully
3308 visible, it returns a list of the form @code{(@var{x} @var{y})}, where
3309 @var{x} and @var{y} are the pixel coordinates relative to the top left
3310 corner of the window; otherwise it returns an extended list of the form
3311 @code{(@var{x} @var{y} @var{rtop} @var{rbot} @var{rowh} @var{vpos})},
3312 where @var{rtop} and @var{rbot} specify the number of off-window pixels
3313 at the top and bottom of the row at @var{position}, @var{rowh} specifies
3314 the visible height of that row, and @var{vpos} specifies the vertical
3315 position (zero-based row number) of that row.
3316
3317 Here is an example:
3318
3319 @example
3320 @group
3321 ;; @r{If point is off the screen now, recenter it now.}
3322 (or (pos-visible-in-window-p
3323 (point) (selected-window))
3324 (recenter 0))
3325 @end group
3326 @end example
3327 @end defun
3328
3329 @vindex pos-visible-in-window-group-p-function
3330 @defun pos-visible-in-window-group-p &optional position window partially
3331 This function is like @code{pos-visible-in-window-p}, except that when
3332 @var{window} is a part of a group of windows (@pxref{Window Group}),
3333 @code{pos-visible-in-window-group-p} tests the visibility of @var{pos}
3334 in the entire group, not just in the single @var{window}. This
3335 condition holds when the buffer local variable
3336 @code{pos-visible-in-window-group-p-function} is set to a function.
3337 In this case @code{pos-visible-in-window-group-p} calls the function
3338 with the three arguments @var{position}, @var{window}, and
3339 @var{partially}, then returns its result. The arguments
3340 @var{position} and @var{partially} have the same meaning as in
3341 @code{pos-visible-in-window-p}.
3342 @end defun
3343
3344 @defun window-line-height &optional line window
3345 This function returns the height of text line @var{line} in
3346 @var{window}. If @var{line} is one of @code{header-line} or
3347 @code{mode-line}, @code{window-line-height} returns information about
3348 the corresponding line of the window. Otherwise, @var{line} is a text
3349 line number starting from 0. A negative number counts from the end of
3350 the window. The default for @var{line} is the current line in
3351 @var{window}; the default for @var{window} is the selected window.
3352
3353 If the display is not up to date, @code{window-line-height} returns
3354 @code{nil}. In that case, @code{pos-visible-in-window-p} may be used
3355 to obtain related information.
3356
3357 If there is no line corresponding to the specified @var{line},
3358 @code{window-line-height} returns @code{nil}. Otherwise, it returns
3359 a list @code{(@var{height} @var{vpos} @var{ypos} @var{offbot})},
3360 where @var{height} is the height in pixels of the visible part of the
3361 line, @var{vpos} and @var{ypos} are the vertical position in lines and
3362 pixels of the line relative to the top of the first text line, and
3363 @var{offbot} is the number of off-window pixels at the bottom of the
3364 text line. If there are off-window pixels at the top of the (first)
3365 text line, @var{ypos} is negative.
3366 @end defun
3367
3368 @node Textual Scrolling
3369 @section Textual Scrolling
3370 @cindex textual scrolling
3371 @cindex scrolling textually
3372
3373 @dfn{Textual scrolling} means moving the text up or down through a
3374 window. It works by changing the window's display-start location. It
3375 may also change the value of @code{window-point} to keep point on the
3376 screen (@pxref{Window Point}).
3377
3378 The basic textual scrolling functions are @code{scroll-up} (which
3379 scrolls forward) and @code{scroll-down} (which scrolls backward). In
3380 these function names, ``up'' and ``down'' refer to the direction of
3381 motion of the buffer text relative to the window. Imagine that the
3382 text is written on a long roll of paper and that the scrolling
3383 commands move the paper up and down. Thus, if you are looking at the
3384 middle of a buffer and repeatedly call @code{scroll-down}, you will
3385 eventually see the beginning of the buffer.
3386
3387 Unfortunately, this sometimes causes confusion, because some people
3388 tend to think in terms of the opposite convention: they
3389 imagine the window moving over text that remains in place, so that
3390 ``down'' commands take you to the end of the buffer. This convention
3391 is consistent with fact that such a command is bound to a key named
3392 @key{PageDown} on modern keyboards.
3393 @ignore
3394 We have not switched to this convention as that is likely to break
3395 existing Emacs Lisp code.
3396 @end ignore
3397
3398 Textual scrolling functions (aside from @code{scroll-other-window})
3399 have unpredictable results if the current buffer is not the one
3400 displayed in the selected window. @xref{Current Buffer}.
3401
3402 If the window contains a row taller than the height of the window
3403 (for example in the presence of a large image), the scroll functions
3404 will adjust the window's vertical scroll position to scroll the
3405 partially visible row. Lisp callers can disable this feature by
3406 binding the variable @code{auto-window-vscroll} to @code{nil}
3407 (@pxref{Vertical Scrolling}).
3408
3409 @deffn Command scroll-up &optional count
3410 This function scrolls forward by @var{count} lines in the selected
3411 window.
3412
3413 If @var{count} is negative, it scrolls backward instead. If
3414 @var{count} is @code{nil} (or omitted), the distance scrolled is
3415 @code{next-screen-context-lines} lines less than the height of the
3416 window's text area.
3417
3418 If the selected window cannot be scrolled any further, this function
3419 signals an error. Otherwise, it returns @code{nil}.
3420 @end deffn
3421
3422 @deffn Command scroll-down &optional count
3423 This function scrolls backward by @var{count} lines in the selected
3424 window.
3425
3426 If @var{count} is negative, it scrolls forward instead. In other
3427 respects, it behaves the same way as @code{scroll-up} does.
3428 @end deffn
3429
3430 @deffn Command scroll-up-command &optional count
3431 This behaves like @code{scroll-up}, except that if the selected window
3432 cannot be scrolled any further and the value of the variable
3433 @code{scroll-error-top-bottom} is @code{t}, it tries to move to the
3434 end of the buffer instead. If point is already there, it signals an
3435 error.
3436 @end deffn
3437
3438 @deffn Command scroll-down-command &optional count
3439 This behaves like @code{scroll-down}, except that if the selected
3440 window cannot be scrolled any further and the value of the variable
3441 @code{scroll-error-top-bottom} is @code{t}, it tries to move to the
3442 beginning of the buffer instead. If point is already there, it
3443 signals an error.
3444 @end deffn
3445
3446 @deffn Command scroll-other-window &optional count
3447 This function scrolls the text in another window upward @var{count}
3448 lines. Negative values of @var{count}, or @code{nil}, are handled
3449 as in @code{scroll-up}.
3450
3451 You can specify which buffer to scroll by setting the variable
3452 @code{other-window-scroll-buffer} to a buffer. If that buffer isn't
3453 already displayed, @code{scroll-other-window} displays it in some
3454 window.
3455
3456 When the selected window is the minibuffer, the next window is normally
3457 the leftmost one immediately above it. You can specify a different
3458 window to scroll, when the minibuffer is selected, by setting the variable
3459 @code{minibuffer-scroll-window}. This variable has no effect when any
3460 other window is selected. When it is non-@code{nil} and the
3461 minibuffer is selected, it takes precedence over
3462 @code{other-window-scroll-buffer}. @xref{Definition of
3463 minibuffer-scroll-window}.
3464
3465 When the minibuffer is active, it is the next window if the selected
3466 window is the one at the bottom right corner. In this case,
3467 @code{scroll-other-window} attempts to scroll the minibuffer. If the
3468 minibuffer contains just one line, it has nowhere to scroll to, so the
3469 line reappears after the echo area momentarily displays the message
3470 @samp{End of buffer}.
3471 @end deffn
3472
3473 @defvar other-window-scroll-buffer
3474 If this variable is non-@code{nil}, it tells @code{scroll-other-window}
3475 which buffer's window to scroll.
3476 @end defvar
3477
3478 @defopt scroll-margin
3479 This option specifies the size of the scroll margin---a minimum number
3480 of lines between point and the top or bottom of a window. Whenever
3481 point gets within this many lines of the top or bottom of the window,
3482 redisplay scrolls the text automatically (if possible) to move point
3483 out of the margin, closer to the center of the window.
3484 @end defopt
3485
3486 @defopt scroll-conservatively
3487 This variable controls how scrolling is done automatically when point
3488 moves off the screen (or into the scroll margin). If the value is a
3489 positive integer @var{n}, then redisplay scrolls the text up to
3490 @var{n} lines in either direction, if that will bring point back into
3491 proper view. This behavior is called @dfn{conservative scrolling}.
3492 Otherwise, scrolling happens in the usual way, under the control of
3493 other variables such as @code{scroll-up-aggressively} and
3494 @code{scroll-down-aggressively}.
3495
3496 The default value is zero, which means that conservative scrolling
3497 never happens.
3498 @end defopt
3499
3500 @defopt scroll-down-aggressively
3501 The value of this variable should be either @code{nil} or a fraction
3502 @var{f} between 0 and 1. If it is a fraction, that specifies where on
3503 the screen to put point when scrolling down. More precisely, when a
3504 window scrolls down because point is above the window start, the new
3505 start position is chosen to put point @var{f} part of the window
3506 height from the top. The larger @var{f}, the more aggressive the
3507 scrolling.
3508
3509 A value of @code{nil} is equivalent to .5, since its effect is to center
3510 point. This variable automatically becomes buffer-local when set in any
3511 fashion.
3512 @end defopt
3513
3514 @defopt scroll-up-aggressively
3515 Likewise, for scrolling up. The value, @var{f}, specifies how far
3516 point should be placed from the bottom of the window; thus, as with
3517 @code{scroll-up-aggressively}, a larger value scrolls more aggressively.
3518 @end defopt
3519
3520 @defopt scroll-step
3521 This variable is an older variant of @code{scroll-conservatively}.
3522 The difference is that if its value is @var{n}, that permits scrolling
3523 only by precisely @var{n} lines, not a smaller number. This feature
3524 does not work with @code{scroll-margin}. The default value is zero.
3525 @end defopt
3526
3527 @cindex @code{scroll-command} property
3528 @defopt scroll-preserve-screen-position
3529 If this option is @code{t}, whenever a scrolling command moves point
3530 off-window, Emacs tries to adjust point to keep the cursor at its old
3531 vertical position in the window, rather than the window edge.
3532
3533 If the value is non-@code{nil} and not @code{t}, Emacs adjusts point
3534 to keep the cursor at the same vertical position, even if the
3535 scrolling command didn't move point off-window.
3536
3537 This option affects all scroll commands that have a non-@code{nil}
3538 @code{scroll-command} symbol property.
3539 @end defopt
3540
3541 @defopt next-screen-context-lines
3542 The value of this variable is the number of lines of continuity to
3543 retain when scrolling by full screens. For example, @code{scroll-up}
3544 with an argument of @code{nil} scrolls so that this many lines at the
3545 bottom of the window appear instead at the top. The default value is
3546 @code{2}.
3547 @end defopt
3548
3549 @defopt scroll-error-top-bottom
3550 If this option is @code{nil} (the default), @code{scroll-up-command}
3551 and @code{scroll-down-command} simply signal an error when no more
3552 scrolling is possible.
3553
3554 If the value is @code{t}, these commands instead move point to the
3555 beginning or end of the buffer (depending on scrolling direction);
3556 only if point is already on that position do they signal an error.
3557 @end defopt
3558
3559 @deffn Command recenter &optional count
3560 @cindex centering point
3561 This function scrolls the text in the selected window so that point is
3562 displayed at a specified vertical position within the window. It does
3563 not move point with respect to the text.
3564
3565 If @var{count} is a non-negative number, that puts the line containing
3566 point @var{count} lines down from the top of the window. If
3567 @var{count} is a negative number, then it counts upward from the
3568 bottom of the window, so that @minus{}1 stands for the last usable
3569 line in the window.
3570
3571 If @var{count} is @code{nil} (or a non-@code{nil} list),
3572 @code{recenter} puts the line containing point in the middle of the
3573 window. If @var{count} is @code{nil}, this function may redraw the
3574 frame, according to the value of @code{recenter-redisplay}.
3575
3576 When @code{recenter} is called interactively, @var{count} is the raw
3577 prefix argument. Thus, typing @kbd{C-u} as the prefix sets the
3578 @var{count} to a non-@code{nil} list, while typing @kbd{C-u 4} sets
3579 @var{count} to 4, which positions the current line four lines from the
3580 top.
3581
3582 With an argument of zero, @code{recenter} positions the current line at
3583 the top of the window. The command @code{recenter-top-bottom} offers
3584 a more convenient way to achieve this.
3585 @end deffn
3586
3587 @vindex recenter-window-group-function
3588 @defun recenter-window-group &optional count
3589 This function is like @code{recenter}, except that when the selected
3590 window is part of a group of windows (@pxref{Window Group}),
3591 @code{recenter-window-group} scrolls the entire group. This condition
3592 holds when the buffer local variable
3593 @code{recenter-window-group-function} is set to a function. In this
3594 case, @code{recenter-window-group} calls the function with the
3595 argument @var{count}, then returns its result. The argument
3596 @var{count} has the same meaning as in @code{recenter}, but with
3597 respect to the entire window group.
3598 @end defun
3599
3600 @defopt recenter-redisplay
3601 If this variable is non-@code{nil}, calling @code{recenter} with a
3602 @code{nil} argument redraws the frame. The default value is
3603 @code{tty}, which means only redraw the frame if it is a tty frame.
3604 @end defopt
3605
3606 @deffn Command recenter-top-bottom &optional count
3607 This command, which is the default binding for @kbd{C-l}, acts like
3608 @code{recenter}, except if called with no argument. In that case,
3609 successive calls place point according to the cycling order defined
3610 by the variable @code{recenter-positions}.
3611 @end deffn
3612
3613 @defopt recenter-positions
3614 This variable controls how @code{recenter-top-bottom} behaves when
3615 called with no argument. The default value is @code{(middle top
3616 bottom)}, which means that successive calls of
3617 @code{recenter-top-bottom} with no argument cycle between placing
3618 point at the middle, top, and bottom of the window.
3619 @end defopt
3620
3621
3622 @node Vertical Scrolling
3623 @section Vertical Fractional Scrolling
3624 @cindex vertical fractional scrolling
3625 @cindex vertical scroll position
3626
3627 @dfn{Vertical fractional scrolling} means shifting text in a window
3628 up or down by a specified multiple or fraction of a line. Each window
3629 has a @dfn{vertical scroll position}, which is a number, never less than
3630 zero. It specifies how far to raise the contents of the window.
3631 Raising the window contents generally makes all or part of some lines
3632 disappear off the top, and all or part of some other lines appear at the
3633 bottom. The usual value is zero.
3634
3635 The vertical scroll position is measured in units of the normal line
3636 height, which is the height of the default font. Thus, if the value is
3637 .5, that means the window contents are scrolled up half the normal line
3638 height. If it is 3.3, that means the window contents are scrolled up
3639 somewhat over three times the normal line height.
3640
3641 What fraction of a line the vertical scrolling covers, or how many
3642 lines, depends on what the lines contain. A value of .5 could scroll a
3643 line whose height is very short off the screen, while a value of 3.3
3644 could scroll just part of the way through a tall line or an image.
3645
3646 @defun window-vscroll &optional window pixels-p
3647 This function returns the current vertical scroll position of
3648 @var{window}. The default for @var{window} is the selected window.
3649 If @var{pixels-p} is non-@code{nil}, the return value is measured in
3650 pixels, rather than in units of the normal line height.
3651
3652 @example
3653 @group
3654 (window-vscroll)
3655 @result{} 0
3656 @end group
3657 @end example
3658 @end defun
3659
3660 @defun set-window-vscroll window lines &optional pixels-p
3661 This function sets @var{window}'s vertical scroll position to
3662 @var{lines}. If @var{window} is @code{nil}, the selected window is
3663 used. The argument @var{lines} should be zero or positive; if not, it
3664 is taken as zero.
3665
3666
3667 The actual vertical scroll position must always correspond
3668 to an integral number of pixels, so the value you specify
3669 is rounded accordingly.
3670
3671 The return value is the result of this rounding.
3672
3673 @example
3674 @group
3675 (set-window-vscroll (selected-window) 1.2)
3676 @result{} 1.13
3677 @end group
3678 @end example
3679
3680 If @var{pixels-p} is non-@code{nil}, @var{lines} specifies a number of
3681 pixels. In this case, the return value is @var{lines}.
3682 @end defun
3683
3684 @defvar auto-window-vscroll
3685 If this variable is non-@code{nil}, the @code{line-move},
3686 @code{scroll-up}, and @code{scroll-down} functions will automatically
3687 modify the vertical scroll position to scroll through display rows
3688 that are taller than the height of the window, for example in the
3689 presence of large images.
3690 @end defvar
3691
3692 @node Horizontal Scrolling
3693 @section Horizontal Scrolling
3694 @cindex horizontal scrolling
3695
3696 @dfn{Horizontal scrolling} means shifting the image in the window left
3697 or right by a specified multiple of the normal character width. Each
3698 window has a @dfn{horizontal scroll position}, which is a number, never
3699 less than zero. It specifies how far to shift the contents left.
3700 Shifting the window contents left generally makes all or part of some
3701 characters disappear off the left, and all or part of some other
3702 characters appear at the right. The usual value is zero.
3703
3704 The horizontal scroll position is measured in units of the normal
3705 character width, which is the width of space in the default font. Thus,
3706 if the value is 5, that means the window contents are scrolled left by 5
3707 times the normal character width. How many characters actually
3708 disappear off to the left depends on their width, and could vary from
3709 line to line.
3710
3711 Because we read from side to side in the inner loop, and from top
3712 to bottom in the outer loop, the effect of horizontal scrolling is
3713 not like that of textual or vertical scrolling. Textual scrolling
3714 involves selection of a portion of text to display, and vertical
3715 scrolling moves the window contents contiguously; but horizontal
3716 scrolling causes part of @emph{each line} to go off screen.
3717
3718 Usually, no horizontal scrolling is in effect; then the leftmost
3719 column is at the left edge of the window. In this state, scrolling to
3720 the right is meaningless, since there is no data to the left of the edge
3721 to be revealed by it; so this is not allowed. Scrolling to the left is
3722 allowed; it scrolls the first columns of text off the edge of the window
3723 and can reveal additional columns on the right that were truncated
3724 before. Once a window has a nonzero amount of leftward horizontal
3725 scrolling, you can scroll it back to the right, but only so far as to
3726 reduce the net horizontal scroll to zero. There is no limit to how far
3727 left you can scroll, but eventually all the text will disappear off the
3728 left edge.
3729
3730 @vindex auto-hscroll-mode
3731 If @code{auto-hscroll-mode} is set, redisplay automatically alters
3732 the horizontal scrolling of a window as necessary to ensure that point
3733 is always visible. However, you can still set the horizontal
3734 scrolling value explicitly. The value you specify serves as a lower
3735 bound for automatic scrolling, i.e., automatic scrolling will not
3736 scroll a window to a column less than the specified one.
3737
3738 @deffn Command scroll-left &optional count set-minimum
3739 This function scrolls the selected window @var{count} columns to the
3740 left (or to the right if @var{count} is negative). The default
3741 for @var{count} is the window width, minus 2.
3742
3743 The return value is the total amount of leftward horizontal scrolling in
3744 effect after the change---just like the value returned by
3745 @code{window-hscroll} (below).
3746
3747 Note that text in paragraphs whose base direction is right-to-left
3748 (@pxref{Bidirectional Display}) moves in the opposite direction: e.g.,
3749 it moves to the right when @code{scroll-left} is invoked with a
3750 positive value of @var{count}.
3751
3752 Once you scroll a window as far right as it can go, back to its normal
3753 position where the total leftward scrolling is zero, attempts to scroll
3754 any farther right have no effect.
3755
3756 If @var{set-minimum} is non-@code{nil}, the new scroll amount becomes
3757 the lower bound for automatic scrolling; that is, automatic scrolling
3758 will not scroll a window to a column less than the value returned by
3759 this function. Interactive calls pass non-@code{nil} for
3760 @var{set-minimum}.
3761 @end deffn
3762
3763 @deffn Command scroll-right &optional count set-minimum
3764 This function scrolls the selected window @var{count} columns to the
3765 right (or to the left if @var{count} is negative). The default
3766 for @var{count} is the window width, minus 2. Aside from the direction
3767 of scrolling, this works just like @code{scroll-left}.
3768 @end deffn
3769
3770 @defun window-hscroll &optional window
3771 This function returns the total leftward horizontal scrolling of
3772 @var{window}---the number of columns by which the text in @var{window}
3773 is scrolled left past the left margin. (In right-to-left paragraphs,
3774 the value is the total amount of the rightward scrolling instead.)
3775 The default for @var{window} is the selected window.
3776
3777 The return value is never negative. It is zero when no horizontal
3778 scrolling has been done in @var{window} (which is usually the case).
3779
3780
3781 @example
3782 @group
3783 (window-hscroll)
3784 @result{} 0
3785 @end group
3786 @group
3787 (scroll-left 5)
3788 @result{} 5
3789 @end group
3790 @group
3791 (window-hscroll)
3792 @result{} 5
3793 @end group
3794 @end example
3795 @end defun
3796
3797 @defun set-window-hscroll window columns
3798 This function sets horizontal scrolling of @var{window}. The value of
3799 @var{columns} specifies the amount of scrolling, in terms of columns
3800 from the left margin (right margin in right-to-left paragraphs). The
3801 argument @var{columns} should be zero or positive; if not, it is taken
3802 as zero. Fractional values of @var{columns} are not supported at
3803 present.
3804
3805 Note that @code{set-window-hscroll} may appear not to work if you test
3806 it by evaluating a call with @kbd{M-:} in a simple way. What happens
3807 is that the function sets the horizontal scroll value and returns, but
3808 then redisplay adjusts the horizontal scrolling to make point visible,
3809 and this overrides what the function did. You can observe the
3810 function's effect if you call it while point is sufficiently far from
3811 the left margin that it will remain visible.
3812
3813 The value returned is @var{columns}.
3814
3815 @example
3816 @group
3817 (set-window-hscroll (selected-window) 10)
3818 @result{} 10
3819 @end group
3820 @end example
3821 @end defun
3822
3823 Here is how you can determine whether a given position @var{position}
3824 is off the screen due to horizontal scrolling:
3825
3826 @c FIXME: Maybe hscroll-on-screen-p is a better name?
3827 @example
3828 @group
3829 (defun hscroll-on-screen (window position)
3830 (save-excursion
3831 (goto-char position)
3832 (and
3833 (>= (- (current-column) (window-hscroll window)) 0)
3834 (< (- (current-column) (window-hscroll window))
3835 (window-width window)))))
3836 @end group
3837 @end example
3838
3839
3840 @node Coordinates and Windows
3841 @section Coordinates and Windows
3842 @cindex frame-relative coordinate
3843 @cindex coordinate, relative to frame
3844 @cindex window position
3845
3846 This section describes functions that report the position of a window.
3847 Most of these functions report positions relative to an origin at the
3848 native position of the window's frame (@pxref{Frame Geometry}). Some
3849 functions report positions relative to the origin of the display of the
3850 window's frame. In any case, the origin has the coordinates (0, 0) and
3851 X and Y coordinates increase rightward and downward
3852 respectively.
3853
3854 For the following functions, X and Y coordinates are reported in
3855 integer character units, i.e., numbers of lines and columns
3856 respectively. On a graphical display, each ``line'' and ``column''
3857 corresponds to the height and width of the default character specified by
3858 the frame's default font (@pxref{Frame Font}).
3859
3860 @defun window-edges &optional window body absolute pixelwise
3861 This function returns a list of the edge coordinates of @var{window}.
3862 If @var{window} is omitted or @code{nil}, it defaults to the selected
3863 window.
3864
3865 The return value has the form @code{(@var{left} @var{top} @var{right}
3866 @var{bottom})}. These list elements are, respectively, the X
3867 coordinate of the leftmost column occupied by the window, the Y
3868 coordinate of the topmost row, the X coordinate one column to the
3869 right of the rightmost column, and the Y coordinate one row down from
3870 the bottommost row.
3871
3872 Note that these are the actual outer edges of the window, including any
3873 header line, mode line, scroll bar, fringes, window divider and display
3874 margins. On a text terminal, if the window has a neighbor on its right,
3875 its right edge includes the separator line between the window and its
3876 neighbor.
3877
3878 If the optional argument @var{body} is @code{nil}, this means to
3879 return the edges corresponding to the total size of @var{window}.
3880 @var{body} non-@code{nil} means to return the edges of @var{window}'s
3881 body (aka text area). If @var{body} is non-@code{nil}, @var{window}
3882 must specify a live window.
3883
3884 If the optional argument @var{absolute} is @code{nil}, this means to
3885 return edges relative to the native position of @var{window}'s frame.
3886 @var{absolute} non-@code{nil} means to return coordinates relative to
3887 the origin (0, 0) of @var{window}'s display. On non-graphical systems
3888 this argument has no effect.
3889
3890 If the optional argument @var{pixelwise} is @code{nil}, this means to
3891 return the coordinates in terms of the default character width and
3892 height of @var{window}'s frame (@pxref{Frame Font}), rounded if
3893 necessary. @var{pixelwise} non-@code{nil} means to return the
3894 coordinates in pixels. Note that the pixel specified by @var{right} and
3895 @var{bottom} is immediately outside of these edges. If @var{absolute}
3896 is non-@code{nil}, @var{pixelwise} is implicitly non-@code{nil} too.
3897 @end defun
3898
3899 @defun window-body-edges &optional window
3900 This function returns the edges of @var{window}'s body (@pxref{Window
3901 Sizes}). Calling @code{(window-body-edges window)} is equivalent to
3902 calling @code{(window-edges window t)}, see above.
3903 @end defun
3904
3905 @comment The following two functions are confusing and hardly used.
3906 @ignore
3907 @defun window-left-column &optional window
3908 This function returns the leftmost column of @var{window}. This value
3909 equals the @var{left} entry in the list returned by @code{(window-edges
3910 window)} minus the number of columns occupied by the internal border of
3911 @var{window}'s frame.
3912 @end defun
3913
3914 @defun window-top-line &optional window
3915 This function returns the topmost row of @var{window}. This value is
3916 equal to the @var{top} entry in the list returned by @code{(window-edges
3917 window)} minus the number of lines occupied by the internal border of
3918 @var{window}'s frame.
3919 @end defun
3920 @end ignore
3921
3922 The following functions can be used to relate a set of
3923 frame-relative coordinates to a window:
3924
3925 @defun window-at x y &optional frame
3926 This function returns the live window at the coordinates @var{x} and
3927 @var{y} given in default character sizes (@pxref{Frame Font}) relative
3928 to the native position of @var{frame} (@pxref{Frame Geometry}).
3929
3930 If there is no window at that position, the return value is @code{nil}.
3931 If @var{frame} is omitted or @code{nil}, it defaults to the selected
3932 frame.
3933 @end defun
3934
3935 @defun coordinates-in-window-p coordinates window
3936 This function checks whether a window @var{window} occupies the frame
3937 relative coordinates @var{coordinates}, and if so, which part of the
3938 window that is. @var{window} should be a live window.
3939
3940 @var{coordinates} should be a cons cell of the form @code{(@var{x}
3941 . @var{y})}, where @var{x} and @var{y} are given in default character
3942 sizes (@pxref{Frame Font}) relative to the native position of
3943 @var{window}'s frame (@pxref{Frame Geometry}).
3944
3945 If there is no window at the specified position, the return value is
3946 @code{nil} . Otherwise, the return value is one of the following:
3947
3948 @table @code
3949 @item (@var{relx} . @var{rely})
3950 The coordinates are inside @var{window}. The numbers @var{relx} and
3951 @var{rely} are the equivalent window-relative coordinates for the
3952 specified position, counting from 0 at the top left corner of the
3953 window.
3954
3955 @item mode-line
3956 The coordinates are in the mode line of @var{window}.
3957
3958 @item header-line
3959 The coordinates are in the header line of @var{window}.
3960
3961 @item right-divider
3962 The coordinates are in the divider separating @var{window} from a
3963 window on the right.
3964
3965 @item bottom-divider
3966 The coordinates are in the divider separating @var{window} from a
3967 window beneath.
3968
3969 @item vertical-line
3970 The coordinates are in the vertical line between @var{window} and its
3971 neighbor to the right. This value occurs only if the window doesn't
3972 have a scroll bar; positions in a scroll bar are considered outside the
3973 window for these purposes.
3974
3975 @item left-fringe
3976 @itemx right-fringe
3977 The coordinates are in the left or right fringe of the window.
3978
3979 @item left-margin
3980 @itemx right-margin
3981 The coordinates are in the left or right margin of the window.
3982
3983 @item nil
3984 The coordinates are not in any part of @var{window}.
3985 @end table
3986
3987 The function @code{coordinates-in-window-p} does not require a frame as
3988 argument because it always uses the frame that @var{window} is on.
3989 @end defun
3990
3991 The following functions return window positions in pixels, rather
3992 than character units. Though mostly useful on graphical displays,
3993 they can also be called on text terminals, where the screen area of
3994 each text character is taken to be one pixel.
3995
3996 @defun window-pixel-edges &optional window
3997 This function returns a list of pixel coordinates for the edges of
3998 @var{window}. Calling @code{(window-pixel-edges window)} is equivalent
3999 to calling @code{(window-edges window nil nil t)}, see above.
4000 @end defun
4001
4002 @comment The following two functions are confusing and hardly used.
4003 @ignore
4004 @defun window-pixel-left &optional window
4005 This function returns the left pixel edge of window @var{window}. This
4006 value equals the @var{left} entry in the list returned by
4007 @code{(window-pixel-edges window)} minus the number of pixels occupied
4008 by the internal border of @var{window}'s frame. @var{window} must be a
4009 valid window and defaults to the selected one.
4010 @end defun
4011
4012 @defun window-pixel-top &optional window
4013 This function returns the top pixel edge of window @var{window}. This
4014 value is equal to the @var{top} entry in the list returned by
4015 @code{(window-pixel-edges window)} minus the number of pixels occupied
4016 by the internal border of @var{window}'s frame. @var{window} must be a
4017 valid window and defaults to the selected one.
4018 @end defun
4019 @end ignore
4020
4021 @defun window-body-pixel-edges &optional window
4022 This function returns the pixel edges of @var{window}'s body. Calling
4023 @code{(window-body-pixel-edges window)} is equivalent to calling
4024 @code{(window-edges window t nil t)}, see above.
4025 @end defun
4026
4027 The following functions return window positions in pixels, relative to
4028 the origin of the display screen rather than that of the frame:
4029
4030 @defun window-absolute-pixel-edges &optional window
4031 This function returns the pixel coordinates of @var{WINDOW} relative to
4032 an origin at (0, 0) of the display of @var{window}'s frame. Calling
4033 @code{(window-absolute-pixel-edges)} is equivalent to calling
4034 @code{(window-edges window nil t t)}, see above.
4035 @end defun
4036
4037 @defun window-absolute-body-pixel-edges &optional window
4038 This function returns the pixel coordinates of @var{WINDOW}'s body
4039 relative to an origin at (0, 0) of the display of @var{window}'s frame.
4040 Calling @code{(window-absolute-body-pixel-edges window)} is equivalent
4041 to calling @code{(window-edges window t t t)}, see above.
4042
4043 Combined with @code{set-mouse-absolute-pixel-position}, this function
4044 can be used to move the mouse pointer to an arbitrary buffer position
4045 visible in some window:
4046
4047 @example
4048 @group
4049 (let ((edges (window-absolute-body-pixel-edges))
4050 (position (pos-visible-in-window-p nil nil t)))
4051 (set-mouse-absolute-pixel-position
4052 (+ (nth 0 edges) (nth 0 position))
4053 (+ (nth 1 edges) (nth 1 position))))
4054 @end group
4055 @end example
4056
4057 On a graphical terminal this form ``warps'' the mouse cursor to the
4058 upper left corner of the glyph at the selected window's point. A
4059 position calculated this way can be also used to show a tooltip window
4060 there.
4061 @end defun
4062
4063 The following function returns the screen coordinates of a buffer
4064 position visible in a window:
4065
4066 @defun window-absolute-pixel-position &optional position window
4067 If the buffer position @var{position} is visible in window @var{window},
4068 this function returns the display coordinates of the upper/left corner
4069 of the glyph at @var{position}. The return value is a cons of the X-
4070 and Y-coordinates of that corner, relative to an origin at (0, 0) of
4071 @var{window}'s display. It returns @code{nil} if @var{position} is not
4072 visible in @var{window}.
4073
4074 @var{window} must be a live window and defaults to the selected
4075 window. @var{position} defaults to the value of @code{window-point}
4076 of @var{window}.
4077
4078 This means that in order to move the mouse pointer to the position of
4079 point in the selected window, it's sufficient to write:
4080
4081 @example
4082 @group
4083 (let ((position (window-absolute-pixel-position)))
4084 (set-mouse-absolute-pixel-position
4085 (car position) (cdr position)))
4086 @end group
4087 @end example
4088 @end defun
4089
4090
4091 @node Window Configurations
4092 @section Window Configurations
4093 @cindex window configurations
4094 @cindex saving window information
4095
4096 A @dfn{window configuration} records the entire layout of one
4097 frame---all windows, their sizes, which buffers they contain, how those
4098 buffers are scrolled, and their value of point; also their
4099 fringes, margins, and scroll bar settings. It also includes the value
4100 of @code{minibuffer-scroll-window}. As a special exception, the window
4101 configuration does not record the value of point in the selected window
4102 for the current buffer.
4103
4104 You can bring back an entire frame layout by restoring a previously
4105 saved window configuration. If you want to record the layout of all
4106 frames instead of just one, use a frame configuration instead of a
4107 window configuration. @xref{Frame Configurations}.
4108
4109 @defun current-window-configuration &optional frame
4110 This function returns a new object representing @var{frame}'s current
4111 window configuration. The default for @var{frame} is the selected
4112 frame. The variable @code{window-persistent-parameters} specifies
4113 which window parameters (if any) are saved by this function.
4114 @xref{Window Parameters}.
4115 @end defun
4116
4117 @defun set-window-configuration configuration
4118 This function restores the configuration of windows and buffers as
4119 specified by @var{configuration}, for the frame that @var{configuration}
4120 was created for.
4121
4122 The argument @var{configuration} must be a value that was previously
4123 returned by @code{current-window-configuration}. The configuration is
4124 restored in the frame from which @var{configuration} was made, whether
4125 that frame is selected or not. In some rare cases this may trigger
4126 execution of the @code{window-size-change-functions} (@pxref{Window
4127 Hooks}) even if the size of windows did not change at all. The
4128 @code{window-configuration-change-hook} functions will be called if and
4129 only if at least one window was added to or deleted from the frame.
4130
4131 If the frame from which @var{configuration} was saved is dead, all this
4132 function does is restore the three variables @code{window-min-height},
4133 @code{window-min-width} and @code{minibuffer-scroll-window}. In this
4134 case, the function returns @code{nil}. Otherwise, it returns @code{t}.
4135
4136 Here is a way of using this function to get the same effect
4137 as @code{save-window-excursion}:
4138
4139 @example
4140 @group
4141 (let ((config (current-window-configuration)))
4142 (unwind-protect
4143 (progn (split-window-below nil)
4144 @dots{})
4145 (set-window-configuration config)))
4146 @end group
4147 @end example
4148 @end defun
4149
4150 @defmac save-window-excursion forms@dots{}
4151 This macro records the window configuration of the selected frame,
4152 executes @var{forms} in sequence, then restores the earlier window
4153 configuration. The return value is the value of the final form in
4154 @var{forms}.
4155
4156 Most Lisp code should not use this macro; @code{save-selected-window}
4157 is typically sufficient. In particular, this macro cannot reliably
4158 prevent the code in @var{forms} from opening new windows, because new
4159 windows might be opened in other frames (@pxref{Choosing Window}), and
4160 @code{save-window-excursion} only saves and restores the window
4161 configuration on the current frame.
4162
4163 Do not use this macro in @code{window-size-change-functions}; exiting
4164 the macro triggers execution of @code{window-size-change-functions},
4165 leading to an endless loop.
4166 @end defmac
4167
4168 @defun window-configuration-p object
4169 This function returns @code{t} if @var{object} is a window configuration.
4170 @end defun
4171
4172 @defun compare-window-configurations config1 config2
4173 This function compares two window configurations as regards the
4174 structure of windows, but ignores the values of point and the
4175 saved scrolling positions---it can return @code{t} even if those
4176 aspects differ.
4177
4178 The function @code{equal} can also compare two window configurations; it
4179 regards configurations as unequal if they differ in any respect, even a
4180 saved point.
4181 @end defun
4182
4183 @defun window-configuration-frame config
4184 This function returns the frame for which the window configuration
4185 @var{config} was made.
4186 @end defun
4187
4188 Other primitives to look inside of window configurations would make
4189 sense, but are not implemented because we did not need them. See the
4190 file @file{winner.el} for some more operations on windows
4191 configurations.
4192
4193 The objects returned by @code{current-window-configuration} die
4194 together with the Emacs process. In order to store a window
4195 configuration on disk and read it back in another Emacs session, you
4196 can use the functions described next. These functions are also useful
4197 to clone the state of a frame into an arbitrary live window
4198 (@code{set-window-configuration} effectively clones the windows of a
4199 frame into the root window of that very frame only).
4200
4201 @cindex window state
4202 @defun window-state-get &optional window writable
4203 This function returns the state of @var{window} as a Lisp object. The
4204 argument @var{window} must be a valid window and defaults to the root
4205 window of the selected frame.
4206
4207 If the optional argument @var{writable} is non-@code{nil}, this means to
4208 not use markers for sampling positions like @code{window-point} or
4209 @code{window-start}. This argument should be non-@code{nil} when the
4210 state will be written to disk and read back in another session.
4211
4212 Together, the argument @var{writable} and the variable
4213 @code{window-persistent-parameters} specify which window parameters are
4214 saved by this function. @xref{Window Parameters}.
4215 @end defun
4216
4217 The value returned by @code{window-state-get} can be used in the same
4218 session to make a clone of a window in another window. It can be also
4219 written to disk and read back in another session. In either case, use
4220 the following function to restore the state of the window.
4221
4222 @defun window-state-put state &optional window ignore
4223 This function puts the window state @var{state} into @var{window}.
4224 The argument @var{state} should be the state of a window returned by
4225 an earlier invocation of @code{window-state-get}, see above. The
4226 optional argument @var{window} can be either a live window or an
4227 internal window (@pxref{Windows and Frames}) and defaults to the
4228 selected one. If @var{window} is not live, it is replaced by a live
4229 window before putting @var{state} into it.
4230
4231 If the optional argument @var{ignore} is non-@code{nil}, it means to ignore
4232 minimum window sizes and fixed-size restrictions. If @var{ignore}
4233 is @code{safe}, this means windows can get as small as one line
4234 and/or two columns.
4235 @end defun
4236
4237
4238 @node Window Parameters
4239 @section Window Parameters
4240 @cindex window parameters
4241
4242 This section describes how window parameters can be used to associate
4243 additional information with windows.
4244
4245 @defun window-parameter window parameter
4246 This function returns @var{window}'s value for @var{parameter}. The
4247 default for @var{window} is the selected window. If @var{window} has no
4248 setting for @var{parameter}, this function returns @code{nil}.
4249 @end defun
4250
4251 @defun window-parameters &optional window
4252 This function returns all parameters of @var{window} and their values.
4253 The default for @var{window} is the selected window. The return value
4254 is either @code{nil}, or an association list whose elements have the form
4255 @code{(@var{parameter} . @var{value})}.
4256 @end defun
4257
4258 @defun set-window-parameter window parameter value
4259 This function sets @var{window}'s value of @var{parameter} to
4260 @var{value} and returns @var{value}. The default for @var{window}
4261 is the selected window.
4262 @end defun
4263
4264 By default, the functions that save and restore window configurations or the
4265 states of windows (@pxref{Window Configurations}) do not care about
4266 window parameters. This means that when you change the value of a
4267 parameter within the body of a @code{save-window-excursion}, the
4268 previous value is not restored when that macro exits. It also means
4269 that when you restore via @code{window-state-put} a window state saved
4270 earlier by @code{window-state-get}, all cloned windows have their
4271 parameters reset to @code{nil}. The following variable allows you to
4272 override the standard behavior:
4273
4274 @defvar window-persistent-parameters
4275 This variable is an alist specifying which parameters get saved by
4276 @code{current-window-configuration} and @code{window-state-get}, and
4277 subsequently restored by @code{set-window-configuration} and
4278 @code{window-state-put}. @xref{Window Configurations}.
4279
4280 The @sc{car} of each entry of this alist is a symbol specifying the
4281 parameter. The @sc{cdr} should be one of the following:
4282
4283 @table @asis
4284 @item @code{nil}
4285 This value means the parameter is saved neither by
4286 @code{window-state-get} nor by @code{current-window-configuration}.
4287
4288 @item @code{t}
4289 This value specifies that the parameter is saved by
4290 @code{current-window-configuration} and (provided its @var{writable}
4291 argument is @code{nil}) by @code{window-state-get}.
4292
4293 @item @code{writable}
4294 This means that the parameter is saved unconditionally by both
4295 @code{current-window-configuration} and @code{window-state-get}. This
4296 value should not be used for parameters whose values do not have a read
4297 syntax. Otherwise, invoking @code{window-state-put} in another session
4298 may fail with an @code{invalid-read-syntax} error.
4299 @end table
4300 @end defvar
4301
4302 Some functions (notably @code{delete-window},
4303 @code{delete-other-windows} and @code{split-window}), may behave specially
4304 when their @var{window} argument has a parameter set. You can override
4305 such special behavior by binding the following variable to a
4306 non-@code{nil} value:
4307
4308 @defvar ignore-window-parameters
4309 If this variable is non-@code{nil}, some standard functions do not
4310 process window parameters. The functions currently affected by this are
4311 @code{split-window}, @code{delete-window}, @code{delete-other-windows},
4312 and @code{other-window}.
4313
4314 An application can bind this variable to a non-@code{nil} value around
4315 calls to these functions. If it does so, the application is fully
4316 responsible for correctly assigning the parameters of all involved
4317 windows when exiting that function.
4318 @end defvar
4319
4320 The following parameters are currently used by the window management
4321 code:
4322
4323 @table @asis
4324 @item @code{delete-window}
4325 This parameter affects the execution of @code{delete-window}
4326 (@pxref{Deleting Windows}).
4327
4328 @item @code{delete-other-windows}
4329 This parameter affects the execution of @code{delete-other-windows}
4330 (@pxref{Deleting Windows}).
4331
4332 @item @code{split-window}
4333 This parameter affects the execution of @code{split-window}
4334 (@pxref{Splitting Windows}).
4335
4336 @item @code{other-window}
4337 This parameter affects the execution of @code{other-window}
4338 (@pxref{Cyclic Window Ordering}).
4339
4340 @item @code{no-other-window}
4341 This parameter marks the window as not selectable by @code{other-window}
4342 (@pxref{Cyclic Window Ordering}).
4343
4344 @item @code{clone-of}
4345 This parameter specifies the window that this one has been cloned
4346 from. It is installed by @code{window-state-get} (@pxref{Window
4347 Configurations}).
4348
4349 @item @code{preserved-size}
4350 This parameter specifies a buffer, a direction where @code{nil} means
4351 vertical and @code{t} horizontal, and a size in pixels. If this window
4352 displays the specified buffer and its size in the indicated direction
4353 equals the size specified by this parameter, then Emacs will try to
4354 preserve the size of this window in the indicated direction. This
4355 parameter is installed and updated by the function
4356 @code{window-preserve-size} (@pxref{Preserving Window Sizes}).
4357
4358 @item @code{quit-restore}
4359 This parameter is installed by the buffer display functions
4360 (@pxref{Choosing Window}) and consulted by @code{quit-restore-window}
4361 (@pxref{Quitting Windows}). It contains four elements:
4362
4363 The first element is one of the symbols @code{window}, meaning that the
4364 window has been specially created by @code{display-buffer}; @code{frame},
4365 a separate frame has been created; @code{same}, the window has
4366 displayed the same buffer before; or @code{other}, the window showed
4367 another buffer before.
4368
4369 The second element is either one of the symbols @code{window} or
4370 @code{frame}, or a list whose elements are the buffer shown in the
4371 window before, that buffer's window start and window point positions,
4372 and the window's height at that time.
4373
4374 The third element is the window selected at the time the parameter was
4375 created. The function @code{quit-restore-window} tries to reselect that
4376 window when it deletes the window passed to it as argument.
4377
4378 The fourth element is the buffer whose display caused the creation of
4379 this parameter. @code{quit-restore-window} deletes the specified window
4380 only if it still shows that buffer.
4381 @end table
4382
4383 There are additional parameters @code{window-atom} and @code{window-side};
4384 these are reserved and should not be used by applications.
4385
4386
4387 @node Window Hooks
4388 @section Hooks for Window Scrolling and Changes
4389 @cindex hooks for window operations
4390
4391 This section describes how a Lisp program can take action whenever a
4392 window displays a different part of its buffer or a different buffer.
4393 There are three actions that can change this: scrolling the window,
4394 switching buffers in the window, and changing the size of the window.
4395 The first two actions run @code{window-scroll-functions}; the last runs
4396 @code{window-size-change-functions}.
4397
4398 @defvar window-scroll-functions
4399 This variable holds a list of functions that Emacs should call before
4400 redisplaying a window with scrolling. Displaying a different buffer in
4401 the window also runs these functions.
4402
4403 This variable is not a normal hook, because each function is called with
4404 two arguments: the window, and its new display-start position.
4405
4406 These functions must take care when using @code{window-end}
4407 (@pxref{Window Start and End}); if you need an up-to-date value, you
4408 must use the @var{update} argument to ensure you get it.
4409
4410 @strong{Warning:} don't use this feature to alter the way the window
4411 is scrolled. It's not designed for that, and such use probably won't
4412 work.
4413 @end defvar
4414
4415 @defvar window-size-change-functions
4416 This variable holds a list of functions to be called if the size of any
4417 window changes for any reason. The functions are called once per
4418 redisplay, and once for each frame on which size changes have occurred.
4419
4420 Each function receives the frame as its sole argument. To find out
4421 whether a specific window has changed size, compare the return values of
4422 @code{window-pixel-width-before-size-change} and
4423 @code{window-pixel-width} respectively
4424 @code{window-pixel-height-before-size-change} and
4425 @code{window-pixel-height} for that window (@pxref{Window Sizes}).
4426
4427 These function are usually only called when at least one window was
4428 added or has changed size since the last time this hook was run for the
4429 associated frame. In some rare cases this hook also runs when a window
4430 that was added intermittently has been deleted afterwards. In these
4431 cases none of the windows on the frame will appear to have changed its
4432 size.
4433
4434 You may use @code{save-selected-window} in these functions
4435 (@pxref{Selecting Windows}). However, do not use
4436 @code{save-window-excursion} (@pxref{Window Configurations}); exiting
4437 that macro counts as a size change, which would cause these functions to
4438 be called again.
4439 @end defvar
4440
4441 @defvar window-configuration-change-hook
4442 A normal hook that is run every time the window configuration of a frame
4443 changes. Window configuration changes include splitting and deleting
4444 windows and the display of a different buffer in a window. Resizing the
4445 frame or individual windows do not count as configuration changes. Use
4446 @code{window-size-change-functions}, see above, when you want to track
4447 size changes that are not caused by the deletion or creation of windows.
4448
4449 The buffer-local part of this hook is run once for each window on the
4450 affected frame, with the relevant window selected and its buffer
4451 current. The global part is run once for the modified frame, with that
4452 frame selected.
4453 @end defvar
4454
4455 In addition, you can use @code{jit-lock-register} to register a Font
4456 Lock fontification function, which will be called whenever parts of a
4457 buffer are (re)fontified because a window was scrolled or its size
4458 changed. @xref{Other Font Lock Variables}.