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