annotate doc/lispref/windows.texi @ 98978:f570df2cc52d

*** empty log message ***
author Eli Zaretskii <eliz@gnu.org>
date Tue, 21 Oct 2008 13:46:08 +0000
parents 3240f5341524
children da79c29252c4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1 @c -*-texinfo-*-
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2 @c This is part of the GNU Emacs Lisp Reference Manual.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2001,
87649
107ccd98fa12 Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 85114
diff changeset
4 @c 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
5 @c See the file elisp.texi for copying conditions.
84116
0ba80d073e27 (setfilename): Go up one more level to ../../info.
Glenn Morris <rgm@gnu.org>
parents: 84112
diff changeset
6 @setfilename ../../info/windows
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
7 @node Windows, Frames, Buffers, Top
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
8 @chapter Windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
9
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
10 This chapter describes most of the functions and variables related to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
11 Emacs windows. See @ref{Display}, for information on how text is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
12 displayed in windows.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
13
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
14 @menu
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
15 * Basic Windows:: Basic information on using windows.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
16 * Splitting Windows:: Splitting one window into two windows.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
17 * Deleting Windows:: Deleting a window gives its space to other windows.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
18 * Selecting Windows:: The selected window is the one that you edit in.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
19 * Cyclic Window Ordering:: Moving around the existing windows.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
20 * Buffers and Windows:: Each window displays the contents of a buffer.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
21 * Displaying Buffers:: Higher-level functions for displaying a buffer
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
22 and choosing a window for it.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
23 * Choosing Window:: How to choose a window for displaying a buffer.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
24 * Window Point:: Each window has its own location of point.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
25 * Window Start:: The display-start position controls which text
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
26 is on-screen in the window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
27 * Textual Scrolling:: Moving text up and down through the window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
28 * Vertical Scrolling:: Moving the contents up and down on the window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
29 * Horizontal Scrolling:: Moving the contents sideways on the window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
30 * Size of Window:: Accessing the size of a window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
31 * Resizing Windows:: Changing the size of a window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
32 * Coordinates and Windows:: Converting coordinates to windows.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
33 * Window Tree:: The layout and sizes of all windows in a frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
34 * Window Configurations:: Saving and restoring the state of the screen.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
35 * Window Hooks:: Hooks for scrolling, window size changes,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
36 redisplay going past a certain point,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
37 or window configuration changes.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
38 @end menu
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
39
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
40 @node Basic Windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
41 @section Basic Concepts of Emacs Windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
42 @cindex window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
43 @cindex selected window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
44
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
45 A @dfn{window} in Emacs is the physical area of the screen in which a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
46 buffer is displayed. The term is also used to refer to a Lisp object that
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
47 represents that screen area in Emacs Lisp. It should be
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
48 clear from the context which is meant.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
49
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
50 Emacs groups windows into frames. A frame represents an area of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
51 screen available for Emacs to use. Each frame always contains at least
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
52 one window, but you can subdivide it vertically or horizontally into
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
53 multiple nonoverlapping Emacs windows.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
54
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
55 In each frame, at any time, one and only one window is designated as
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
56 @dfn{selected within the frame}. The frame's cursor appears in that
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
57 window, but the other windows have ``non-selected'' cursors, normally
85114
5039706521c9 Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 84116
diff changeset
58 less visible. (@pxref{Cursor Parameters}, for customization of this.)
5039706521c9 Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 84116
diff changeset
59 At any time, one frame is the selected frame; and the window selected
5039706521c9 Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 84116
diff changeset
60 within that frame is @dfn{the selected window}. The selected window's
5039706521c9 Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 84116
diff changeset
61 buffer is usually the current buffer (except when @code{set-buffer}
5039706521c9 Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 84116
diff changeset
62 has been used). @xref{Current Buffer}.
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
63
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
64 For practical purposes, a window exists only while it is displayed in
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
65 a frame. Once removed from the frame, the window is effectively deleted
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
66 and should not be used, @emph{even though there may still be references
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
67 to it} from other Lisp objects. Restoring a saved window configuration
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
68 is the only way for a window no longer on the screen to come back to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
69 life. (@xref{Deleting Windows}.)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
70
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
71 Each window has the following attributes:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
72
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
73 @itemize @bullet
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
74 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
75 containing frame
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
76
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
77 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
78 window height
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
79
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
80 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
81 window width
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
82
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
83 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
84 window edges with respect to the screen or frame
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
85
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
86 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
87 the buffer it displays
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
88
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
89 @item
98794
72fc90d94beb (Basic Windows, Splitting Windows): Fix whitespace and reword.
Martin Rudalics <rudalics@gmx.at>
parents: 92148
diff changeset
90 buffer position at the upper left corner of the window
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
91
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
92 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
93 amount of horizontal scrolling, in columns
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
94
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
95 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
96 point
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
97
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
98 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
99 the mark
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
100
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
101 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
102 how recently the window was selected
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
103
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
104 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
105 fringe settings
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
106
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
107 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
108 display margins
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
109
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
110 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
111 scroll-bar settings
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
112 @end itemize
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
113
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
114 @cindex multiple windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
115 Users create multiple windows so they can look at several buffers at
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
116 once. Lisp libraries use multiple windows for a variety of reasons, but
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
117 most often to display related information. In Rmail, for example, you
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
118 can move through a summary buffer in one window while the other window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
119 shows messages one at a time as they are reached.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
120
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
121 The meaning of ``window'' in Emacs is similar to what it means in the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
122 context of general-purpose window systems such as X, but not identical.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
123 The X Window System places X windows on the screen; Emacs uses one or
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
124 more X windows as frames, and subdivides them into
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
125 Emacs windows. When you use Emacs on a character-only terminal, Emacs
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
126 treats the whole terminal screen as one frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
127
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
128 @cindex terminal screen
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
129 @cindex screen of terminal
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
130 @cindex tiled windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
131 Most window systems support arbitrarily located overlapping windows.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
132 In contrast, Emacs windows are @dfn{tiled}; they never overlap, and
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
133 together they fill the whole screen or frame. Because of the way in
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
134 which Emacs creates new windows and resizes them, not all conceivable
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
135 tilings of windows on an Emacs frame are actually possible.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
136 @xref{Splitting Windows}, and @ref{Size of Window}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
137
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
138 @xref{Display}, for information on how the contents of the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
139 window's buffer are displayed in the window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
140
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
141 @defun windowp object
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
142 This function returns @code{t} if @var{object} is a window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
143 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
144
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
145 @node Splitting Windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
146 @section Splitting Windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
147 @cindex splitting windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
148 @cindex window splitting
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
149
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
150 The functions described here are the primitives used to split a window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
151 into two windows. Two higher level functions sometimes split a window,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
152 but not always: @code{pop-to-buffer} and @code{display-buffer}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
153 (@pxref{Displaying Buffers}).
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
154
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
155 The functions described here do not accept a buffer as an argument.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
156 The two ``halves'' of the split window initially display the same buffer
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
157 previously visible in the window that was split.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
158
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
159 @deffn Command split-window &optional window size horizontal
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
160 This function splits a new window out of @var{window}'s screen area.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
161 It returns the new window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
162
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
163 If @var{horizontal} is non-@code{nil}, then @var{window} splits into
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
164 two side by side windows. The original window @var{window} keeps the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
165 leftmost @var{size} columns, and gives the rest of the columns to the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
166 new window. Otherwise, it splits into windows one above the other, and
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
167 @var{window} keeps the upper @var{size} lines and gives the rest of the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
168 lines to the new window. The original window is therefore the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
169 left-hand or upper of the two, and the new window is the right-hand or
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
170 lower.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
171
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
172 If @var{window} is omitted or @code{nil}, that stands for the selected
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
173 window. When you split the selected window, it remains selected.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
174
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
175 If @var{size} is omitted or @code{nil}, then @var{window} is divided
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
176 evenly into two parts. (If there is an odd line, it is allocated to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
177 the new window.) When @code{split-window} is called interactively,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
178 all its arguments are @code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
179
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
180 If splitting would result in making a window that is smaller than
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
181 @code{window-min-height} or @code{window-min-width}, the function
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
182 signals an error and does not split the window at all.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
183
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
184 The following example starts with one window on a screen that is 50
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
185 lines high by 80 columns wide; then it splits the window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
186
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
187 @smallexample
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
188 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
189 (setq w (selected-window))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
190 @result{} #<window 8 on windows.texi>
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
191 (window-edges) ; @r{Edges in order:}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
192 @result{} (0 0 80 50) ; @r{left--top--right--bottom}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
193 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
194
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
195 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
196 ;; @r{Returns window created}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
197 (setq w2 (split-window w 15))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
198 @result{} #<window 28 on windows.texi>
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
199 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
200 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
201 (window-edges w2)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
202 @result{} (0 15 80 50) ; @r{Bottom window;}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
203 ; @r{top is line 15}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
204 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
205 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
206 (window-edges w)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
207 @result{} (0 0 80 15) ; @r{Top window}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
208 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
209 @end smallexample
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
210
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
211 The screen looks like this:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
212
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
213 @smallexample
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
214 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
215 __________
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
216 | | line 0
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
217 | w |
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
218 |__________|
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
219 | | line 15
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
220 | w2 |
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
221 |__________|
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
222 line 50
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
223 column 0 column 80
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
224 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
225 @end smallexample
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
226
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
227 Next, split the top window horizontally:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
228
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
229 @smallexample
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
230 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
231 (setq w3 (split-window w 35 t))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
232 @result{} #<window 32 on windows.texi>
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
233 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
234 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
235 (window-edges w3)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
236 @result{} (35 0 80 15) ; @r{Left edge at column 35}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
237 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
238 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
239 (window-edges w)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
240 @result{} (0 0 35 15) ; @r{Right edge at column 35}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
241 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
242 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
243 (window-edges w2)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
244 @result{} (0 15 80 50) ; @r{Bottom window unchanged}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
245 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
246 @end smallexample
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
247
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
248 @need 3000
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
249 Now the screen looks like this:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
250
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
251 @smallexample
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
252 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
253 column 35
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
254 __________
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
255 | | | line 0
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
256 | w | w3 |
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
257 |___|______|
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
258 | | line 15
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
259 | w2 |
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
260 |__________|
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
261 line 50
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
262 column 0 column 80
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
263 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
264 @end smallexample
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
265
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
266 Normally, Emacs indicates the border between two side-by-side windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
267 with a scroll bar (@pxref{Layout Parameters,Scroll Bars}) or @samp{|}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
268 characters. The display table can specify alternative border
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
269 characters; see @ref{Display Tables}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
270 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
271
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
272 @deffn Command split-window-vertically &optional size
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
273 This function splits the selected window into two windows, one above the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
274 other, leaving the upper of the two windows selected, with @var{size}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
275 lines. (If @var{size} is negative, then the lower of the two windows
98794
72fc90d94beb (Basic Windows, Splitting Windows): Fix whitespace and reword.
Martin Rudalics <rudalics@gmx.at>
parents: 92148
diff changeset
276 gets @minus{}@var{size} lines and the upper window gets the rest, but
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
277 the upper window is still the one selected.) However, if
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
278 @code{split-window-keep-point} (see below) is @code{nil}, then either
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
279 window can be selected.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
280
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
281 In other respects, this function is similar to @code{split-window}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
282 In particular, the upper window is the original one and the return
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
283 value is the new, lower window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
284 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
285
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
286 @defopt split-window-keep-point
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
287 If this variable is non-@code{nil} (the default), then
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
288 @code{split-window-vertically} behaves as described above.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
289
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
290 If it is @code{nil}, then @code{split-window-vertically} adjusts point
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
291 in each of the two windows to avoid scrolling. (This is useful on
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
292 slow terminals.) It selects whichever window contains the screen line
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
293 that point was previously on.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
294
98794
72fc90d94beb (Basic Windows, Splitting Windows): Fix whitespace and reword.
Martin Rudalics <rudalics@gmx.at>
parents: 92148
diff changeset
295 This variable affects the behavior of @code{split-window-vertically}
72fc90d94beb (Basic Windows, Splitting Windows): Fix whitespace and reword.
Martin Rudalics <rudalics@gmx.at>
parents: 92148
diff changeset
296 only. It has no effect on the other functions described here.
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
297 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
298
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
299 @deffn Command split-window-horizontally &optional size
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
300 This function splits the selected window into two windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
301 side-by-side, leaving the selected window on the left with @var{size}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
302 columns. If @var{size} is negative, the rightmost window gets
98794
72fc90d94beb (Basic Windows, Splitting Windows): Fix whitespace and reword.
Martin Rudalics <rudalics@gmx.at>
parents: 92148
diff changeset
303 @minus{}@var{size} columns, but the leftmost window still remains
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
304 selected.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
305
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
306 This function is basically an interface to @code{split-window}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
307 You could define a simplified version of the function like this:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
308
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
309 @smallexample
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
310 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
311 (defun split-window-horizontally (&optional arg)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
312 "Split selected window into two windows, side by side..."
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
313 (interactive "P")
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
314 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
315 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
316 (let ((size (and arg (prefix-numeric-value arg))))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
317 (and size (< size 0)
98794
72fc90d94beb (Basic Windows, Splitting Windows): Fix whitespace and reword.
Martin Rudalics <rudalics@gmx.at>
parents: 92148
diff changeset
318 (setq size (+ (window-width) size)))
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
319 (split-window nil size t)))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
320 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
321 @end smallexample
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
322 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
323
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
324 @defun one-window-p &optional no-mini all-frames
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
325 This function returns non-@code{nil} if there is only one window. The
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
326 argument @var{no-mini}, if non-@code{nil}, means don't count the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
327 minibuffer even if it is active; otherwise, the minibuffer window is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
328 counted when it is active.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
329
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
330 The argument @var{all-frames} specifies which frames to consider. Here
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
331 are the possible values and their meanings:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
332
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
333 @table @asis
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
334 @item @code{nil}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
335 Count the windows in the selected frame, plus the minibuffer used
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
336 by that frame even if it lies in some other frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
337
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
338 @item @code{t}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
339 Count all windows in all existing frames.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
340
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
341 @item @code{visible}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
342 Count all windows in all visible frames.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
343
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
344 @item 0
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
345 Count all windows in all visible or iconified frames.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
346
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
347 @item anything else
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
348 Count precisely the windows in the selected frame, and no others.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
349 @end table
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
350 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
351
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
352 @node Deleting Windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
353 @section Deleting Windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
354 @cindex deleting windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
355
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
356 A window remains visible on its frame unless you @dfn{delete} it by
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
357 calling certain functions that delete windows. A deleted window cannot
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
358 appear on the screen, but continues to exist as a Lisp object until
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
359 there are no references to it. There is no way to cancel the deletion
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
360 of a window aside from restoring a saved window configuration
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
361 (@pxref{Window Configurations}). Restoring a window configuration also
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
362 deletes any windows that aren't part of that configuration.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
363
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
364 When you delete a window, the space it took up is given to one
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
365 adjacent sibling.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
366
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
367 @c Emacs 19 feature
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
368 @defun window-live-p window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
369 This function returns @code{nil} if @var{window} is deleted, and
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
370 @code{t} otherwise.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
371
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
372 @strong{Warning:} Erroneous information or fatal errors may result from
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
373 using a deleted window as if it were live.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
374 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
375
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
376 @deffn Command delete-window &optional window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
377 This function removes @var{window} from display, and returns @code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
378 If @var{window} is omitted, then the selected window is deleted. An
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
379 error is signaled if there is only one window when @code{delete-window}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
380 is called.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
381 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
382
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
383 @deffn Command delete-other-windows &optional window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
384 This function makes @var{window} the only window on its frame, by
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
385 deleting the other windows in that frame. If @var{window} is omitted or
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
386 @code{nil}, then the selected window is used by default.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
387
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
388 The return value is @code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
389 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
390
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
391 @deffn Command delete-windows-on buffer-or-name &optional frame
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
392 This function deletes all windows showing @var{buffer-or-name}. If
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
393 there are no windows showing @var{buffer-or-name}, it does nothing.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
394 @var{buffer-or-name} must be a buffer or the name of an existing
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
395 buffer.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
396
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
397 @code{delete-windows-on} operates frame by frame. If a frame has
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
398 several windows showing different buffers, then those showing
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
399 @var{buffer-or-name} are removed, and the others expand to fill the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
400 space. If all windows in some frame are showing @var{buffer-or-name}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
401 (including the case where there is only one window), then the frame
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
402 winds up with a single window showing another buffer chosen with
98835
4c36d8b3b766 (Choosing Window, Deleting Windows)
Martin Rudalics <rudalics@gmx.at>
parents: 98827
diff changeset
403 @code{other-buffer}. @xref{The Buffer List}. If, however, that window
4c36d8b3b766 (Choosing Window, Deleting Windows)
Martin Rudalics <rudalics@gmx.at>
parents: 98827
diff changeset
404 is dedicated and there are other frames left, the window's frame is
4c36d8b3b766 (Choosing Window, Deleting Windows)
Martin Rudalics <rudalics@gmx.at>
parents: 98827
diff changeset
405 deleted.
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
406
98944
e3bf6a4e1aa6 More wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98928
diff changeset
407 The argument @var{frame} specifies which frames to operate on. This
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
408 function does not use it in quite the same way as the other functions
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
409 which scan all windows; specifically, the values @code{t} and @code{nil}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
410 have the opposite of their meanings in other functions. Here are the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
411 full details:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
412
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
413 @itemize @bullet
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
414 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
415 If it is @code{nil}, operate on all frames.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
416 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
417 If it is @code{t}, operate on the selected frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
418 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
419 If it is @code{visible}, operate on all visible frames.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
420 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
421 If it is 0, operate on all visible or iconified frames.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
422 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
423 If it is a frame, operate on that frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
424 @end itemize
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
425
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
426 This function always returns @code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
427 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
428
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
429 @node Selecting Windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
430 @section Selecting Windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
431 @cindex selecting a window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
432
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
433 When a window is selected, the buffer in the window becomes the current
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
434 buffer, and the cursor will appear in it.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
435
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
436 @defun selected-window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
437 This function returns the selected window. This is the window in
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
438 which the cursor appears and to which many commands apply.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
439 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
440
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
441 @defun select-window window &optional norecord
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
442 This function makes @var{window} the selected window. The cursor then
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
443 appears in @var{window} (on redisplay). Unless @var{window} was
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
444 already selected, @code{select-window} makes @var{window}'s buffer the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
445 current buffer.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
446
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
447 Normally @var{window}'s selected buffer is moved to the front of the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
448 buffer list, but if @var{norecord} is non-@code{nil}, the buffer list
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
449 order is unchanged.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
450
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
451 The return value is @var{window}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
452
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
453 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
454 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
455 (setq w (next-window))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
456 (select-window w)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
457 @result{} #<window 65 on windows.texi>
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
458 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
459 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
460 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
461
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
462 @defmac save-selected-window forms@dots{}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
463 This macro records the selected frame, as well as the selected window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
464 of each frame, executes @var{forms} in sequence, then restores the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
465 earlier selected frame and windows. It also saves and restores the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
466 current buffer. It returns the value of the last form in @var{forms}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
467
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
468 This macro does not save or restore anything about the sizes,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
469 arrangement or contents of windows; therefore, if the @var{forms}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
470 change them, the change persists. If the previously selected window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
471 of some frame is no longer live at the time of exit from @var{forms},
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
472 that frame's selected window is left alone. If the previously
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
473 selected window is no longer live, then whatever window is selected at
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
474 the end of @var{forms} remains selected.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
475 @end defmac
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
476
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
477 @defmac with-selected-window window forms@dots{}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
478 This macro selects @var{window} (without changing the buffer list),
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
479 executes @var{forms} in sequence, then restores the previously
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
480 selected window and current buffer. It is just like
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
481 @code{save-selected-window}, except that it explicitly selects
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
482 @var{window}, also without altering the buffer list sequence.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
483 @end defmac
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
484
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
485 @cindex finding windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
486 The following functions choose one of the windows on the screen,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
487 offering various criteria for the choice.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
488
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
489 @defun get-lru-window &optional frame dedicated
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
490 This function returns the window least recently ``used'' (that is,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
491 selected). If any full-width windows are present, it only considers
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
492 these. The selected window is always the most recently used window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
493
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
494 The selected window can be the least recently used window if it is the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
495 only window. A newly created window becomes the least recently used
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
496 window until it is selected. A minibuffer window is never a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
497 candidate. Dedicated windows are never candidates unless the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
498 @var{dedicated} argument is non-@code{nil}, so if all
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
499 existing windows are dedicated, the value is @code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
500
98944
e3bf6a4e1aa6 More wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98928
diff changeset
501 The argument @var{frame} specifies which windows are considered.
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
502
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
503 @itemize @bullet
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
504 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
505 If it is @code{nil}, consider windows on the selected frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
506 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
507 If it is @code{t}, consider windows on all frames.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
508 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
509 If it is @code{visible}, consider windows on all visible frames.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
510 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
511 If it is 0, consider windows on all visible or iconified frames.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
512 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
513 If it is a frame, consider windows on that frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
514 @end itemize
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
515 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
516
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
517 @defun get-largest-window &optional frame dedicated
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
518 This function returns the window with the largest area (height times
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
519 width). If there are no side-by-side windows, then this is the window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
520 with the most lines. A minibuffer window is never a candidate.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
521 Dedicated windows are never candidates unless the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
522 @var{dedicated} argument is non-@code{nil}, so if all existing windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
523 are dedicated, the value is @code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
524
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
525 If there are two candidate windows of the same size, this function
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
526 prefers the one that comes first in the cyclic ordering of windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
527 (see following section), starting from the selected window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
528
98944
e3bf6a4e1aa6 More wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98928
diff changeset
529 The argument @var{frame} specifies which set of windows to
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
530 consider. See @code{get-lru-window}, above.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
531 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
532
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
533 @cindex window that satisfies a predicate
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
534 @cindex conditional selection of windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
535 @defun get-window-with-predicate predicate &optional minibuf all-frames default
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
536 This function returns a window satisfying @var{predicate}. It cycles
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
537 through all visible windows using @code{walk-windows} (@pxref{Cyclic
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
538 Window Ordering}), calling @var{predicate} on each one of them
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
539 with that window as its argument. The function returns the first
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
540 window for which @var{predicate} returns a non-@code{nil} value; if
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
541 that never happens, it returns @var{default}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
542
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
543 The optional arguments @var{minibuf} and @var{all-frames} specify the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
544 set of windows to include in the scan. See the description of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
545 @code{next-window} in @ref{Cyclic Window Ordering}, for details.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
546 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
547
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
548 @node Cyclic Window Ordering
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
549 @comment node-name, next, previous, up
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
550 @section Cyclic Ordering of Windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
551 @cindex cyclic ordering of windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
552 @cindex ordering of windows, cyclic
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
553 @cindex window ordering, cyclic
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
554
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
555 When you use the command @kbd{C-x o} (@code{other-window}) to select
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
556 the next window, it moves through all the windows on the screen in a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
557 specific cyclic order. For any given configuration of windows, this
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
558 order never varies. It is called the @dfn{cyclic ordering of windows}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
559
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
560 This ordering generally goes from top to bottom, and from left to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
561 right. But it may go down first or go right first, depending on the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
562 order in which the windows were split.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
563
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
564 If the first split was vertical (into windows one above each other),
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
565 and then the subwindows were split horizontally, then the ordering is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
566 left to right in the top of the frame, and then left to right in the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
567 next lower part of the frame, and so on. If the first split was
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
568 horizontal, the ordering is top to bottom in the left part, and so on.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
569 In general, within each set of siblings at any level in the window tree,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
570 the order is left to right, or top to bottom.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
571
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
572 @defun next-window &optional window minibuf all-frames
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
573 @cindex minibuffer window, and @code{next-window}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
574 This function returns the window following @var{window} in the cyclic
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
575 ordering of windows. This is the window that @kbd{C-x o} would select
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
576 if typed when @var{window} is selected. If @var{window} is the only
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
577 window visible, then this function returns @var{window}. If omitted,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
578 @var{window} defaults to the selected window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
579
98944
e3bf6a4e1aa6 More wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98928
diff changeset
580 The value of the argument @var{minibuf} specifies whether the
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
581 minibuffer is included in the window order. Normally, when
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
582 @var{minibuf} is @code{nil}, the minibuffer is included if it is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
583 currently active; this is the behavior of @kbd{C-x o}. (The minibuffer
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
584 window is active while the minibuffer is in use. @xref{Minibuffers}.)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
585
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
586 If @var{minibuf} is @code{t}, then the cyclic ordering includes the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
587 minibuffer window even if it is not active.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
588
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
589 If @var{minibuf} is neither @code{t} nor @code{nil}, then the minibuffer
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
590 window is not included even if it is active.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
591
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
592 The argument @var{all-frames} specifies which frames to consider. Here
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
593 are the possible values and their meanings:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
594
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
595 @table @asis
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
596 @item @code{nil}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
597 Consider all the windows in @var{window}'s frame, plus the minibuffer
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
598 used by that frame even if it lies in some other frame. If the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
599 minibuffer counts (as determined by @var{minibuf}), then all windows on
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
600 all frames that share that minibuffer count too.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
601
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
602 @item @code{t}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
603 Consider all windows in all existing frames.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
604
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
605 @item @code{visible}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
606 Consider all windows in all visible frames. (To get useful results, you
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
607 must ensure @var{window} is in a visible frame.)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
608
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
609 @item 0
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
610 Consider all windows in all visible or iconified frames.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
611
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
612 @item a frame
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
613 Consider all windows on that frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
614
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
615 @item anything else
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
616 Consider precisely the windows in @var{window}'s frame, and no others.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
617 @end table
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
618
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
619 This example assumes there are two windows, both displaying the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
620 buffer @samp{windows.texi}:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
621
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
622 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
623 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
624 (selected-window)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
625 @result{} #<window 56 on windows.texi>
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
626 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
627 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
628 (next-window (selected-window))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
629 @result{} #<window 52 on windows.texi>
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
630 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
631 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
632 (next-window (next-window (selected-window)))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
633 @result{} #<window 56 on windows.texi>
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
634 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
635 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
636 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
637
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
638 @defun previous-window &optional window minibuf all-frames
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
639 This function returns the window preceding @var{window} in the cyclic
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
640 ordering of windows. The other arguments specify which windows to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
641 include in the cycle, as in @code{next-window}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
642 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
643
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
644 @deffn Command other-window count &optional all-frames
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
645 This function selects the @var{count}th following window in the cyclic
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
646 order. If count is negative, then it moves back @minus{}@var{count}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
647 windows in the cycle, rather than forward. It returns @code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
648
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
649 The argument @var{all-frames} has the same meaning as in
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
650 @code{next-window}, but the @var{minibuf} argument of @code{next-window}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
651 is always effectively @code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
652
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
653 In an interactive call, @var{count} is the numeric prefix argument.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
654 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
655
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
656 @c Emacs 19 feature
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
657 @defun walk-windows proc &optional minibuf all-frames
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
658 This function cycles through all windows. It calls the function
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
659 @code{proc} once for each window, with the window as its sole
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
660 argument.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
661
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
662 The optional arguments @var{minibuf} and @var{all-frames} specify the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
663 set of windows to include in the scan. See @code{next-window}, above,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
664 for details.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
665 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
666
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
667 @defun window-list &optional frame minibuf window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
668 This function returns a list of the windows on @var{frame}, starting
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
669 with @var{window}. If @var{frame} is @code{nil} or omitted,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
670 @code{window-list} uses the selected frame instead; if @var{window} is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
671 @code{nil} or omitted, it uses the selected window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
672
98944
e3bf6a4e1aa6 More wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98928
diff changeset
673 The value of @var{minibuf} specifies if the minibuffer window is
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
674 included in the result list. If @var{minibuf} is @code{t}, the result
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
675 always includes the minibuffer window. If @var{minibuf} is @code{nil}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
676 or omitted, that includes the minibuffer window if it is active. If
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
677 @var{minibuf} is neither @code{nil} nor @code{t}, the result never
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
678 includes the minibuffer window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
679 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
680
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
681 @node Buffers and Windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
682 @section Buffers and Windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
683 @cindex examining windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
684 @cindex windows, controlling precisely
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
685 @cindex buffers, controlled in windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
686
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
687 This section describes low-level functions to examine windows or to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
688 display buffers in windows in a precisely controlled fashion.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
689 @iftex
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
690 See the following section for
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
691 @end iftex
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
692 @ifnottex
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
693 @xref{Displaying Buffers}, for
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
694 @end ifnottex
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
695 related functions that find a window to use and specify a buffer for it.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
696 The functions described there are easier to use than these, but they
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
697 employ heuristics in choosing or creating a window; use these functions
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
698 when you need complete control.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
699
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
700 @defun set-window-buffer window buffer-or-name &optional keep-margins
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
701 This function makes @var{window} display @var{buffer-or-name} as its
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
702 contents. It returns @code{nil}. @var{buffer-or-name} must be a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
703 buffer, or the name of an existing buffer. This is the fundamental
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
704 primitive for changing which buffer is displayed in a window, and all
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
705 ways of doing that call this function.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
706
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
707 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
708 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
709 (set-window-buffer (selected-window) "foo")
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
710 @result{} nil
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
711 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
712 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
713
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
714 Normally, displaying @var{buffer} in @var{window} resets the window's
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
715 display margins, fringe widths, scroll bar settings, and position
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
716 based on the local variables of @var{buffer}. However, if
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
717 @var{keep-margins} is non-@code{nil}, the display margins and fringe
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
718 widths of @var{window} remain unchanged. @xref{Fringes}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
719 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
720
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
721 @defvar buffer-display-count
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
722 This buffer-local variable records the number of times a buffer is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
723 displayed in a window. It is incremented each time
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
724 @code{set-window-buffer} is called for the buffer.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
725 @end defvar
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
726
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
727 @defun window-buffer &optional window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
728 This function returns the buffer that @var{window} is displaying. If
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
729 @var{window} is omitted, this function returns the buffer for the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
730 selected window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
731
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
732 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
733 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
734 (window-buffer)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
735 @result{} #<buffer windows.texi>
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
736 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
737 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
738 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
739
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
740 @defun get-buffer-window buffer-or-name &optional all-frames
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
741 This function returns a window currently displaying
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
742 @var{buffer-or-name}, or @code{nil} if there is none. If there are
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
743 several such windows, then the function returns the first one in the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
744 cyclic ordering of windows, starting from the selected window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
745 @xref{Cyclic Window Ordering}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
746
98944
e3bf6a4e1aa6 More wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98928
diff changeset
747 The argument @var{all-frames} specifies which windows to consider.
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
748
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
749 @itemize @bullet
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
750 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
751 If it is @code{nil}, consider windows on the selected frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
752 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
753 If it is @code{t}, consider windows on all frames.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
754 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
755 If it is @code{visible}, consider windows on all visible frames.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
756 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
757 If it is 0, consider windows on all visible or iconified frames.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
758 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
759 If it is a frame, consider windows on that frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
760 @end itemize
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
761 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
762
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
763 @defun get-buffer-window-list buffer-or-name &optional minibuf all-frames
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
764 This function returns a list of all the windows currently displaying
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
765 @var{buffer-or-name}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
766
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
767 The two optional arguments work like the optional arguments of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
768 @code{next-window} (@pxref{Cyclic Window Ordering}); they are @emph{not}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
769 like the single optional argument of @code{get-buffer-window}. Perhaps
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
770 we should change @code{get-buffer-window} in the future to make it
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
771 compatible with the other functions.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
772 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
773
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
774 @defvar buffer-display-time
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
775 This variable records the time at which a buffer was last made visible
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
776 in a window. It is always local in each buffer; each time
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
777 @code{set-window-buffer} is called, it sets this variable to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
778 @code{(current-time)} in the specified buffer (@pxref{Time of Day}).
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
779 When a buffer is first created, @code{buffer-display-time} starts out
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
780 with the value @code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
781 @end defvar
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
782
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
783 @node Displaying Buffers
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
784 @section Displaying Buffers in Windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
785 @cindex switching to a buffer
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
786 @cindex displaying a buffer
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
787
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
788 In this section we describe convenient functions that choose a window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
789 automatically and use it to display a specified buffer. These functions
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
790 can also split an existing window in certain circumstances. We also
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
791 describe variables that parameterize the heuristics used for choosing a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
792 window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
793 @iftex
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
794 See the preceding section for
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
795 @end iftex
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
796 @ifnottex
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
797 @xref{Buffers and Windows}, for
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
798 @end ifnottex
98812
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
799 low-level primitives that give you more precise control. All of these
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
800 functions work by calling @code{set-window-buffer}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
801
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
802 Do not use the functions in this section in order to make a buffer
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
803 current so that a Lisp program can access or modify it; they are too
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
804 drastic for that purpose, since they change the display of buffers in
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
805 windows, which would be gratuitous and surprise the user. Instead, use
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
806 @code{set-buffer} and @code{save-current-buffer} (@pxref{Current
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
807 Buffer}), which designate buffers as current for programmed access
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
808 without affecting the display of buffers in windows.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
809
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
810 @deffn Command switch-to-buffer buffer-or-name &optional norecord
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
811 This function makes @var{buffer-or-name} the current buffer, and also
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
812 displays the buffer in the selected window. This means that a human can
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
813 see the buffer and subsequent keyboard commands will apply to it.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
814 Contrast this with @code{set-buffer}, which makes @var{buffer-or-name}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
815 the current buffer but does not display it in the selected window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
816 @xref{Current Buffer}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
817
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
818 If @var{buffer-or-name} does not identify an existing buffer, then a new
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
819 buffer by that name is created. The major mode for the new buffer is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
820 set according to the variable @code{default-major-mode}. @xref{Auto
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
821 Major Mode}. If @var{buffer-or-name} is @code{nil},
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
822 @code{switch-to-buffer} chooses a buffer using @code{other-buffer}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
823
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
824 Normally the specified buffer is put at the front of the buffer list
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
825 (both the selected frame's buffer list and the frame-independent buffer
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
826 list). This affects the operation of @code{other-buffer}. However, if
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
827 @var{norecord} is non-@code{nil}, this is not done. @xref{The Buffer
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
828 List}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
829
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
830 The @code{switch-to-buffer} function is often used interactively, as
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
831 the binding of @kbd{C-x b}. It is also used frequently in programs. It
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
832 returns the buffer that it switched to.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
833 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
834
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
835 The next two functions are similar to @code{switch-to-buffer}, except
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
836 for the described features.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
837
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
838 @deffn Command switch-to-buffer-other-window buffer-or-name &optional norecord
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
839 This function makes @var{buffer-or-name} the current buffer and
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
840 displays it in a window not currently selected. It then selects that
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
841 window. The handling of the buffer is the same as in
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
842 @code{switch-to-buffer}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
843
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
844 The currently selected window is absolutely never used to do the job.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
845 If it is the only window, then it is split to make a distinct window for
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
846 this purpose. If the selected window is already displaying the buffer,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
847 then it continues to do so, but another window is nonetheless found to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
848 display it in as well.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
849
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
850 This function updates the buffer list just like @code{switch-to-buffer}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
851 unless @var{norecord} is non-@code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
852 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
853
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
854 @defun pop-to-buffer buffer-or-name &optional other-window norecord
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
855 This function makes @var{buffer-or-name} the current buffer and
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
856 switches to it in some window, preferably not the window previously
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
857 selected. The ``popped-to'' window becomes the selected window within
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
858 its frame. The return value is the buffer that was switched to.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
859 If @var{buffer-or-name} is @code{nil}, that means to choose some
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
860 other buffer, but you don't specify which.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
861
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
862 If the variable @code{pop-up-frames} is non-@code{nil},
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
863 @code{pop-to-buffer} looks for a window in any visible frame already
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
864 displaying the buffer; if there is one, it returns that window and makes
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
865 it be selected within its frame. If there is none, it creates a new
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
866 frame and displays the buffer in it.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
867
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
868 If @code{pop-up-frames} is @code{nil}, then @code{pop-to-buffer}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
869 operates entirely within the selected frame. (If the selected frame has
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
870 just a minibuffer, @code{pop-to-buffer} operates within the most
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
871 recently selected frame that was not just a minibuffer.)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
872
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
873 If the variable @code{pop-up-windows} is non-@code{nil}, windows may
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
874 be split to create a new window that is different from the original
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
875 window. For details, see @ref{Choosing Window}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
876
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
877 If @var{other-window} is non-@code{nil}, @code{pop-to-buffer} finds or
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
878 creates another window even if @var{buffer-or-name} is already visible
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
879 in the selected window. Thus @var{buffer-or-name} could end up
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
880 displayed in two windows. On the other hand, if @var{buffer-or-name} is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
881 already displayed in the selected window and @var{other-window} is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
882 @code{nil}, then the selected window is considered sufficient display
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
883 for @var{buffer-or-name}, so that nothing needs to be done.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
884
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
885 All the variables that affect @code{display-buffer} affect
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
886 @code{pop-to-buffer} as well. @xref{Choosing Window}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
887
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
888 If @var{buffer-or-name} is a string that does not name an existing
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
889 buffer, a buffer by that name is created. The major mode for the new
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
890 buffer is set according to the variable @code{default-major-mode}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
891 @xref{Auto Major Mode}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
892
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
893 This function updates the buffer list just like @code{switch-to-buffer}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
894 unless @var{norecord} is non-@code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
895 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
896
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
897 @deffn Command replace-buffer-in-windows buffer-or-name
98843
296e6dfba21e (Choosing Window, Displaying Buffers): Fix last changes.
Eli Zaretskii <eliz@gnu.org>
parents: 98835
diff changeset
898 This function replaces @var{buffer-or-name} in all windows displaying
296e6dfba21e (Choosing Window, Displaying Buffers): Fix last changes.
Eli Zaretskii <eliz@gnu.org>
parents: 98835
diff changeset
899 it with some other buffer. It uses @code{other-buffer} to choose the
296e6dfba21e (Choosing Window, Displaying Buffers): Fix last changes.
Eli Zaretskii <eliz@gnu.org>
parents: 98835
diff changeset
900 other buffer. In the usual applications of this function, you
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
901 don't care which other buffer is used; you just want to make sure that
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
902 @var{buffer-or-name} is no longer displayed.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
903
98843
296e6dfba21e (Choosing Window, Displaying Buffers): Fix last changes.
Eli Zaretskii <eliz@gnu.org>
parents: 98835
diff changeset
904 If the window displaying @var{buffer-or-name} is dedicated, and
296e6dfba21e (Choosing Window, Displaying Buffers): Fix last changes.
Eli Zaretskii <eliz@gnu.org>
parents: 98835
diff changeset
905 is not the only window on its frame, that window is deleted. If that
98835
4c36d8b3b766 (Choosing Window, Deleting Windows)
Martin Rudalics <rudalics@gmx.at>
parents: 98827
diff changeset
906 window is the only window on its frame and there are other frames left,
98843
296e6dfba21e (Choosing Window, Displaying Buffers): Fix last changes.
Eli Zaretskii <eliz@gnu.org>
parents: 98835
diff changeset
907 the window's frame is deleted as well. If there are no other frames left,
98835
4c36d8b3b766 (Choosing Window, Deleting Windows)
Martin Rudalics <rudalics@gmx.at>
parents: 98827
diff changeset
908 some other buffer is displayed in that window.
4c36d8b3b766 (Choosing Window, Deleting Windows)
Martin Rudalics <rudalics@gmx.at>
parents: 98827
diff changeset
909
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
910 This function returns @code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
911 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
912
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
913 @node Choosing Window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
914 @section Choosing a Window for Display
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
915
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
916 This section describes the basic facility that chooses a window to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
917 display a buffer in---@code{display-buffer}. All the higher-level
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
918 functions and commands use this subroutine. Here we describe how to use
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
919 @code{display-buffer} and how to customize it.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
920
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
921 @deffn Command display-buffer buffer-or-name &optional not-this-window frame
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
922 This command makes @var{buffer-or-name} appear in some window, like
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
923 @code{pop-to-buffer}, but it does not select that window and does not
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
924 make the buffer current. The identity of the selected window is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
925 unaltered by this function. @var{buffer-or-name} must be a buffer, or
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
926 the name of an existing buffer.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
927
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
928 If @var{not-this-window} is non-@code{nil}, it means to display the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
929 specified buffer in a window other than the selected one, even if it is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
930 already on display in the selected window. This can cause the buffer to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
931 appear in two windows at once. Otherwise, if @var{buffer-or-name} is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
932 already being displayed in any window, that is good enough, so this
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
933 function does nothing.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
934
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
935 @code{display-buffer} returns the window chosen to display
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
936 @var{buffer-or-name}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
937
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
938 If the argument @var{frame} is non-@code{nil}, it specifies which frames
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
939 to check when deciding whether the buffer is already displayed. If the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
940 buffer is already displayed in some window on one of these frames,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
941 @code{display-buffer} simply returns that window. Here are the possible
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
942 values of @var{frame}:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
943
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
944 @itemize @bullet
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
945 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
946 If it is @code{nil}, consider windows on the selected frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
947 (Actually, the last non-minibuffer frame.)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
948 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
949 If it is @code{t}, consider windows on all frames.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
950 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
951 If it is @code{visible}, consider windows on all visible frames.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
952 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
953 If it is 0, consider windows on all visible or iconified frames.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
954 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
955 If it is a frame, consider windows on that frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
956 @end itemize
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
957
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
958 Precisely how @code{display-buffer} finds or creates a window depends on
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
959 the variables described below.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
960 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
961
98827
4a504448eb9c (Choosing Window): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents: 98812
diff changeset
962 @defvar split-window-preferred-function
98812
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
963 This variable specifies how to split a window. Its value, if
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
964 non-@code{nil}, should be a function of one argument, which is a
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
965 window. If this variable specifies a function, @code{display-buffer}
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
966 will call it with one or more candidate windows when it looks for a
98827
4a504448eb9c (Choosing Window): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents: 98812
diff changeset
967 window to split. If the argument window fits, the function is
98812
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
968 expected to split it and return a new window. If the function returns
98827
4a504448eb9c (Choosing Window): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents: 98812
diff changeset
969 @code{nil}, then this window will not be split.
4a504448eb9c (Choosing Window): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents: 98812
diff changeset
970
4a504448eb9c (Choosing Window): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents: 98812
diff changeset
971 If the value of this variable is @code{nil}, @code{display-buffer}
4a504448eb9c (Choosing Window): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents: 98812
diff changeset
972 uses the other variables described below to decide whether and which
4a504448eb9c (Choosing Window): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents: 98812
diff changeset
973 window to split.
4a504448eb9c (Choosing Window): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents: 98812
diff changeset
974 @end defvar
98812
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
975
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
976 @defopt display-buffer-reuse-frames
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
977 If this variable is non-@code{nil}, @code{display-buffer} searches
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
978 existing frames for a window displaying the buffer. If the buffer is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
979 already displayed in a window in some frame, @code{display-buffer} makes
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
980 the frame visible and raises it, to use that window. If the buffer is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
981 not already displayed, or if @code{display-buffer-reuse-frames} is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
982 @code{nil}, @code{display-buffer}'s behavior is determined by other
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
983 variables, described below.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
984 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
985
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
986 @defopt pop-up-windows
98944
e3bf6a4e1aa6 More wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98928
diff changeset
987 This variable specifies whether @code{display-buffer} makes new windows.
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
988 If it is non-@code{nil} and there is only one window, then that window
98812
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
989 is split vertically. If it is @code{nil}, then @code{display-buffer}
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
990 does not split the single window, but uses it whole.
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
991 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
992
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
993 @defopt split-height-threshold
98944
e3bf6a4e1aa6 More wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98928
diff changeset
994 This variable specifies when @code{display-buffer} may split a window
98812
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
995 vertically, if there are multiple windows. If the value is a number,
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
996 @code{display-buffer} splits the largest window if it has at least
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
997 this many lines. If the largest window is not this tall, or if the
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
998 value of this variable is @code{nil}, @code{display-buffer} tries to
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
999 split some window horizontally, subject to restrictions of
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1000 @code{split-width-threshold} (see below). If splitting horizontally
98928
0f3820668269 Minor wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98894
diff changeset
1001 is impossible, @code{display-buffer} splits a window vertically
98812
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1002 only if it's the only window on its frame and not the minibuffer
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1003 window, and only if @code{pop-up-windows} is non-@code{nil}.
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1004 Otherwise, @code{display-buffer} uses one of the existing windows.
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1005 @end defopt
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1006
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1007 @defopt split-width-threshold
98944
e3bf6a4e1aa6 More wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98928
diff changeset
1008 This variable specifies when @code{display-buffer} may split a window
98812
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1009 horizontally. If the value is a number, @code{display-buffer} may
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1010 split a window if it has at least this many columns. If the value of
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1011 this variable is @code{nil}, @code{display-buffer} will not split any
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1012 windows horizontally. (It still might split some window vertically,
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1013 though, see above.)
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1014 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1015
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1016 @defopt even-window-heights
98944
e3bf6a4e1aa6 More wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98928
diff changeset
1017 This variable specifies whether @code{display-buffer} should even out
98928
0f3820668269 Minor wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98894
diff changeset
1018 window heights if the buffer gets displayed in an existing window,
0f3820668269 Minor wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98894
diff changeset
1019 above or beneath another existing window. If
0f3820668269 Minor wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98894
diff changeset
1020 @code{even-window-heights} is @code{t}, the default, window heights
0f3820668269 Minor wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98894
diff changeset
1021 will be evened out. If @code{even-window-heights} is @code{nil}, the
0f3820668269 Minor wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98894
diff changeset
1022 original window heights will be left alone.
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1023 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1024
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1025 @c Emacs 19 feature
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1026 @defopt pop-up-frames
98944
e3bf6a4e1aa6 More wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98928
diff changeset
1027 This variable specifies whether @code{display-buffer} makes new frames.
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1028 If it is non-@code{nil}, @code{display-buffer} looks for an existing
98812
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1029 window already displaying the desired buffer, on any visible frame.
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1030 If it finds one, it returns that window. Otherwise it makes a new
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1031 frame, unless the variable's value is @code{graphic-only} and the
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1032 selected frame is not on a graphic display. The variables
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1033 @code{pop-up-windows}, @code{split-height-threshold}, and
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1034 @code{split-width-threshold} do not matter if @code{pop-up-frames} is
38749a93f5a4 (Displaying Buffers): Minor wording fix.
Eli Zaretskii <eliz@gnu.org>
parents: 98794
diff changeset
1035 non-@code{nil}.
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1036
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1037 If @code{pop-up-frames} is @code{nil}, then @code{display-buffer} either
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1038 splits a window or reuses one.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1039
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1040 @xref{Frames}, for more information.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1041 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1042
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1043 @c Emacs 19 feature
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1044 @defopt pop-up-frame-function
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1045 This variable specifies how to make a new frame if @code{pop-up-frames}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1046 is non-@code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1047
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1048 Its value should be a function of no arguments. When
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1049 @code{display-buffer} makes a new frame, it does so by calling that
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1050 function, which should return a frame. The default value of the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1051 variable is a function that creates a frame using parameters from
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1052 @code{pop-up-frame-alist}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1053 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1054
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1055 @defopt pop-up-frame-alist
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1056 This variable holds an alist specifying frame parameters used when
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1057 @code{display-buffer} makes a new frame. @xref{Frame Parameters}, for
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1058 more information about frame parameters.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1059 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1060
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1061 @defopt special-display-buffer-names
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1062 A list of buffer names for buffers that should be displayed specially.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1063 If the buffer's name is in this list, @code{display-buffer} handles the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1064 buffer specially.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1065
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1066 By default, special display means to give the buffer a dedicated frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1067
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1068 If an element is a list, instead of a string, then the @sc{car} of the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1069 list is the buffer name, and the rest of the list says how to create
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1070 the frame. There are two possibilities for the rest of the list (its
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1071 @sc{cdr}). It can be an alist, specifying frame parameters, or it can
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1072 contain a function and arguments to give to it. (The function's first
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1073 argument is always the buffer to be displayed; the arguments from the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1074 list come after that.)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1075
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1076 For example:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1077
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1078 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1079 (("myfile" (minibuffer) (menu-bar-lines . 0)))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1080 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1081
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1082 @noindent
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1083 specifies to display a buffer named @samp{myfile} in a dedicated frame
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1084 with specified @code{minibuffer} and @code{menu-bar-lines} parameters.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1085
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1086 The list of frame parameters can also use the phony frame parameters
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1087 @code{same-frame} and @code{same-window}. If the specified frame
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1088 parameters include @code{(same-window . @var{value})} and @var{value}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1089 is non-@code{nil}, that means to display the buffer in the current
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1090 selected window. Otherwise, if they include @code{(same-frame .
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1091 @var{value})} and @var{value} is non-@code{nil}, that means to display
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1092 the buffer in a new window in the currently selected frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1093 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1094
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1095 @defopt special-display-regexps
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1096 A list of regular expressions that specify buffers that should be
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1097 displayed specially. If the buffer's name matches any of the regular
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1098 expressions in this list, @code{display-buffer} handles the buffer
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1099 specially.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1100
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1101 By default, special display means to give the buffer a dedicated frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1102
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1103 If an element is a list, instead of a string, then the @sc{car} of the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1104 list is the regular expression, and the rest of the list says how to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1105 create the frame. See above, under @code{special-display-buffer-names}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1106 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1107
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1108 @defun special-display-p buffer-name
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1109 This function returns non-@code{nil} if displaying a buffer
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1110 named @var{buffer-name} with @code{display-buffer} would
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1111 create a special frame. The value is @code{t} if it would
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1112 use the default frame parameters, or else the specified list
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1113 of frame parameters.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1114 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1115
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1116 @defvar special-display-function
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1117 This variable holds the function to call to display a buffer specially.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1118 It receives the buffer as an argument, and should return the window in
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1119 which it is displayed.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1120
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1121 The default value of this variable is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1122 @code{special-display-popup-frame}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1123 @end defvar
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1124
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1125 @defun special-display-popup-frame buffer &optional args
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1126 This function makes @var{buffer} visible in a frame of its own. If
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1127 @var{buffer} is already displayed in a window in some frame, it makes
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1128 the frame visible and raises it, to use that window. Otherwise, it
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1129 creates a frame that will be dedicated to @var{buffer}. This
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1130 function returns the window it used.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1131
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1132 If @var{args} is an alist, it specifies frame parameters for the new
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1133 frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1134
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1135 If @var{args} is a list whose @sc{car} is a symbol, then @code{(car
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1136 @var{args})} is called as a function to actually create and set up the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1137 frame; it is called with @var{buffer} as first argument, and @code{(cdr
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1138 @var{args})} as additional arguments.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1139
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1140 This function always uses an existing window displaying @var{buffer},
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1141 whether or not it is in a frame of its own; but if you set up the above
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1142 variables in your init file, before @var{buffer} was created, then
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1143 presumably the window was previously made by this function.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1144 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1145
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1146 @defopt special-display-frame-alist
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1147 @anchor{Definition of special-display-frame-alist}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1148 This variable holds frame parameters for
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1149 @code{special-display-popup-frame} to use when it creates a frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1150 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1151
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1152 @defopt same-window-buffer-names
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1153 A list of buffer names for buffers that should be displayed in the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1154 selected window. If the buffer's name is in this list,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1155 @code{display-buffer} handles the buffer by switching to it in the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1156 selected window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1157 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1158
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1159 @defopt same-window-regexps
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1160 A list of regular expressions that specify buffers that should be
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1161 displayed in the selected window. If the buffer's name matches any of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1162 the regular expressions in this list, @code{display-buffer} handles the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1163 buffer by switching to it in the selected window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1164 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1165
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1166 @defun same-window-p buffer-name
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1167 This function returns @code{t} if displaying a buffer
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1168 named @var{buffer-name} with @code{display-buffer} would
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1169 put it in the selected window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1170 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1171
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1172 @c Emacs 19 feature
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1173 @defvar display-buffer-function
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1174 This variable is the most flexible way to customize the behavior of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1175 @code{display-buffer}. If it is non-@code{nil}, it should be a function
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1176 that @code{display-buffer} calls to do the work. The function should
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1177 accept two arguments, the first two arguments that @code{display-buffer}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1178 received. It should choose or create a window, display the specified
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1179 buffer in it, and then return the window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1180
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1181 This hook takes precedence over all the other options and hooks
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1182 described above.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1183 @end defvar
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1184
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1185 @c Emacs 19 feature
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1186 @cindex dedicated window
98843
296e6dfba21e (Choosing Window, Displaying Buffers): Fix last changes.
Eli Zaretskii <eliz@gnu.org>
parents: 98835
diff changeset
1187 A window can be marked as @dfn{dedicated} to its buffer. Then
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1188 @code{display-buffer} will not try to use that window to display any
98843
296e6dfba21e (Choosing Window, Displaying Buffers): Fix last changes.
Eli Zaretskii <eliz@gnu.org>
parents: 98835
diff changeset
1189 other buffer. @code{set-window-buffer} will signal an error when asked
296e6dfba21e (Choosing Window, Displaying Buffers): Fix last changes.
Eli Zaretskii <eliz@gnu.org>
parents: 98835
diff changeset
1190 to display another buffer in it. Both @code{get-lru-window} and
98835
4c36d8b3b766 (Choosing Window, Deleting Windows)
Martin Rudalics <rudalics@gmx.at>
parents: 98827
diff changeset
1191 @code{get-largest-window} do not consider dedicated windows as
4c36d8b3b766 (Choosing Window, Deleting Windows)
Martin Rudalics <rudalics@gmx.at>
parents: 98827
diff changeset
1192 candidates when their @var{dedicated} argument is non-@code{nil}.
4c36d8b3b766 (Choosing Window, Deleting Windows)
Martin Rudalics <rudalics@gmx.at>
parents: 98827
diff changeset
1193
4c36d8b3b766 (Choosing Window, Deleting Windows)
Martin Rudalics <rudalics@gmx.at>
parents: 98827
diff changeset
1194 When @code{delete-windows-on} deletes a dedicated window and that window
98843
296e6dfba21e (Choosing Window, Displaying Buffers): Fix last changes.
Eli Zaretskii <eliz@gnu.org>
parents: 98835
diff changeset
1195 is the only window on its frame, it will delete that frame as well if
98835
4c36d8b3b766 (Choosing Window, Deleting Windows)
Martin Rudalics <rudalics@gmx.at>
parents: 98827
diff changeset
1196 there are other frames left. @code{replace-buffer-in-windows} deletes
4c36d8b3b766 (Choosing Window, Deleting Windows)
Martin Rudalics <rudalics@gmx.at>
parents: 98827
diff changeset
1197 any dedicated window showing its buffer argument. When such a window is
98843
296e6dfba21e (Choosing Window, Displaying Buffers): Fix last changes.
Eli Zaretskii <eliz@gnu.org>
parents: 98835
diff changeset
1198 the only window on its frame, that frame is deleted if there are other
296e6dfba21e (Choosing Window, Displaying Buffers): Fix last changes.
Eli Zaretskii <eliz@gnu.org>
parents: 98835
diff changeset
1199 frames left.
98835
4c36d8b3b766 (Choosing Window, Deleting Windows)
Martin Rudalics <rudalics@gmx.at>
parents: 98827
diff changeset
1200
4c36d8b3b766 (Choosing Window, Deleting Windows)
Martin Rudalics <rudalics@gmx.at>
parents: 98827
diff changeset
1201 @defun window-dedicated-p &optional window
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1202 This function returns non-@code{nil} if @var{window} is marked as
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1203 dedicated; otherwise @code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1204 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1205
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1206 @defun set-window-dedicated-p window flag
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1207 This function marks @var{window} as dedicated if @var{flag} is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1208 non-@code{nil}, and nondedicated otherwise.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1209 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1210
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1211 @node Window Point
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1212 @section Windows and Point
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1213 @cindex window position
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1214 @cindex window point
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1215 @cindex position in window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1216 @cindex point in window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1217
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1218 Each window has its own value of point, independent of the value of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1219 point in other windows displaying the same buffer. This makes it useful
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1220 to have multiple windows showing one buffer.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1221
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1222 @itemize @bullet
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1223 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1224 The window point is established when a window is first created; it is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1225 initialized from the buffer's point, or from the window point of another
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1226 window opened on the buffer if such a window exists.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1227
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1228 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1229 Selecting a window sets the value of point in its buffer from the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1230 window's value of point. Conversely, deselecting a window sets the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1231 window's value of point from that of the buffer. Thus, when you switch
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1232 between windows that display a given buffer, the point value for the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1233 selected window is in effect in the buffer, while the point values for
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1234 the other windows are stored in those windows.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1235
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1236 @item
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1237 As long as the selected window displays the current buffer, the window's
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1238 point and the buffer's point always move together; they remain equal.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1239 @end itemize
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1240
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1241 @noindent
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1242 @xref{Positions}, for more details on buffer positions.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1243
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1244 @cindex cursor
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1245 As far as the user is concerned, point is where the cursor is, and
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1246 when the user switches to another buffer, the cursor jumps to the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1247 position of point in that buffer.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1248
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1249 @defun window-point &optional window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1250 This function returns the current position of point in @var{window}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1251 For a nonselected window, this is the value point would have (in that
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1252 window's buffer) if that window were selected. If @var{window} is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1253 @code{nil}, the selected window is used.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1254
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1255 When @var{window} is the selected window and its buffer is also the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1256 current buffer, the value returned is the same as point in that buffer.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1257
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1258 Strictly speaking, it would be more correct to return the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1259 ``top-level'' value of point, outside of any @code{save-excursion}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1260 forms. But that value is hard to find.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1261 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1262
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1263 @defun set-window-point window position
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1264 This function positions point in @var{window} at position
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1265 @var{position} in @var{window}'s buffer. It returns @var{position}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1266
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1267 If @var{window} is selected, and its buffer is current,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1268 this simply does @code{goto-char}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1269 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1270
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1271 @node Window Start
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1272 @section The Window Start Position
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1273 @cindex window start position
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1274
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1275 Each window contains a marker used to keep track of a buffer position
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1276 that specifies where in the buffer display should start. This position
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1277 is called the @dfn{display-start} position of the window (or just the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1278 @dfn{start}). The character after this position is the one that appears
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1279 at the upper left corner of the window. It is usually, but not
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1280 inevitably, at the beginning of a text line.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1281
92148
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1282 After switching windows or buffers, and in some other cases, if the
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1283 window start is in the middle of a line, Emacs adjusts the window
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1284 start to the start of a line. This prevents certain operations from
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1285 leaving the window start at a meaningless point within a line. This
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1286 feature may interfere with testing some Lisp code by executing it
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1287 using the commands of Lisp mode, because they trigger this
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1288 readjustment. To test such code, put it into a command and bind the
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1289 command to a key.
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1290
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1291 @defun window-start &optional window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1292 @cindex window top line
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1293 This function returns the display-start position of window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1294 @var{window}. If @var{window} is @code{nil}, the selected window is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1295 used. For example,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1296
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1297 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1298 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1299 (window-start)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1300 @result{} 7058
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1301 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1302 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1303
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1304 When you create a window, or display a different buffer in it, the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1305 display-start position is set to a display-start position recently used
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1306 for the same buffer, or 1 if the buffer doesn't have any.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1307
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1308 Redisplay updates the window-start position (if you have not specified
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1309 it explicitly since the previous redisplay)---for example, to make sure
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1310 point appears on the screen. Nothing except redisplay automatically
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1311 changes the window-start position; if you move point, do not expect the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1312 window-start position to change in response until after the next
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1313 redisplay.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1314
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1315 For a realistic example of using @code{window-start}, see the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1316 description of @code{count-lines}. @xref{Definition of count-lines}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1317 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1318
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1319 @defun window-end &optional window update
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1320 This function returns the position of the end of the display in window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1321 @var{window}. If @var{window} is @code{nil}, the selected window is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1322 used.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1323
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1324 Simply changing the buffer text or moving point does not update the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1325 value that @code{window-end} returns. The value is updated only when
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1326 Emacs redisplays and redisplay completes without being preempted.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1327
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1328 If the last redisplay of @var{window} was preempted, and did not finish,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1329 Emacs does not know the position of the end of display in that window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1330 In that case, this function returns @code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1331
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1332 If @var{update} is non-@code{nil}, @code{window-end} always returns an
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1333 up-to-date value for where the window ends, based on the current
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1334 @code{window-start} value. If the saved value is valid,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1335 @code{window-end} returns that; otherwise it computes the correct
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1336 value by scanning the buffer text.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1337
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1338 Even if @var{update} is non-@code{nil}, @code{window-end} does not
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1339 attempt to scroll the display if point has moved off the screen, the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1340 way real redisplay would do. It does not alter the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1341 @code{window-start} value. In effect, it reports where the displayed
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1342 text will end if scrolling is not required.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1343 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1344
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1345 @defun set-window-start window position &optional noforce
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1346 This function sets the display-start position of @var{window} to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1347 @var{position} in @var{window}'s buffer. It returns @var{position}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1348
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1349 The display routines insist that the position of point be visible when a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1350 buffer is displayed. Normally, they change the display-start position
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1351 (that is, scroll the window) whenever necessary to make point visible.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1352 However, if you specify the start position with this function using
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1353 @code{nil} for @var{noforce}, it means you want display to start at
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1354 @var{position} even if that would put the location of point off the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1355 screen. If this does place point off screen, the display routines move
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1356 point to the left margin on the middle line in the window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1357
92148
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1358 For example, if point @w{is 1} and you set the start of the window
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1359 @w{to 37}, the start of the next line, point will be ``above'' the top
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1360 of the window. The display routines will automatically move point if
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1361 it is still 1 when redisplay occurs. Here is an example:
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1362
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1363 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1364 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1365 ;; @r{Here is what @samp{foo} looks like before executing}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1366 ;; @r{the @code{set-window-start} expression.}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1367 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1368
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1369 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1370 ---------- Buffer: foo ----------
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1371 @point{}This is the contents of buffer foo.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1372 2
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1373 3
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1374 4
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1375 5
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1376 6
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1377 ---------- Buffer: foo ----------
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1378 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1379
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1380 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1381 (set-window-start
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1382 (selected-window)
92148
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1383 (save-excursion
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1384 (goto-char 1)
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1385 (forward-line 1)
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1386 (point)))
f991f10f15ec Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 87649
diff changeset
1387 @result{} 37
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1388 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1389
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1390 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1391 ;; @r{Here is what @samp{foo} looks like after executing}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1392 ;; @r{the @code{set-window-start} expression.}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1393 ---------- Buffer: foo ----------
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1394 2
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1395 3
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1396 @point{}4
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1397 5
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1398 6
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1399 ---------- Buffer: foo ----------
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1400 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1401 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1402
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1403 If @var{noforce} is non-@code{nil}, and @var{position} would place point
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1404 off screen at the next redisplay, then redisplay computes a new window-start
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1405 position that works well with point, and thus @var{position} is not used.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1406 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1407
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1408 @defun pos-visible-in-window-p &optional position window partially
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1409 This function returns non-@code{nil} if @var{position} is within the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1410 range of text currently visible on the screen in @var{window}. It
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1411 returns @code{nil} if @var{position} is scrolled vertically out of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1412 view. Locations that are partially obscured are not considered
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1413 visible unless @var{partially} is non-@code{nil}. The argument
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1414 @var{position} defaults to the current position of point in
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1415 @var{window}; @var{window}, to the selected window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1416
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1417 If @var{position} is @code{t}, that means to check the last visible
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1418 position in @var{window}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1419
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1420 The @code{pos-visible-in-window-p} function considers only vertical
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1421 scrolling. If @var{position} is out of view only because @var{window}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1422 has been scrolled horizontally, @code{pos-visible-in-window-p} returns
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1423 non-@code{nil} anyway. @xref{Horizontal Scrolling}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1424
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1425 If @var{position} is visible, @code{pos-visible-in-window-p} returns
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1426 @code{t} if @var{partially} is @code{nil}; if @var{partially} is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1427 non-@code{nil}, and the character after @var{position} is fully
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1428 visible, it returns a list of the form @code{(@var{x} @var{y})}, where
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1429 @var{x} and @var{y} are the pixel coordinates relative to the top left
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1430 corner of the window; otherwise it returns an extended list of the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1431 form @code{(@var{x} @var{y} @var{rtop} @var{rbot} @var{rowh}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1432 @var{vpos})}, where the @var{rtop} and @var{rbot} specify the number
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1433 of off-window pixels at the top and bottom of the row at
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1434 @var{position}, @var{rowh} specifies the visible height of that row,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1435 and @var{vpos} specifies the vertical position (zero-based row number)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1436 of that row.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1437
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1438 Here is an example:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1439
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1440 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1441 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1442 ;; @r{If point is off the screen now, recenter it now.}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1443 (or (pos-visible-in-window-p
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1444 (point) (selected-window))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1445 (recenter 0))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1446 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1447 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1448 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1449
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1450 @defun window-line-height &optional line window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1451 This function returns information about text line @var{line} in @var{window}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1452 If @var{line} is one of @code{header-line} or @code{mode-line},
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1453 @code{window-line-height} returns information about the corresponding
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1454 line of the window. Otherwise, @var{line} is a text line number
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1455 starting from 0. A negative number counts from the end of the window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1456 The argument @var{line} defaults to the current line in @var{window};
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1457 @var{window}, to the selected window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1458
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1459 If the display is not up to date, @code{window-line-height} returns
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1460 @code{nil}. In that case, @code{pos-visible-in-window-p} may be used
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1461 to obtain related information.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1462
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1463 If there is no line corresponding to the specified @var{line},
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1464 @code{window-line-height} returns @code{nil}. Otherwise, it returns
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1465 a list @code{(@var{height} @var{vpos} @var{ypos} @var{offbot})},
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1466 where @var{height} is the height in pixels of the visible part of the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1467 line, @var{vpos} and @var{ypos} are the vertical position in lines and
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1468 pixels of the line relative to the top of the first text line, and
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1469 @var{offbot} is the number of off-window pixels at the bottom of the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1470 text line. If there are off-window pixels at the top of the (first)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1471 text line, @var{ypos} is negative.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1472 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1473
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1474 @node Textual Scrolling
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1475 @section Textual Scrolling
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1476 @cindex textual scrolling
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1477 @cindex scrolling textually
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1478
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1479 @dfn{Textual scrolling} means moving the text up or down through a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1480 window. It works by changing the value of the window's display-start
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1481 location. It may also change the value of @code{window-point} to keep
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1482 point on the screen.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1483
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1484 Textual scrolling was formerly called ``vertical scrolling,'' but we
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1485 changed its name to distinguish it from the new vertical fractional
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1486 scrolling feature (@pxref{Vertical Scrolling}).
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1487
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1488 In the commands @code{scroll-up} and @code{scroll-down}, the directions
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1489 ``up'' and ``down'' refer to the motion of the text in the buffer at which
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1490 you are looking through the window. Imagine that the text is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1491 written on a long roll of paper and that the scrolling commands move the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1492 paper up and down. Thus, if you are looking at text in the middle of a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1493 buffer and repeatedly call @code{scroll-down}, you will eventually see
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1494 the beginning of the buffer.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1495
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1496 Some people have urged that the opposite convention be used: they
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1497 imagine that the window moves over text that remains in place. Then
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1498 ``down'' commands would take you to the end of the buffer. This view is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1499 more consistent with the actual relationship between windows and the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1500 text in the buffer, but it is less like what the user sees. The
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1501 position of a window on the terminal does not move, and short scrolling
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1502 commands clearly move the text up or down on the screen. We have chosen
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1503 names that fit the user's point of view.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1504
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1505 The textual scrolling functions (aside from
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1506 @code{scroll-other-window}) have unpredictable results if the current
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1507 buffer is different from the buffer that is displayed in the selected
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1508 window. @xref{Current Buffer}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1509
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1510 If the window contains a row which is taller than the height of the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1511 window (for example in the presence of a large image), the scroll
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1512 functions will adjust the window vscroll to scroll the partially
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1513 visible row. To disable this feature, Lisp code may bind the variable
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1514 `auto-window-vscroll' to @code{nil} (@pxref{Vertical Scrolling}).
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1515
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1516 @deffn Command scroll-up &optional count
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1517 This function scrolls the text in the selected window upward
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1518 @var{count} lines. If @var{count} is negative, scrolling is actually
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1519 downward.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1520
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1521 If @var{count} is @code{nil} (or omitted), then the length of scroll
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1522 is @code{next-screen-context-lines} lines less than the usable height of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1523 the window (not counting its mode line).
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1524
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1525 @code{scroll-up} returns @code{nil}, unless it gets an error
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1526 because it can't scroll any further.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1527 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1528
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1529 @deffn Command scroll-down &optional count
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1530 This function scrolls the text in the selected window downward
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1531 @var{count} lines. If @var{count} is negative, scrolling is actually
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1532 upward.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1533
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1534 If @var{count} is omitted or @code{nil}, then the length of the scroll
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1535 is @code{next-screen-context-lines} lines less than the usable height of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1536 the window (not counting its mode line).
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1537
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1538 @code{scroll-down} returns @code{nil}, unless it gets an error because
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1539 it can't scroll any further.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1540 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1541
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1542 @deffn Command scroll-other-window &optional count
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1543 This function scrolls the text in another window upward @var{count}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1544 lines. Negative values of @var{count}, or @code{nil}, are handled
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1545 as in @code{scroll-up}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1546
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1547 You can specify which buffer to scroll by setting the variable
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1548 @code{other-window-scroll-buffer} to a buffer. If that buffer isn't
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1549 already displayed, @code{scroll-other-window} displays it in some
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1550 window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1551
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1552 When the selected window is the minibuffer, the next window is normally
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1553 the one at the top left corner. You can specify a different window to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1554 scroll, when the minibuffer is selected, by setting the variable
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1555 @code{minibuffer-scroll-window}. This variable has no effect when any
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1556 other window is selected. When it is non-@code{nil} and the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1557 minibuffer is selected, it takes precedence over
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1558 @code{other-window-scroll-buffer}. @xref{Definition of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1559 minibuffer-scroll-window}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1560
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1561 When the minibuffer is active, it is the next window if the selected
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1562 window is the one at the bottom right corner. In this case,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1563 @code{scroll-other-window} attempts to scroll the minibuffer. If the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1564 minibuffer contains just one line, it has nowhere to scroll to, so the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1565 line reappears after the echo area momentarily displays the message
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1566 @samp{Beginning of buffer}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1567 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1568
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1569 @c Emacs 19 feature
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1570 @defvar other-window-scroll-buffer
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1571 If this variable is non-@code{nil}, it tells @code{scroll-other-window}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1572 which buffer to scroll.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1573 @end defvar
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1574
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1575 @defopt scroll-margin
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1576 This option specifies the size of the scroll margin---a minimum number
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1577 of lines between point and the top or bottom of a window. Whenever
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1578 point gets within this many lines of the top or bottom of the window,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1579 redisplay scrolls the text automatically (if possible) to move point
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1580 out of the margin, closer to the center of the window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1581 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1582
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1583 @defopt scroll-conservatively
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1584 This variable controls how scrolling is done automatically when point
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1585 moves off the screen (or into the scroll margin). If the value is a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1586 positive integer @var{n}, then redisplay scrolls the text up to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1587 @var{n} lines in either direction, if that will bring point back into
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1588 proper view. This action is called @dfn{conservative scrolling}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1589 Otherwise, scrolling happens in the usual way, under the control of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1590 other variables such as @code{scroll-up-aggressively} and
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1591 @code{scroll-down-aggressively}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1592
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1593 The default value is zero, which means that conservative scrolling
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1594 never happens.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1595 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1596
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1597 @defopt scroll-down-aggressively
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1598 The value of this variable should be either @code{nil} or a fraction
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1599 @var{f} between 0 and 1. If it is a fraction, that specifies where on
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1600 the screen to put point when scrolling down. More precisely, when a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1601 window scrolls down because point is above the window start, the new
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1602 start position is chosen to put point @var{f} part of the window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1603 height from the top. The larger @var{f}, the more aggressive the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1604 scrolling.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1605
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1606 A value of @code{nil} is equivalent to .5, since its effect is to center
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1607 point. This variable automatically becomes buffer-local when set in any
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1608 fashion.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1609 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1610
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1611 @defopt scroll-up-aggressively
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1612 Likewise, for scrolling up. The value, @var{f}, specifies how far
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1613 point should be placed from the bottom of the window; thus, as with
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1614 @code{scroll-up-aggressively}, a larger value scrolls more aggressively.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1615 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1616
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1617 @defopt scroll-step
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1618 This variable is an older variant of @code{scroll-conservatively}. The
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1619 difference is that it if its value is @var{n}, that permits scrolling
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1620 only by precisely @var{n} lines, not a smaller number. This feature
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1621 does not work with @code{scroll-margin}. The default value is zero.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1622 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1623
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1624 @defopt scroll-preserve-screen-position
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1625 If this option is @code{t}, scrolling which would move the current
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1626 point position out of the window chooses the new position of point
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1627 so that the vertical position of the cursor is unchanged, if possible.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1628
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1629 If it is non-@code{nil} and not @code{t}, then the scrolling functions
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1630 always preserve the vertical position of point, if possible.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1631 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1632
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1633 @defopt next-screen-context-lines
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1634 The value of this variable is the number of lines of continuity to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1635 retain when scrolling by full screens. For example, @code{scroll-up}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1636 with an argument of @code{nil} scrolls so that this many lines at the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1637 bottom of the window appear instead at the top. The default value is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1638 @code{2}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1639 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1640
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1641 @deffn Command recenter &optional count
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1642 @cindex centering point
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1643 This function scrolls the text in the selected window so that point is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1644 displayed at a specified vertical position within the window. It does
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1645 not ``move point'' with respect to the text.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1646
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1647 If @var{count} is a nonnegative number, that puts the line containing
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1648 point @var{count} lines down from the top of the window. If
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1649 @var{count} is a negative number, then it counts upward from the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1650 bottom of the window, so that @minus{}1 stands for the last usable
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1651 line in the window. If @var{count} is a non-@code{nil} list, then it
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1652 stands for the line in the middle of the window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1653
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1654 If @var{count} is @code{nil}, @code{recenter} puts the line containing
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1655 point in the middle of the window, then clears and redisplays the entire
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1656 selected frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1657
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1658 When @code{recenter} is called interactively, @var{count} is the raw
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1659 prefix argument. Thus, typing @kbd{C-u} as the prefix sets the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1660 @var{count} to a non-@code{nil} list, while typing @kbd{C-u 4} sets
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1661 @var{count} to 4, which positions the current line four lines from the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1662 top.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1663
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1664 With an argument of zero, @code{recenter} positions the current line at
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1665 the top of the window. This action is so handy that some people make a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1666 separate key binding to do this. For example,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1667
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1668 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1669 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1670 (defun line-to-top-of-window ()
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1671 "Scroll current line to top of window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1672 Replaces three keystroke sequence C-u 0 C-l."
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1673 (interactive)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1674 (recenter 0))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1675
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1676 (global-set-key [kp-multiply] 'line-to-top-of-window)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1677 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1678 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1679 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1680
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1681 @node Vertical Scrolling
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1682 @section Vertical Fractional Scrolling
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1683 @cindex vertical fractional scrolling
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1684
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1685 @dfn{Vertical fractional scrolling} means shifting the image in the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1686 window up or down by a specified multiple or fraction of a line.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1687 Each window has a @dfn{vertical scroll position},
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1688 which is a number, never less than zero. It specifies how far to raise
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1689 the contents of the window. Raising the window contents generally makes
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1690 all or part of some lines disappear off the top, and all or part of some
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1691 other lines appear at the bottom. The usual value is zero.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1692
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1693 The vertical scroll position is measured in units of the normal line
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1694 height, which is the height of the default font. Thus, if the value is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1695 .5, that means the window contents are scrolled up half the normal line
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1696 height. If it is 3.3, that means the window contents are scrolled up
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1697 somewhat over three times the normal line height.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1698
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1699 What fraction of a line the vertical scrolling covers, or how many
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1700 lines, depends on what the lines contain. A value of .5 could scroll a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1701 line whose height is very short off the screen, while a value of 3.3
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1702 could scroll just part of the way through a tall line or an image.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1703
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1704 @defun window-vscroll &optional window pixels-p
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1705 This function returns the current vertical scroll position of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1706 @var{window}. If @var{window} is @code{nil}, the selected window is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1707 used. If @var{pixels-p} is non-@code{nil}, the return value is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1708 measured in pixels, rather than in units of the normal line height.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1709
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1710 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1711 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1712 (window-vscroll)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1713 @result{} 0
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1714 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1715 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1716 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1717
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1718 @defun set-window-vscroll window lines &optional pixels-p
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1719 This function sets @var{window}'s vertical scroll position to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1720 @var{lines}. The argument @var{lines} should be zero or positive; if
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1721 not, it is taken as zero.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1722
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1723 If @var{window} is @code{nil}, the selected window is used.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1724
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1725 The actual vertical scroll position must always correspond
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1726 to an integral number of pixels, so the value you specify
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1727 is rounded accordingly.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1728
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1729 The return value is the result of this rounding.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1730
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1731 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1732 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1733 (set-window-vscroll (selected-window) 1.2)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1734 @result{} 1.13
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1735 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1736 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1737
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1738 If @var{pixels-p} is non-@code{nil}, @var{lines} specifies a number of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1739 pixels. In this case, the return value is @var{lines}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1740 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1741
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1742 @defvar auto-window-vscroll
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1743 If this variable is non-@code{nil}, the line-move, scroll-up, and
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1744 scroll-down functions will automatically modify the window vscroll to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1745 scroll through display rows that are taller that the height of the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1746 window, for example in the presence of large images.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1747 @end defvar
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1748
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1749 @node Horizontal Scrolling
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1750 @section Horizontal Scrolling
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1751 @cindex horizontal scrolling
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1752
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1753 @dfn{Horizontal scrolling} means shifting the image in the window left
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1754 or right by a specified multiple of the normal character width. Each
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1755 window has a @dfn{horizontal scroll position}, which is a number, never
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1756 less than zero. It specifies how far to shift the contents left.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1757 Shifting the window contents left generally makes all or part of some
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1758 characters disappear off the left, and all or part of some other
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1759 characters appear at the right. The usual value is zero.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1760
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1761 The horizontal scroll position is measured in units of the normal
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1762 character width, which is the width of space in the default font. Thus,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1763 if the value is 5, that means the window contents are scrolled left by 5
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1764 times the normal character width. How many characters actually
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1765 disappear off to the left depends on their width, and could vary from
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1766 line to line.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1767
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1768 Because we read from side to side in the ``inner loop,'' and from top
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1769 to bottom in the ``outer loop,'' the effect of horizontal scrolling is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1770 not like that of textual or vertical scrolling. Textual scrolling
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1771 involves selection of a portion of text to display, and vertical
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1772 scrolling moves the window contents contiguously; but horizontal
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1773 scrolling causes part of @emph{each line} to go off screen.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1774
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1775 Usually, no horizontal scrolling is in effect; then the leftmost
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1776 column is at the left edge of the window. In this state, scrolling to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1777 the right is meaningless, since there is no data to the left of the edge
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1778 to be revealed by it; so this is not allowed. Scrolling to the left is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1779 allowed; it scrolls the first columns of text off the edge of the window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1780 and can reveal additional columns on the right that were truncated
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1781 before. Once a window has a nonzero amount of leftward horizontal
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1782 scrolling, you can scroll it back to the right, but only so far as to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1783 reduce the net horizontal scroll to zero. There is no limit to how far
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1784 left you can scroll, but eventually all the text will disappear off the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1785 left edge.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1786
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1787 @vindex auto-hscroll-mode
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1788 If @code{auto-hscroll-mode} is set, redisplay automatically alters
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1789 the horizontal scrolling of a window as necessary to ensure that point
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1790 is always visible. However, you can still set the horizontal
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1791 scrolling value explicitly. The value you specify serves as a lower
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1792 bound for automatic scrolling, i.e. automatic scrolling will not
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1793 scroll a window to a column less than the specified one.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1794
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1795 @deffn Command scroll-left &optional count set-minimum
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1796 This function scrolls the selected window @var{count} columns to the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1797 left (or to the right if @var{count} is negative). The default
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1798 for @var{count} is the window width, minus 2.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1799
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1800 The return value is the total amount of leftward horizontal scrolling in
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1801 effect after the change---just like the value returned by
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1802 @code{window-hscroll} (below).
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1803
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1804 Once you scroll a window as far right as it can go, back to its normal
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1805 position where the total leftward scrolling is zero, attempts to scroll
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1806 any farther right have no effect.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1807
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1808 If @var{set-minimum} is non-@code{nil}, the new scroll amount becomes
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1809 the lower bound for automatic scrolling; that is, automatic scrolling
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1810 will not scroll a window to a column less than the value returned by
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1811 this function. Interactive calls pass non-@code{nil} for
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1812 @var{set-minimum}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1813 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1814
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1815 @deffn Command scroll-right &optional count set-minimum
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1816 This function scrolls the selected window @var{count} columns to the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1817 right (or to the left if @var{count} is negative). The default
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1818 for @var{count} is the window width, minus 2. Aside from the direction
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1819 of scrolling, this works just like @code{scroll-left}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1820 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1821
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1822 @defun window-hscroll &optional window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1823 This function returns the total leftward horizontal scrolling of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1824 @var{window}---the number of columns by which the text in @var{window}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1825 is scrolled left past the left margin.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1826
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1827 The value is never negative. It is zero when no horizontal scrolling
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1828 has been done in @var{window} (which is usually the case).
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1829
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1830 If @var{window} is @code{nil}, the selected window is used.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1831
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1832 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1833 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1834 (window-hscroll)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1835 @result{} 0
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1836 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1837 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1838 (scroll-left 5)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1839 @result{} 5
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1840 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1841 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1842 (window-hscroll)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1843 @result{} 5
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1844 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1845 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1846 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1847
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1848 @defun set-window-hscroll window columns
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1849 This function sets horizontal scrolling of @var{window}. The value of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1850 @var{columns} specifies the amount of scrolling, in terms of columns
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1851 from the left margin. The argument @var{columns} should be zero or
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1852 positive; if not, it is taken as zero. Fractional values of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1853 @var{columns} are not supported at present.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1854
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1855 Note that @code{set-window-hscroll} may appear not to work if you test
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1856 it by evaluating a call with @kbd{M-:} in a simple way. What happens
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1857 is that the function sets the horizontal scroll value and returns, but
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1858 then redisplay adjusts the horizontal scrolling to make point visible,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1859 and this overrides what the function did. You can observe the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1860 function's effect if you call it while point is sufficiently far from
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1861 the left margin that it will remain visible.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1862
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1863 The value returned is @var{columns}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1864
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1865 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1866 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1867 (set-window-hscroll (selected-window) 10)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1868 @result{} 10
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1869 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1870 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1871 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1872
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1873 Here is how you can determine whether a given position @var{position}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1874 is off the screen due to horizontal scrolling:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1875
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1876 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1877 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1878 (defun hscroll-on-screen (window position)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1879 (save-excursion
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1880 (goto-char position)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1881 (and
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1882 (>= (- (current-column) (window-hscroll window)) 0)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1883 (< (- (current-column) (window-hscroll window))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1884 (window-width window)))))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1885 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1886 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1887
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1888 @node Size of Window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1889 @section The Size of a Window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1890 @cindex window size
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1891 @cindex size of window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1892
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1893 An Emacs window is rectangular, and its size information consists of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1894 the height (the number of lines) and the width (the number of character
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1895 positions in each line). The mode line is included in the height. But
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1896 the width does not count the scroll bar or the column of @samp{|}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1897 characters that separates side-by-side windows.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1898
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1899 The following three functions return size information about a window:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1900
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1901 @defun window-height &optional window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1902 This function returns the number of lines in @var{window}, including
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1903 its mode line and header line, if any. If @var{window} fills its
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1904 entire frame except for the echo area, this is typically one less than
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1905 the value of @code{frame-height} on that frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1906
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1907 If @var{window} is @code{nil}, the function uses the selected window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1908
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1909 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1910 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1911 (window-height)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1912 @result{} 23
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1913 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1914 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1915 (split-window-vertically)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1916 @result{} #<window 4 on windows.texi>
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1917 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1918 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1919 (window-height)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1920 @result{} 11
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1921 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1922 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1923 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1924
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1925 @defun window-body-height &optional window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1926 Like @code{window-height} but the value does not include the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1927 mode line (if any) or the header line (if any).
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1928 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1929
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1930 @defun window-width &optional window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1931 This function returns the number of columns in @var{window}. If
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1932 @var{window} fills its entire frame, this is the same as the value of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1933 @code{frame-width} on that frame. The width does not include the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1934 window's scroll bar or the column of @samp{|} characters that separates
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1935 side-by-side windows.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1936
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1937 If @var{window} is @code{nil}, the function uses the selected window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1938
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1939 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1940 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1941 (window-width)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1942 @result{} 80
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1943 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1944 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1945 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1946
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1947 @defun window-full-width-p &optional window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1948 This function returns non-@code{nil} if @var{window} is as wide as
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1949 the frame that contains it; otherwise @code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1950 If @var{window} is @code{nil}, the function uses the selected window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1951 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1952
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1953 @defun window-edges &optional window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1954 This function returns a list of the edge coordinates of @var{window}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1955 If @var{window} is @code{nil}, the selected window is used.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1956
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1957 The order of the list is @code{(@var{left} @var{top} @var{right}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1958 @var{bottom})}, all elements relative to 0, 0 at the top left corner of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1959 the frame. The element @var{right} of the value is one more than the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1960 rightmost column used by @var{window}, and @var{bottom} is one more than
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1961 the bottommost row used by @var{window} and its mode-line.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1962
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1963 The edges include the space used by the window's scroll bar, display
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1964 margins, fringes, header line, and mode line, if it has them. Also,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1965 if the window has a neighbor on the right, its right edge value
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1966 includes the width of the separator line between the window and that
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1967 neighbor. Since the width of the window does not include this
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1968 separator, the width does not usually equal the difference between the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1969 right and left edges.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1970 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1971
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1972 @defun window-inside-edges &optional window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1973 This is similar to @code{window-edges}, but the edge values
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1974 it returns include only the text area of the window. They
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1975 do not include the header line, mode line, scroll bar or
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1976 vertical separator, fringes, or display margins.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1977 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1978
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1979 Here are the results obtained on a typical 24-line terminal with just
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1980 one window, with menu bar enabled:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1981
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1982 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1983 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1984 (window-edges (selected-window))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1985 @result{} (0 1 80 23)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1986 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1987 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1988 (window-inside-edges (selected-window))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1989 @result{} (0 1 80 22)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1990 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1991 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1992
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1993 @noindent
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1994 The bottom edge is at line 23 because the last line is the echo area.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1995 The bottom inside edge is at line 22, which is the window's mode line.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1996
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1997 If @var{window} is at the upper left corner of its frame, and there is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1998 no menu bar, then @var{bottom} returned by @code{window-edges} is the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1999 same as the value of @code{(window-height)}, @var{right} is almost the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2000 same as the value of @code{(window-width)}, and @var{top} and
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2001 @var{left} are zero. For example, the edges of the following window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2002 are @w{@samp{0 0 8 5}}. Assuming that the frame has more than 8
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2003 columns, the last column of the window (column 7) holds a border
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2004 rather than text. The last row (row 4) holds the mode line, shown
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2005 here with @samp{xxxxxxxxx}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2006
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2007 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2008 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2009 0
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2010 _______
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2011 0 | |
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2012 | |
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2013 | |
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2014 | |
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2015 xxxxxxxxx 4
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2016
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2017 7
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2018 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2019 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2020
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2021 In the following example, let's suppose that the frame is 7
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2022 columns wide. Then the edges of the left window are @w{@samp{0 0 4 3}}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2023 and the edges of the right window are @w{@samp{4 0 7 3}}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2024 The inside edges of the left window are @w{@samp{0 0 3 2}},
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2025 and the inside edges of the right window are @w{@samp{4 0 7 2}},
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2026
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2027 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2028 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2029 ___ ___
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2030 | | |
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2031 | | |
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2032 xxxxxxxxx
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2033
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2034 0 34 7
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2035 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2036 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2037
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2038 @defun window-pixel-edges &optional window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2039 This function is like @code{window-edges} except that, on a graphical
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2040 display, the edge values are measured in pixels instead of in
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2041 character lines and columns.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2042 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2043
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2044 @defun window-inside-pixel-edges &optional window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2045 This function is like @code{window-inside-edges} except that, on a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2046 graphical display, the edge values are measured in pixels instead of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2047 in character lines and columns.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2048 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2049
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2050 @node Resizing Windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2051 @section Changing the Size of a Window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2052 @cindex window resizing
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2053 @cindex resize window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2054 @cindex changing window size
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2055 @cindex window size, changing
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2056
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2057 The window size functions fall into two classes: high-level commands
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2058 that change the size of windows and low-level functions that access
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2059 window size. Emacs does not permit overlapping windows or gaps between
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2060 windows, so resizing one window affects other windows.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2061
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2062 @deffn Command enlarge-window size &optional horizontal
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2063 This function makes the selected window @var{size} lines taller,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2064 stealing lines from neighboring windows. It takes the lines from one
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2065 window at a time until that window is used up, then takes from another.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2066 If a window from which lines are stolen shrinks below
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2067 @code{window-min-height} lines, that window disappears.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2068
98894
1e370d7d742a (Resizing Windows): Remove var{} around window in
Martin Rudalics <rudalics@gmx.at>
parents: 98843
diff changeset
2069 If @var{horizontal} is non-@code{nil}, this function makes the window
1e370d7d742a (Resizing Windows): Remove var{} around window in
Martin Rudalics <rudalics@gmx.at>
parents: 98843
diff changeset
2070 @var{size} columns wider, stealing columns instead of lines. If a
1e370d7d742a (Resizing Windows): Remove var{} around window in
Martin Rudalics <rudalics@gmx.at>
parents: 98843
diff changeset
2071 window from which columns are stolen shrinks below
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2072 @code{window-min-width} columns, that window disappears.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2073
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2074 If the requested size would exceed that of the window's frame, then the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2075 function makes the window occupy the entire height (or width) of the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2076 frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2077
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2078 If there are various other windows from which lines or columns can be
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2079 stolen, and some of them specify fixed size (using
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2080 @code{window-size-fixed}, see below), they are left untouched while
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2081 other windows are ``robbed.'' If it would be necessary to alter the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2082 size of a fixed-size window, @code{enlarge-window} gets an error
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2083 instead.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2084
98960
3240f5341524 (Resizing Windows): Minor wording fix.
Martin Rudalics <rudalics@gmx.at>
parents: 98944
diff changeset
2085 If @var{size} is negative, this function shrinks the selected window by
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2086 @minus{}@var{size} lines or columns. If that makes the window smaller
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2087 than the minimum size (@code{window-min-height} and
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2088 @code{window-min-width}), @code{enlarge-window} deletes the window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2089
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2090 @code{enlarge-window} returns @code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2091 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2092
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2093 @deffn Command enlarge-window-horizontally columns
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2094 This function makes the selected window @var{columns} wider.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2095 It could be defined as follows:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2096
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2097 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2098 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2099 (defun enlarge-window-horizontally (columns)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2100 (interactive "p")
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2101 (enlarge-window columns t))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2102 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2103 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2104 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2105
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2106 @deffn Command shrink-window size &optional horizontal
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2107 This function is like @code{enlarge-window} but negates the argument
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2108 @var{size}, making the selected window smaller by giving lines (or
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2109 columns) to the other windows. If the window shrinks below
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2110 @code{window-min-height} or @code{window-min-width}, then it disappears.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2111
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2112 If @var{size} is negative, the window is enlarged by @minus{}@var{size}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2113 lines or columns.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2114 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2115
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2116 @deffn Command shrink-window-horizontally columns
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2117 This function makes the selected window @var{columns} narrower.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2118 It could be defined as follows:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2119
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2120 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2121 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2122 (defun shrink-window-horizontally (columns)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2123 (interactive "p")
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2124 (shrink-window columns t))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2125 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2126 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2127 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2128
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2129 @defun adjust-window-trailing-edge window delta horizontal
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2130 This function makes the selected window @var{delta} lines taller or
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2131 @var{delta} columns wider, by moving the bottom or right edge. This
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2132 function does not delete other windows; if it cannot make the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2133 requested size adjustment, it signals an error. On success, this
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2134 function returns @code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2135 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2136
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2137 @defun fit-window-to-buffer &optional window max-height min-height
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2138 This function makes @var{window} the right height to display its
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2139 contents exactly. If @var{window} is omitted or @code{nil}, it uses
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2140 the selected window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2141
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2142 The argument @var{max-height} specifies the maximum height the window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2143 is allowed to be; @code{nil} means use the frame height. The argument
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2144 @var{min-height} specifies the minimum height for the window;
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2145 @code{nil} means use @code{window-min-height}. All these height
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2146 values include the mode-line and/or header-line.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2147 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2148
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2149 @deffn Command shrink-window-if-larger-than-buffer &optional window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2150 This command shrinks @var{window} vertically to be as small as
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2151 possible while still showing the full contents of its buffer---but not
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2152 less than @code{window-min-height} lines. If @var{window} is not
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2153 given, it defaults to the selected window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2154
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2155 However, the command does nothing if the window is already too small to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2156 display the whole text of the buffer, or if part of the contents are
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2157 currently scrolled off screen, or if the window is not the full width of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2158 its frame, or if the window is the only window in its frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2159
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2160 This command returns non-@code{nil} if it actually shrank the window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2161 and @code{nil} otherwise.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2162 @end deffn
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2163
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2164 @defvar window-size-fixed
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2165 If this variable is non-@code{nil}, in any given buffer,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2166 then the size of any window displaying the buffer remains fixed
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2167 unless you explicitly change it or Emacs has no other choice.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2168
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2169 If the value is @code{height}, then only the window's height is fixed;
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2170 if the value is @code{width}, then only the window's width is fixed.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2171 Any other non-@code{nil} value fixes both the width and the height.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2172
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2173 This variable automatically becomes buffer-local when set.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2174
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2175 Explicit size-change functions such as @code{enlarge-window}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2176 get an error if they would have to change a window size which is fixed.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2177 Therefore, when you want to change the size of such a window,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2178 you should bind @code{window-size-fixed} to @code{nil}, like this:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2179
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2180 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2181 (let ((window-size-fixed nil))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2182 (enlarge-window 10))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2183 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2184
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2185 Note that changing the frame size will change the size of a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2186 fixed-size window, if there is no other alternative.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2187 @end defvar
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2188
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2189 @cindex minimum window size
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2190 The following two variables constrain the window-structure-changing
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2191 functions to a minimum height and width.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2192
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2193 @defopt window-min-height
98944
e3bf6a4e1aa6 More wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98928
diff changeset
2194 The value of this variable specifies how short a window may become
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2195 before it is automatically deleted. Making a window smaller than
98894
1e370d7d742a (Resizing Windows): Remove var{} around window in
Martin Rudalics <rudalics@gmx.at>
parents: 98843
diff changeset
2196 @code{window-min-height} automatically deletes it, and no window may be
1e370d7d742a (Resizing Windows): Remove var{} around window in
Martin Rudalics <rudalics@gmx.at>
parents: 98843
diff changeset
2197 created shorter than this. The value is measured in line units. When
1e370d7d742a (Resizing Windows): Remove var{} around window in
Martin Rudalics <rudalics@gmx.at>
parents: 98843
diff changeset
2198 the window wants a mode- and/or header-line, they are counted as one
1e370d7d742a (Resizing Windows): Remove var{} around window in
Martin Rudalics <rudalics@gmx.at>
parents: 98843
diff changeset
2199 line each. The default value of this variable is 4. A value less than
1e370d7d742a (Resizing Windows): Remove var{} around window in
Martin Rudalics <rudalics@gmx.at>
parents: 98843
diff changeset
2200 1 is ignored.
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2201 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2202
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2203 @defopt window-min-width
98944
e3bf6a4e1aa6 More wording fixes from RMS.
Eli Zaretskii <eliz@gnu.org>
parents: 98928
diff changeset
2204 The value of this variable specifies how narrow a window may become
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2205 before it is automatically deleted. Making a window smaller than
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2206 @code{window-min-width} automatically deletes it, and no window may be
98894
1e370d7d742a (Resizing Windows): Remove var{} around window in
Martin Rudalics <rudalics@gmx.at>
parents: 98843
diff changeset
2207 created narrower than this. The value is measured in characters and
1e370d7d742a (Resizing Windows): Remove var{} around window in
Martin Rudalics <rudalics@gmx.at>
parents: 98843
diff changeset
2208 includes any fringes or the scroll bar. The default value is 10. A
1e370d7d742a (Resizing Windows): Remove var{} around window in
Martin Rudalics <rudalics@gmx.at>
parents: 98843
diff changeset
2209 value less than 2 is ignored.
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2210 @end defopt
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2211
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2212 @node Coordinates and Windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2213 @section Coordinates and Windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2214
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2215 This section describes how to relate screen coordinates to windows.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2216
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2217 @defun window-at x y &optional frame
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2218 This function returns the window containing the specified cursor
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2219 position in the frame @var{frame}. The coordinates @var{x} and @var{y}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2220 are measured in characters and count from the top left corner of the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2221 frame. If they are out of range, @code{window-at} returns @code{nil}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2222
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2223 If you omit @var{frame}, the selected frame is used.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2224 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2225
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2226 @defun coordinates-in-window-p coordinates window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2227 This function checks whether a particular frame position falls within
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2228 the window @var{window}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2229
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2230 The argument @var{coordinates} is a cons cell of the form @code{(@var{x}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2231 . @var{y})}. The coordinates @var{x} and @var{y} are measured in
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2232 characters, and count from the top left corner of the screen or frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2233
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2234 The value returned by @code{coordinates-in-window-p} is non-@code{nil}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2235 if the coordinates are inside @var{window}. The value also indicates
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2236 what part of the window the position is in, as follows:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2237
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2238 @table @code
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2239 @item (@var{relx} . @var{rely})
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2240 The coordinates are inside @var{window}. The numbers @var{relx} and
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2241 @var{rely} are the equivalent window-relative coordinates for the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2242 specified position, counting from 0 at the top left corner of the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2243 window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2244
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2245 @item mode-line
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2246 The coordinates are in the mode line of @var{window}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2247
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2248 @item header-line
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2249 The coordinates are in the header line of @var{window}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2250
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2251 @item vertical-line
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2252 The coordinates are in the vertical line between @var{window} and its
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2253 neighbor to the right. This value occurs only if the window doesn't
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2254 have a scroll bar; positions in a scroll bar are considered outside the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2255 window for these purposes.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2256
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2257 @item left-fringe
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2258 @itemx right-fringe
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2259 The coordinates are in the left or right fringe of the window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2260
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2261 @item left-margin
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2262 @itemx right-margin
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2263 The coordinates are in the left or right margin of the window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2264
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2265 @item nil
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2266 The coordinates are not in any part of @var{window}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2267 @end table
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2268
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2269 The function @code{coordinates-in-window-p} does not require a frame as
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2270 argument because it always uses the frame that @var{window} is on.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2271 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2272
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2273 @node Window Tree
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2274 @section The Window Tree
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2275 @cindex window tree
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2276
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2277 A @dfn{window tree} specifies the layout, size, and relationship
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2278 between all windows in one frame.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2279
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2280 @defun window-tree &optional frame
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2281 This function returns the window tree for frame @var{frame}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2282 If @var{frame} is omitted, the selected frame is used.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2283
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2284 The return value is a list of the form @code{(@var{root} @var{mini})},
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2285 where @var{root} represents the window tree of the frame's
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2286 root window, and @var{mini} is the frame's minibuffer window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2287
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2288 If the root window is not split, @var{root} is the root window itself.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2289 Otherwise, @var{root} is a list @code{(@var{dir} @var{edges} @var{w1}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2290 @var{w2} ...)} where @var{dir} is @code{nil} for a horizontal split,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2291 and @code{t} for a vertical split, @var{edges} gives the combined size and
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2292 position of the subwindows in the split, and the rest of the elements
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2293 are the subwindows in the split. Each of the subwindows may again be
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2294 a window or a list representing a window split, and so on. The
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2295 @var{edges} element is a list @code{(@var{left}@var{ top}@var{ right}@var{ bottom})}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2296 similar to the value returned by @code{window-edges}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2297 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2298
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2299 @node Window Configurations
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2300 @section Window Configurations
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2301 @cindex window configurations
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2302 @cindex saving window information
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2303
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2304 A @dfn{window configuration} records the entire layout of one
85114
5039706521c9 Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 84116
diff changeset
2305 frame---all windows, their sizes, which buffers they contain, how
5039706521c9 Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 84116
diff changeset
2306 those buffers are scrolled, and their values of point and the mark;
5039706521c9 Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 84116
diff changeset
2307 also their fringes, margins, and scroll bar settings. It also
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2308 includes the values of @code{window-min-height},
85114
5039706521c9 Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 84116
diff changeset
2309 @code{window-min-width} and @code{minibuffer-scroll-window}. As a
5039706521c9 Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 84116
diff changeset
2310 special exception, the window configuration does not record the value
5039706521c9 Merge from emacs--rel--22
Miles Bader <miles@gnu.org>
parents: 84116
diff changeset
2311 of point in the selected window for the current buffer.
84112
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2312
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2313 You can bring back an entire previous layout by restoring a window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2314 configuration previously saved. If you want to record all frames
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2315 instead of just one, use a frame configuration instead of a window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2316 configuration. @xref{Frame Configurations}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2317
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2318 @defun current-window-configuration &optional frame
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2319 This function returns a new object representing @var{frame}'s current
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2320 window configuration. If @var{frame} is omitted, the selected frame
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2321 is used.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2322 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2323
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2324 @defun set-window-configuration configuration
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2325 This function restores the configuration of windows and buffers as
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2326 specified by @var{configuration}, for the frame that @var{configuration}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2327 was created for.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2328
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2329 The argument @var{configuration} must be a value that was previously
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2330 returned by @code{current-window-configuration}. This configuration is
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2331 restored in the frame from which @var{configuration} was made, whether
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2332 that frame is selected or not. This always counts as a window size
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2333 change and triggers execution of the @code{window-size-change-functions}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2334 (@pxref{Window Hooks}), because @code{set-window-configuration} doesn't
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2335 know how to tell whether the new configuration actually differs from the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2336 old one.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2337
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2338 If the frame which @var{configuration} was saved from is dead, all this
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2339 function does is restore the three variables @code{window-min-height},
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2340 @code{window-min-width} and @code{minibuffer-scroll-window}. In this
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2341 case, the function returns @code{nil}. Otherwise, it returns @code{t}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2342
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2343 Here is a way of using this function to get the same effect
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2344 as @code{save-window-excursion}:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2345
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2346 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2347 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2348 (let ((config (current-window-configuration)))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2349 (unwind-protect
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2350 (progn (split-window-vertically nil)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2351 @dots{})
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2352 (set-window-configuration config)))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2353 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2354 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2355 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2356
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2357 @defspec save-window-excursion forms@dots{}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2358 This special form records the window configuration, executes @var{forms}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2359 in sequence, then restores the earlier window configuration. The window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2360 configuration includes, for each window, the value of point and the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2361 portion of the buffer that is visible. It also includes the choice of
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2362 selected window. However, it does not include the value of point in
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2363 the current buffer; use @code{save-excursion} also, if you wish to
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2364 preserve that.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2365
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2366 Don't use this construct when @code{save-selected-window} is sufficient.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2367
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2368 Exit from @code{save-window-excursion} always triggers execution of the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2369 @code{window-size-change-functions}. (It doesn't know how to tell
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2370 whether the restored configuration actually differs from the one in
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2371 effect at the end of the @var{forms}.)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2372
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2373 The return value is the value of the final form in @var{forms}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2374 For example:
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2375
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2376 @example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2377 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2378 (split-window)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2379 @result{} #<window 25 on control.texi>
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2380 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2381 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2382 (setq w (selected-window))
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2383 @result{} #<window 19 on control.texi>
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2384 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2385 @group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2386 (save-window-excursion
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2387 (delete-other-windows w)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2388 (switch-to-buffer "foo")
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2389 'do-something)
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2390 @result{} do-something
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2391 ;; @r{The screen is now split again.}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2392 @end group
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2393 @end example
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2394 @end defspec
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2395
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2396 @defun window-configuration-p object
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2397 This function returns @code{t} if @var{object} is a window configuration.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2398 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2399
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2400 @defun compare-window-configurations config1 config2
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2401 This function compares two window configurations as regards the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2402 structure of windows, but ignores the values of point and mark and the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2403 saved scrolling positions---it can return @code{t} even if those
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2404 aspects differ.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2405
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2406 The function @code{equal} can also compare two window configurations; it
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2407 regards configurations as unequal if they differ in any respect, even a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2408 saved point or mark.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2409 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2410
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2411 @defun window-configuration-frame config
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2412 This function returns the frame for which the window configuration
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2413 @var{config} was made.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2414 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2415
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2416 Other primitives to look inside of window configurations would make
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2417 sense, but are not implemented because we did not need them. See the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2418 file @file{winner.el} for some more operations on windows
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2419 configurations.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2420
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2421 @node Window Hooks
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2422 @section Hooks for Window Scrolling and Changes
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2423 @cindex hooks for window operations
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2424
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2425 This section describes how a Lisp program can take action whenever a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2426 window displays a different part of its buffer or a different buffer.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2427 There are three actions that can change this: scrolling the window,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2428 switching buffers in the window, and changing the size of the window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2429 The first two actions run @code{window-scroll-functions}; the last runs
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2430 @code{window-size-change-functions}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2431
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2432 @defvar window-scroll-functions
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2433 This variable holds a list of functions that Emacs should call before
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2434 redisplaying a window with scrolling. It is not a normal hook, because
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2435 each function is called with two arguments: the window, and its new
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2436 display-start position.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2437
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2438 Displaying a different buffer in the window also runs these functions.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2439
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2440 These functions must be careful in using @code{window-end}
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2441 (@pxref{Window Start}); if you need an up-to-date value, you must use
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2442 the @var{update} argument to ensure you get it.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2443
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2444 @strong{Warning:} don't use this feature to alter the way the window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2445 is scrolled. It's not designed for that, and such use probably won't
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2446 work.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2447 @end defvar
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2448
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2449 @defvar window-size-change-functions
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2450 This variable holds a list of functions to be called if the size of any
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2451 window changes for any reason. The functions are called just once per
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2452 redisplay, and just once for each frame on which size changes have
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2453 occurred.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2454
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2455 Each function receives the frame as its sole argument. There is no
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2456 direct way to find out which windows on that frame have changed size, or
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2457 precisely how. However, if a size-change function records, at each
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2458 call, the existing windows and their sizes, it can also compare the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2459 present sizes and the previous sizes.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2460
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2461 Creating or deleting windows counts as a size change, and therefore
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2462 causes these functions to be called. Changing the frame size also
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2463 counts, because it changes the sizes of the existing windows.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2464
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2465 It is not a good idea to use @code{save-window-excursion} (@pxref{Window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2466 Configurations}) in these functions, because that always counts as a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2467 size change, and it would cause these functions to be called over and
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2468 over. In most cases, @code{save-selected-window} (@pxref{Selecting
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2469 Windows}) is what you need here.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2470 @end defvar
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2471
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2472 @defvar redisplay-end-trigger-functions
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2473 This abnormal hook is run whenever redisplay in a window uses text that
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2474 extends past a specified end trigger position. You set the end trigger
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2475 position with the function @code{set-window-redisplay-end-trigger}. The
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2476 functions are called with two arguments: the window, and the end trigger
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2477 position. Storing @code{nil} for the end trigger position turns off the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2478 feature, and the trigger value is automatically reset to @code{nil} just
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2479 after the hook is run.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2480 @end defvar
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2481
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2482 @defun set-window-redisplay-end-trigger window position
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2483 This function sets @var{window}'s end trigger position at
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2484 @var{position}.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2485 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2486
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2487 @defun window-redisplay-end-trigger &optional window
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2488 This function returns @var{window}'s current end trigger position.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2489 If @var{window} is @code{nil} or omitted, it uses the selected window.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2490 @end defun
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2491
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2492 @defvar window-configuration-change-hook
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2493 A normal hook that is run every time you change the window configuration
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2494 of an existing frame. This includes splitting or deleting windows,
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2495 changing the sizes of windows, or displaying a different buffer in a
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2496 window. The frame whose window configuration has changed is the
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2497 selected frame when this hook runs.
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2498 @end defvar
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2499
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2500 @ignore
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2501 arch-tag: 3f6c36e8-df49-4986-b757-417feed88be3
7087f74a4f1d Move here from ../../lispref
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2502 @end ignore