]> code.delx.au - gnu-emacs/blob - doc/emacs/windows.texi
; Merge from origin/emacs-25
[gnu-emacs] / doc / emacs / windows.texi
1 @c This is part of the Emacs manual.
2 @c Copyright (C) 1985-1987, 1993-1995, 1997, 2000-2016 Free Software
3 @c Foundation, Inc.
4 @c See file emacs.texi for copying conditions.
5 @node Windows
6 @chapter Multiple Windows
7 @cindex windows in Emacs
8 @cindex multiple windows in Emacs
9
10 Emacs can split a frame into two or many windows. Multiple windows
11 can display parts of different buffers, or different parts of one
12 buffer. Multiple frames always imply multiple windows, because each
13 frame has its own set of windows. Each window belongs to one and only
14 one frame.
15
16 @menu
17 * Basic Window:: Introduction to Emacs windows.
18 * Split Window:: New windows are made by splitting existing windows.
19 * Other Window:: Moving to another window or doing something to it.
20 * Pop Up Window:: Finding a file or buffer in another window.
21 * Change Window:: Deleting windows and changing their sizes.
22 * Displaying Buffers:: How Emacs picks a window for displaying a buffer.
23 * Window Convenience:: Convenience functions for window handling.
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 these
32 windows can show different parts of the buffer, because each window
33 has its own value of point.
34
35 @cindex selected window
36 At any time, one Emacs window is the @dfn{selected window}; the
37 buffer this window is displaying is the current buffer. On graphical
38 displays, the point is indicated by a solid blinking cursor in the
39 selected window, and by a hollow box in non-selected windows. On text
40 terminals, the cursor is drawn only in the selected window.
41 @xref{Cursor Display}.
42
43 Commands to move point affect the value of point for the selected
44 Emacs window only. They do not change the value of point in other
45 Emacs windows, even those showing the same buffer. The same is true
46 for buffer-switching commands such as @kbd{C-x b}; they do not affect
47 other windows at all. However, there are other commands such as
48 @kbd{C-x 4 b} that select a different window and switch buffers in it.
49 Also, all commands that display information in a window, including
50 (for example) @kbd{C-h f} (@code{describe-function}) and @kbd{C-x C-b}
51 (@code{list-buffers}), work by switching buffers in a nonselected
52 window without affecting the selected window.
53
54 When multiple windows show the same buffer, they can have different
55 regions, because they can have different values of point. However,
56 they all have the same value for the mark, because each buffer has
57 only one mark position.
58
59 Each window has its own mode line, which displays the buffer name,
60 modification status and major and minor modes of the buffer that is
61 displayed in the window. The selected window's mode line appears in a
62 different color. @xref{Mode Line}, for details.
63
64 @node Split Window
65 @section Splitting Windows
66
67 @table @kbd
68 @item C-x 2
69 Split the selected window into two windows, one above the other
70 (@code{split-window-below}).
71 @item C-x 3
72 Split the selected window into two windows, positioned side by side
73 (@code{split-window-right}).
74 @item C-mouse-2
75 In the mode line of a window, split that window.
76 @end table
77
78 @kindex C-x 2
79 @findex split-window-below
80 @kbd{C-x 2} (@code{split-window-below}) splits the selected window
81 into two windows, one above the other. After splitting, the selected
82 window is the upper one, and the newly split-off window is below.
83 Both windows have the same value of point as before, and display the
84 same portion of the buffer (or as close to it as possible). If
85 necessary, the windows are scrolled to keep point on-screen. By
86 default, the two windows each get half the height of the original
87 window. A positive numeric argument specifies how many lines to give
88 to the top window; a negative numeric argument specifies how many
89 lines to give to the bottom window.
90
91 @vindex split-window-keep-point
92 If you change the variable @code{split-window-keep-point} to
93 @code{nil}, @kbd{C-x 2} instead adjusts the portion of the buffer
94 displayed by the two windows, as well as the value of point in each
95 window, in order to keep the text on the screen as close as possible
96 to what it was before; furthermore, if point was in the lower half of
97 the original window, the bottom window is selected instead of the
98 upper one.
99
100 @kindex C-x 3
101 @findex split-window-right
102 @kbd{C-x 3} (@code{split-window-right}) splits the selected window
103 into two side-by-side windows. The left window is the selected one;
104 the right window displays the same portion of the same buffer, and has
105 the same value of point. A positive numeric argument specifies how
106 many columns to give the left window; a negative numeric argument
107 specifies how many columns to give the right window.
108
109 @vindex truncate-partial-width-windows
110 When you split a window with @kbd{C-x 3}, each resulting window
111 occupies less than the full width of the frame. If it becomes too
112 narrow, the buffer may be difficult to read if continuation lines are
113 in use (@pxref{Continuation Lines}). Therefore, Emacs automatically
114 switches to line truncation if the window width becomes narrower than
115 50 columns. This truncation occurs regardless of the value of the
116 variable @code{truncate-lines} (@pxref{Line Truncation}); it is
117 instead controlled by the variable
118 @code{truncate-partial-width-windows}. If the value of this variable
119 is a positive integer (the default is 50), that specifies the minimum
120 total width for a partial-width window before automatic line
121 truncation occurs; if the value is @code{nil}, automatic line
122 truncation is disabled; and for any other non-@code{nil} value, Emacs
123 truncates lines in every partial-width window regardless of its width.
124 The total width of a window is in column units as reported by
125 @code{window-total-width} (@pxref{Window Sizes,,, elisp, The Emacs
126 Lisp Reference Manual}), it includes the fringes, the continuation and
127 truncation glyphs, the margins, and the scroll bar.
128
129 On text terminals, side-by-side windows are separated by a vertical
130 divider which is drawn using the @code{vertical-border} face.
131
132 @kindex C-mouse-2 @r{(mode line)}
133 @kindex C-mouse-2 @r{(scroll bar)}
134 If you click @kbd{C-mouse-2} in the mode line of a window, that
135 splits the window, putting a vertical divider where you click.
136 Depending on how Emacs is compiled, you can also split a window by
137 clicking @kbd{C-mouse-2} in the scroll bar, which puts a horizontal
138 divider where you click (this feature does not work when Emacs uses
139 GTK+ scroll bars).
140
141 @vindex window-resize-pixelwise
142 By default, when you split a window, Emacs gives each of the
143 resulting windows dimensions that are an integral multiple of the
144 default font size of the frame. That might subdivide the screen
145 estate unevenly between the resulting windows. If you set the
146 variable @code{window-resize-pixelwise} to a non-@code{nil} value,
147 Emacs will give each window the same number of pixels (give or take
148 one pixel if the initial dimension was an odd number of pixels). Note
149 that when a frame's pixel size is not a multiple of the frame's
150 character size, at least one window may get resized pixelwise even if
151 this option is @code{nil}.
152
153 @node Other Window
154 @section Using Other Windows
155
156 @table @kbd
157 @item C-x o
158 Select another window (@code{other-window}).
159 @item C-M-v
160 Scroll the next window (@code{scroll-other-window}).
161 @item mouse-1
162 @kbd{mouse-1}, in the text area of a window, selects the window and
163 moves point to the position clicked. Clicking in the mode line
164 selects the window without moving point in it.
165 @end table
166
167 @kindex C-x o
168 @findex other-window
169 With the keyboard, you can switch windows by typing @kbd{C-x o}
170 (@code{other-window}). That is an @kbd{o}, for ``other'', not a zero.
171 When there are more than two windows, this command moves through all the
172 windows in a cyclic order, generally top to bottom and left to right.
173 After the rightmost and bottommost window, it goes back to the one at
174 the upper left corner. A numeric argument means to move several steps
175 in the cyclic order of windows. A negative argument moves around the
176 cycle in the opposite order. When the minibuffer is active, the
177 minibuffer is the last window in the cycle; you can switch from the
178 minibuffer window to one of the other windows, and later switch back and
179 finish supplying the minibuffer argument that is requested.
180 @xref{Minibuffer Edit}.
181
182 @kindex C-M-v
183 @findex scroll-other-window
184 The usual scrolling commands (@pxref{Display}) apply to the selected
185 window only, but there is one command to scroll the next window.
186 @kbd{C-M-v} (@code{scroll-other-window}) scrolls the window that
187 @kbd{C-x o} would select. It takes arguments, positive and negative,
188 like @kbd{C-v}. (In the minibuffer, @kbd{C-M-v} scrolls the help
189 window associated with the minibuffer, if any, rather than the next
190 window in the standard cyclic order; @pxref{Minibuffer Edit}.)
191
192 @vindex mouse-autoselect-window
193 If you set @code{mouse-autoselect-window} to a non-@code{nil} value,
194 moving the mouse over a different window selects that window. This
195 feature is off by default.
196
197 @node Pop Up Window
198 @section Displaying in Another Window
199
200 @cindex selecting buffers in other windows
201 @kindex C-x 4
202 @kbd{C-x 4} is a prefix key for a variety of commands that switch to
203 a buffer in a different window---either another existing window, or a
204 new window created by splitting the selected window. @xref{Window
205 Choice}, for how Emacs picks or creates the window to use.
206
207 @table @kbd
208 @findex switch-to-buffer-other-window
209 @item C-x 4 b @var{bufname} @key{RET}
210 Select buffer @var{bufname} in another window
211 (@code{switch-to-buffer-other-window}).
212
213 @findex display-buffer @r{(command)}
214 @item C-x 4 C-o @var{bufname} @key{RET}
215 @kindex C-x 4 C-o
216 Display buffer @var{bufname} in some window, without trying to select
217 it (@code{display-buffer}). @xref{Displaying Buffers}, for details
218 about how the window is chosen.
219
220 @findex find-file-other-window
221 @item C-x 4 f @var{filename} @key{RET}
222 Visit file @var{filename} and select its buffer in another window
223 (@code{find-file-other-window}). @xref{Visiting}.
224
225 @findex dired-other-window
226 @item C-x 4 d @var{directory} @key{RET}
227 Select a Dired buffer for directory @var{directory} in another window
228 (@code{dired-other-window}). @xref{Dired}.
229
230 @c Don't index @kbd{C-x 4 m} and @code{compose-mail-other-window}
231 @c here, they are indexed in sending.texi, in the "Sending Mail" node.
232 @item C-x 4 m
233 Start composing a mail message, similar to @kbd{C-x m} (@pxref{Sending
234 Mail}), but in another window (@code{compose-mail-other-window}).
235
236 @findex find-tag-other-window
237 @item C-x 4 .
238 Find the definition of an identifier, similar to @kbd{M-.}
239 (@pxref{Xref}), but in another window
240 (@code{xref-find-definitions-other-window}).
241 @item C-x 4 r @var{filename} @key{RET}
242 Visit file @var{filename} read-only, and select its buffer in another
243 window (@code{find-file-read-only-other-window}). @xref{Visiting}.
244 @end table
245
246 @node Change Window
247 @section Deleting and Resizing Windows
248
249 @cindex delete window
250 @cindex deleting windows
251 @table @kbd
252 @item C-x 0
253 Delete the selected window (@code{delete-window}).
254 @item C-x 1
255 Delete all windows in the selected frame except the selected window
256 (@code{delete-other-windows}).
257 @item C-x 4 0
258 Delete the selected window and kill the buffer that was showing in it
259 (@code{kill-buffer-and-window}). The last character in this key
260 sequence is a zero.
261 @item C-x ^
262 Make selected window taller (@code{enlarge-window}).
263 @item C-x @}
264 Make selected window wider (@code{enlarge-window-horizontally}).
265 @item C-x @{
266 Make selected window narrower (@code{shrink-window-horizontally}).
267 @item C-x -
268 Shrink this window if its buffer doesn't need so many lines
269 (@code{shrink-window-if-larger-than-buffer}).
270 @item C-x +
271 Make all windows the same height (@code{balance-windows}).
272 @end table
273
274 @kindex C-x 0
275 @findex delete-window
276 To delete the selected window, type @kbd{C-x 0}
277 (@code{delete-window}). (That is a zero.) Once a window is deleted,
278 the space that it occupied is given to an adjacent window (but not the
279 minibuffer window, even if that is active at the time). Deleting the
280 window has no effect on the buffer it used to display; the buffer
281 continues to exist, and you can still switch to it with @kbd{C-x b}.
282
283 @findex kill-buffer-and-window
284 @kindex C-x 4 0
285 @kbd{C-x 4 0} (@code{kill-buffer-and-window}) is a stronger command
286 than @kbd{C-x 0}; it kills the current buffer and then deletes the
287 selected window.
288
289 @kindex C-x 1
290 @findex delete-other-windows
291 @kbd{C-x 1} (@code{delete-other-windows}) deletes all the windows,
292 @emph{except} the selected one; the selected window expands to use the
293 whole frame. (This command cannot be used while the minibuffer window
294 is active; attempting to do so signals an error.)
295
296 @cindex resize window
297 @cindex resizing windows
298 @kindex C-x ^
299 @findex enlarge-window
300 @kindex C-x @}
301 @vindex window-min-height
302 The command @kbd{C-x ^} (@code{enlarge-window}) makes the selected
303 window one line taller, taking space from a vertically adjacent window
304 without changing the height of the frame. With a positive numeric
305 argument, this command increases the window height by that many lines;
306 with a negative argument, it reduces the height by that many lines.
307 If there are no vertically adjacent windows (i.e., the window is at the
308 full frame height), that signals an error. The command also signals
309 an error if you attempt to reduce the height of any window below a
310 certain minimum number of lines, specified by the variable
311 @code{window-min-height} (the default is 4).
312
313 @findex enlarge-window-horizontally
314 @findex shrink-window-horizontally
315 @vindex window-min-width
316 Similarly, @kbd{C-x @}} (@code{enlarge-window-horizontally}) makes
317 the selected window wider, and @kbd{C-x @{}
318 (@code{shrink-window-horizontally}) makes it narrower. These commands
319 signal an error if you attempt to reduce the width of any window below
320 a certain minimum number of columns, specified by the variable
321 @code{window-min-width} (the default is 10).
322
323 Mouse clicks on the mode line (@pxref{Mode Line Mouse}) or on window
324 dividers (@pxref{Window Dividers}) provide another way to change window
325 heights and to split or delete windows.
326
327 @kindex C-x -
328 @findex shrink-window-if-larger-than-buffer
329 @kbd{C-x -} (@code{shrink-window-if-larger-than-buffer}) reduces the
330 height of the selected window, if it is taller than necessary to show
331 the whole text of the buffer it is displaying. It gives the extra
332 lines to other windows in the frame.
333
334 @kindex C-x +
335 @findex balance-windows
336 You can also use @kbd{C-x +} (@code{balance-windows}) to even out the
337 heights of all the windows in the selected frame.
338
339 @node Displaying Buffers
340 @section Displaying a Buffer in a Window
341
342 It is a common Emacs operation to display or pop up some buffer
343 in response to a user command. There are several different ways in
344 which commands do this.
345
346 Many commands, like @kbd{C-x C-f} (@code{find-file}), display the
347 buffer by ``taking over'' the selected window, expecting that the
348 user's attention will be diverted to that buffer. These commands
349 usually work by calling @code{switch-to-buffer} internally
350 (@pxref{Select Buffer}).
351
352 Some commands try to display intelligently, trying not to take
353 over the selected window, e.g., by splitting off a new window and
354 displaying the desired buffer there. Such commands, which include the
355 various help commands (@pxref{Help}), work by calling
356 @code{display-buffer} internally. @xref{Window Choice}, for details.
357
358 Other commands do the same as @code{display-buffer}, and
359 additionally select the displaying window so that you can begin
360 editing its buffer. The command @kbd{C-x `} (@code{next-error}) is
361 one example (@pxref{Compilation Mode}). Such commands work by calling
362 the function @code{pop-to-buffer} internally. @xref{Switching
363 Buffers,,Switching to a Buffer in a Window, elisp, The Emacs Lisp
364 Reference Manual}.
365
366 Commands with names ending in @code{-other-window} behave like
367 @code{display-buffer}, except that they never display in the selected
368 window. Several of these commands are bound in the @kbd{C-x 4} prefix
369 key (@pxref{Pop Up Window}).
370
371 Commands with names ending in @code{-other-frame} behave like
372 @code{display-buffer}, except that they (i) never display in the
373 selected window and (ii) prefer to create a new frame to display the
374 desired buffer instead of splitting a window---as though the variable
375 @code{pop-up-frames} is set to @code{t} (@pxref{Window Choice}).
376 Several of these commands are bound in the @kbd{C-x 5} prefix key.
377
378 @menu
379 * Window Choice:: How @code{display-buffer} works.
380 * Temporary Displays:: Displaying non-editable buffers.
381 @end menu
382
383 @node Window Choice
384 @subsection How @code{display-buffer} works
385 @findex display-buffer, detailed description
386
387 The @code{display-buffer} command (as well as commands that call it
388 internally) chooses a window to display by following the steps given
389 below. @xref{Choosing Window,,Choosing a Window for Display, elisp,
390 The Emacs Lisp Reference Manual}, for details about how to alter this
391 sequence of steps.
392
393 @itemize
394 @vindex same-window-buffer-names
395 @vindex same-window-regexps
396 @item
397 First, check if the buffer should be displayed in the selected window
398 regardless of other considerations. You can tell Emacs to do this by
399 adding the desired buffer's name to the list
400 @code{same-window-buffer-names}, or adding a matching regular
401 expression to the list @code{same-window-regexps}. By default, these
402 variables are @code{nil}, so this step is skipped.
403
404 @item
405 Otherwise, if the buffer is already displayed in an existing window,
406 reuse that window. Normally, only windows on the selected frame
407 are considered, but windows on other frames are also reusable if you
408 change @code{pop-up-frames} (see below) to @code{t}.
409
410 @vindex pop-up-frames
411 @item
412 Otherwise, optionally create a new frame and display the buffer there.
413 By default, this step is skipped. To enable it, change the variable
414 @code{pop-up-frames} to a non-@code{nil} value. The special value
415 @code{graphic-only} means to do this only on graphical displays.
416
417 @item
418 Otherwise, try to create a new window by splitting a window on the
419 selected frame, and display the buffer in that new window.
420
421 @vindex split-height-threshold
422 @vindex split-width-threshold
423 The split can be either vertical or horizontal, depending on the
424 variables @code{split-height-threshold} and
425 @code{split-width-threshold}. These variables should have integer
426 values. If @code{split-height-threshold} is smaller than the chosen
427 window's height, the split puts the new window below. Otherwise, if
428 @code{split-width-threshold} is smaller than the window's width, the
429 split puts the new window on the right. If neither condition holds,
430 Emacs tries to split so that the new window is below---but only if the
431 window was not split before (to avoid excessive splitting).
432
433 @item
434 Otherwise, display the buffer in a window previously showing it.
435 Normally, only windows on the selected frame are considered, but if
436 @code{pop-up-frames} is non-@code{nil} the window may be also on another
437 frame.
438
439 @item
440 Otherwise, display the buffer in an existing window on the selected
441 frame.
442
443 @item
444 If all the above methods fail for whatever reason, create a new frame
445 and display the buffer there.
446 @end itemize
447
448 A more advanced and flexible way to customize the behavior of
449 @code{display-buffer} is by using the option @code{display-buffer-alist}
450 mentioned in the next section.
451
452
453 @node Temporary Displays
454 @subsection Displaying non-editable buffers.
455 @cindex pop-up windows
456 @cindex temporary windows
457
458 Some buffers are shown in windows for perusal rather than for editing.
459 Help commands (@pxref{Help}) typically use a buffer called @file{*Help*}
460 for that purpose, minibuffer completion (@pxref{Completion}) uses a
461 buffer called @file{*Completions*} instead. Such buffers are usually
462 displayed only for a short period of time.
463
464 Normally, Emacs chooses the window for such temporary displays via
465 @code{display-buffer} as described above. The @file{*Completions*}
466 buffer, on the other hand, is normally displayed in a window at the
467 bottom of the selected frame, regardless of the number of windows
468 already shown on that frame.
469
470 If you prefer Emacs to display a temporary buffer in a different
471 fashion, we recommend to customize the variable
472 @code{display-buffer-alist} (@pxref{Choosing Window,,Choosing a Window
473 for Display, elisp, The Emacs Lisp Reference Manual}). For example,
474 to display @file{*Completions*} by splitting a window as described in
475 the previous section, use the following form in your initialization
476 file (@pxref{Init File}):
477
478 @example
479 @group
480 (customize-set-variable
481 'display-buffer-alist
482 '(("\\*Completions\\*" display-buffer-pop-up-window)))
483 @end group
484 @end example
485
486 @findex temp-buffer-resize-mode
487 The @file{*Completions*} buffer is also special in the sense that
488 Emacs usually tries to make its window just as large as necessary to
489 display all of its contents. To resize windows showing other
490 temporary displays like, for example, the @file{*Help*} buffer
491 accordingly, turn on the minor mode (@pxref{Minor Modes})
492 @code{temp-buffer-resize-mode} (@pxref{Temporary Displays,,Temporary
493 Displays, elisp, The Emacs Lisp Reference Manual}).
494
495 @vindex temp-buffer-max-height
496 @vindex temp-buffer-max-width
497 The maximum size of windows resized by @code{temp-buffer-resize-mode}
498 can be controlled by customizing the options
499 @code{temp-buffer-max-height} and @code{temp-buffer-max-width}
500 (@pxref{Temporary Displays,,Temporary Displays, elisp, The Emacs Lisp
501 Reference Manual}) and cannot exceed the size of the containing frame.
502
503
504 @node Window Convenience
505 @section Convenience Features for Window Handling
506
507 @findex winner-mode
508 @cindex Winner mode
509 @cindex mode, Winner
510 @cindex undoing window configuration changes
511 @cindex window configuration changes, undoing
512 Winner mode is a global minor mode that records the changes in the
513 window configuration (i.e., how the frames are partitioned into
514 windows), so that you can undo them. You can toggle Winner mode
515 with @kbd{M-x winner-mode}, or by customizing the variable
516 @code{winner-mode}. When the mode is enabled, @kbd{C-c left}
517 (@code{winner-undo}) undoes the last window configuration change. If
518 you change your mind while undoing, you can redo the changes you had
519 undone using @kbd{C-c right} (@code{M-x winner-redo}).
520
521 Follow mode (@kbd{M-x follow-mode}) synchronizes several windows on
522 the same buffer so that they always display adjacent sections of that
523 buffer. @xref{Follow Mode}.
524
525 @cindex Windmove package
526 @cindex directional window selection
527 @findex windmove-right
528 @findex windmove-default-keybindings
529 The Windmove package defines commands for moving directionally
530 between neighboring windows in a frame. @kbd{M-x windmove-right}
531 selects the window immediately to the right of the currently selected
532 one, and similarly for the left, up, and down
533 counterparts. @kbd{M-x windmove-default-keybindings} binds these
534 commands to @kbd{S-right} etc.; doing so disables shift selection for
535 those keys (@pxref{Shift Selection}).
536
537 The command @kbd{M-x compare-windows} lets you compare the text
538 shown in different windows. @xref{Comparing Files}.
539
540 @vindex scroll-all-mode
541 @cindex scrolling windows together
542 @cindex Scroll-all mode
543 @cindex mode, Scroll-all
544 Scroll All mode (@kbd{M-x scroll-all-mode}) is a global minor mode
545 that causes scrolling commands and point motion commands to apply to
546 every single window.