Mercurial > emacs
annotate man/windows.texi @ 59077:294a7f7e3daf
(mode-line, mode-line-inactive): Use min-colors.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Thu, 23 Dec 2004 18:28:13 +0000 |
parents | a6b7cffd2a54 |
children | fecf0bc95c49 3219f94257bc |
rev | line source |
---|---|
25829 | 1 @c This is part of the Emacs manual. |
56821
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
2 @c Copyright (C) 1985,86,87,93,94,95,97,2000,2001,2004 Free Software Foundation, Inc. |
25829 | 3 @c See file emacs.texi for copying conditions. |
4 @node Windows, Frames, Buffers, Top | |
5 @chapter Multiple Windows | |
6 @cindex windows in Emacs | |
7 @cindex multiple windows in Emacs | |
8 | |
9 Emacs can split a frame into two or many windows. Multiple windows | |
10 can display parts of different buffers, or different parts of one | |
11 buffer. Multiple frames always imply multiple windows, because each | |
12 frame has its own set of windows. Each window belongs to one and only | |
13 one frame. | |
14 | |
15 @menu | |
16 * Basic Window:: Introduction to Emacs windows. | |
17 * Split Window:: New windows are made by splitting existing windows. | |
18 * Other Window:: Moving to another window or doing something to it. | |
19 * Pop Up Window:: Finding a file or buffer in another window. | |
20 * Force Same Window:: Forcing certain buffers to appear in the selected | |
21 window rather than in another window. | |
22 * Change Window:: Deleting windows and changing their sizes. | |
28551 | 23 * Window Convenience:: Convenience functions for window handling. |
25829 | 24 @end menu |
25 | |
26 @node Basic Window | |
27 @section Concepts of Emacs Windows | |
28 | |
29 Each Emacs window displays one Emacs buffer at any time. A single | |
30 buffer may appear in more than one window; if it does, any changes in | |
31 its text are displayed in all the windows where it appears. But the | |
32 windows showing the same buffer can show different parts of it, because | |
33 each window has its own value of point. | |
34 | |
35 @cindex selected window | |
36 At any time, one of the windows is the @dfn{selected window}; the | |
37 buffer this window is displaying is the current buffer. The terminal's | |
38 cursor shows the location of point in this window. Each other window | |
56821
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
39 has a location of point as well. On text-only terminals, there is no |
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
40 way to show where those locations are, since the terminal has only one |
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
41 cursor. If you are using a window system, the location of point in a |
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
42 non-selected window is indicated by a hollow box. The cursor in the |
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
43 selected window is blinking or solid. |
25829 | 44 |
45 Commands to move point affect the value of point for the selected Emacs | |
46 window only. They do not change the value of point in any other Emacs | |
47 window, even one showing the same buffer. The same is true for commands | |
37986
e11682cc1516
selected buffer => current buffer.
Richard M. Stallman <rms@gnu.org>
parents:
37121
diff
changeset
|
48 such as @kbd{C-x b} to change the current buffer in the selected window; |
25829 | 49 they do not affect other windows at all. However, there are other commands |
50 such as @kbd{C-x 4 b} that select a different window and switch buffers in | |
51 it. Also, all commands that display information in a window, including | |
52 (for example) @kbd{C-h f} (@code{describe-function}) and @kbd{C-x C-b} | |
53 (@code{list-buffers}), work by switching buffers in a nonselected window | |
54 without affecting the selected window. | |
55 | |
56 When multiple windows show the same buffer, they can have different | |
57 regions, because they can have different values of point. However, | |
58 they all have the same value for the mark, because each buffer has | |
59 only one mark position. | |
60 | |
61 Each window has its own mode line, which displays the buffer name, | |
62 modification status and major and minor modes of the buffer that is | |
63 displayed in the window. @xref{Mode Line}, for full details on the mode | |
64 line. | |
65 | |
66 @iftex | |
67 @break | |
68 @end iftex | |
69 | |
70 @node Split Window | |
71 @section Splitting Windows | |
72 | |
73 @table @kbd | |
74 @item C-x 2 | |
75 Split the selected window into two windows, one above the other | |
76 (@code{split-window-vertically}). | |
77 @item C-x 3 | |
78 Split the selected window into two windows positioned side by side | |
79 (@code{split-window-horizontally}). | |
80 @item C-Mouse-2 | |
81 In the mode line or scroll bar of a window, split that window. | |
82 @end table | |
83 | |
84 @kindex C-x 2 | |
85 @findex split-window-vertically | |
86 The command @kbd{C-x 2} (@code{split-window-vertically}) breaks the | |
87 selected window into two windows, one above the other. Both windows start | |
88 out displaying the same buffer, with the same value of point. By default | |
89 the two windows each get half the height of the window that was split; a | |
90 numeric argument specifies how many lines to give to the top window. | |
91 | |
92 @kindex C-x 3 | |
93 @findex split-window-horizontally | |
94 @kbd{C-x 3} (@code{split-window-horizontally}) breaks the selected | |
95 window into two side-by-side windows. A numeric argument specifies how | |
56821
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
96 many columns to give the one on the left. If you are not using |
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
97 scrollbars, a line of vertical bars separates the two windows. |
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
98 Windows that are not the full width of the screen have mode lines, but |
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
99 they are truncated. On terminals where Emacs does not support |
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
100 highlighting, truncated mode lines sometimes do not appear in inverse |
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
101 video. |
25829 | 102 |
103 @kindex C-Mouse-2 @r{(scroll bar)} | |
104 You can split a window horizontally or vertically by clicking | |
56821
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
105 @kbd{C-Mouse-2} in the mode line or the scroll bar. The line of |
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
106 splitting goes through the place where you click: if you click on the |
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
107 mode line, the new scroll bar goes above the spot; if you click in the |
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
108 scroll bar, the mode line of the split window is side by side with |
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
109 your click. |
25829 | 110 |
111 @vindex truncate-partial-width-windows | |
112 When a window is less than the full width, text lines too long to fit are | |
113 frequent. Continuing all those lines might be confusing. The variable | |
114 @code{truncate-partial-width-windows} can be set non-@code{nil} to force | |
115 truncation in all windows less than the full width of the screen, | |
116 independent of the buffer being displayed and its value for | |
117 @code{truncate-lines}. @xref{Continuation Lines}.@refill | |
118 | |
119 Horizontal scrolling is often used in side-by-side windows. | |
120 @xref{Display}. | |
121 | |
122 @vindex split-window-keep-point | |
37121 | 123 If @code{split-window-keep-point} is non-@code{nil}, the default, |
124 both of the windows resulting from @kbd{C-x 2} inherit the value of | |
125 point from the window that was split. This means that scrolling is | |
25829 | 126 inevitable. If this variable is @code{nil}, then @kbd{C-x 2} tries to |
37121 | 127 avoid scrolling the text currently visible on the screen, by putting |
128 point in each window at a position already visible in the window. It | |
56404
ab69405dae2e
(Split Window): Fix typo.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
129 also selects whichever window contains the screen line that the cursor |
37121 | 130 was previously on. Some users prefer the latter mode on slow |
131 terminals. | |
25829 | 132 |
133 @node Other Window | |
134 @section Using Other Windows | |
135 | |
136 @table @kbd | |
137 @item C-x o | |
138 Select another window (@code{other-window}). That is @kbd{o}, not zero. | |
139 @item C-M-v | |
140 Scroll the next window (@code{scroll-other-window}). | |
141 @item M-x compare-windows | |
142 Find next place where the text in the selected window does not match | |
143 the text in the next window. | |
144 @item Mouse-1 | |
145 @kbd{Mouse-1}, in a window's mode line, selects that window | |
146 but does not move point in it (@code{mouse-select-window}). | |
147 @end table | |
148 | |
149 @kindex C-x o | |
150 @findex other-window | |
151 To select a different window, click with @kbd{Mouse-1} on its mode | |
152 line. With the keyboard, you can switch windows by typing @kbd{C-x o} | |
36185 | 153 (@code{other-window}). That is an @kbd{o}, for ``other,'' not a zero. |
25829 | 154 When there are more than two windows, this command moves through all the |
155 windows in a cyclic order, generally top to bottom and left to right. | |
156 After the rightmost and bottommost window, it goes back to the one at | |
157 the upper left corner. A numeric argument means to move several steps | |
158 in the cyclic order of windows. A negative argument moves around the | |
159 cycle in the opposite order. When the minibuffer is active, the | |
160 minibuffer is the last window in the cycle; you can switch from the | |
161 minibuffer window to one of the other windows, and later switch back and | |
162 finish supplying the minibuffer argument that is requested. | |
163 @xref{Minibuffer Edit}. | |
164 | |
165 @kindex C-M-v | |
166 @findex scroll-other-window | |
167 The usual scrolling commands (@pxref{Display}) apply to the selected | |
168 window only, but there is one command to scroll the next window. | |
169 @kbd{C-M-v} (@code{scroll-other-window}) scrolls the window that | |
170 @kbd{C-x o} would select. It takes arguments, positive and negative, | |
171 like @kbd{C-v}. (In the minibuffer, @kbd{C-M-v} scrolls the window | |
172 that contains the minibuffer help display, if any, rather than the | |
173 next window in the standard cyclic order.) | |
174 | |
175 The command @kbd{M-x compare-windows} lets you compare two files or | |
176 buffers visible in two windows, by moving through them to the next | |
177 mismatch. @xref{Comparing Files}, for details. | |
178 | |
46208
19cf9993da08
Add mouse-autoselect-window.
Richard M. Stallman <rms@gnu.org>
parents:
39287
diff
changeset
|
179 @vindex mouse-autoselect-window |
19cf9993da08
Add mouse-autoselect-window.
Richard M. Stallman <rms@gnu.org>
parents:
39287
diff
changeset
|
180 If you set @code{mouse-autoselect-window} to a non-@code{nil} value, |
19cf9993da08
Add mouse-autoselect-window.
Richard M. Stallman <rms@gnu.org>
parents:
39287
diff
changeset
|
181 moving the mouse into a different window selects that window. This |
19cf9993da08
Add mouse-autoselect-window.
Richard M. Stallman <rms@gnu.org>
parents:
39287
diff
changeset
|
182 feature is off by default. |
19cf9993da08
Add mouse-autoselect-window.
Richard M. Stallman <rms@gnu.org>
parents:
39287
diff
changeset
|
183 |
25829 | 184 @node Pop Up Window |
185 @section Displaying in Another Window | |
186 | |
187 @cindex selecting buffers in other windows | |
188 @kindex C-x 4 | |
189 @kbd{C-x 4} is a prefix key for commands that select another window | |
190 (splitting the window if there is only one) and select a buffer in that | |
191 window. Different @kbd{C-x 4} commands have different ways of finding the | |
192 buffer to select. | |
193 | |
194 @table @kbd | |
195 @item C-x 4 b @var{bufname} @key{RET} | |
196 Select buffer @var{bufname} in another window. This runs | |
197 @code{switch-to-buffer-other-window}. | |
198 @item C-x 4 C-o @var{bufname} @key{RET} | |
199 Display buffer @var{bufname} in another window, but | |
200 don't select that buffer or that window. This runs | |
201 @code{display-buffer}. | |
202 @item C-x 4 f @var{filename} @key{RET} | |
203 Visit file @var{filename} and select its buffer in another window. This | |
204 runs @code{find-file-other-window}. @xref{Visiting}. | |
205 @item C-x 4 d @var{directory} @key{RET} | |
206 Select a Dired buffer for directory @var{directory} in another window. | |
207 This runs @code{dired-other-window}. @xref{Dired}. | |
208 @item C-x 4 m | |
209 Start composing a mail message in another window. This runs | |
210 @code{mail-other-window}; its same-window analogue is @kbd{C-x m} | |
211 (@pxref{Sending Mail}). | |
212 @item C-x 4 . | |
213 Find a tag in the current tags table, in another window. This runs | |
214 @code{find-tag-other-window}, the multiple-window variant of @kbd{M-.} | |
215 (@pxref{Tags}). | |
216 @item C-x 4 r @var{filename} @key{RET} | |
217 Visit file @var{filename} read-only, and select its buffer in another | |
218 window. This runs @code{find-file-read-only-other-window}. | |
219 @xref{Visiting}. | |
220 @end table | |
221 | |
222 @node Force Same Window | |
223 @section Forcing Display in the Same Window | |
224 | |
225 Certain Emacs commands switch to a specific buffer with special | |
226 contents. For example, @kbd{M-x shell} switches to a buffer named | |
227 @samp{*Shell*}. By convention, all these commands are written to pop up | |
228 the buffer in a separate window. But you can specify that certain of | |
229 these buffers should appear in the selected window. | |
230 | |
231 @vindex same-window-buffer-names | |
232 If you add a buffer name to the list @code{same-window-buffer-names}, | |
233 the effect is that such commands display that particular buffer by | |
234 switching to it in the selected window. For example, if you add the | |
235 element @code{"*grep*"} to the list, the @code{grep} command will | |
236 display its output buffer in the selected window. | |
237 | |
238 The default value of @code{same-window-buffer-names} is not | |
239 @code{nil}: it specifies buffer names @samp{*info*}, @samp{*mail*} and | |
240 @samp{*shell*} (as well as others used by more obscure Emacs packages). | |
241 This is why @kbd{M-x shell} normally switches to the @samp{*shell*} | |
242 buffer in the selected window. If you delete this element from the | |
243 value of @code{same-window-buffer-names}, the behavior of @kbd{M-x | |
244 shell} will change---it will pop up the buffer in another window | |
245 instead. | |
246 | |
247 @vindex same-window-regexps | |
248 You can specify these buffers more generally with the variable | |
249 @code{same-window-regexps}. Set it to a list of regular expressions; | |
250 then any buffer whose name matches one of those regular expressions is | |
251 displayed by switching to it in the selected window. (Once again, this | |
252 applies only to buffers that normally get displayed for you in a | |
253 separate window.) The default value of this variable specifies Telnet | |
254 and rlogin buffers. | |
255 | |
256 An analogous feature lets you specify buffers which should be | |
257 displayed in their own individual frames. @xref{Special Buffer Frames}. | |
258 | |
259 @node Change Window | |
260 @section Deleting and Rearranging Windows | |
261 | |
262 @table @kbd | |
263 @item C-x 0 | |
264 Delete the selected window (@code{delete-window}). The last character | |
265 in this key sequence is a zero. | |
266 @item C-x 1 | |
267 Delete all windows in the selected frame except the selected window | |
268 (@code{delete-other-windows}). | |
269 @item C-x 4 0 | |
270 Delete the selected window and kill the buffer that was showing in it | |
271 (@code{kill-buffer-and-window}). The last character in this key | |
272 sequence is a zero. | |
273 @item C-x ^ | |
274 Make selected window taller (@code{enlarge-window}). | |
275 @item C-x @} | |
276 Make selected window wider (@code{enlarge-window-horizontally}). | |
277 @item C-x @{ | |
278 Make selected window narrower (@code{shrink-window-horizontally}). | |
279 @item C-x - | |
280 Shrink this window if its buffer doesn't need so many lines | |
281 (@code{shrink-window-if-larger-than-buffer}). | |
282 @item C-x + | |
283 Make all windows the same height (@code{balance-windows}). | |
284 @item Drag-Mouse-1 | |
285 Dragging a window's mode line up or down with @kbd{Mouse-1} changes | |
286 window heights. | |
287 @item Mouse-2 | |
288 @kbd{Mouse-2} in a window's mode line deletes all other windows in the frame | |
289 (@code{mouse-delete-other-windows}). | |
290 @item Mouse-3 | |
291 @kbd{Mouse-3} in a window's mode line deletes that window | |
35954
c869b148aa3f
Document what does mouse-3 do on the mode line if there's only one window.
Eli Zaretskii <eliz@gnu.org>
parents:
35188
diff
changeset
|
292 (@code{mouse-delete-window}), unless the frame has only one window, in |
c869b148aa3f
Document what does mouse-3 do on the mode line if there's only one window.
Eli Zaretskii <eliz@gnu.org>
parents:
35188
diff
changeset
|
293 which case it buries the current buffer instead and switches to another |
c869b148aa3f
Document what does mouse-3 do on the mode line if there's only one window.
Eli Zaretskii <eliz@gnu.org>
parents:
35188
diff
changeset
|
294 buffer. |
25829 | 295 @end table |
296 | |
297 @kindex C-x 0 | |
298 @findex delete-window | |
299 To delete a window, type @kbd{C-x 0} (@code{delete-window}). (That is | |
300 a zero.) The space occupied by the deleted window is given to an | |
301 adjacent window (but not the minibuffer window, even if that is active | |
302 at the time). Once a window is deleted, its attributes are forgotten; | |
303 only restoring a window configuration can bring it back. Deleting the | |
304 window has no effect on the buffer it used to display; the buffer | |
305 continues to exist, and you can select it in any window with @kbd{C-x | |
306 b}. | |
307 | |
308 @findex kill-buffer-and-window | |
309 @kindex C-x 4 0 | |
310 @kbd{C-x 4 0} (@code{kill-buffer-and-window}) is a stronger command | |
311 than @kbd{C-x 0}; it kills the current buffer and then deletes the | |
312 selected window. | |
313 | |
314 @kindex C-x 1 | |
315 @findex delete-other-windows | |
316 @kbd{C-x 1} (@code{delete-other-windows}) is more powerful in a | |
317 different way; it deletes all the windows except the selected one (and | |
318 the minibuffer); the selected window expands to use the whole frame | |
319 except for the echo area. | |
320 | |
321 You can also delete a window by clicking on its mode line with | |
56821
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
322 @kbd{Mouse-3}, and delete all the windows in a frame except one window |
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
323 by clicking on that window's mode line with @kbd{Mouse-2}. |
25829 | 324 |
325 The easiest way to adjust window heights is with a mouse. If you | |
326 press @kbd{Mouse-1} on a mode line, you can drag that mode line up or | |
327 down, changing the heights of the windows above and below it. | |
328 | |
329 @kindex C-x ^ | |
330 @findex enlarge-window | |
331 @kindex C-x @} | |
332 @findex enlarge-window-horizontally | |
333 @vindex window-min-height | |
334 @vindex window-min-width | |
335 To readjust the division of space among vertically adjacent windows, | |
336 use @kbd{C-x ^} (@code{enlarge-window}). It makes the currently | |
337 selected window get one line bigger, or as many lines as is specified | |
338 with a numeric argument. With a negative argument, it makes the | |
339 selected window smaller. @kbd{C-x @}} | |
340 (@code{enlarge-window-horizontally}) makes the selected window wider by | |
341 the specified number of columns. @kbd{C-x @{} | |
342 (@code{shrink-window-horizontally}) makes the selected window narrower | |
343 by the specified number of columns. | |
344 | |
345 When you make a window bigger, the space comes from one of its | |
346 neighbors. If this makes any window too small, it is deleted and its | |
347 space is given to an adjacent window. The minimum size is specified by | |
348 the variables @code{window-min-height} and @code{window-min-width}. | |
349 | |
350 @kindex C-x - | |
351 @findex shrink-window-if-larger-than-buffer | |
352 The command @kbd{C-x -} (@code{shrink-window-if-larger-than-buffer}) | |
353 reduces the height of the selected window, if it is taller than | |
354 necessary to show the whole text of the buffer it is displaying. It | |
355 gives the extra lines to other windows in the frame. | |
356 | |
357 @kindex C-x + | |
358 @findex balance-windows | |
359 You can also use @kbd{C-x +} (@code{balance-windows}) to even out the | |
360 heights of all the windows in the selected frame. | |
361 | |
28551 | 362 @node Window Convenience |
363 @section Window Handling Convenience Features and Customization | |
364 | |
365 @findex winner-mode | |
30875 | 366 @cindex Winner mode |
367 @cindex mode, Winner | |
28551 | 368 @cindex undoing window configuration changes |
369 @cindex window configuration changes, undoing | |
36182
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
370 @kbd{M-x winner-mode} is a global minor mode that records the |
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
371 changes in the window configuration (i.e. how the frames are |
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
372 partitioned into windows), so that you can ``undo'' them. To undo, |
56821
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
373 use @kbd{C-c left} (@code{winner-undo}). If you change your mind |
a6b7cffd2a54
(Basic Window): When using a window system, the value of point in a
Luc Teirlinck <teirllm@auburn.edu>
parents:
56404
diff
changeset
|
374 while undoing, you can redo the changes you had undone using @kbd{C-c |
36182
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
375 right} (@code{M-x winner-redo}). Another way to enable Winner mode is |
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
376 by customizing the variable @code{winner-mode}. |
28551 | 377 |
378 @cindex Windmove package | |
379 @cindex directional window selection | |
30875 | 380 @findex windmove-right |
381 @findex windmove-default-keybindings | |
39268 | 382 The Windmove commands move directionally between neighboring windows in |
30875 | 383 a frame. @kbd{M-x windmove-right} selects the window immediately to the |
36182
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
384 right of the currently selected one, and similarly for the ``left,'' ``up,'' |
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
385 and ``down'' counterparts. @kbd{M-x windmove-default-keybindings} binds |
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
386 these commands to @kbd{S-right} etc. (Not all terminals support shifted |
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
387 arrow keys, however.) |
28551 | 388 |
36182
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
389 Follow minor mode (@kbd{M-x follow-mode}) synchronizes several |
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
390 windows on the same buffer so that they always display adjacent |
36263
11db0318031d
Remove redundant index entries.
Eli Zaretskii <eliz@gnu.org>
parents:
36185
diff
changeset
|
391 sections of that buffer. @xref{Follow Mode}. |
36182
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
392 |
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
393 @vindex scroll-all-mode |
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
394 @cindex scrolling windows together |
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
395 @cindex Scroll-all mode |
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
396 @cindex mode, Scroll-all |
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
397 @kbd{M-x scroll-all-mode} provides commands to scroll all visible |
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
398 windows together. You can also turn it on by customizing the variable |
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
399 @code{scroll-all-mode}. The commands provided are @kbd{M-x |
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
400 scroll-all-scroll-down-all}, @kbd{M-x scroll-all-page-down-all} and |
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
401 their corresponding ``up'' equivalents. To make this mode useful, |
add12d9a298a
Major rewrite in Window Convenience node.
Richard M. Stallman <rms@gnu.org>
parents:
35954
diff
changeset
|
402 you should bind these commands to appropriate keys. |
52401 | 403 |
404 @ignore | |
405 arch-tag: 8bea7453-d4b1-49b1-9bf4-cfe4383e1113 | |
406 @end ignore |