Merge from trunk; up to 2013-02-18T01:30:27Z!monnier@iro.umontreal.ca.
[emacs.git] / lisp / window.el
blob627b9a425eb74114ad1492775e2532d73a830c14
1 ;;; window.el --- GNU Emacs window commands aside from those written in C
3 ;; Copyright (C) 1985, 1989, 1992-1994, 2000-2013 Free Software
4 ;; Foundation, Inc.
6 ;; Maintainer: FSF
7 ;; Keywords: internal
8 ;; Package: emacs
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; Window tree functions.
29 ;;; Code:
31 (defun internal--before-save-selected-window ()
32 (cons (selected-window)
33 ;; We save and restore all frames' selected windows, because
34 ;; `select-window' can change the frame-selected-window of
35 ;; whatever frame that window is in. Each text terminal's
36 ;; top-frame is preserved by putting it last in the list.
37 (apply #'append
38 (mapcar (lambda (terminal)
39 (let ((frames (frames-on-display-list terminal))
40 (top-frame (tty-top-frame terminal))
41 alist)
42 (if top-frame
43 (setq frames
44 (cons top-frame
45 (delq top-frame frames))))
46 (dolist (f frames)
47 (push (cons f (frame-selected-window f))
48 alist))
49 alist))
50 (terminal-list)))))
52 (defun internal--after-save-selected-window (state)
53 (dolist (elt (cdr state))
54 (and (frame-live-p (car elt))
55 (window-live-p (cdr elt))
56 (set-frame-selected-window (car elt) (cdr elt) 'norecord)))
57 (when (window-live-p (car state))
58 (select-window (car state) 'norecord)))
60 (defmacro save-selected-window (&rest body)
61 "Execute BODY, then select the previously selected window.
62 The value returned is the value of the last form in BODY.
64 This macro saves and restores the selected window, as well as the
65 selected window in each frame. If the previously selected window
66 is no longer live, then whatever window is selected at the end of
67 BODY remains selected. If the previously selected window of some
68 frame is no longer live at the end of BODY, that frame's selected
69 window is left alone.
71 This macro saves and restores the current buffer, since otherwise
72 its normal operation could make a different buffer current. The
73 order of recently selected windows and the buffer list ordering
74 are not altered by this macro (unless they are altered in BODY)."
75 (declare (indent 0) (debug t))
76 `(let ((save-selected-window--state (internal--before-save-selected-window)))
77 (save-current-buffer
78 (unwind-protect
79 (progn ,@body)
80 (internal--after-save-selected-window save-selected-window--state)))))
82 (defvar temp-buffer-window-setup-hook nil
83 "Normal hook run by `with-temp-buffer-window' before buffer display.
84 This hook is run by `with-temp-buffer-window' with the buffer to be
85 displayed current.")
87 (defvar temp-buffer-window-show-hook nil
88 "Normal hook run by `with-temp-buffer-window' after buffer display.
89 This hook is run by `with-temp-buffer-window' with the buffer
90 displayed and current and its window selected.")
92 (defun temp-buffer-window-setup (buffer-or-name)
93 "Set up temporary buffer specified by BUFFER-OR-NAME.
94 Return the buffer."
95 (let ((old-dir default-directory)
96 (buffer (get-buffer-create buffer-or-name)))
97 (with-current-buffer buffer
98 (kill-all-local-variables)
99 (setq default-directory old-dir)
100 (delete-all-overlays)
101 (setq buffer-read-only nil)
102 (setq buffer-file-name nil)
103 (setq buffer-undo-list t)
104 (let ((inhibit-read-only t)
105 (inhibit-modification-hooks t))
106 (erase-buffer)
107 (run-hooks 'temp-buffer-window-setup-hook))
108 ;; Return the buffer.
109 buffer)))
111 (defun temp-buffer-window-show (&optional buffer action)
112 "Show temporary buffer BUFFER in a window.
113 Return the window showing BUFFER. Pass ACTION as action argument
114 to `display-buffer'."
115 (let (window frame)
116 (with-current-buffer buffer
117 (set-buffer-modified-p nil)
118 (setq buffer-read-only t)
119 (goto-char (point-min))
120 (when (let ((window-combination-limit
121 ;; When `window-combination-limit' equals
122 ;; `temp-buffer' or `temp-buffer-resize' and
123 ;; `temp-buffer-resize-mode' is enabled in this
124 ;; buffer bind it to t so resizing steals space
125 ;; preferably from the window that was split.
126 (if (or (eq window-combination-limit 'temp-buffer)
127 (and (eq window-combination-limit
128 'temp-buffer-resize)
129 temp-buffer-resize-mode))
131 window-combination-limit)))
132 (setq window (display-buffer buffer action)))
133 (setq frame (window-frame window))
134 (unless (eq frame (selected-frame))
135 (raise-frame frame))
136 (setq minibuffer-scroll-window window)
137 (set-window-hscroll window 0)
138 (with-selected-window window
139 (run-hooks 'temp-buffer-window-show-hook)
140 (when temp-buffer-resize-mode
141 (resize-temp-buffer-window window)))
142 ;; Return the window.
143 window))))
145 ;; Doc is very similar to with-output-to-temp-buffer.
146 (defmacro with-temp-buffer-window (buffer-or-name action quit-function &rest body)
147 "Bind `standard-output' to BUFFER-OR-NAME, eval BODY, show the buffer.
148 BUFFER-OR-NAME must specify either a live buffer, or the name of a
149 buffer (if it does not exist, this macro creates it).
151 This construct makes buffer BUFFER-OR-NAME empty before running BODY.
152 It does not make the buffer current for BODY.
153 Instead it binds `standard-output' to that buffer, so that output
154 generated with `prin1' and similar functions in BODY goes into
155 the buffer.
157 At the end of BODY, this marks the specified buffer unmodified and
158 read-only, and displays it in a window (but does not select it, or make
159 the buffer current). The display happens by calling `display-buffer'
160 with the ACTION argument. If `temp-buffer-resize-mode' is enabled,
161 the relevant window shrinks automatically.
163 This returns the value returned by BODY, unless QUIT-FUNCTION specifies
164 a function. In that case, it runs the function with two arguments -
165 the window showing the specified buffer and the value returned by
166 BODY - and returns the value returned by that function.
168 If the buffer is displayed on a new frame, the window manager may
169 decide to select that frame. In that case, it's usually a good
170 strategy if QUIT-FUNCTION selects the window showing the buffer
171 before reading any value from the minibuffer; for example, when
172 asking a `yes-or-no-p' question.
174 This runs the hook `temp-buffer-window-setup-hook' before BODY,
175 with the specified buffer temporarily current. It runs the
176 hook `temp-buffer-window-show-hook' after displaying the buffer,
177 with that buffer temporarily current, and the window that was used to
178 display it temporarily selected.
180 This construct is similar to `with-output-to-temp-buffer', but
181 runs different hooks. In particular, it does not run
182 `temp-buffer-setup-hook', which usually puts the buffer in Help mode.
183 Also, it does not call `temp-buffer-show-function' (the ACTION
184 argument replaces this)."
185 (declare (debug t))
186 (let ((buffer (make-symbol "buffer"))
187 (window (make-symbol "window"))
188 (value (make-symbol "value")))
189 `(let* ((,buffer (temp-buffer-window-setup ,buffer-or-name))
190 (standard-output ,buffer)
191 ,window ,value)
192 (with-current-buffer ,buffer
193 (setq ,value (progn ,@body))
194 (setq ,window (temp-buffer-window-show ,buffer ,action)))
196 (if (functionp ,quit-function)
197 (funcall ,quit-function ,window ,value)
198 ,value))))
200 ;; The following two functions are like `window-next-sibling' and
201 ;; `window-prev-sibling' but the WINDOW argument is _not_ optional (so
202 ;; they don't substitute the selected window for nil), and they return
203 ;; nil when WINDOW doesn't have a parent (like a frame's root window or
204 ;; a minibuffer window).
205 (defun window-right (window)
206 "Return WINDOW's right sibling.
207 Return nil if WINDOW is the root window of its frame. WINDOW can
208 be any window."
209 (and window (window-parent window) (window-next-sibling window)))
211 (defun window-left (window)
212 "Return WINDOW's left sibling.
213 Return nil if WINDOW is the root window of its frame. WINDOW can
214 be any window."
215 (and window (window-parent window) (window-prev-sibling window)))
217 (defun window-child (window)
218 "Return WINDOW's first child window.
219 WINDOW can be any window."
220 (or (window-top-child window) (window-left-child window)))
222 (defun window-child-count (window)
223 "Return number of WINDOW's child windows.
224 WINDOW can be any window."
225 (let ((count 0))
226 (when (and (windowp window) (setq window (window-child window)))
227 (while window
228 (setq count (1+ count))
229 (setq window (window-next-sibling window))))
230 count))
232 (defun window-last-child (window)
233 "Return last child window of WINDOW.
234 WINDOW can be any window."
235 (when (and (windowp window) (setq window (window-child window)))
236 (while (window-next-sibling window)
237 (setq window (window-next-sibling window))))
238 window)
240 (defun window-normalize-buffer (buffer-or-name)
241 "Return buffer specified by BUFFER-OR-NAME.
242 BUFFER-OR-NAME must be either a buffer or a string naming a live
243 buffer and defaults to the current buffer."
244 (cond
245 ((not buffer-or-name)
246 (current-buffer))
247 ((bufferp buffer-or-name)
248 (if (buffer-live-p buffer-or-name)
249 buffer-or-name
250 (error "Buffer %s is not a live buffer" buffer-or-name)))
251 ((get-buffer buffer-or-name))
253 (error "No such buffer %s" buffer-or-name))))
255 (defun window-normalize-frame (frame)
256 "Return frame specified by FRAME.
257 FRAME must be a live frame and defaults to the selected frame."
258 (if frame
259 (if (frame-live-p frame)
260 frame
261 (error "%s is not a live frame" frame))
262 (selected-frame)))
264 (defun window-normalize-window (window &optional live-only)
265 "Return the window specified by WINDOW.
266 If WINDOW is nil, return the selected window. Otherwise, if
267 WINDOW is a live or an internal window, return WINDOW; if
268 LIVE-ONLY is non-nil, return WINDOW for a live window only.
269 Otherwise, signal an error."
270 (cond
271 ((null window)
272 (selected-window))
273 (live-only
274 (if (window-live-p window)
275 window
276 (error "%s is not a live window" window)))
277 ((window-valid-p window)
278 window)
280 (error "%s is not a valid window" window))))
282 (defvar ignore-window-parameters nil
283 "If non-nil, standard functions ignore window parameters.
284 The functions currently affected by this are `split-window',
285 `delete-window', `delete-other-windows' and `other-window'.
287 An application may bind this to a non-nil value around calls to
288 these functions to inhibit processing of window parameters.")
290 (defconst window-safe-min-height 1
291 "The absolute minimum number of lines of a window.
292 Anything less might crash Emacs.")
294 (defcustom window-min-height 4
295 "The minimum number of lines of any window.
296 The value has to accommodate a mode- or header-line if present.
297 A value less than `window-safe-min-height' is ignored. The value
298 of this variable is honored when windows are resized or split.
300 Applications should never rebind this variable. To resize a
301 window to a height less than the one specified here, an
302 application should instead call `window-resize' with a non-nil
303 IGNORE argument. In order to have `split-window' make a window
304 shorter, explicitly specify the SIZE argument of that function."
305 :type 'integer
306 :version "24.1"
307 :group 'windows)
309 (defconst window-safe-min-width 2
310 "The absolute minimum number of columns of a window.
311 Anything less might crash Emacs.")
313 (defcustom window-min-width 10
314 "The minimum number of columns of any window.
315 The value has to accommodate margins, fringes, or scrollbars if
316 present. A value less than `window-safe-min-width' is ignored.
317 The value of this variable is honored when windows are resized or
318 split.
320 Applications should never rebind this variable. To resize a
321 window to a width less than the one specified here, an
322 application should instead call `window-resize' with a non-nil
323 IGNORE argument. In order to have `split-window' make a window
324 narrower, explicitly specify the SIZE argument of that function."
325 :type 'integer
326 :version "24.1"
327 :group 'windows)
329 (defun window-combined-p (&optional window horizontal)
330 "Return non-nil if WINDOW has siblings in a given direction.
331 WINDOW must be a valid window and defaults to the selected one.
333 HORIZONTAL determines a direction for the window combination.
334 If HORIZONTAL is omitted or nil, return non-nil if WINDOW is part
335 of a vertical window combination.
336 If HORIZONTAL is non-nil, return non-nil if WINDOW is part of a
337 horizontal window combination."
338 (setq window (window-normalize-window window))
339 (let ((parent (window-parent window)))
340 (and parent
341 (if horizontal
342 (window-left-child parent)
343 (window-top-child parent)))))
345 (defun window-combinations (window &optional horizontal)
346 "Return largest number of windows vertically arranged within WINDOW.
347 WINDOW must be a valid window and defaults to the selected one.
348 If HORIZONTAL is non-nil, return the largest number of
349 windows horizontally arranged within WINDOW."
350 (setq window (window-normalize-window window))
351 (cond
352 ((window-live-p window)
353 ;; If WINDOW is live, return 1.
355 ((if horizontal
356 (window-left-child window)
357 (window-top-child window))
358 ;; If WINDOW is iso-combined, return the sum of the values for all
359 ;; child windows of WINDOW.
360 (let ((child (window-child window))
361 (count 0))
362 (while child
363 (setq count
364 (+ (window-combinations child horizontal)
365 count))
366 (setq child (window-right child)))
367 count))
369 ;; If WINDOW is not iso-combined, return the maximum value of any
370 ;; child window of WINDOW.
371 (let ((child (window-child window))
372 (count 1))
373 (while child
374 (setq count
375 (max (window-combinations child horizontal)
376 count))
377 (setq child (window-right child)))
378 count))))
380 (defun walk-window-tree-1 (fun walk-window-tree-window any &optional sub-only)
381 "Helper function for `walk-window-tree' and `walk-window-subtree'."
382 (let (walk-window-tree-buffer)
383 (while walk-window-tree-window
384 (setq walk-window-tree-buffer
385 (window-buffer walk-window-tree-window))
386 (when (or walk-window-tree-buffer any)
387 (funcall fun walk-window-tree-window))
388 (unless walk-window-tree-buffer
389 (walk-window-tree-1
390 fun (window-left-child walk-window-tree-window) any)
391 (walk-window-tree-1
392 fun (window-top-child walk-window-tree-window) any))
393 (if sub-only
394 (setq walk-window-tree-window nil)
395 (setq walk-window-tree-window
396 (window-right walk-window-tree-window))))))
398 (defun walk-window-tree (fun &optional frame any minibuf)
399 "Run function FUN on each live window of FRAME.
400 FUN must be a function with one argument - a window. FRAME must
401 be a live frame and defaults to the selected one. ANY, if
402 non-nil, means to run FUN on all live and internal windows of
403 FRAME.
405 Optional argument MINIBUF t means run FUN on FRAME's minibuffer
406 window even if it isn't active. MINIBUF nil or omitted means run
407 FUN on FRAME's minibuffer window only if it's active. In both
408 cases the minibuffer window must be part of FRAME. MINIBUF
409 neither nil nor t means never run FUN on the minibuffer window.
411 This function performs a pre-order, depth-first traversal of the
412 window tree. If FUN changes the window tree, the result is
413 unpredictable."
414 (setq frame (window-normalize-frame frame))
415 (walk-window-tree-1 fun (frame-root-window frame) any)
416 (when (memq minibuf '(nil t))
417 ;; Run FUN on FRAME's minibuffer window if requested.
418 (let ((minibuffer-window (minibuffer-window frame)))
419 (when (and (window-live-p minibuffer-window)
420 (eq (window-frame minibuffer-window) frame)
421 (or (eq minibuf t)
422 (minibuffer-window-active-p minibuffer-window)))
423 (funcall fun minibuffer-window)))))
425 (defun walk-window-subtree (fun &optional window any)
426 "Run function FUN on the subtree of windows rooted at WINDOW.
427 WINDOW defaults to the selected window. FUN must be a function
428 with one argument - a window. By default, run FUN only on live
429 windows of the subtree. If the optional argument ANY is non-nil,
430 run FUN on all live and internal windows of the subtree. If
431 WINDOW is live, run FUN on WINDOW only.
433 This function performs a pre-order, depth-first traversal of the
434 subtree rooted at WINDOW. If FUN changes that tree, the result
435 is unpredictable."
436 (setq window (window-normalize-window window))
437 (walk-window-tree-1 fun window any t))
439 (defun window-with-parameter (parameter &optional value frame any minibuf)
440 "Return first window on FRAME with PARAMETER non-nil.
441 FRAME defaults to the selected frame. Optional argument VALUE
442 non-nil means only return a window whose window-parameter value
443 for PARAMETER equals VALUE (comparison is done with `equal').
444 Optional argument ANY non-nil means consider internal windows
445 too.
447 Optional argument MINIBUF t means consider FRAME's minibuffer
448 window even if it isn't active. MINIBUF nil or omitted means
449 consider FRAME's minibuffer window only if it's active. In both
450 cases the minibuffer window must be part of FRAME. MINIBUF
451 neither nil nor t means never consider the minibuffer window."
452 (let (this-value)
453 (catch 'found
454 (walk-window-tree
455 (lambda (window)
456 (when (and (setq this-value (window-parameter window parameter))
457 (or (not value) (equal value this-value)))
458 (throw 'found window)))
459 frame any minibuf))))
461 ;;; Atomic windows.
462 (defun window-atom-root (&optional window)
463 "Return root of atomic window WINDOW is a part of.
464 WINDOW must be a valid window and defaults to the selected one.
465 Return nil if WINDOW is not part of an atomic window."
466 (setq window (window-normalize-window window))
467 (let (root)
468 (while (and window (window-parameter window 'window-atom))
469 (setq root window)
470 (setq window (window-parent window)))
471 root))
473 (defun window-make-atom (window)
474 "Make WINDOW an atomic window.
475 WINDOW must be an internal window. Return WINDOW."
476 (if (not (window-child window))
477 (error "Window %s is not an internal window" window)
478 (walk-window-subtree
479 (lambda (window)
480 (set-window-parameter window 'window-atom t))
481 window t)
482 window))
484 (defun display-buffer-in-atom-window (buffer alist)
485 "Display BUFFER in an atomic window.
486 This function displays BUFFER in a new window that will be
487 combined with an existing window to form an atomic window. If
488 the existing window is already part of an atomic window, add the
489 new window to that atomic window. Operations like `split-window'
490 or `delete-window', when applied to a constituent of an atomic
491 window, are applied atomically to the root of that atomic window.
493 ALIST is an association list of symbols and values. The
494 following symbols can be used.
496 `window' specifies the existing window the new window shall be
497 combined with. Use `window-atom-root' to make the new window a
498 sibling of an atomic window's root. If an internal window is
499 specified here, all children of that window become part of the
500 atomic window too. If no window is specified, the new window
501 becomes a sibling of the selected window.
503 `side' denotes the side of the existing window where the new
504 window shall be located. Valid values are `below', `right',
505 `above' and `left'. The default is `below'.
507 The return value is the new window, nil when creating that window
508 failed."
509 (let ((ignore-window-parameters t)
510 (window-combination-limit t)
511 (window (cdr (assq 'window alist)))
512 (side (cdr (assq 'side alist)))
513 new)
514 (setq window (window-normalize-window window))
515 ;; Split off new window
516 (when (setq new (split-window window nil side))
517 ;; Make sure we have a valid atomic window.
518 (window-make-atom (window-parent window))
519 ;; Display BUFFER in NEW and return NEW.
520 (window--display-buffer
521 buffer new 'window alist display-buffer-mark-dedicated))))
523 (defun window--atom-check-1 (window)
524 "Subroutine of `window--atom-check'."
525 (when window
526 (if (window-parameter window 'window-atom)
527 (let ((count 0))
528 (when (or (catch 'reset
529 (walk-window-subtree
530 (lambda (window)
531 (if (window-parameter window 'window-atom)
532 (setq count (1+ count))
533 (throw 'reset t)))
534 window t))
535 ;; count >= 1 must hold here. If there's no other
536 ;; window around dissolve this atomic window.
537 (= count 1))
538 ;; Dissolve atomic window.
539 (walk-window-subtree
540 (lambda (window)
541 (set-window-parameter window 'window-atom nil))
542 window t)))
543 ;; Check children.
544 (unless (window-buffer window)
545 (window--atom-check-1 (window-left-child window))
546 (window--atom-check-1 (window-top-child window))))
547 ;; Check right sibling
548 (window--atom-check-1 (window-right window))))
550 (defun window--atom-check (&optional frame)
551 "Check atomicity of all windows on FRAME.
552 FRAME defaults to the selected frame. If an atomic window is
553 wrongly configured, reset the atomicity of all its windows on
554 FRAME to nil. An atomic window is wrongly configured if it has
555 no child windows or one of its child windows is not atomic."
556 (window--atom-check-1 (frame-root-window frame)))
558 ;; Side windows.
559 (defvar window-sides '(left top right bottom)
560 "Window sides.")
562 (defcustom window-sides-vertical nil
563 "If non-nil, left and right side windows are full height.
564 Otherwise, top and bottom side windows are full width."
565 :type 'boolean
566 :group 'windows
567 :version "24.1")
569 (defcustom window-sides-slots '(nil nil nil nil)
570 "Maximum number of side window slots.
571 The value is a list of four elements specifying the number of
572 side window slots on (in this order) the left, top, right and
573 bottom side of each frame. If an element is a number, this means
574 to display at most that many side windows on the corresponding
575 side. If an element is nil, this means there's no bound on the
576 number of slots on that side."
577 :version "24.1"
578 :risky t
579 :type
580 '(list
581 :value (nil nil nil nil)
582 (choice
583 :tag "Left"
584 :help-echo "Maximum slots of left side window."
585 :value nil
586 :format "%[Left%] %v\n"
587 (const :tag "Unlimited" :format "%t" nil)
588 (integer :tag "Number" :value 2 :size 5))
589 (choice
590 :tag "Top"
591 :help-echo "Maximum slots of top side window."
592 :value nil
593 :format "%[Top%] %v\n"
594 (const :tag "Unlimited" :format "%t" nil)
595 (integer :tag "Number" :value 3 :size 5))
596 (choice
597 :tag "Right"
598 :help-echo "Maximum slots of right side window."
599 :value nil
600 :format "%[Right%] %v\n"
601 (const :tag "Unlimited" :format "%t" nil)
602 (integer :tag "Number" :value 2 :size 5))
603 (choice
604 :tag "Bottom"
605 :help-echo "Maximum slots of bottom side window."
606 :value nil
607 :format "%[Bottom%] %v\n"
608 (const :tag "Unlimited" :format "%t" nil)
609 (integer :tag "Number" :value 3 :size 5)))
610 :group 'windows)
612 (defun window--major-non-side-window (&optional frame)
613 "Return the major non-side window of frame FRAME.
614 The optional argument FRAME must be a live frame and defaults to
615 the selected one.
617 If FRAME has at least one side window, the major non-side window
618 is either an internal non-side window such that all other
619 non-side windows on FRAME descend from it, or the single live
620 non-side window of FRAME. If FRAME has no side windows, return
621 its root window."
622 (let ((frame (window-normalize-frame frame))
623 major sibling)
624 ;; Set major to the _last_ window found by `walk-window-tree' that
625 ;; is not a side window but has a side window as its sibling.
626 (walk-window-tree
627 (lambda (window)
628 (and (not (window-parameter window 'window-side))
629 (or (and (setq sibling (window-prev-sibling window))
630 (window-parameter sibling 'window-side))
631 (and (setq sibling (window-next-sibling window))
632 (window-parameter sibling 'window-side)))
633 (setq major window)))
634 frame t)
635 (or major (frame-root-window frame))))
637 (defun window--major-side-window (side)
638 "Return major side window on SIDE.
639 SIDE must be one of the symbols `left', `top', `right' or
640 `bottom'. Return nil if no such window exists."
641 (let ((root (frame-root-window))
642 window)
643 ;; (1) If a window on the opposite side exists, return that window's
644 ;; sibling.
645 ;; (2) If the new window shall span the entire side, return the
646 ;; frame's root window.
647 ;; (3) If a window on an orthogonal side exists, return that
648 ;; window's sibling.
649 ;; (4) Otherwise return the frame's root window.
650 (cond
651 ((or (and (eq side 'left)
652 (setq window (window-with-parameter 'window-side 'right nil t)))
653 (and (eq side 'top)
654 (setq window (window-with-parameter 'window-side 'bottom nil t))))
655 (window-prev-sibling window))
656 ((or (and (eq side 'right)
657 (setq window (window-with-parameter 'window-side 'left nil t)))
658 (and (eq side 'bottom)
659 (setq window (window-with-parameter 'window-side 'top nil t))))
660 (window-next-sibling window))
661 ((memq side '(left right))
662 (cond
663 (window-sides-vertical
664 root)
665 ((setq window (window-with-parameter 'window-side 'top nil t))
666 (window-next-sibling window))
667 ((setq window (window-with-parameter 'window-side 'bottom nil t))
668 (window-prev-sibling window))
669 (t root)))
670 ((memq side '(top bottom))
671 (cond
672 ((not window-sides-vertical)
673 root)
674 ((setq window (window-with-parameter 'window-side 'left nil t))
675 (window-next-sibling window))
676 ((setq window (window-with-parameter 'window-side 'right nil t))
677 (window-prev-sibling window))
678 (t root))))))
680 (defun display-buffer-in-major-side-window (buffer side slot &optional alist)
681 "Display BUFFER in a new window on SIDE of the selected frame.
682 SIDE must be one of `left', `top', `right' or `bottom'. SLOT
683 specifies the slot to use. ALIST is an association list of
684 symbols and values as passed to `display-buffer-in-side-window'.
685 This function may be called only if no window on SIDE exists yet.
686 The new window automatically becomes the \"major\" side window on
687 SIDE. Return the new window, nil if its creation window failed."
688 (let* ((root (frame-root-window))
689 (left-or-right (memq side '(left right)))
690 (major (window--major-side-window side))
691 (selected-window (selected-window))
692 (on-side (cond
693 ((eq side 'top) 'above)
694 ((eq side 'bottom) 'below)
695 (t side)))
696 ;; The following two bindings will tell `split-window' to take
697 ;; the space for the new window from `major' and not make a new
698 ;; parent window unless needed.
699 (window-combination-resize 'side)
700 (window-combination-limit nil)
701 (new (split-window major nil on-side))
702 fun)
703 (when new
704 ;; Initialize `window-side' parameter of new window to SIDE.
705 (set-window-parameter new 'window-side side)
706 ;; Install `window-slot' parameter of new window.
707 (set-window-parameter new 'window-slot slot)
708 ;; Install `delete-window' parameter thus making sure that when
709 ;; the new window is deleted, a side window on the opposite side
710 ;; does not get resized.
711 (set-window-parameter new 'delete-window 'delete-side-window)
712 ;; Auto-adjust height/width of new window unless a size has been
713 ;; explicitly requested.
714 (unless (if left-or-right
715 (cdr (assq 'window-width alist))
716 (cdr (assq 'window-height alist)))
717 (setq alist
718 (cons
719 (cons
720 (if left-or-right 'window-width 'window-height)
721 (/ (window-total-size (frame-root-window) left-or-right)
722 ;; By default use a fourth of the size of the
723 ;; frame's root window.
725 alist)))
726 ;; Install BUFFER in new window and return NEW.
727 (window--display-buffer buffer new 'window alist 'side))))
729 (defun delete-side-window (window)
730 "Delete side window WINDOW."
731 (let ((window-combination-resize
732 (window-parameter (window-parent window) 'window-side))
733 (ignore-window-parameters t))
734 (delete-window window)))
736 (defun display-buffer-in-side-window (buffer alist)
737 "Display BUFFER in a window on side SIDE of the selected frame.
738 ALIST is an association list of symbols and values. The
739 following symbols can be used:
741 `side' denotes the side of the existing window where the new
742 window shall be located. Valid values are `bottom', `right',
743 `top' and `left'. The default is `bottom'.
745 `slot' if non-nil, specifies the window slot where to display
746 BUFFER. A value of zero or nil means use the middle slot on
747 the specified side. A negative value means use a slot
748 preceding (that is, above or on the left of) the middle slot.
749 A positive value means use a slot following (that is, below or
750 on the right of) the middle slot. The default is zero."
751 (let ((side (or (cdr (assq 'side alist)) 'bottom))
752 (slot (or (cdr (assq 'slot alist)) 0))
753 new)
754 (cond
755 ((not (memq side '(top bottom left right)))
756 (error "Invalid side %s specified" side))
757 ((not (numberp slot))
758 (error "Invalid slot %s specified" slot)))
760 (let* ((major (window-with-parameter 'window-side side nil t))
761 ;; `major' is the major window on SIDE, `windows' the list of
762 ;; life windows on SIDE.
763 (windows
764 (when major
765 (let (windows)
766 (walk-window-tree
767 (lambda (window)
768 (when (eq (window-parameter window 'window-side) side)
769 (setq windows (cons window windows)))))
770 (nreverse windows))))
771 (slots (when major (max 1 (window-child-count major))))
772 (max-slots
773 (nth (cond
774 ((eq side 'left) 0)
775 ((eq side 'top) 1)
776 ((eq side 'right) 2)
777 ((eq side 'bottom) 3))
778 window-sides-slots))
779 (selected-window (selected-window))
780 window this-window this-slot prev-window next-window
781 best-window best-slot abs-slot new-window)
783 (cond
784 ((and (numberp max-slots) (<= max-slots 0))
785 ;; No side-slots available on this side. Don't create an error,
786 ;; just return nil.
787 nil)
788 ((not windows)
789 ;; No major window exists on this side, make one.
790 (display-buffer-in-major-side-window buffer side slot alist))
792 ;; Scan windows on SIDE.
793 (catch 'found
794 (dolist (window windows)
795 (setq this-slot (window-parameter window 'window-slot))
796 (cond
797 ;; The following should not happen and probably be checked
798 ;; by window--side-check.
799 ((not (numberp this-slot)))
800 ((= this-slot slot)
801 ;; A window with a matching slot has been found.
802 (setq this-window window)
803 (throw 'found t))
805 ;; Check if this window has a better slot value wrt the
806 ;; slot of the window we want.
807 (setq abs-slot
808 (if (or (and (> this-slot 0) (> slot 0))
809 (and (< this-slot 0) (< slot 0)))
810 (abs (- slot this-slot))
811 (+ (abs slot) (abs this-slot))))
812 (unless (and best-slot (<= best-slot abs-slot))
813 (setq best-window window)
814 (setq best-slot abs-slot))
815 (cond
816 ((<= this-slot slot)
817 (setq prev-window window))
818 ((not next-window)
819 (setq next-window window)))))))
821 ;; `this-window' is the first window with the same SLOT.
822 ;; `prev-window' is the window with the largest slot < SLOT. A new
823 ;; window will be created after it.
824 ;; `next-window' is the window with the smallest slot > SLOT. A new
825 ;; window will be created before it.
826 ;; `best-window' is the window with the smallest absolute difference
827 ;; of its slot and SLOT.
829 ;; Note: We dedicate the window used softly to its buffer to
830 ;; avoid that "other" (non-side) buffer display functions steal
831 ;; it from us. This must eventually become customizable via
832 ;; ALIST (or, better, avoided in the "other" functions).
833 (or (and this-window
834 ;; Reuse `this-window'.
835 (window--display-buffer buffer this-window 'reuse alist 'side))
836 (and (or (not max-slots) (< slots max-slots))
837 (or (and next-window
838 ;; Make new window before `next-window'.
839 (let ((next-side
840 (if (memq side '(left right)) 'above 'left))
841 (window-combination-resize 'side))
842 (setq window (split-window next-window nil next-side))
843 ;; When the new window is deleted, its space
844 ;; is returned to other side windows.
845 (set-window-parameter
846 window 'delete-window 'delete-side-window)
847 window))
848 (and prev-window
849 ;; Make new window after `prev-window'.
850 (let ((prev-side
851 (if (memq side '(left right)) 'below 'right))
852 (window-combination-resize 'side))
853 (setq window (split-window prev-window nil prev-side))
854 ;; When the new window is deleted, its space
855 ;; is returned to other side windows.
856 (set-window-parameter
857 window 'delete-window 'delete-side-window)
858 window)))
859 (set-window-parameter window 'window-slot slot)
860 (window--display-buffer buffer window 'window alist 'side))
861 (and best-window
862 ;; Reuse `best-window'.
863 (progn
864 ;; Give best-window the new slot value.
865 (set-window-parameter best-window 'window-slot slot)
866 (window--display-buffer
867 buffer best-window 'reuse alist 'side)))))))))
869 (defun window--side-check (&optional frame)
870 "Check the side window configuration of FRAME.
871 FRAME defaults to the selected frame.
873 A valid side window configuration preserves the following two
874 invariants:
876 - If there exists a window whose window-side parameter is
877 non-nil, there must exist at least one live window whose
878 window-side parameter is nil.
880 - If a window W has a non-nil window-side parameter (i) it must
881 have a parent window and that parent's window-side parameter
882 must be either nil or the same as for W, and (ii) any child
883 window of W must have the same window-side parameter as W.
885 If the configuration is invalid, reset the window-side parameters
886 of all windows on FRAME to nil."
887 (let (left top right bottom none side parent parent-side)
888 (when (or (catch 'reset
889 (walk-window-tree
890 (lambda (window)
891 (setq side (window-parameter window 'window-side))
892 (setq parent (window-parent window))
893 (setq parent-side
894 (and parent (window-parameter parent 'window-side)))
895 ;; The following `cond' seems a bit tedious, but I'd
896 ;; rather stick to using just the stack.
897 (cond
898 (parent-side
899 (when (not (eq parent-side side))
900 ;; A parent whose window-side is non-nil must
901 ;; have a child with the same window-side.
902 (throw 'reset t)))
903 ((not side)
904 (when (window-buffer window)
905 ;; Record that we have at least one non-side,
906 ;; live window.
907 (setq none t)))
908 ((if (memq side '(left top))
909 (window-prev-sibling window)
910 (window-next-sibling window))
911 ;; Left and top major side windows must not have a
912 ;; previous sibling, right and bottom major side
913 ;; windows must not have a next sibling.
914 (throw 'reset t))
915 ;; Now check that there's no more than one major
916 ;; window for any of left, top, right and bottom.
917 ((eq side 'left)
918 (if left (throw 'reset t) (setq left t)))
919 ((eq side 'top)
920 (if top (throw 'reset t) (setq top t)))
921 ((eq side 'right)
922 (if right (throw 'reset t) (setq right t)))
923 ((eq side 'bottom)
924 (if bottom (throw 'reset t) (setq bottom t)))
926 (throw 'reset t))))
927 frame t))
928 ;; If there's a side window, there must be at least one
929 ;; non-side window.
930 (and (or left top right bottom) (not none)))
931 (walk-window-tree
932 (lambda (window)
933 (set-window-parameter window 'window-side nil))
934 frame t))))
936 (defun window--check (&optional frame)
937 "Check atomic and side windows on FRAME.
938 FRAME defaults to the selected frame."
939 (window--side-check frame)
940 (window--atom-check frame))
942 ;;; Window sizes.
943 (defvar window-size-fixed nil
944 "Non-nil in a buffer means windows displaying the buffer are fixed-size.
945 If the value is `height', then only the window's height is fixed.
946 If the value is `width', then only the window's width is fixed.
947 Any other non-nil value fixes both the width and the height.
949 Emacs won't change the size of any window displaying that buffer,
950 unless it has no other choice (like when deleting a neighboring
951 window).")
952 (make-variable-buffer-local 'window-size-fixed)
954 (defun window--size-ignore-p (window ignore)
955 "Return non-nil if IGNORE says to ignore size restrictions for WINDOW."
956 (if (window-valid-p ignore) (eq window ignore) ignore))
958 (defun window-min-size (&optional window horizontal ignore)
959 "Return the minimum size of WINDOW.
960 WINDOW must be a valid window and defaults to the selected one.
961 Optional argument HORIZONTAL non-nil means return the minimum
962 number of columns of WINDOW; otherwise return the minimum number
963 of WINDOW's lines.
965 Optional argument IGNORE, if non-nil, means ignore restrictions
966 imposed by fixed size windows, `window-min-height' or
967 `window-min-width' settings. If IGNORE equals `safe', live
968 windows may get as small as `window-safe-min-height' lines and
969 `window-safe-min-width' columns. If IGNORE is a window, ignore
970 restrictions for that window only. Any other non-nil value
971 means ignore all of the above restrictions for all windows."
972 (window--min-size-1
973 (window-normalize-window window) horizontal ignore))
975 (defun window--min-size-1 (window horizontal ignore)
976 "Internal function of `window-min-size'."
977 (let ((sub (window-child window)))
978 (if sub
979 (let ((value 0))
980 ;; WINDOW is an internal window.
981 (if (window-combined-p sub horizontal)
982 ;; The minimum size of an iso-combination is the sum of
983 ;; the minimum sizes of its child windows.
984 (while sub
985 (setq value (+ value
986 (window--min-size-1 sub horizontal ignore)))
987 (setq sub (window-right sub)))
988 ;; The minimum size of an ortho-combination is the maximum of
989 ;; the minimum sizes of its child windows.
990 (while sub
991 (setq value (max value
992 (window--min-size-1 sub horizontal ignore)))
993 (setq sub (window-right sub))))
994 value)
995 (with-current-buffer (window-buffer window)
996 (cond
997 ((and (not (window--size-ignore-p window ignore))
998 (window-size-fixed-p window horizontal))
999 ;; The minimum size of a fixed size window is its size.
1000 (window-total-size window horizontal))
1001 ((or (eq ignore 'safe) (eq ignore window))
1002 ;; If IGNORE equals `safe' or WINDOW return the safe values.
1003 (if horizontal window-safe-min-width window-safe-min-height))
1004 (horizontal
1005 ;; For the minimum width of a window take fringes and
1006 ;; scroll-bars into account. This is questionable and should
1007 ;; be removed as soon as we are able to split (and resize)
1008 ;; windows such that the new (or resized) windows can get a
1009 ;; size less than the user-specified `window-min-height' and
1010 ;; `window-min-width'.
1011 (let ((frame (window-frame window))
1012 (fringes (window-fringes window))
1013 (scroll-bars (window-scroll-bars window)))
1014 (max
1015 (+ window-safe-min-width
1016 (ceiling (car fringes) (frame-char-width frame))
1017 (ceiling (cadr fringes) (frame-char-width frame))
1018 (cond
1019 ((memq (nth 2 scroll-bars) '(left right))
1020 (nth 1 scroll-bars))
1021 ((memq (frame-parameter frame 'vertical-scroll-bars)
1022 '(left right))
1023 (ceiling (or (frame-parameter frame 'scroll-bar-width) 14)
1024 (frame-char-width)))
1025 (t 0)))
1026 (if (and (not (window--size-ignore-p window ignore))
1027 (numberp window-min-width))
1028 window-min-width
1029 0))))
1031 ;; For the minimum height of a window take any mode- or
1032 ;; header-line into account.
1033 (max (+ window-safe-min-height
1034 (if header-line-format 1 0)
1035 (if mode-line-format 1 0))
1036 (if (and (not (window--size-ignore-p window ignore))
1037 (numberp window-min-height))
1038 window-min-height
1039 0))))))))
1041 (defun window-sizable (window delta &optional horizontal ignore)
1042 "Return DELTA if DELTA lines can be added to WINDOW.
1043 WINDOW must be a valid window and defaults to the selected one.
1044 Optional argument HORIZONTAL non-nil means return DELTA if DELTA
1045 columns can be added to WINDOW. A return value of zero means
1046 that no lines (or columns) can be added to WINDOW.
1048 This function looks only at WINDOW and, recursively, its child
1049 windows. The function `window-resizable' looks at other windows
1050 as well.
1052 DELTA positive means WINDOW shall be enlarged by DELTA lines or
1053 columns. If WINDOW cannot be enlarged by DELTA lines or columns
1054 return the maximum value in the range 0..DELTA by which WINDOW
1055 can be enlarged.
1057 DELTA negative means WINDOW shall be shrunk by -DELTA lines or
1058 columns. If WINDOW cannot be shrunk by -DELTA lines or columns,
1059 return the minimum value in the range DELTA..0 by which WINDOW
1060 can be shrunk.
1062 Optional argument IGNORE non-nil means ignore restrictions
1063 imposed by fixed size windows, `window-min-height' or
1064 `window-min-width' settings. If IGNORE equals `safe', live
1065 windows may get as small as `window-safe-min-height' lines and
1066 `window-safe-min-width' columns. If IGNORE is a window, ignore
1067 restrictions for that window only. Any other non-nil value means
1068 ignore all of the above restrictions for all windows."
1069 (setq window (window-normalize-window window))
1070 (cond
1071 ((< delta 0)
1072 (max (- (window-min-size window horizontal ignore)
1073 (window-total-size window horizontal))
1074 delta))
1075 ((window--size-ignore-p window ignore)
1076 delta)
1077 ((> delta 0)
1078 (if (window-size-fixed-p window horizontal)
1080 delta))
1081 (t 0)))
1083 (defun window-sizable-p (window delta &optional horizontal ignore)
1084 "Return t if WINDOW can be resized by DELTA lines.
1085 WINDOW must be a valid window and defaults to the selected one.
1086 For the meaning of the arguments of this function see the
1087 doc-string of `window-sizable'."
1088 (setq window (window-normalize-window window))
1089 (if (> delta 0)
1090 (>= (window-sizable window delta horizontal ignore) delta)
1091 (<= (window-sizable window delta horizontal ignore) delta)))
1093 (defun window--size-fixed-1 (window horizontal)
1094 "Internal function for `window-size-fixed-p'."
1095 (let ((sub (window-child window)))
1096 (catch 'fixed
1097 (if sub
1098 ;; WINDOW is an internal window.
1099 (if (window-combined-p sub horizontal)
1100 ;; An iso-combination is fixed size if all its child
1101 ;; windows are fixed-size.
1102 (progn
1103 (while sub
1104 (unless (window--size-fixed-1 sub horizontal)
1105 ;; We found a non-fixed-size child window, so
1106 ;; WINDOW's size is not fixed.
1107 (throw 'fixed nil))
1108 (setq sub (window-right sub)))
1109 ;; All child windows are fixed-size, so WINDOW's size is
1110 ;; fixed.
1111 (throw 'fixed t))
1112 ;; An ortho-combination is fixed-size if at least one of its
1113 ;; child windows is fixed-size.
1114 (while sub
1115 (when (window--size-fixed-1 sub horizontal)
1116 ;; We found a fixed-size child window, so WINDOW's size
1117 ;; is fixed.
1118 (throw 'fixed t))
1119 (setq sub (window-right sub))))
1120 ;; WINDOW is a live window.
1121 (with-current-buffer (window-buffer window)
1122 (if horizontal
1123 (memq window-size-fixed '(width t))
1124 (memq window-size-fixed '(height t))))))))
1126 (defun window-size-fixed-p (&optional window horizontal)
1127 "Return non-nil if WINDOW's height is fixed.
1128 WINDOW must be a valid window and defaults to the selected one.
1129 Optional argument HORIZONTAL non-nil means return non-nil if
1130 WINDOW's width is fixed.
1132 If this function returns nil, this does not necessarily mean that
1133 WINDOW can be resized in the desired direction. The function
1134 `window-resizable' can tell that."
1135 (window--size-fixed-1
1136 (window-normalize-window window) horizontal))
1138 (defun window--min-delta-1 (window delta &optional horizontal ignore trail noup)
1139 "Internal function for `window-min-delta'."
1140 (if (not (window-parent window))
1141 ;; If we can't go up, return zero.
1143 ;; Else try to find a non-fixed-size sibling of WINDOW.
1144 (let* ((parent (window-parent window))
1145 (sub (window-child parent)))
1146 (catch 'done
1147 (if (window-combined-p sub horizontal)
1148 ;; In an iso-combination throw DELTA if we find at least one
1149 ;; child window and that window is either not fixed-size or
1150 ;; we can ignore fixed-sizeness.
1151 (let ((skip (eq trail 'after)))
1152 (while sub
1153 (cond
1154 ((eq sub window)
1155 (setq skip (eq trail 'before)))
1156 (skip)
1157 ((and (not (window--size-ignore-p window ignore))
1158 (window-size-fixed-p sub horizontal)))
1160 ;; We found a non-fixed-size child window.
1161 (throw 'done delta)))
1162 (setq sub (window-right sub))))
1163 ;; In an ortho-combination set DELTA to the minimum value by
1164 ;; which other child windows can shrink.
1165 (while sub
1166 (unless (eq sub window)
1167 (setq delta
1168 (min delta
1169 (- (window-total-size sub horizontal)
1170 (window-min-size sub horizontal ignore)))))
1171 (setq sub (window-right sub))))
1172 (if noup
1173 delta
1174 (window--min-delta-1 parent delta horizontal ignore trail))))))
1176 (defun window-min-delta (&optional window horizontal ignore trail noup nodown)
1177 "Return number of lines by which WINDOW can be shrunk.
1178 WINDOW must be a valid window and defaults to the selected one.
1179 Return zero if WINDOW cannot be shrunk.
1181 Optional argument HORIZONTAL non-nil means return number of
1182 columns by which WINDOW can be shrunk.
1184 Optional argument IGNORE non-nil means ignore restrictions
1185 imposed by fixed size windows, `window-min-height' or
1186 `window-min-width' settings. If IGNORE is a window, ignore
1187 restrictions for that window only. If IGNORE equals `safe',
1188 live windows may get as small as `window-safe-min-height' lines
1189 and `window-safe-min-width' columns. Any other non-nil value
1190 means ignore all of the above restrictions for all windows.
1192 Optional argument TRAIL restricts the windows that can be enlarged.
1193 If its value is `before', only windows to the left of or above WINDOW
1194 can be enlarged. If it is `after', only windows to the right of or
1195 below WINDOW can be enlarged.
1197 Optional argument NOUP non-nil means don't go up in the window
1198 tree, but try to enlarge windows within WINDOW's combination only.
1200 Optional argument NODOWN non-nil means don't check whether WINDOW
1201 itself (and its child windows) can be shrunk; check only whether
1202 at least one other window can be enlarged appropriately."
1203 (setq window (window-normalize-window window))
1204 (let ((size (window-total-size window horizontal))
1205 (minimum (window-min-size window horizontal ignore)))
1206 (cond
1207 (nodown
1208 ;; If NODOWN is t, try to recover the entire size of WINDOW.
1209 (window--min-delta-1 window size horizontal ignore trail noup))
1210 ((= size minimum)
1211 ;; If NODOWN is nil and WINDOW's size is already at its minimum,
1212 ;; there's nothing to recover.
1215 ;; Otherwise, try to recover whatever WINDOW is larger than its
1216 ;; minimum size.
1217 (window--min-delta-1
1218 window (- size minimum) horizontal ignore trail noup)))))
1220 (defun window--max-delta-1 (window delta &optional horizontal ignore trail noup)
1221 "Internal function of `window-max-delta'."
1222 (if (not (window-parent window))
1223 ;; Can't go up. Return DELTA.
1224 delta
1225 (let* ((parent (window-parent window))
1226 (sub (window-child parent)))
1227 (catch 'fixed
1228 (if (window-combined-p sub horizontal)
1229 ;; For an iso-combination calculate how much we can get from
1230 ;; other child windows.
1231 (let ((skip (eq trail 'after)))
1232 (while sub
1233 (cond
1234 ((eq sub window)
1235 (setq skip (eq trail 'before)))
1236 (skip)
1238 (setq delta
1239 (+ delta
1240 (- (window-total-size sub horizontal)
1241 (window-min-size sub horizontal ignore))))))
1242 (setq sub (window-right sub))))
1243 ;; For an ortho-combination throw DELTA when at least one
1244 ;; child window is fixed-size.
1245 (while sub
1246 (when (and (not (eq sub window))
1247 (not (window--size-ignore-p sub ignore))
1248 (window-size-fixed-p sub horizontal))
1249 (throw 'fixed delta))
1250 (setq sub (window-right sub))))
1251 (if noup
1252 ;; When NOUP is nil, DELTA is all we can get.
1253 delta
1254 ;; Else try with parent of WINDOW, passing the DELTA we
1255 ;; recovered so far.
1256 (window--max-delta-1 parent delta horizontal ignore trail))))))
1258 (defun window-max-delta (&optional window horizontal ignore trail noup nodown)
1259 "Return maximum number of lines by which WINDOW can be enlarged.
1260 WINDOW must be a valid window and defaults to the selected one.
1261 The return value is zero if WINDOW cannot be enlarged.
1263 Optional argument HORIZONTAL non-nil means return maximum number
1264 of columns by which WINDOW can be enlarged.
1266 Optional argument IGNORE non-nil means ignore restrictions
1267 imposed by fixed size windows, `window-min-height' or
1268 `window-min-width' settings. If IGNORE is a window, ignore
1269 restrictions for that window only. If IGNORE equals `safe',
1270 live windows may get as small as `window-safe-min-height' lines
1271 and `window-safe-min-width' columns. Any other non-nil value means
1272 ignore all of the above restrictions for all windows.
1274 Optional argument TRAIL restricts the windows that can be enlarged.
1275 If its value is `before', only windows to the left of or above WINDOW
1276 can be enlarged. If it is `after', only windows to the right of or
1277 below WINDOW can be enlarged.
1279 Optional argument NOUP non-nil means don't go up in the window
1280 tree but try to obtain the entire space from windows within
1281 WINDOW's combination.
1283 Optional argument NODOWN non-nil means do not check whether
1284 WINDOW itself (and its child windows) can be enlarged; check
1285 only whether other windows can be shrunk appropriately."
1286 (setq window (window-normalize-window window))
1287 (if (and (not (window--size-ignore-p window ignore))
1288 (not nodown) (window-size-fixed-p window horizontal))
1289 ;; With IGNORE and NOWDON nil return zero if WINDOW has fixed
1290 ;; size.
1292 ;; WINDOW has no fixed size.
1293 (window--max-delta-1 window 0 horizontal ignore trail noup)))
1295 ;; Make NOUP also inhibit the min-size check.
1296 (defun window--resizable (window delta &optional horizontal ignore trail noup nodown)
1297 "Return DELTA if WINDOW can be resized vertically by DELTA lines.
1298 WINDOW must be a valid window and defaults to the selected one.
1299 Optional argument HORIZONTAL non-nil means return DELTA if WINDOW
1300 can be resized horizontally by DELTA columns. A return value of
1301 zero means that WINDOW is not resizable.
1303 DELTA positive means WINDOW shall be enlarged by DELTA lines or
1304 columns. If WINDOW cannot be enlarged by DELTA lines or columns,
1305 return the maximum value in the range 0..DELTA by which WINDOW
1306 can be enlarged.
1308 DELTA negative means WINDOW shall be shrunk by -DELTA lines or
1309 columns. If WINDOW cannot be shrunk by -DELTA lines or columns,
1310 return the minimum value in the range DELTA..0 that can be used
1311 for shrinking WINDOW.
1313 Optional argument IGNORE non-nil means ignore restrictions
1314 imposed by fixed size windows, `window-min-height' or
1315 `window-min-width' settings. If IGNORE is a window, ignore
1316 restrictions for that window only. If IGNORE equals `safe',
1317 live windows may get as small as `window-safe-min-height' lines
1318 and `window-safe-min-width' columns. Any other non-nil value
1319 means ignore all of the above restrictions for all windows.
1321 Optional argument TRAIL `before' means only windows to the left
1322 of or below WINDOW can be shrunk. Optional argument TRAIL
1323 `after' means only windows to the right of or above WINDOW can be
1324 shrunk.
1326 Optional argument NOUP non-nil means don't go up in the window
1327 tree but check only whether space can be obtained from (or given
1328 to) WINDOW's siblings.
1330 Optional argument NODOWN non-nil means don't go down in the
1331 window tree. This means do not check whether resizing would
1332 violate size restrictions of WINDOW or its child windows."
1333 (setq window (window-normalize-window window))
1334 (cond
1335 ((< delta 0)
1336 (max (- (window-min-delta window horizontal ignore trail noup nodown))
1337 delta))
1338 ((> delta 0)
1339 (min (window-max-delta window horizontal ignore trail noup nodown)
1340 delta))
1341 (t 0)))
1343 (defun window-resizable-p (window delta &optional horizontal ignore trail noup nodown)
1344 "Return t if WINDOW can be resized vertically by DELTA lines.
1345 WINDOW must be a valid window and defaults to the selected one.
1346 For the meaning of the arguments of this function see the
1347 doc-string of `window--resizable'."
1348 (setq window (window-normalize-window window))
1349 (if (> delta 0)
1350 (>= (window--resizable window delta horizontal ignore trail noup nodown)
1351 delta)
1352 (<= (window--resizable window delta horizontal ignore trail noup nodown)
1353 delta)))
1355 (defun window-resizable (window delta &optional horizontal ignore)
1356 "Return DELTA if WINDOW can be resized vertically by DELTA lines.
1357 WINDOW must be a valid window and defaults to the selected one.
1358 Optional argument HORIZONTAL non-nil means return DELTA if WINDOW
1359 can be resized horizontally by DELTA columns. A return value of
1360 zero means that WINDOW is not resizable.
1362 DELTA positive means WINDOW shall be enlarged by DELTA lines or
1363 columns. If WINDOW cannot be enlarged by DELTA lines or columns
1364 return the maximum value in the range 0..DELTA by which WINDOW
1365 can be enlarged.
1367 DELTA negative means WINDOW shall be shrunk by -DELTA lines or
1368 columns. If WINDOW cannot be shrunk by -DELTA lines or columns,
1369 return the minimum value in the range DELTA..0 that can be used
1370 for shrinking WINDOW.
1372 Optional argument IGNORE non-nil means ignore restrictions
1373 imposed by fixed size windows, `window-min-height' or
1374 `window-min-width' settings. If IGNORE is a window, ignore
1375 restrictions for that window only. If IGNORE equals `safe',
1376 live windows may get as small as `window-safe-min-height' lines
1377 and `window-safe-min-width' columns. Any other non-nil value
1378 means ignore all of the above restrictions for all windows."
1379 (setq window (window-normalize-window window))
1380 (window--resizable window delta horizontal ignore))
1382 (defun window-total-size (&optional window horizontal)
1383 "Return the total height or width of WINDOW.
1384 WINDOW must be a valid window and defaults to the selected one.
1386 If HORIZONTAL is omitted or nil, return the total height of
1387 WINDOW, in lines, like `window-total-height'. Otherwise return
1388 the total width, in columns, like `window-total-width'."
1389 (if horizontal
1390 (window-total-width window)
1391 (window-total-height window)))
1393 ;; Eventually we should make `window-height' obsolete.
1394 (defalias 'window-height 'window-total-height)
1396 ;; See discussion in bug#4543.
1397 (defun window-full-height-p (&optional window)
1398 "Return t if WINDOW is as high as its containing frame.
1399 More precisely, return t if and only if the total height of
1400 WINDOW equals the total height of the root window of WINDOW's
1401 frame. WINDOW must be a valid window and defaults to the
1402 selected one."
1403 (setq window (window-normalize-window window))
1404 (= (window-total-size window)
1405 (window-total-size (frame-root-window window))))
1407 (defun window-full-width-p (&optional window)
1408 "Return t if WINDOW is as wide as its containing frame.
1409 More precisely, return t if and only if the total width of WINDOW
1410 equals the total width of the root window of WINDOW's frame.
1411 WINDOW must be a valid window and defaults to the selected one."
1412 (setq window (window-normalize-window window))
1413 (= (window-total-size window t)
1414 (window-total-size (frame-root-window window) t)))
1416 (defun window-body-size (&optional window horizontal)
1417 "Return the height or width of WINDOW's text area.
1418 WINDOW must be a live window and defaults to the selected one.
1420 If HORIZONTAL is omitted or nil, return the height of the text
1421 area, like `window-body-height'. Otherwise, return the width of
1422 the text area, like `window-body-width'."
1423 (if horizontal
1424 (window-body-width window)
1425 (window-body-height window)))
1427 ;; Eventually we should make `window-height' obsolete.
1428 (defalias 'window-width 'window-body-width)
1430 (defun window-current-scroll-bars (&optional window)
1431 "Return the current scroll bar settings for WINDOW.
1432 WINDOW must be a live window and defaults to the selected one.
1434 The return value is a cons cell (VERTICAL . HORIZONTAL) where
1435 VERTICAL specifies the current location of the vertical scroll
1436 bars (`left', `right', or nil), and HORIZONTAL specifies the
1437 current location of the horizontal scroll bars (`top', `bottom',
1438 or nil).
1440 Unlike `window-scroll-bars', this function reports the scroll bar
1441 type actually used, once frame defaults and `scroll-bar-mode' are
1442 taken into account."
1443 (setq window (window-normalize-window window t))
1444 (let ((vert (nth 2 (window-scroll-bars window)))
1445 (hor nil))
1446 (when (or (eq vert t) (eq hor t))
1447 (let ((fcsb (frame-current-scroll-bars (window-frame window))))
1448 (if (eq vert t)
1449 (setq vert (car fcsb)))
1450 (if (eq hor t)
1451 (setq hor (cdr fcsb)))))
1452 (cons vert hor)))
1454 (defun walk-windows (fun &optional minibuf all-frames)
1455 "Cycle through all live windows, calling FUN for each one.
1456 FUN must specify a function with a window as its sole argument.
1457 The optional arguments MINIBUF and ALL-FRAMES specify the set of
1458 windows to include in the walk.
1460 MINIBUF t means include the minibuffer window even if the
1461 minibuffer is not active. MINIBUF nil or omitted means include
1462 the minibuffer window only if the minibuffer is active. Any
1463 other value means do not include the minibuffer window even if
1464 the minibuffer is active.
1466 ALL-FRAMES nil or omitted means consider all windows on the
1467 selected frame, plus the minibuffer window if specified by the
1468 MINIBUF argument. If the minibuffer counts, consider all windows
1469 on all frames that share that minibuffer too. The following
1470 non-nil values of ALL-FRAMES have special meanings:
1472 - t means consider all windows on all existing frames.
1474 - `visible' means consider all windows on all visible frames on
1475 the current terminal.
1477 - 0 (the number zero) means consider all windows on all visible
1478 and iconified frames on the current terminal.
1480 - A frame means consider all windows on that frame only.
1482 Anything else means consider all windows on the selected frame
1483 and no others.
1485 This function changes neither the order of recently selected
1486 windows nor the buffer list."
1487 ;; If we start from the minibuffer window, don't fail to come
1488 ;; back to it.
1489 (when (window-minibuffer-p (selected-window))
1490 (setq minibuf t))
1491 ;; Make sure to not mess up the order of recently selected
1492 ;; windows. Use `save-selected-window' and `select-window'
1493 ;; with second argument non-nil for this purpose.
1494 (save-selected-window
1495 (when (framep all-frames)
1496 (select-window (frame-first-window all-frames) 'norecord))
1497 (dolist (walk-windows-window (window-list-1 nil minibuf all-frames))
1498 (funcall fun walk-windows-window))))
1500 (defun window-at-side-p (&optional window side)
1501 "Return t if WINDOW is at SIDE of its containing frame.
1502 WINDOW must be a valid window and defaults to the selected one.
1503 SIDE can be any of the symbols `left', `top', `right' or
1504 `bottom'. The default value nil is handled like `bottom'."
1505 (setq window (window-normalize-window window))
1506 (let ((edge
1507 (cond
1508 ((eq side 'left) 0)
1509 ((eq side 'top) 1)
1510 ((eq side 'right) 2)
1511 ((memq side '(bottom nil)) 3))))
1512 (= (nth edge (window-edges window))
1513 (nth edge (window-edges (frame-root-window window))))))
1515 (defun window-at-side-list (&optional frame side)
1516 "Return list of all windows on SIDE of FRAME.
1517 FRAME must be a live frame and defaults to the selected frame.
1518 SIDE can be any of the symbols `left', `top', `right' or
1519 `bottom'. The default value nil is handled like `bottom'."
1520 (setq frame (window-normalize-frame frame))
1521 (let (windows)
1522 (walk-window-tree
1523 (lambda (window)
1524 (when (window-at-side-p window side)
1525 (setq windows (cons window windows))))
1526 frame nil 'nomini)
1527 (nreverse windows)))
1529 (defun window--in-direction-2 (window posn &optional horizontal)
1530 "Support function for `window-in-direction'."
1531 (if horizontal
1532 (let ((top (window-top-line window)))
1533 (if (> top posn)
1534 (- top posn)
1535 (- posn top (window-total-height window))))
1536 (let ((left (window-left-column window)))
1537 (if (> left posn)
1538 (- left posn)
1539 (- posn left (window-total-width window))))))
1541 ;; Predecessors to the below have been devised by Julian Assange in
1542 ;; change-windows-intuitively.el and Hovav Shacham in windmove.el.
1543 ;; Neither of these allow to selectively ignore specific windows
1544 ;; (windows whose `no-other-window' parameter is non-nil) as targets of
1545 ;; the movement.
1546 (defun window-in-direction (direction &optional window ignore)
1547 "Return window in DIRECTION as seen from WINDOW.
1548 More precisely, return the nearest window in direction DIRECTION
1549 as seen from the position of `window-point' in window WINDOW.
1550 DIRECTION must be one of `above', `below', `left' or `right'.
1551 WINDOW must be a live window and defaults to the selected one.
1553 Do not return a window whose `no-other-window' parameter is
1554 non-nil. If the nearest window's `no-other-window' parameter is
1555 non-nil, try to find another window in the indicated direction.
1556 If, however, the optional argument IGNORE is non-nil, return that
1557 window even if its `no-other-window' parameter is non-nil.
1559 Return nil if no suitable window can be found."
1560 (setq window (window-normalize-window window t))
1561 (unless (memq direction '(above below left right))
1562 (error "Wrong direction %s" direction))
1563 (let* ((frame (window-frame window))
1564 (hor (memq direction '(left right)))
1565 (first (if hor
1566 (window-left-column window)
1567 (window-top-line window)))
1568 (last (+ first (if hor
1569 (window-total-width window)
1570 (window-total-height window))))
1571 (posn-cons (nth 6 (posn-at-point (window-point window) window)))
1572 ;; The column / row value of `posn-at-point' can be nil for the
1573 ;; mini-window, guard against that.
1574 (posn (if hor
1575 (+ (or (cdr posn-cons) 1) (window-top-line window))
1576 (+ (or (car posn-cons) 1) (window-left-column window))))
1577 (best-edge
1578 (cond
1579 ((eq direction 'below) (frame-height frame))
1580 ((eq direction 'right) (frame-width frame))
1581 (t -1)))
1582 (best-edge-2 best-edge)
1583 (best-diff-2 (if hor (frame-height frame) (frame-width frame)))
1584 best best-2 best-diff-2-new)
1585 (walk-window-tree
1586 (lambda (w)
1587 (let* ((w-top (window-top-line w))
1588 (w-left (window-left-column w)))
1589 (cond
1590 ((or (eq window w)
1591 ;; Ignore ourselves.
1592 (and (window-parameter w 'no-other-window)
1593 ;; Ignore W unless IGNORE is non-nil.
1594 (not ignore))))
1595 (hor
1596 (cond
1597 ((and (<= w-top posn)
1598 (< posn (+ w-top (window-total-height w))))
1599 ;; W is to the left or right of WINDOW and covers POSN.
1600 (when (or (and (eq direction 'left)
1601 (<= w-left first) (> w-left best-edge))
1602 (and (eq direction 'right)
1603 (>= w-left last) (< w-left best-edge)))
1604 (setq best-edge w-left)
1605 (setq best w)))
1606 ((and (or (and (eq direction 'left)
1607 (<= (+ w-left (window-total-width w)) first))
1608 (and (eq direction 'right) (<= last w-left)))
1609 ;; W is to the left or right of WINDOW but does not
1610 ;; cover POSN.
1611 (setq best-diff-2-new
1612 (window--in-direction-2 w posn hor))
1613 (or (< best-diff-2-new best-diff-2)
1614 (and (= best-diff-2-new best-diff-2)
1615 (if (eq direction 'left)
1616 (> w-left best-edge-2)
1617 (< w-left best-edge-2)))))
1618 (setq best-edge-2 w-left)
1619 (setq best-diff-2 best-diff-2-new)
1620 (setq best-2 w))))
1622 (cond
1623 ((and (<= w-left posn)
1624 (< posn (+ w-left (window-total-width w))))
1625 ;; W is above or below WINDOW and covers POSN.
1626 (when (or (and (eq direction 'above)
1627 (<= w-top first) (> w-top best-edge))
1628 (and (eq direction 'below)
1629 (>= w-top first) (< w-top best-edge)))
1630 (setq best-edge w-top)
1631 (setq best w)))
1632 ((and (or (and (eq direction 'above)
1633 (<= (+ w-top (window-total-height w)) first))
1634 (and (eq direction 'below) (<= last w-top)))
1635 ;; W is above or below WINDOW but does not cover POSN.
1636 (setq best-diff-2-new
1637 (window--in-direction-2 w posn hor))
1638 (or (< best-diff-2-new best-diff-2)
1639 (and (= best-diff-2-new best-diff-2)
1640 (if (eq direction 'above)
1641 (> w-top best-edge-2)
1642 (< w-top best-edge-2)))))
1643 (setq best-edge-2 w-top)
1644 (setq best-diff-2 best-diff-2-new)
1645 (setq best-2 w)))))))
1646 frame)
1647 (or best best-2)))
1649 (defun get-window-with-predicate (predicate &optional minibuf all-frames default)
1650 "Return a live window satisfying PREDICATE.
1651 More precisely, cycle through all windows calling the function
1652 PREDICATE on each one of them with the window as its sole
1653 argument. Return the first window for which PREDICATE returns
1654 non-nil. Windows are scanned starting with the window following
1655 the selected window. If no window satisfies PREDICATE, return
1656 DEFAULT.
1658 MINIBUF t means include the minibuffer window even if the
1659 minibuffer is not active. MINIBUF nil or omitted means include
1660 the minibuffer window only if the minibuffer is active. Any
1661 other value means do not include the minibuffer window even if
1662 the minibuffer is active.
1664 ALL-FRAMES nil or omitted means consider all windows on the selected
1665 frame, plus the minibuffer window if specified by the MINIBUF
1666 argument. If the minibuffer counts, consider all windows on all
1667 frames that share that minibuffer too. The following non-nil
1668 values of ALL-FRAMES have special meanings:
1670 - t means consider all windows on all existing frames.
1672 - `visible' means consider all windows on all visible frames on
1673 the current terminal.
1675 - 0 (the number zero) means consider all windows on all visible
1676 and iconified frames on the current terminal.
1678 - A frame means consider all windows on that frame only.
1680 Anything else means consider all windows on the selected frame
1681 and no others."
1682 (catch 'found
1683 (dolist (window (window-list-1
1684 (next-window nil minibuf all-frames)
1685 minibuf all-frames))
1686 (when (funcall predicate window)
1687 (throw 'found window)))
1688 default))
1690 (defalias 'some-window 'get-window-with-predicate)
1692 (defun get-lru-window (&optional all-frames dedicated not-selected)
1693 "Return the least recently used window on frames specified by ALL-FRAMES.
1694 Return a full-width window if possible. A minibuffer window is
1695 never a candidate. A dedicated window is never a candidate
1696 unless DEDICATED is non-nil, so if all windows are dedicated, the
1697 value is nil. Avoid returning the selected window if possible.
1698 Optional argument NOT-SELECTED non-nil means never return the
1699 selected window.
1701 The following non-nil values of the optional argument ALL-FRAMES
1702 have special meanings:
1704 - t means consider all windows on all existing frames.
1706 - `visible' means consider all windows on all visible frames on
1707 the current terminal.
1709 - 0 (the number zero) means consider all windows on all visible
1710 and iconified frames on the current terminal.
1712 - A frame means consider all windows on that frame only.
1714 Any other value of ALL-FRAMES means consider all windows on the
1715 selected frame and no others."
1716 (let (best-window best-time second-best-window second-best-time time)
1717 (dolist (window (window-list-1 nil 'nomini all-frames))
1718 (when (and (or dedicated (not (window-dedicated-p window)))
1719 (or (not not-selected) (not (eq window (selected-window)))))
1720 (setq time (window-use-time window))
1721 (if (or (eq window (selected-window))
1722 (not (window-full-width-p window)))
1723 (when (or (not second-best-time) (< time second-best-time))
1724 (setq second-best-time time)
1725 (setq second-best-window window))
1726 (when (or (not best-time) (< time best-time))
1727 (setq best-time time)
1728 (setq best-window window)))))
1729 (or best-window second-best-window)))
1731 (defun get-mru-window (&optional all-frames dedicated not-selected)
1732 "Return the most recently used window on frames specified by ALL-FRAMES.
1733 A minibuffer window is never a candidate. A dedicated window is
1734 never a candidate unless DEDICATED is non-nil, so if all windows
1735 are dedicated, the value is nil. Optional argument NOT-SELECTED
1736 non-nil means never return the selected window.
1738 The following non-nil values of the optional argument ALL-FRAMES
1739 have special meanings:
1741 - t means consider all windows on all existing frames.
1743 - `visible' means consider all windows on all visible frames on
1744 the current terminal.
1746 - 0 (the number zero) means consider all windows on all visible
1747 and iconified frames on the current terminal.
1749 - A frame means consider all windows on that frame only.
1751 Any other value of ALL-FRAMES means consider all windows on the
1752 selected frame and no others."
1753 (let (best-window best-time time)
1754 (dolist (window (window-list-1 nil 'nomini all-frames))
1755 (setq time (window-use-time window))
1756 (when (and (or dedicated (not (window-dedicated-p window)))
1757 (or (not not-selected) (not (eq window (selected-window))))
1758 (or (not best-time) (> time best-time)))
1759 (setq best-time time)
1760 (setq best-window window)))
1761 best-window))
1763 (defun get-largest-window (&optional all-frames dedicated not-selected)
1764 "Return the largest window on frames specified by ALL-FRAMES.
1765 A minibuffer window is never a candidate. A dedicated window is
1766 never a candidate unless DEDICATED is non-nil, so if all windows
1767 are dedicated, the value is nil. Optional argument NOT-SELECTED
1768 non-nil means never return the selected window.
1770 The following non-nil values of the optional argument ALL-FRAMES
1771 have special meanings:
1773 - t means consider all windows on all existing frames.
1775 - `visible' means consider all windows on all visible frames on
1776 the current terminal.
1778 - 0 (the number zero) means consider all windows on all visible
1779 and iconified frames on the current terminal.
1781 - A frame means consider all windows on that frame only.
1783 Any other value of ALL-FRAMES means consider all windows on the
1784 selected frame and no others."
1785 (let ((best-size 0)
1786 best-window size)
1787 (dolist (window (window-list-1 nil 'nomini all-frames))
1788 (when (and (or dedicated (not (window-dedicated-p window)))
1789 (or (not not-selected) (not (eq window (selected-window)))))
1790 (setq size (* (window-total-size window)
1791 (window-total-size window t)))
1792 (when (> size best-size)
1793 (setq best-size size)
1794 (setq best-window window))))
1795 best-window))
1797 (defun get-buffer-window-list (&optional buffer-or-name minibuf all-frames)
1798 "Return list of all windows displaying BUFFER-OR-NAME, or nil if none.
1799 BUFFER-OR-NAME may be a buffer or the name of an existing buffer
1800 and defaults to the current buffer. Windows are scanned starting
1801 with the selected window.
1803 MINIBUF t means include the minibuffer window even if the
1804 minibuffer is not active. MINIBUF nil or omitted means include
1805 the minibuffer window only if the minibuffer is active. Any
1806 other value means do not include the minibuffer window even if
1807 the minibuffer is active.
1809 ALL-FRAMES nil or omitted means consider all windows on the
1810 selected frame, plus the minibuffer window if specified by the
1811 MINIBUF argument. If the minibuffer counts, consider all windows
1812 on all frames that share that minibuffer too. The following
1813 non-nil values of ALL-FRAMES have special meanings:
1815 - t means consider all windows on all existing frames.
1817 - `visible' means consider all windows on all visible frames on
1818 the current terminal.
1820 - 0 (the number zero) means consider all windows on all visible
1821 and iconified frames on the current terminal.
1823 - A frame means consider all windows on that frame only.
1825 Anything else means consider all windows on the selected frame
1826 and no others."
1827 (let ((buffer (window-normalize-buffer buffer-or-name))
1828 windows)
1829 (dolist (window (window-list-1 (selected-window) minibuf all-frames))
1830 (when (eq (window-buffer window) buffer)
1831 (setq windows (cons window windows))))
1832 (nreverse windows)))
1834 (defun minibuffer-window-active-p (window)
1835 "Return t if WINDOW is the currently active minibuffer window."
1836 (eq window (active-minibuffer-window)))
1838 (defun count-windows (&optional minibuf)
1839 "Return the number of live windows on the selected frame.
1840 The optional argument MINIBUF specifies whether the minibuffer
1841 window shall be counted. See `walk-windows' for the precise
1842 meaning of this argument."
1843 (length (window-list-1 nil minibuf)))
1845 ;;; Resizing windows.
1846 (defun window--resize-reset (&optional frame horizontal)
1847 "Reset resize values for all windows on FRAME.
1848 FRAME defaults to the selected frame.
1850 This function stores the current value of `window-total-size' applied
1851 with argument HORIZONTAL in the new total size of all windows on
1852 FRAME. It also resets the new normal size of each of these
1853 windows."
1854 (window--resize-reset-1
1855 (frame-root-window (window-normalize-frame frame)) horizontal))
1857 (defun window--resize-reset-1 (window horizontal)
1858 "Internal function of `window--resize-reset'."
1859 ;; Register old size in the new total size.
1860 (set-window-new-total window (window-total-size window horizontal))
1861 ;; Reset new normal size.
1862 (set-window-new-normal window)
1863 (when (window-child window)
1864 (window--resize-reset-1 (window-child window) horizontal))
1865 (when (window-right window)
1866 (window--resize-reset-1 (window-right window) horizontal)))
1868 ;; The following routine is used to manually resize the minibuffer
1869 ;; window and is currently used, for example, by ispell.el.
1870 (defun window--resize-mini-window (window delta)
1871 "Resize minibuffer window WINDOW by DELTA lines.
1872 If WINDOW cannot be resized by DELTA lines make it as large (or
1873 as small) as possible, but don't signal an error."
1874 (when (window-minibuffer-p window)
1875 (let* ((frame (window-frame window))
1876 (root (frame-root-window frame))
1877 (height (window-total-size window))
1878 (min-delta
1879 (- (window-total-size root)
1880 (window-min-size root))))
1881 ;; Sanitize DELTA.
1882 (cond
1883 ((<= (+ height delta) 0)
1884 (setq delta (- (- height 1))))
1885 ((> delta min-delta)
1886 (setq delta min-delta)))
1888 ;; Resize now.
1889 (window--resize-reset frame)
1890 ;; Ideally we should be able to resize just the last child of root
1891 ;; here. See the comment in `resize-root-window-vertically' for
1892 ;; why we do not do that.
1893 (window--resize-this-window root (- delta) nil nil t)
1894 (set-window-new-total window (+ height delta))
1895 ;; The following routine catches the case where we want to resize
1896 ;; a minibuffer-only frame.
1897 (resize-mini-window-internal window))))
1899 (defun window-resize (window delta &optional horizontal ignore)
1900 "Resize WINDOW vertically by DELTA lines.
1901 WINDOW can be an arbitrary window and defaults to the selected
1902 one. An attempt to resize the root window of a frame will raise
1903 an error though.
1905 DELTA a positive number means WINDOW shall be enlarged by DELTA
1906 lines. DELTA negative means WINDOW shall be shrunk by -DELTA
1907 lines.
1909 Optional argument HORIZONTAL non-nil means resize WINDOW
1910 horizontally by DELTA columns. In this case a positive DELTA
1911 means enlarge WINDOW by DELTA columns. DELTA negative means
1912 WINDOW shall be shrunk by -DELTA columns.
1914 Optional argument IGNORE non-nil means ignore restrictions
1915 imposed by fixed size windows, `window-min-height' or
1916 `window-min-width' settings. If IGNORE is a window, ignore
1917 restrictions for that window only. If IGNORE equals `safe',
1918 live windows may get as small as `window-safe-min-height' lines
1919 and `window-safe-min-width' columns. Any other non-nil value
1920 means ignore all of the above restrictions for all windows.
1922 This function resizes other windows proportionally and never
1923 deletes any windows. If you want to move only the low (right)
1924 edge of WINDOW consider using `adjust-window-trailing-edge'
1925 instead."
1926 (setq window (window-normalize-window window))
1927 (let* ((frame (window-frame window))
1928 (minibuffer-window (minibuffer-window frame))
1929 sibling)
1930 (cond
1931 ((eq window (frame-root-window frame))
1932 (error "Cannot resize the root window of a frame"))
1933 ((window-minibuffer-p window)
1934 (if horizontal
1935 (error "Cannot resize minibuffer window horizontally")
1936 (window--resize-mini-window window delta)))
1937 ((and (not horizontal)
1938 (window-full-height-p window)
1939 (eq (window-frame minibuffer-window) frame)
1940 (or (not resize-mini-windows)
1941 (eq minibuffer-window (active-minibuffer-window))))
1942 ;; If WINDOW is full height and either `resize-mini-windows' is
1943 ;; nil or the minibuffer window is active, resize the minibuffer
1944 ;; window.
1945 (window--resize-mini-window minibuffer-window (- delta)))
1946 ((window-resizable-p window delta horizontal ignore)
1947 (window--resize-reset frame horizontal)
1948 (window--resize-this-window window delta horizontal ignore t)
1949 (if (and (not window-combination-resize)
1950 (window-combined-p window horizontal)
1951 (setq sibling (or (window-right window) (window-left window)))
1952 (window-sizable-p sibling (- delta) horizontal ignore))
1953 ;; If window-combination-resize is nil, WINDOW is part of an
1954 ;; iso-combination, and WINDOW's neighboring right or left
1955 ;; sibling can be resized as requested, resize that sibling.
1956 (let ((normal-delta
1957 (/ (float delta)
1958 (window-total-size (window-parent window) horizontal))))
1959 (window--resize-this-window sibling (- delta) horizontal nil t)
1960 (set-window-new-normal
1961 window (+ (window-normal-size window horizontal)
1962 normal-delta))
1963 (set-window-new-normal
1964 sibling (- (window-normal-size sibling horizontal)
1965 normal-delta)))
1966 ;; Otherwise, resize all other windows in the same combination.
1967 (window--resize-siblings window delta horizontal ignore))
1968 (window-resize-apply frame horizontal))
1970 (error "Cannot resize window %s" window)))))
1972 (defun window-resize-no-error (window delta &optional horizontal ignore)
1973 "Resize WINDOW vertically if it is resizable by DELTA lines.
1974 This function is like `window-resize' but does not signal an
1975 error when WINDOW cannot be resized. For the meaning of the
1976 optional arguments see the documentation of `window-resize'."
1977 (when (window-resizable-p window delta horizontal ignore)
1978 (window-resize window delta horizontal ignore)))
1980 (defun window--resize-child-windows-skip-p (window)
1981 "Return non-nil if WINDOW shall be skipped by resizing routines."
1982 (memq (window-new-normal window) '(ignore stuck skip)))
1984 (defun window--resize-child-windows-normal (parent horizontal window this-delta &optional trail other-delta)
1985 "Recursively set new normal height of child windows of window PARENT.
1986 HORIZONTAL non-nil means set the new normal width of these
1987 windows. WINDOW specifies a child window of PARENT that has been
1988 resized by THIS-DELTA lines (columns).
1990 Optional argument TRAIL either `before' or `after' means set values
1991 only for windows before or after WINDOW. Optional argument
1992 OTHER-DELTA, a number, specifies that this many lines (columns)
1993 have been obtained from (or returned to) an ancestor window of
1994 PARENT in order to resize WINDOW."
1995 (let* ((delta-normal
1996 (if (and (= (- this-delta) (window-total-size window horizontal))
1997 (zerop other-delta))
1998 ;; When WINDOW gets deleted and we can return its entire
1999 ;; space to its siblings, use WINDOW's normal size as the
2000 ;; normal delta.
2001 (- (window-normal-size window horizontal))
2002 ;; In any other case calculate the normal delta from the
2003 ;; relation of THIS-DELTA to the total size of PARENT.
2004 (/ (float this-delta) (window-total-size parent horizontal))))
2005 (sub (window-child parent))
2006 (parent-normal 0.0)
2007 (skip (eq trail 'after)))
2009 ;; Set parent-normal to the sum of the normal sizes of all child
2010 ;; windows of PARENT that shall be resized, excluding only WINDOW
2011 ;; and any windows specified by the optional TRAIL argument.
2012 (while sub
2013 (cond
2014 ((eq sub window)
2015 (setq skip (eq trail 'before)))
2016 (skip)
2018 (setq parent-normal
2019 (+ parent-normal (window-normal-size sub horizontal)))))
2020 (setq sub (window-right sub)))
2022 ;; Set the new normal size of all child windows of PARENT from what
2023 ;; they should have contributed for recovering THIS-DELTA lines
2024 ;; (columns).
2025 (setq sub (window-child parent))
2026 (setq skip (eq trail 'after))
2027 (while sub
2028 (cond
2029 ((eq sub window)
2030 (setq skip (eq trail 'before)))
2031 (skip)
2033 (let ((old-normal (window-normal-size sub horizontal)))
2034 (set-window-new-normal
2035 sub (min 1.0 ; Don't get larger than 1.
2036 (max (- old-normal
2037 (* (/ old-normal parent-normal)
2038 delta-normal))
2039 ;; Don't drop below 0.
2040 0.0))))))
2041 (setq sub (window-right sub)))
2043 (when (numberp other-delta)
2044 ;; Set the new normal size of windows from what they should have
2045 ;; contributed for recovering OTHER-DELTA lines (columns).
2046 (setq delta-normal (/ (float (window-total-size parent horizontal))
2047 (+ (window-total-size parent horizontal)
2048 other-delta)))
2049 (setq sub (window-child parent))
2050 (setq skip (eq trail 'after))
2051 (while sub
2052 (cond
2053 ((eq sub window)
2054 (setq skip (eq trail 'before)))
2055 (skip)
2057 (set-window-new-normal
2058 sub (min 1.0 ; Don't get larger than 1.
2059 (max (* (window-new-normal sub) delta-normal)
2060 ;; Don't drop below 0.
2061 0.0)))))
2062 (setq sub (window-right sub))))
2064 ;; Set the new normal size of WINDOW to what is left by the sum of
2065 ;; the normal sizes of its siblings.
2066 (set-window-new-normal
2067 window
2068 (let ((sum 0))
2069 (setq sub (window-child parent))
2070 (while sub
2071 (cond
2072 ((eq sub window))
2073 ((not (numberp (window-new-normal sub)))
2074 (setq sum (+ sum (window-normal-size sub horizontal))))
2076 (setq sum (+ sum (window-new-normal sub)))))
2077 (setq sub (window-right sub)))
2078 ;; Don't get larger than 1 or smaller than 0.
2079 (min 1.0 (max (- 1.0 sum) 0.0))))))
2081 (defun window--resize-child-windows (parent delta &optional horizontal window ignore trail edge)
2082 "Resize child windows of window PARENT vertically by DELTA lines.
2083 PARENT must be a vertically combined internal window.
2085 Optional argument HORIZONTAL non-nil means resize child windows of
2086 PARENT horizontally by DELTA columns. In this case PARENT must
2087 be a horizontally combined internal window.
2089 WINDOW, if specified, must denote a child window of PARENT that
2090 is resized by DELTA lines.
2092 Optional argument IGNORE non-nil means ignore restrictions
2093 imposed by fixed size windows, `window-min-height' or
2094 `window-min-width' settings. If IGNORE equals `safe', live
2095 windows may get as small as `window-safe-min-height' lines and
2096 `window-safe-min-width' columns. If IGNORE is a window, ignore
2097 restrictions for that window only. Any other non-nil value means
2098 ignore all of the above restrictions for all windows.
2100 Optional arguments TRAIL and EDGE, when non-nil, restrict the set
2101 of windows that shall be resized. If TRAIL equals `before',
2102 resize only windows on the left or above EDGE. If TRAIL equals
2103 `after', resize only windows on the right or below EDGE. Also,
2104 preferably only resize windows adjacent to EDGE.
2106 Return the symbol `normalized' if new normal sizes have been
2107 already set by this routine."
2108 (let* ((first (window-child parent))
2109 (last (window-last-child parent))
2110 (parent-total (+ (window-total-size parent horizontal) delta))
2111 sub best-window best-value)
2113 (if (and edge (memq trail '(before after))
2114 (progn
2115 (setq sub first)
2116 (while (and (window-right sub)
2117 (or (and (eq trail 'before)
2118 (not (window--resize-child-windows-skip-p
2119 (window-right sub))))
2120 (and (eq trail 'after)
2121 (window--resize-child-windows-skip-p sub))))
2122 (setq sub (window-right sub)))
2123 sub)
2124 (if horizontal
2125 (if (eq trail 'before)
2126 (= (+ (window-left-column sub)
2127 (window-total-size sub t))
2128 edge)
2129 (= (window-left-column sub) edge))
2130 (if (eq trail 'before)
2131 (= (+ (window-top-line sub)
2132 (window-total-size sub))
2133 edge)
2134 (= (window-top-line sub) edge)))
2135 (window-sizable-p sub delta horizontal ignore))
2136 ;; Resize only windows adjacent to EDGE.
2137 (progn
2138 (window--resize-this-window
2139 sub delta horizontal ignore t trail edge)
2140 (if (and window (eq (window-parent sub) parent))
2141 (progn
2142 ;; Assign new normal sizes.
2143 (set-window-new-normal
2144 sub (/ (float (window-new-total sub)) parent-total))
2145 (set-window-new-normal
2146 window (- (window-normal-size window horizontal)
2147 (- (window-new-normal sub)
2148 (window-normal-size sub horizontal)))))
2149 (window--resize-child-windows-normal
2150 parent horizontal sub 0 trail delta))
2151 ;; Return 'normalized to notify `window--resize-siblings' that
2152 ;; normal sizes have been already set.
2153 'normalized)
2154 ;; Resize all windows proportionally.
2155 (setq sub last)
2156 (while sub
2157 (cond
2158 ((or (window--resize-child-windows-skip-p sub)
2159 ;; Ignore windows to skip and fixed-size child windows -
2160 ;; in the latter case make it a window to skip.
2161 (and (not ignore)
2162 (window-size-fixed-p sub horizontal)
2163 (set-window-new-normal sub 'ignore))))
2164 ((< delta 0)
2165 ;; When shrinking store the number of lines/cols we can get
2166 ;; from this window here together with the total/normal size
2167 ;; factor.
2168 (set-window-new-normal
2170 (cons
2171 ;; We used to call this with NODOWN t, "fixed" 2011-05-11.
2172 (window-min-delta sub horizontal ignore trail t) ; t)
2173 (- (/ (float (window-total-size sub horizontal))
2174 parent-total)
2175 (window-normal-size sub horizontal)))))
2176 ((> delta 0)
2177 ;; When enlarging store the total/normal size factor only
2178 (set-window-new-normal
2180 (- (/ (float (window-total-size sub horizontal))
2181 parent-total)
2182 (window-normal-size sub horizontal)))))
2184 (setq sub (window-left sub)))
2186 (cond
2187 ((< delta 0)
2188 ;; Shrink windows by delta.
2189 (setq best-window t)
2190 (while (and best-window (not (zerop delta)))
2191 (setq sub last)
2192 (setq best-window nil)
2193 (setq best-value most-negative-fixnum)
2194 (while sub
2195 (when (and (consp (window-new-normal sub))
2196 (not (zerop (car (window-new-normal sub))))
2197 (> (cdr (window-new-normal sub)) best-value))
2198 (setq best-window sub)
2199 (setq best-value (cdr (window-new-normal sub))))
2201 (setq sub (window-left sub)))
2203 (when best-window
2204 (setq delta (1+ delta)))
2205 (set-window-new-total best-window -1 t)
2206 (set-window-new-normal
2207 best-window
2208 (if (= (car (window-new-normal best-window)) 1)
2209 'skip ; We can't shrink best-window any further.
2210 (cons (1- (car (window-new-normal best-window)))
2211 (- (/ (float (window-new-total best-window))
2212 parent-total)
2213 (window-normal-size best-window horizontal)))))))
2214 ((> delta 0)
2215 ;; Enlarge windows by delta.
2216 (setq best-window t)
2217 (while (and best-window (not (zerop delta)))
2218 (setq sub last)
2219 (setq best-window nil)
2220 (setq best-value most-positive-fixnum)
2221 (while sub
2222 (when (and (numberp (window-new-normal sub))
2223 (< (window-new-normal sub) best-value))
2224 (setq best-window sub)
2225 (setq best-value (window-new-normal sub)))
2227 (setq sub (window-left sub)))
2229 (when best-window
2230 (setq delta (1- delta)))
2231 (set-window-new-total best-window 1 t)
2232 (set-window-new-normal
2233 best-window
2234 (- (/ (float (window-new-total best-window))
2235 parent-total)
2236 (window-normal-size best-window horizontal))))))
2238 (when best-window
2239 (setq sub last)
2240 (while sub
2241 (when (or (consp (window-new-normal sub))
2242 (numberp (window-new-normal sub)))
2243 ;; Reset new normal size fields so `window-resize-apply'
2244 ;; won't use them to apply new sizes.
2245 (set-window-new-normal sub))
2247 (unless (eq (window-new-normal sub) 'ignore)
2248 ;; Resize this window's child windows (back-engineering
2249 ;; delta from sub's old and new total sizes).
2250 (let ((delta (- (window-new-total sub)
2251 (window-total-size sub horizontal))))
2252 (unless (and (zerop delta) (not trail))
2253 ;; For the TRAIL non-nil case we have to resize SUB
2254 ;; recursively even if it's size does not change.
2255 (window--resize-this-window
2256 sub delta horizontal ignore nil trail edge))))
2257 (setq sub (window-left sub)))))))
2259 (defun window--resize-siblings (window delta &optional horizontal ignore trail edge)
2260 "Resize other windows when WINDOW is resized vertically by DELTA lines.
2261 Optional argument HORIZONTAL non-nil means resize other windows
2262 when WINDOW is resized horizontally by DELTA columns. WINDOW
2263 itself is not resized by this function.
2265 Optional argument IGNORE non-nil means ignore restrictions
2266 imposed by fixed size windows, `window-min-height' or
2267 `window-min-width' settings. If IGNORE equals `safe', live
2268 windows may get as small as `window-safe-min-height' lines and
2269 `window-safe-min-width' columns. If IGNORE is a window, ignore
2270 restrictions for that window only. Any other non-nil value means
2271 ignore all of the above restrictions for all windows.
2273 Optional arguments TRAIL and EDGE, when non-nil, refine the set
2274 of windows that shall be resized. If TRAIL equals `before',
2275 resize only windows on the left or above EDGE. If TRAIL equals
2276 `after', resize only windows on the right or below EDGE. Also,
2277 preferably only resize windows adjacent to EDGE."
2278 (when (window-parent window)
2279 (let* ((parent (window-parent window))
2280 (sub (window-child parent)))
2281 (if (window-combined-p sub horizontal)
2282 ;; In an iso-combination try to extract DELTA from WINDOW's
2283 ;; siblings.
2284 (let ((skip (eq trail 'after))
2285 this-delta other-delta)
2286 ;; Decide which windows shall be left alone.
2287 (while sub
2288 (cond
2289 ((eq sub window)
2290 ;; Make sure WINDOW is left alone when
2291 ;; resizing its siblings.
2292 (set-window-new-normal sub 'ignore)
2293 (setq skip (eq trail 'before)))
2294 (skip
2295 ;; Make sure this sibling is left alone when
2296 ;; resizing its siblings.
2297 (set-window-new-normal sub 'ignore))
2298 ((or (window--size-ignore-p sub ignore)
2299 (not (window-size-fixed-p sub horizontal)))
2300 ;; Set this-delta to t to signal that we found a sibling
2301 ;; of WINDOW whose size is not fixed.
2302 (setq this-delta t)))
2304 (setq sub (window-right sub)))
2306 ;; Set this-delta to what we can get from WINDOW's siblings.
2307 (if (= (- delta) (window-total-size window horizontal))
2308 ;; A deletion, presumably. We must handle this case
2309 ;; specially since `window--resizable' can't be used.
2310 (if this-delta
2311 ;; There's at least one resizable sibling we can
2312 ;; give WINDOW's size to.
2313 (setq this-delta delta)
2314 ;; No resizable sibling exists.
2315 (setq this-delta 0))
2316 ;; Any other form of resizing.
2317 (setq this-delta
2318 (window--resizable window delta horizontal ignore trail t)))
2320 ;; Set other-delta to what we still have to get from
2321 ;; ancestor windows of parent.
2322 (setq other-delta (- delta this-delta))
2323 (unless (zerop other-delta)
2324 ;; Unless we got everything from WINDOW's siblings, PARENT
2325 ;; must be resized by other-delta lines or columns.
2326 (set-window-new-total parent other-delta 'add))
2328 (if (zerop this-delta)
2329 ;; We haven't got anything from WINDOW's siblings but we
2330 ;; must update the normal sizes to respect other-delta.
2331 (window--resize-child-windows-normal
2332 parent horizontal window this-delta trail other-delta)
2333 ;; We did get something from WINDOW's siblings which means
2334 ;; we have to resize their child windows.
2335 (unless (eq (window--resize-child-windows
2336 parent (- this-delta) horizontal
2337 window ignore trail edge)
2338 ;; If `window--resize-child-windows' returns
2339 ;; 'normalized, this means it has set the
2340 ;; normal sizes already.
2341 'normalized)
2342 ;; Set the normal sizes.
2343 (window--resize-child-windows-normal
2344 parent horizontal window this-delta trail other-delta))
2345 ;; Set DELTA to what we still have to get from ancestor
2346 ;; windows.
2347 (setq delta other-delta)))
2349 ;; In an ortho-combination all siblings of WINDOW must be
2350 ;; resized by DELTA.
2351 (set-window-new-total parent delta 'add)
2352 (while sub
2353 (unless (eq sub window)
2354 (window--resize-this-window sub delta horizontal ignore t))
2355 (setq sub (window-right sub))))
2357 (unless (zerop delta)
2358 ;; "Go up."
2359 (window--resize-siblings
2360 parent delta horizontal ignore trail edge)))))
2362 (defun window--resize-this-window (window delta &optional horizontal ignore add trail edge)
2363 "Resize WINDOW vertically by DELTA lines.
2364 Optional argument HORIZONTAL non-nil means resize WINDOW
2365 horizontally by DELTA columns.
2367 Optional argument IGNORE non-nil means ignore restrictions
2368 imposed by fixed size windows, `window-min-height' or
2369 `window-min-width' settings. If IGNORE equals `safe', live
2370 windows may get as small as `window-safe-min-height' lines and
2371 `window-safe-min-width' columns. If IGNORE is a window, ignore
2372 restrictions for that window only. Any other non-nil value
2373 means ignore all of the above restrictions for all windows.
2375 Optional argument ADD non-nil means add DELTA to the new total
2376 size of WINDOW.
2378 Optional arguments TRAIL and EDGE, when non-nil, refine the set
2379 of windows that shall be resized. If TRAIL equals `before',
2380 resize only windows on the left or above EDGE. If TRAIL equals
2381 `after', resize only windows on the right or below EDGE. Also,
2382 preferably only resize windows adjacent to EDGE.
2384 This function recursively resizes WINDOW's child windows to fit the
2385 new size. Make sure that WINDOW is `window--resizable' before
2386 calling this function. Note that this function does not resize
2387 siblings of WINDOW or WINDOW's parent window. You have to
2388 eventually call `window-resize-apply' in order to make resizing
2389 actually take effect."
2390 (when add
2391 ;; Add DELTA to the new total size of WINDOW.
2392 (set-window-new-total window delta t))
2394 (let ((sub (window-child window)))
2395 (cond
2396 ((not sub))
2397 ((window-combined-p sub horizontal)
2398 ;; In an iso-combination resize child windows according to their
2399 ;; normal sizes.
2400 (window--resize-child-windows
2401 window delta horizontal nil ignore trail edge))
2402 ;; In an ortho-combination resize each child window by DELTA.
2404 (while sub
2405 (window--resize-this-window
2406 sub delta horizontal ignore t trail edge)
2407 (setq sub (window-right sub)))))))
2409 (defun window--resize-root-window (window delta horizontal ignore)
2410 "Resize root window WINDOW vertically by DELTA lines.
2411 HORIZONTAL non-nil means resize root window WINDOW horizontally
2412 by DELTA columns.
2414 IGNORE non-nil means ignore any restrictions imposed by fixed
2415 size windows, `window-min-height' or `window-min-width' settings.
2417 This function is only called by the frame resizing routines. It
2418 resizes windows proportionally and never deletes any windows."
2419 (when (and (windowp window) (numberp delta)
2420 (window-sizable-p window delta horizontal ignore))
2421 (window--resize-reset (window-frame window) horizontal)
2422 (window--resize-this-window window delta horizontal ignore t)))
2424 (defun window--resize-root-window-vertically (window delta)
2425 "Resize root window WINDOW vertically by DELTA lines.
2426 If DELTA is less than zero and we can't shrink WINDOW by DELTA
2427 lines, shrink it as much as possible. If DELTA is greater than
2428 zero, this function can resize fixed-size windows in order to
2429 recover the necessary lines.
2431 Return the number of lines that were recovered.
2433 This function is only called by the minibuffer window resizing
2434 routines. It resizes windows proportionally and never deletes
2435 any windows."
2436 (let ((frame (window-frame window))
2437 ignore)
2438 (cond
2439 ((not (numberp delta))
2440 (setq delta 0))
2441 ((zerop delta))
2442 ((< delta 0)
2443 (setq delta (window-sizable window delta))
2444 (window--resize-reset frame)
2445 ;; When shrinking the root window, emulate an edge drag in order
2446 ;; to not resize other windows if we can avoid it (Bug#12419).
2447 (window--resize-this-window
2448 window delta nil ignore t 'before
2449 (+ (window-top-line window) (window-total-size window)))
2450 ;; Don't record new normal sizes to make sure that shrinking back
2451 ;; proportionally works as intended.
2452 (walk-window-tree
2453 (lambda (window) (set-window-new-normal window 'ignore)) frame t))
2454 ((> delta 0)
2455 (window--resize-reset frame)
2456 (unless (window-sizable window delta)
2457 (setq ignore t))
2458 ;; When growing the root window, resize proportionally. This
2459 ;; should give windows back their original sizes (hopefully).
2460 (window--resize-this-window window delta nil ignore t)))
2461 ;; Return the possibly adjusted DELTA.
2462 delta))
2464 (defun adjust-window-trailing-edge (window delta &optional horizontal)
2465 "Move WINDOW's bottom edge by DELTA lines.
2466 Optional argument HORIZONTAL non-nil means move WINDOW's right
2467 edge by DELTA columns. WINDOW must be a valid window and
2468 defaults to the selected one.
2470 If DELTA is greater than zero, move the edge downwards or to the
2471 right. If DELTA is less than zero, move the edge upwards or to
2472 the left. If the edge can't be moved by DELTA lines or columns,
2473 move it as far as possible in the desired direction."
2474 (setq window (window-normalize-window window))
2475 (let* ((frame (window-frame window))
2476 (minibuffer-window (minibuffer-window frame))
2477 (right window)
2478 left this-delta min-delta max-delta)
2479 ;; Find the edge we want to move.
2480 (while (and (or (not (window-combined-p right horizontal))
2481 (not (window-right right)))
2482 (setq right (window-parent right))))
2483 (cond
2484 ((and (not right) (not horizontal)
2485 ;; Resize the minibuffer window if it's on the same frame as
2486 ;; and immediately below WINDOW and it's either active or
2487 ;; `resize-mini-windows' is nil.
2488 (eq (window-frame minibuffer-window) frame)
2489 (= (nth 1 (window-edges minibuffer-window))
2490 (nth 3 (window-edges window)))
2491 (or (not resize-mini-windows)
2492 (eq minibuffer-window (active-minibuffer-window))))
2493 (window--resize-mini-window minibuffer-window (- delta)))
2494 ((or (not (setq left right)) (not (setq right (window-right right))))
2495 (if horizontal
2496 (error "No window on the right of this one")
2497 (error "No window below this one")))
2499 ;; Set LEFT to the first resizable window on the left. This step is
2500 ;; needed to handle fixed-size windows.
2501 (while (and left (window-size-fixed-p left horizontal))
2502 (setq left
2503 (or (window-left left)
2504 (progn
2505 (while (and (setq left (window-parent left))
2506 (not (window-combined-p left horizontal))))
2507 (window-left left)))))
2508 (unless left
2509 (if horizontal
2510 (error "No resizable window on the left of this one")
2511 (error "No resizable window above this one")))
2513 ;; Set RIGHT to the first resizable window on the right. This step
2514 ;; is needed to handle fixed-size windows.
2515 (while (and right (window-size-fixed-p right horizontal))
2516 (setq right
2517 (or (window-right right)
2518 (progn
2519 (while (and (setq right (window-parent right))
2520 (not (window-combined-p right horizontal))))
2521 (window-right right)))))
2522 (unless right
2523 (if horizontal
2524 (error "No resizable window on the right of this one")
2525 (error "No resizable window below this one")))
2527 ;; LEFT and RIGHT (which might be both internal windows) are now the
2528 ;; two windows we want to resize.
2529 (cond
2530 ((> delta 0)
2531 (setq max-delta (window--max-delta-1 left 0 horizontal nil 'after))
2532 (setq min-delta (window--min-delta-1 right (- delta) horizontal nil 'before))
2533 (when (or (< max-delta delta) (> min-delta (- delta)))
2534 ;; We can't get the whole DELTA - move as far as possible.
2535 (setq delta (min max-delta (- min-delta))))
2536 (unless (zerop delta)
2537 ;; Start resizing.
2538 (window--resize-reset frame horizontal)
2539 ;; Try to enlarge LEFT first.
2540 (setq this-delta (window--resizable left delta horizontal))
2541 (unless (zerop this-delta)
2542 (window--resize-this-window
2543 left this-delta horizontal nil t 'before
2544 (if horizontal
2545 (+ (window-left-column left) (window-total-size left t))
2546 (+ (window-top-line left) (window-total-size left)))))
2547 ;; Shrink windows on right of LEFT.
2548 (window--resize-siblings
2549 left delta horizontal nil 'after
2550 (if horizontal
2551 (window-left-column right)
2552 (window-top-line right)))))
2553 ((< delta 0)
2554 (setq max-delta (window--max-delta-1 right 0 horizontal nil 'before))
2555 (setq min-delta (window--min-delta-1 left delta horizontal nil 'after))
2556 (when (or (< max-delta (- delta)) (> min-delta delta))
2557 ;; We can't get the whole DELTA - move as far as possible.
2558 (setq delta (max (- max-delta) min-delta)))
2559 (unless (zerop delta)
2560 ;; Start resizing.
2561 (window--resize-reset frame horizontal)
2562 ;; Try to enlarge RIGHT.
2563 (setq this-delta (window--resizable right (- delta) horizontal))
2564 (unless (zerop this-delta)
2565 (window--resize-this-window
2566 right this-delta horizontal nil t 'after
2567 (if horizontal
2568 (window-left-column right)
2569 (window-top-line right))))
2570 ;; Shrink windows on left of RIGHT.
2571 (window--resize-siblings
2572 right (- delta) horizontal nil 'before
2573 (if horizontal
2574 (+ (window-left-column left) (window-total-size left t))
2575 (+ (window-top-line left) (window-total-size left)))))))
2576 (unless (zerop delta)
2577 ;; Don't report an error in the standard case.
2578 (unless (window-resize-apply frame horizontal)
2579 ;; But do report an error if applying the changes fails.
2580 (error "Failed adjusting window %s" window)))))))
2582 (defun enlarge-window (delta &optional horizontal)
2583 "Make the selected window DELTA lines taller.
2584 Interactively, if no argument is given, make the selected window
2585 one line taller. If optional argument HORIZONTAL is non-nil,
2586 make selected window wider by DELTA columns. If DELTA is
2587 negative, shrink selected window by -DELTA lines or columns."
2588 (interactive "p")
2589 (let ((minibuffer-window (minibuffer-window)))
2590 (cond
2591 ((zerop delta))
2592 ((window-size-fixed-p nil horizontal)
2593 (error "Selected window has fixed size"))
2594 ((window-minibuffer-p)
2595 (if horizontal
2596 (error "Cannot resize minibuffer window horizontally")
2597 (window--resize-mini-window (selected-window) delta)))
2598 ((and (not horizontal)
2599 (window-full-height-p)
2600 (eq (window-frame minibuffer-window) (selected-frame))
2601 (not resize-mini-windows))
2602 ;; If the selected window is full height and `resize-mini-windows'
2603 ;; is nil, resize the minibuffer window.
2604 (window--resize-mini-window minibuffer-window (- delta)))
2605 ((window-resizable-p nil delta horizontal)
2606 (window-resize nil delta horizontal))
2608 (window-resize
2609 nil (if (> delta 0)
2610 (window-max-delta nil horizontal)
2611 (- (window-min-delta nil horizontal)))
2612 horizontal)))))
2614 (defun shrink-window (delta &optional horizontal)
2615 "Make the selected window DELTA lines smaller.
2616 Interactively, if no argument is given, make the selected window
2617 one line smaller. If optional argument HORIZONTAL is non-nil,
2618 make selected window narrower by DELTA columns. If DELTA is
2619 negative, enlarge selected window by -DELTA lines or columns.
2620 Also see the `window-min-height' variable."
2621 (interactive "p")
2622 (let ((minibuffer-window (minibuffer-window)))
2623 (cond
2624 ((zerop delta))
2625 ((window-size-fixed-p nil horizontal)
2626 (error "Selected window has fixed size"))
2627 ((window-minibuffer-p)
2628 (if horizontal
2629 (error "Cannot resize minibuffer window horizontally")
2630 (window--resize-mini-window (selected-window) (- delta))))
2631 ((and (not horizontal)
2632 (window-full-height-p)
2633 (eq (window-frame minibuffer-window) (selected-frame))
2634 (not resize-mini-windows))
2635 ;; If the selected window is full height and `resize-mini-windows'
2636 ;; is nil, resize the minibuffer window.
2637 (window--resize-mini-window minibuffer-window delta))
2638 ((window-resizable-p nil (- delta) horizontal)
2639 (window-resize nil (- delta) horizontal))
2641 (window-resize
2642 nil (if (> delta 0)
2643 (- (window-min-delta nil horizontal))
2644 (window-max-delta nil horizontal))
2645 horizontal)))))
2647 (defun maximize-window (&optional window)
2648 "Maximize WINDOW.
2649 Make WINDOW as large as possible without deleting any windows.
2650 WINDOW must be a valid window and defaults to the selected one."
2651 (interactive)
2652 (setq window (window-normalize-window window))
2653 (window-resize window (window-max-delta window))
2654 (window-resize window (window-max-delta window t) t))
2656 (defun minimize-window (&optional window)
2657 "Minimize WINDOW.
2658 Make WINDOW as small as possible without deleting any windows.
2659 WINDOW must be a valid window and defaults to the selected one."
2660 (interactive)
2661 (setq window (window-normalize-window window))
2662 (window-resize window (- (window-min-delta window)))
2663 (window-resize window (- (window-min-delta window t)) t))
2665 (defun frame-root-window-p (window)
2666 "Return non-nil if WINDOW is the root window of its frame."
2667 (eq window (frame-root-window window)))
2669 (defun window--subtree (window &optional next)
2670 "Return window subtree rooted at WINDOW.
2671 Optional argument NEXT non-nil means include WINDOW's right
2672 siblings in the return value.
2674 See the documentation of `window-tree' for a description of the
2675 return value."
2676 (let (list)
2677 (while window
2678 (setq list
2679 (cons
2680 (cond
2681 ((window-top-child window)
2682 (cons t (cons (window-edges window)
2683 (window--subtree (window-top-child window) t))))
2684 ((window-left-child window)
2685 (cons nil (cons (window-edges window)
2686 (window--subtree (window-left-child window) t))))
2687 (t window))
2688 list))
2689 (setq window (when next (window-next-sibling window))))
2690 (nreverse list)))
2692 (defun window-tree (&optional frame)
2693 "Return the window tree of frame FRAME.
2694 FRAME must be a live frame and defaults to the selected frame.
2695 The return value is a list of the form (ROOT MINI), where ROOT
2696 represents the window tree of the frame's root window, and MINI
2697 is the frame's minibuffer window.
2699 If the root window is not split, ROOT is the root window itself.
2700 Otherwise, ROOT is a list (DIR EDGES W1 W2 ...) where DIR is nil
2701 for a horizontal split, and t for a vertical split. EDGES gives
2702 the combined size and position of the child windows in the split,
2703 and the rest of the elements are the child windows in the split.
2704 Each of the child windows may again be a window or a list
2705 representing a window split, and so on. EDGES is a list (LEFT
2706 TOP RIGHT BOTTOM) as returned by `window-edges'."
2707 (setq frame (window-normalize-frame frame))
2708 (window--subtree (frame-root-window frame) t))
2710 (defun other-window (count &optional all-frames)
2711 "Select another window in cyclic ordering of windows.
2712 COUNT specifies the number of windows to skip, starting with the
2713 selected window, before making the selection. If COUNT is
2714 positive, skip COUNT windows forwards. If COUNT is negative,
2715 skip -COUNT windows backwards. COUNT zero means do not skip any
2716 window, so select the selected window. In an interactive call,
2717 COUNT is the numeric prefix argument. Return nil.
2719 If the `other-window' parameter of the selected window is a
2720 function and `ignore-window-parameters' is nil, call that
2721 function with the arguments COUNT and ALL-FRAMES.
2723 This function does not select a window whose `no-other-window'
2724 window parameter is non-nil.
2726 This function uses `next-window' for finding the window to
2727 select. The argument ALL-FRAMES has the same meaning as in
2728 `next-window', but the MINIBUF argument of `next-window' is
2729 always effectively nil."
2730 (interactive "p")
2731 (let* ((window (selected-window))
2732 (function (and (not ignore-window-parameters)
2733 (window-parameter window 'other-window)))
2734 old-window old-count)
2735 (if (functionp function)
2736 (funcall function count all-frames)
2737 ;; `next-window' and `previous-window' may return a window we are
2738 ;; not allowed to select. Hence we need an exit strategy in case
2739 ;; all windows are non-selectable.
2740 (catch 'exit
2741 (while (> count 0)
2742 (setq window (next-window window nil all-frames))
2743 (cond
2744 ((eq window old-window)
2745 (when (= count old-count)
2746 ;; Keep out of infinite loops. When COUNT has not changed
2747 ;; since we last looked at `window' we're probably in one.
2748 (throw 'exit nil)))
2749 ((window-parameter window 'no-other-window)
2750 (unless old-window
2751 ;; The first non-selectable window `next-window' got us:
2752 ;; Remember it and the current value of COUNT.
2753 (setq old-window window)
2754 (setq old-count count)))
2756 (setq count (1- count)))))
2757 (while (< count 0)
2758 (setq window (previous-window window nil all-frames))
2759 (cond
2760 ((eq window old-window)
2761 (when (= count old-count)
2762 ;; Keep out of infinite loops. When COUNT has not changed
2763 ;; since we last looked at `window' we're probably in one.
2764 (throw 'exit nil)))
2765 ((window-parameter window 'no-other-window)
2766 (unless old-window
2767 ;; The first non-selectable window `previous-window' got
2768 ;; us: Remember it and the current value of COUNT.
2769 (setq old-window window)
2770 (setq old-count count)))
2772 (setq count (1+ count)))))
2774 (select-window window)
2775 ;; Always return nil.
2776 nil))))
2778 ;; This should probably return non-nil when the selected window is part
2779 ;; of an atomic window whose root is the frame's root window.
2780 (defun one-window-p (&optional nomini all-frames)
2781 "Return non-nil if the selected window is the only window.
2782 Optional arg NOMINI non-nil means don't count the minibuffer
2783 even if it is active. Otherwise, the minibuffer is counted
2784 when it is active.
2786 Optional argument ALL-FRAMES specifies the set of frames to
2787 consider, see also `next-window'. ALL-FRAMES nil or omitted
2788 means consider windows on the selected frame only, plus the
2789 minibuffer window if specified by the NOMINI argument. If the
2790 minibuffer counts, consider all windows on all frames that share
2791 that minibuffer too. The remaining non-nil values of ALL-FRAMES
2792 with a special meaning are:
2794 - t means consider all windows on all existing frames.
2796 - `visible' means consider all windows on all visible frames on
2797 the current terminal.
2799 - 0 (the number zero) means consider all windows on all visible
2800 and iconified frames on the current terminal.
2802 - A frame means consider all windows on that frame only.
2804 Anything else means consider all windows on the selected frame
2805 and no others."
2806 (let ((base-window (selected-window)))
2807 (if (and nomini (eq base-window (minibuffer-window)))
2808 (setq base-window (next-window base-window)))
2809 (eq base-window
2810 (next-window base-window (if nomini 'arg) all-frames))))
2812 ;;; Deleting windows.
2813 (defun window-deletable-p (&optional window)
2814 "Return t if WINDOW can be safely deleted from its frame.
2815 WINDOW must be a valid window and defaults to the selected one.
2816 Return `frame' if deleting WINDOW should also delete its frame."
2817 (setq window (window-normalize-window window))
2819 (unless ignore-window-parameters
2820 ;; Handle atomicity.
2821 (when (window-parameter window 'window-atom)
2822 (setq window (window-atom-root window))))
2824 (let ((frame (window-frame window)))
2825 (cond
2826 ((frame-root-window-p window)
2827 ;; WINDOW's frame can be deleted only if there are other frames
2828 ;; on the same terminal, and it does not contain the active
2829 ;; minibuffer.
2830 (unless (or (eq frame (next-frame frame 0))
2831 (let ((minibuf (active-minibuffer-window)))
2832 (and minibuf (eq frame (window-frame minibuf)))))
2833 'frame))
2834 ((or ignore-window-parameters
2835 (not (eq window (window--major-non-side-window frame))))
2836 ;; WINDOW can be deleted unless it is the major non-side window of
2837 ;; its frame.
2838 t))))
2840 (defun window--in-subtree-p (window root)
2841 "Return t if WINDOW is either ROOT or a member of ROOT's subtree."
2842 (or (eq window root)
2843 (let ((parent (window-parent window)))
2844 (catch 'done
2845 (while parent
2846 (if (eq parent root)
2847 (throw 'done t)
2848 (setq parent (window-parent parent))))))))
2850 (defun delete-window (&optional window)
2851 "Delete WINDOW.
2852 WINDOW must be a valid window and defaults to the selected one.
2853 Return nil.
2855 If the variable `ignore-window-parameters' is non-nil or the
2856 `delete-window' parameter of WINDOW equals t, do not process any
2857 parameters of WINDOW. Otherwise, if the `delete-window'
2858 parameter of WINDOW specifies a function, call that function with
2859 WINDOW as its sole argument and return the value returned by that
2860 function.
2862 Otherwise, if WINDOW is part of an atomic window, call
2863 `delete-window' with the root of the atomic window as its
2864 argument. Signal an error if WINDOW is either the only window on
2865 its frame, the last non-side window, or part of an atomic window
2866 that is its frame's root window."
2867 (interactive)
2868 (setq window (window-normalize-window window))
2869 (let* ((frame (window-frame window))
2870 (function (window-parameter window 'delete-window))
2871 (parent (window-parent window))
2872 atom-root)
2873 (window--check frame)
2874 (catch 'done
2875 ;; Handle window parameters.
2876 (cond
2877 ;; Ignore window parameters if `ignore-window-parameters' tells
2878 ;; us so or `delete-window' equals t.
2879 ((or ignore-window-parameters (eq function t)))
2880 ((functionp function)
2881 ;; The `delete-window' parameter specifies the function to call.
2882 ;; If that function is `ignore' nothing is done. It's up to the
2883 ;; function called here to avoid infinite recursion.
2884 (throw 'done (funcall function window)))
2885 ((and (window-parameter window 'window-atom)
2886 (setq atom-root (window-atom-root window))
2887 (not (eq atom-root window)))
2888 (if (eq atom-root (frame-root-window frame))
2889 (error "Root of atomic window is root window of its frame")
2890 (throw 'done (delete-window atom-root))))
2891 ((not parent)
2892 (error "Attempt to delete minibuffer or sole ordinary window"))
2893 ((eq window (window--major-non-side-window frame))
2894 (error "Attempt to delete last non-side window")))
2896 (let* ((horizontal (window-left-child parent))
2897 (size (window-total-size window horizontal))
2898 (frame-selected
2899 (window--in-subtree-p (frame-selected-window frame) window))
2900 ;; Emacs 23 preferably gives WINDOW's space to its left
2901 ;; sibling.
2902 (sibling (or (window-left window) (window-right window))))
2903 (window--resize-reset frame horizontal)
2904 (cond
2905 ((and (not window-combination-resize)
2906 sibling (window-sizable-p sibling size))
2907 ;; Resize WINDOW's sibling.
2908 (window--resize-this-window sibling size horizontal nil t)
2909 (set-window-new-normal
2910 sibling (+ (window-normal-size sibling horizontal)
2911 (window-normal-size window horizontal))))
2912 ((window-resizable-p window (- size) horizontal nil nil nil t)
2913 ;; Can do without resizing fixed-size windows.
2914 (window--resize-siblings window (- size) horizontal))
2916 ;; Can't do without resizing fixed-size windows.
2917 (window--resize-siblings window (- size) horizontal t)))
2918 ;; Actually delete WINDOW.
2919 (delete-window-internal window)
2920 (when (and frame-selected
2921 (window-parameter
2922 (frame-selected-window frame) 'no-other-window))
2923 ;; `delete-window-internal' has selected a window that should
2924 ;; not be selected, fix this here.
2925 (other-window -1 frame))
2926 (run-window-configuration-change-hook frame)
2927 (window--check frame)
2928 ;; Always return nil.
2929 nil))))
2931 (defun delete-other-windows (&optional window)
2932 "Make WINDOW fill its frame.
2933 WINDOW must be a valid window and defaults to the selected one.
2934 Return nil.
2936 If the variable `ignore-window-parameters' is non-nil or the
2937 `delete-other-windows' parameter of WINDOW equals t, do not
2938 process any parameters of WINDOW. Otherwise, if the
2939 `delete-other-windows' parameter of WINDOW specifies a function,
2940 call that function with WINDOW as its sole argument and return
2941 the value returned by that function.
2943 Otherwise, if WINDOW is part of an atomic window, call this
2944 function with the root of the atomic window as its argument. If
2945 WINDOW is a non-side window, make WINDOW the only non-side window
2946 on the frame. Side windows are not deleted. If WINDOW is a side
2947 window signal an error."
2948 (interactive)
2949 (setq window (window-normalize-window window))
2950 (let* ((frame (window-frame window))
2951 (function (window-parameter window 'delete-other-windows))
2952 (window-side (window-parameter window 'window-side))
2953 atom-root side-main)
2954 (window--check frame)
2955 (catch 'done
2956 (cond
2957 ;; Ignore window parameters if `ignore-window-parameters' is t or
2958 ;; `delete-other-windows' is t.
2959 ((or ignore-window-parameters (eq function t)))
2960 ((functionp function)
2961 ;; The `delete-other-windows' parameter specifies the function
2962 ;; to call. If the function is `ignore' no windows are deleted.
2963 ;; It's up to the function called to avoid infinite recursion.
2964 (throw 'done (funcall function window)))
2965 ((and (window-parameter window 'window-atom)
2966 (setq atom-root (window-atom-root window))
2967 (not (eq atom-root window)))
2968 (if (eq atom-root (frame-root-window frame))
2969 (error "Root of atomic window is root window of its frame")
2970 (throw 'done (delete-other-windows atom-root))))
2971 ((memq window-side window-sides)
2972 (error "Cannot make side window the only window"))
2973 ((and (window-minibuffer-p window)
2974 (not (eq window (frame-root-window window))))
2975 (error "Can't expand minibuffer to full frame")))
2977 ;; If WINDOW is the major non-side window, do nothing.
2978 (if (window-with-parameter 'window-side)
2979 (setq side-main (window--major-non-side-window frame))
2980 (setq side-main (frame-root-window frame)))
2981 (unless (eq window side-main)
2982 (delete-other-windows-internal window side-main)
2983 (run-window-configuration-change-hook frame)
2984 (window--check frame))
2985 ;; Always return nil.
2986 nil)))
2988 (defun delete-other-windows-vertically (&optional window)
2989 "Delete the windows in the same column with WINDOW, but not WINDOW itself.
2990 This may be a useful alternative binding for \\[delete-other-windows]
2991 if you often split windows horizontally."
2992 (interactive)
2993 (let* ((window (or window (selected-window)))
2994 (edges (window-edges window))
2995 (w window) delenda)
2996 (while (not (eq (setq w (next-window w 1)) window))
2997 (let ((e (window-edges w)))
2998 (when (and (= (car e) (car edges))
2999 (= (nth 2 e) (nth 2 edges)))
3000 (push w delenda))))
3001 (mapc 'delete-window delenda)))
3003 ;;; Windows and buffers.
3005 ;; `prev-buffers' and `next-buffers' are two reserved window slots used
3006 ;; for (1) determining which buffer to show in the window when its
3007 ;; buffer shall be buried or killed and (2) which buffer to show for
3008 ;; `switch-to-prev-buffer' and `switch-to-next-buffer'.
3010 ;; `prev-buffers' consists of <buffer, window-start, window-point>
3011 ;; triples. The entries on this list are ordered by the time their
3012 ;; buffer has been removed from the window, the most recently removed
3013 ;; buffer's entry being first. The window-start and window-point
3014 ;; components are `window-start' and `window-point' at the time the
3015 ;; buffer was removed from the window which implies that the entry must
3016 ;; be added when `set-window-buffer' removes the buffer from the window.
3018 ;; `next-buffers' is the list of buffers that have been replaced
3019 ;; recently by `switch-to-prev-buffer'. These buffers are the least
3020 ;; preferred candidates of `switch-to-prev-buffer' and the preferred
3021 ;; candidates of `switch-to-next-buffer' to switch to. This list is
3022 ;; reset to nil by any action changing the window's buffer with the
3023 ;; exception of `switch-to-prev-buffer' and `switch-to-next-buffer'.
3024 ;; `switch-to-prev-buffer' pushes the buffer it just replaced on it,
3025 ;; `switch-to-next-buffer' pops the last pushed buffer from it.
3027 ;; Both `prev-buffers' and `next-buffers' may reference killed buffers
3028 ;; if such a buffer was killed while the window was hidden within a
3029 ;; window configuration. Such killed buffers get removed whenever
3030 ;; `switch-to-prev-buffer' or `switch-to-next-buffer' encounter them.
3032 ;; The following function is called by `set-window-buffer' _before_ it
3033 ;; replaces the buffer of the argument window with the new buffer.
3034 (defun record-window-buffer (&optional window)
3035 "Record WINDOW's buffer.
3036 WINDOW must be a live window and defaults to the selected one."
3037 (let* ((window (window-normalize-window window t))
3038 (buffer (window-buffer window))
3039 (entry (assq buffer (window-prev-buffers window))))
3040 ;; Reset WINDOW's next buffers. If needed, they are resurrected by
3041 ;; `switch-to-prev-buffer' and `switch-to-next-buffer'.
3042 (set-window-next-buffers window nil)
3044 (when entry
3045 ;; Remove all entries for BUFFER from WINDOW's previous buffers.
3046 (set-window-prev-buffers
3047 window (assq-delete-all buffer (window-prev-buffers window))))
3049 ;; Don't record insignificant buffers.
3050 (unless (eq (aref (buffer-name buffer) 0) ?\s)
3051 ;; Add an entry for buffer to WINDOW's previous buffers.
3052 (with-current-buffer buffer
3053 (let ((start (window-start window))
3054 (point (window-point window)))
3055 (setq entry
3056 (cons buffer
3057 (if entry
3058 ;; We have an entry, update marker positions.
3059 (list (set-marker (nth 1 entry) start)
3060 (set-marker (nth 2 entry) point))
3061 ;; Make new markers.
3062 (list (copy-marker start)
3063 (copy-marker
3064 ;; Preserve window-point-insertion-type
3065 ;; (Bug#12588).
3066 point window-point-insertion-type)))))
3067 (set-window-prev-buffers
3068 window (cons entry (window-prev-buffers window))))))))
3070 (defun unrecord-window-buffer (&optional window buffer)
3071 "Unrecord BUFFER in WINDOW.
3072 WINDOW must be a live window and defaults to the selected one.
3073 BUFFER must be a live buffer and defaults to the buffer of
3074 WINDOW."
3075 (let* ((window (window-normalize-window window t))
3076 (buffer (or buffer (window-buffer window))))
3077 (set-window-prev-buffers
3078 window (assq-delete-all buffer (window-prev-buffers window)))
3079 (set-window-next-buffers
3080 window (delq buffer (window-next-buffers window)))))
3082 (defun set-window-buffer-start-and-point (window buffer &optional start point)
3083 "Set WINDOW's buffer to BUFFER.
3084 WINDOW must be a live window and defaults to the selected one.
3085 Optional argument START non-nil means set WINDOW's start position
3086 to START. Optional argument POINT non-nil means set WINDOW's
3087 point to POINT. If WINDOW is selected this also sets BUFFER's
3088 `point' to POINT. If WINDOW is selected and the buffer it showed
3089 before was current this also makes BUFFER the current buffer."
3090 (setq window (window-normalize-window window t))
3091 (let ((selected (eq window (selected-window)))
3092 (current (eq (window-buffer window) (current-buffer))))
3093 (set-window-buffer window buffer)
3094 (when (and selected current)
3095 (set-buffer buffer))
3096 (when start
3097 ;; Don't force window-start here (even if POINT is nil).
3098 (set-window-start window start t))
3099 (when point
3100 (set-window-point window point))))
3102 (defcustom switch-to-visible-buffer t
3103 "If non-nil, allow switching to an already visible buffer.
3104 If this variable is non-nil, `switch-to-prev-buffer' and
3105 `switch-to-next-buffer' may switch to an already visible buffer
3106 provided the buffer was shown before in the window specified as
3107 argument to those functions. If this variable is nil,
3108 `switch-to-prev-buffer' and `switch-to-next-buffer' always try to
3109 avoid switching to a buffer that is already visible in another
3110 window on the same frame."
3111 :type 'boolean
3112 :version "24.1"
3113 :group 'windows)
3115 (defun switch-to-prev-buffer (&optional window bury-or-kill)
3116 "In WINDOW switch to previous buffer.
3117 WINDOW must be a live window and defaults to the selected one.
3118 Return the buffer switched to, nil if no suitable buffer could be
3119 found.
3121 Optional argument BURY-OR-KILL non-nil means the buffer currently
3122 shown in WINDOW is about to be buried or killed and consequently
3123 shall not be switched to in future invocations of this command.
3125 As a special case, if BURY-OR-KILL equals `append', this means to
3126 move the buffer to the end of WINDOW's previous buffers list so a
3127 future invocation of `switch-to-prev-buffer' less likely switches
3128 to it."
3129 (interactive)
3130 (let* ((window (window-normalize-window window t))
3131 (frame (window-frame window))
3132 (old-buffer (window-buffer window))
3133 ;; Save this since it's destroyed by `set-window-buffer'.
3134 (next-buffers (window-next-buffers window))
3135 (pred (frame-parameter frame 'buffer-predicate))
3136 entry new-buffer killed-buffers visible)
3137 (when (window-minibuffer-p window)
3138 ;; Don't switch in minibuffer window.
3139 (unless (setq window (minibuffer-selected-window))
3140 (error "Window %s is a minibuffer window" window)))
3142 (when (window-dedicated-p window)
3143 ;; Don't switch in dedicated window.
3144 (error "Window %s is dedicated to buffer %s" window old-buffer))
3146 (catch 'found
3147 ;; Scan WINDOW's previous buffers first, skipping entries of next
3148 ;; buffers.
3149 (dolist (entry (window-prev-buffers window))
3150 (when (and (setq new-buffer (car entry))
3151 (or (buffer-live-p new-buffer)
3152 (not (setq killed-buffers
3153 (cons new-buffer killed-buffers))))
3154 (not (eq new-buffer old-buffer))
3155 (or (null pred) (funcall pred new-buffer))
3156 ;; When BURY-OR-KILL is nil, avoid switching to a
3157 ;; buffer in WINDOW's next buffers list.
3158 (or bury-or-kill (not (memq new-buffer next-buffers))))
3159 (if (and (not switch-to-visible-buffer)
3160 (get-buffer-window new-buffer frame))
3161 ;; Try to avoid showing a buffer visible in some other
3162 ;; window.
3163 (setq visible new-buffer)
3164 (set-window-buffer-start-and-point
3165 window new-buffer (nth 1 entry) (nth 2 entry))
3166 (throw 'found t))))
3167 ;; Scan reverted buffer list of WINDOW's frame next, skipping
3168 ;; entries of next buffers. Note that when we bury or kill a
3169 ;; buffer we don't reverse the global buffer list to avoid showing
3170 ;; a buried buffer instead. Otherwise, we must reverse the global
3171 ;; buffer list in order to make sure that switching to the
3172 ;; previous/next buffer traverse it in opposite directions.
3173 (dolist (buffer (if bury-or-kill
3174 (buffer-list frame)
3175 (nreverse (buffer-list frame))))
3176 (when (and (buffer-live-p buffer)
3177 (not (eq buffer old-buffer))
3178 (or (null pred) (funcall pred buffer))
3179 (not (eq (aref (buffer-name buffer) 0) ?\s))
3180 (or bury-or-kill (not (memq buffer next-buffers))))
3181 (if (get-buffer-window buffer frame)
3182 ;; Try to avoid showing a buffer visible in some other window.
3183 (unless visible
3184 (setq visible buffer))
3185 (setq new-buffer buffer)
3186 (set-window-buffer-start-and-point window new-buffer)
3187 (throw 'found t))))
3188 (unless bury-or-kill
3189 ;; Scan reverted next buffers last (must not use nreverse
3190 ;; here!).
3191 (dolist (buffer (reverse next-buffers))
3192 ;; Actually, buffer _must_ be live here since otherwise it
3193 ;; would have been caught in the scan of previous buffers.
3194 (when (and (or (buffer-live-p buffer)
3195 (not (setq killed-buffers
3196 (cons buffer killed-buffers))))
3197 (not (eq buffer old-buffer))
3198 (or (null pred) (funcall pred buffer))
3199 (setq entry (assq buffer (window-prev-buffers window))))
3200 (setq new-buffer buffer)
3201 (set-window-buffer-start-and-point
3202 window new-buffer (nth 1 entry) (nth 2 entry))
3203 (throw 'found t))))
3205 ;; Show a buffer visible in another window.
3206 (when visible
3207 (setq new-buffer visible)
3208 (set-window-buffer-start-and-point window new-buffer)))
3210 (if bury-or-kill
3211 (let ((entry (and (eq bury-or-kill 'append)
3212 (assq old-buffer (window-prev-buffers window)))))
3213 ;; Remove `old-buffer' from WINDOW's previous and (restored list
3214 ;; of) next buffers.
3215 (set-window-prev-buffers
3216 window (assq-delete-all old-buffer (window-prev-buffers window)))
3217 (set-window-next-buffers window (delq old-buffer next-buffers))
3218 (when entry
3219 ;; Append old-buffer's entry to list of WINDOW's previous
3220 ;; buffers so it's less likely to get switched to soon but
3221 ;; `display-buffer-in-previous-window' can nevertheless find
3222 ;; it.
3223 (set-window-prev-buffers
3224 window (append (window-prev-buffers window) (list entry)))))
3225 ;; Move `old-buffer' to head of WINDOW's restored list of next
3226 ;; buffers.
3227 (set-window-next-buffers
3228 window (cons old-buffer (delq old-buffer next-buffers))))
3230 ;; Remove killed buffers from WINDOW's previous and next buffers.
3231 (when killed-buffers
3232 (dolist (buffer killed-buffers)
3233 (set-window-prev-buffers
3234 window (assq-delete-all buffer (window-prev-buffers window)))
3235 (set-window-next-buffers
3236 window (delq buffer (window-next-buffers window)))))
3238 ;; Return new-buffer.
3239 new-buffer))
3241 (defun switch-to-next-buffer (&optional window)
3242 "In WINDOW switch to next buffer.
3243 WINDOW must be a live window and defaults to the selected one.
3244 Return the buffer switched to, nil if no suitable buffer could be
3245 found."
3246 (interactive)
3247 (let* ((window (window-normalize-window window t))
3248 (frame (window-frame window))
3249 (old-buffer (window-buffer window))
3250 (next-buffers (window-next-buffers window))
3251 (pred (frame-parameter frame 'buffer-predicate))
3252 new-buffer entry killed-buffers visible)
3253 (when (window-minibuffer-p window)
3254 ;; Don't switch in minibuffer window.
3255 (unless (setq window (minibuffer-selected-window))
3256 (error "Window %s is a minibuffer window" window)))
3258 (when (window-dedicated-p window)
3259 ;; Don't switch in dedicated window.
3260 (error "Window %s is dedicated to buffer %s" window old-buffer))
3262 (catch 'found
3263 ;; Scan WINDOW's next buffers first.
3264 (dolist (buffer next-buffers)
3265 (when (and (or (buffer-live-p buffer)
3266 (not (setq killed-buffers
3267 (cons buffer killed-buffers))))
3268 (not (eq buffer old-buffer))
3269 (or (null pred) (funcall pred buffer))
3270 (setq entry (assq buffer (window-prev-buffers window))))
3271 (setq new-buffer buffer)
3272 (set-window-buffer-start-and-point
3273 window new-buffer (nth 1 entry) (nth 2 entry))
3274 (throw 'found t)))
3275 ;; Scan the buffer list of WINDOW's frame next, skipping previous
3276 ;; buffers entries.
3277 (dolist (buffer (buffer-list frame))
3278 (when (and (buffer-live-p buffer)
3279 (not (eq buffer old-buffer))
3280 (or (null pred) (funcall pred buffer))
3281 (not (eq (aref (buffer-name buffer) 0) ?\s))
3282 (not (assq buffer (window-prev-buffers window))))
3283 (if (get-buffer-window buffer frame)
3284 ;; Try to avoid showing a buffer visible in some other window.
3285 (setq visible buffer)
3286 (setq new-buffer buffer)
3287 (set-window-buffer-start-and-point window new-buffer)
3288 (throw 'found t))))
3289 ;; Scan WINDOW's reverted previous buffers last (must not use
3290 ;; nreverse here!)
3291 (dolist (entry (reverse (window-prev-buffers window)))
3292 (when (and (setq new-buffer (car entry))
3293 (or (buffer-live-p new-buffer)
3294 (not (setq killed-buffers
3295 (cons new-buffer killed-buffers))))
3296 (not (eq new-buffer old-buffer))
3297 (or (null pred) (funcall pred new-buffer)))
3298 (if (and (not switch-to-visible-buffer)
3299 (get-buffer-window new-buffer frame))
3300 ;; Try to avoid showing a buffer visible in some other window.
3301 (unless visible
3302 (setq visible new-buffer))
3303 (set-window-buffer-start-and-point
3304 window new-buffer (nth 1 entry) (nth 2 entry))
3305 (throw 'found t))))
3307 ;; Show a buffer visible in another window.
3308 (when visible
3309 (setq new-buffer visible)
3310 (set-window-buffer-start-and-point window new-buffer)))
3312 ;; Remove `new-buffer' from and restore WINDOW's next buffers.
3313 (set-window-next-buffers window (delq new-buffer next-buffers))
3315 ;; Remove killed buffers from WINDOW's previous and next buffers.
3316 (when killed-buffers
3317 (dolist (buffer killed-buffers)
3318 (set-window-prev-buffers
3319 window (assq-delete-all buffer (window-prev-buffers window)))
3320 (set-window-next-buffers
3321 window (delq buffer (window-next-buffers window)))))
3323 ;; Return new-buffer.
3324 new-buffer))
3326 (defun get-next-valid-buffer (list &optional buffer visible-ok frame)
3327 "Search LIST for a valid buffer to display in FRAME.
3328 Return nil when all buffers in LIST are undesirable for display,
3329 otherwise return the first suitable buffer in LIST.
3331 Buffers not visible in windows are preferred to visible buffers,
3332 unless VISIBLE-OK is non-nil.
3333 If the optional argument FRAME is nil, it defaults to the selected frame.
3334 If BUFFER is non-nil, ignore occurrences of that buffer in LIST."
3335 ;; This logic is more or less copied from other-buffer.
3336 (setq frame (or frame (selected-frame)))
3337 (let ((pred (frame-parameter frame 'buffer-predicate))
3338 found buf)
3339 (while (and (not found) list)
3340 (setq buf (car list))
3341 (if (and (not (eq buffer buf))
3342 (buffer-live-p buf)
3343 (or (null pred) (funcall pred buf))
3344 (not (eq (aref (buffer-name buf) 0) ?\s))
3345 (or visible-ok (null (get-buffer-window buf 'visible))))
3346 (setq found buf)
3347 (setq list (cdr list))))
3348 (car list)))
3350 (defun last-buffer (&optional buffer visible-ok frame)
3351 "Return the last buffer in FRAME's buffer list.
3352 If BUFFER is the last buffer, return the preceding buffer
3353 instead. Buffers not visible in windows are preferred to visible
3354 buffers, unless optional argument VISIBLE-OK is non-nil.
3355 Optional third argument FRAME nil or omitted means use the
3356 selected frame's buffer list. If no such buffer exists, return
3357 the buffer `*scratch*', creating it if necessary."
3358 (setq frame (or frame (selected-frame)))
3359 (or (get-next-valid-buffer (nreverse (buffer-list frame))
3360 buffer visible-ok frame)
3361 (get-buffer "*scratch*")
3362 (let ((scratch (get-buffer-create "*scratch*")))
3363 (set-buffer-major-mode scratch)
3364 scratch)))
3366 (defcustom frame-auto-hide-function #'iconify-frame
3367 "Function called to automatically hide frames.
3368 The function is called with one argument - a frame.
3370 Functions affected by this option are those that bury a buffer
3371 shown in a separate frame like `quit-window' and `bury-buffer'."
3372 :type '(choice (const :tag "Iconify" iconify-frame)
3373 (const :tag "Delete" delete-frame)
3374 (const :tag "Do nothing" ignore)
3375 function)
3376 :group 'windows
3377 :group 'frames
3378 :version "24.1")
3380 (defun window--delete (&optional window dedicated-only kill)
3381 "Delete WINDOW if possible.
3382 WINDOW must be a live window and defaults to the selected one.
3383 Optional argument DEDICATED-ONLY non-nil means to delete WINDOW
3384 only if it's dedicated to its buffer. Optional argument KILL
3385 means the buffer shown in window will be killed. Return non-nil
3386 if WINDOW gets deleted or its frame is auto-hidden."
3387 (setq window (window-normalize-window window t))
3388 (unless (and dedicated-only (not (window-dedicated-p window)))
3389 (let ((deletable (window-deletable-p window)))
3390 (cond
3391 ((eq deletable 'frame)
3392 (let ((frame (window-frame window)))
3393 (cond
3394 (kill
3395 (delete-frame frame))
3396 ((functionp frame-auto-hide-function)
3397 (funcall frame-auto-hide-function frame))))
3398 'frame)
3399 (deletable
3400 (delete-window window)
3401 t)))))
3403 (defun bury-buffer (&optional buffer-or-name)
3404 "Put BUFFER-OR-NAME at the end of the list of all buffers.
3405 There it is the least likely candidate for `other-buffer' to
3406 return; thus, the least likely buffer for \\[switch-to-buffer] to
3407 select by default.
3409 You can specify a buffer name as BUFFER-OR-NAME, or an actual
3410 buffer object. If BUFFER-OR-NAME is nil or omitted, bury the
3411 current buffer. Also, if BUFFER-OR-NAME is nil or omitted,
3412 remove the current buffer from the selected window if it is
3413 displayed there."
3414 (interactive)
3415 (let* ((buffer (window-normalize-buffer buffer-or-name)))
3416 ;; If `buffer-or-name' is not on the selected frame we unrecord it
3417 ;; although it's not "here" (call it a feature).
3418 (bury-buffer-internal buffer)
3419 ;; Handle case where `buffer-or-name' is nil and the current buffer
3420 ;; is shown in the selected window.
3421 (cond
3422 ((or buffer-or-name (not (eq buffer (window-buffer)))))
3423 ((window--delete nil t))
3425 ;; Switch to another buffer in window.
3426 (set-window-dedicated-p nil nil)
3427 (switch-to-prev-buffer nil 'bury)))
3429 ;; Always return nil.
3430 nil))
3432 (defun unbury-buffer ()
3433 "Switch to the last buffer in the buffer list."
3434 (interactive)
3435 (switch-to-buffer (last-buffer)))
3437 (defun next-buffer ()
3438 "In selected window switch to next buffer."
3439 (interactive)
3440 (cond
3441 ((window-minibuffer-p)
3442 (error "Cannot switch buffers in minibuffer window"))
3443 ((eq (window-dedicated-p) t)
3444 (error "Window is strongly dedicated to its buffer"))
3446 (switch-to-next-buffer))))
3448 (defun previous-buffer ()
3449 "In selected window switch to previous buffer."
3450 (interactive)
3451 (cond
3452 ((window-minibuffer-p)
3453 (error "Cannot switch buffers in minibuffer window"))
3454 ((eq (window-dedicated-p) t)
3455 (error "Window is strongly dedicated to its buffer"))
3457 (switch-to-prev-buffer))))
3459 (defun delete-windows-on (&optional buffer-or-name frame)
3460 "Delete all windows showing BUFFER-OR-NAME.
3461 BUFFER-OR-NAME may be a buffer or the name of an existing buffer
3462 and defaults to the current buffer.
3464 The following non-nil values of the optional argument FRAME
3465 have special meanings:
3467 - t means consider all windows on the selected frame only.
3469 - `visible' means consider all windows on all visible frames on
3470 the current terminal.
3472 - 0 (the number zero) means consider all windows on all visible
3473 and iconified frames on the current terminal.
3475 - A frame means consider all windows on that frame only.
3477 Any other value of FRAME means consider all windows on all
3478 frames.
3480 When a window showing BUFFER-OR-NAME is dedicated and the only
3481 window of its frame, that frame is deleted when there are other
3482 frames left."
3483 (interactive "BDelete windows on (buffer):\nP")
3484 (let ((buffer (window-normalize-buffer buffer-or-name))
3485 ;; Handle the "inverted" meaning of the FRAME argument wrt other
3486 ;; `window-list-1' based function.
3487 (all-frames (cond ((not frame) t) ((eq frame t) nil) (t frame))))
3488 (dolist (window (window-list-1 nil nil all-frames))
3489 (if (eq (window-buffer window) buffer)
3490 (let ((deletable (window-deletable-p window)))
3491 (cond
3492 ((and (eq deletable 'frame) (window-dedicated-p window))
3493 ;; Delete frame if and only if window is dedicated.
3494 (delete-frame (window-frame window)))
3495 ((eq deletable t)
3496 ;; Delete window.
3497 (delete-window window))
3499 ;; In window switch to previous buffer.
3500 (set-window-dedicated-p window nil)
3501 (switch-to-prev-buffer window 'bury))))
3502 ;; If a window doesn't show BUFFER, unrecord BUFFER in it.
3503 (unrecord-window-buffer window buffer)))))
3505 (defun replace-buffer-in-windows (&optional buffer-or-name)
3506 "Replace BUFFER-OR-NAME with some other buffer in all windows showing it.
3507 BUFFER-OR-NAME may be a buffer or the name of an existing buffer
3508 and defaults to the current buffer.
3510 When a window showing BUFFER-OR-NAME is dedicated, that window is
3511 deleted. If that window is the only window on its frame, the
3512 frame is deleted too when there are other frames left. If there
3513 are no other frames left, some other buffer is displayed in that
3514 window.
3516 This function removes the buffer denoted by BUFFER-OR-NAME from
3517 all window-local buffer lists."
3518 (interactive "bBuffer to replace: ")
3519 (let ((buffer (window-normalize-buffer buffer-or-name)))
3520 (dolist (window (window-list-1 nil nil t))
3521 (if (eq (window-buffer window) buffer)
3522 (unless (window--delete window t t)
3523 ;; Switch to another buffer in window.
3524 (set-window-dedicated-p window nil)
3525 (switch-to-prev-buffer window 'kill))
3526 ;; Unrecord BUFFER in WINDOW.
3527 (unrecord-window-buffer window buffer)))))
3529 (defun quit-restore-window (&optional window bury-or-kill)
3530 "Quit WINDOW and deal with its buffer.
3531 WINDOW must be a live window and defaults to the selected one.
3533 According to information stored in WINDOW's `quit-restore' window
3534 parameter either (1) delete WINDOW and its frame, (2) delete
3535 WINDOW, (3) restore the buffer previously displayed in WINDOW,
3536 or (4) make WINDOW display some other buffer than the present
3537 one. If non-nil, reset `quit-restore' parameter to nil.
3539 Optional second argument BURY-OR-KILL tells how to proceed with
3540 the buffer of WINDOW. The following values are handled:
3542 `nil' means to not handle the buffer in a particular way. This
3543 means that if WINDOW is not deleted by this function, invoking
3544 `switch-to-prev-buffer' will usually show the buffer again.
3546 `append' means that if WINDOW is not deleted, move its buffer to
3547 the end of WINDOW's previous buffers so it's less likely that a
3548 future invocation of `switch-to-prev-buffer' will switch to it.
3549 Also, move the buffer to the end of the frame's buffer list.
3551 `bury' means that if WINDOW is not deleted, remove its buffer
3552 from WINDOW'S list of previous buffers. Also, move the buffer
3553 to the end of the frame's buffer list. This value provides the
3554 most reliable remedy to not have `switch-to-prev-buffer' switch
3555 to this buffer again without killing the buffer.
3557 `kill' means to kill WINDOW's buffer."
3558 (setq window (window-normalize-window window t))
3559 (let* ((buffer (window-buffer window))
3560 (quit-restore (window-parameter window 'quit-restore))
3561 (prev-buffer
3562 (let* ((prev-buffers (window-prev-buffers window))
3563 (prev-buffer (caar prev-buffers)))
3564 (and (or (not (eq prev-buffer buffer))
3565 (and (cdr prev-buffers)
3566 (not (eq (setq prev-buffer (cadr prev-buffers))
3567 buffer))))
3568 prev-buffer)))
3569 quad entry)
3570 (cond
3571 ((and (not prev-buffer)
3572 (or (eq (nth 1 quit-restore) 'frame)
3573 (and (eq (nth 1 quit-restore) 'window)
3574 ;; If the window has been created on an existing
3575 ;; frame and ended up as the sole window on that
3576 ;; frame, do not delete it (Bug#12764).
3577 (not (eq window (frame-root-window window)))))
3578 (eq (nth 3 quit-restore) buffer)
3579 ;; Delete WINDOW if possible.
3580 (window--delete window nil (eq bury-or-kill 'kill)))
3581 ;; If the previously selected window is still alive, select it.
3582 (when (window-live-p (nth 2 quit-restore))
3583 (select-window (nth 2 quit-restore))))
3584 ((and (listp (setq quad (nth 1 quit-restore)))
3585 (buffer-live-p (car quad))
3586 (eq (nth 3 quit-restore) buffer))
3587 ;; Show another buffer stored in quit-restore parameter.
3588 (when (and (integerp (nth 3 quad))
3589 (/= (nth 3 quad) (window-total-size window)))
3590 ;; Try to resize WINDOW to its old height but don't signal an
3591 ;; error.
3592 (condition-case nil
3593 (window-resize window (- (nth 3 quad) (window-total-size window)))
3594 (error nil)))
3595 (set-window-dedicated-p window nil)
3596 ;; Restore WINDOW's previous buffer, start and point position.
3597 (set-window-buffer-start-and-point
3598 window (nth 0 quad) (nth 1 quad) (nth 2 quad))
3599 ;; Deal with the buffer we just removed from WINDOW.
3600 (setq entry (and (eq bury-or-kill 'append)
3601 (assq buffer (window-prev-buffers window))))
3602 (when bury-or-kill
3603 ;; Remove buffer from WINDOW's previous and next buffers.
3604 (set-window-prev-buffers
3605 window (assq-delete-all buffer (window-prev-buffers window)))
3606 (set-window-next-buffers
3607 window (delq buffer (window-next-buffers window))))
3608 (when entry
3609 ;; Append old buffer's entry to list of WINDOW's previous
3610 ;; buffers so it's less likely to get switched to soon but
3611 ;; `display-buffer-in-previous-window' can nevertheless find it.
3612 (set-window-prev-buffers
3613 window (append (window-prev-buffers window) (list entry))))
3614 ;; Reset the quit-restore parameter.
3615 (set-window-parameter window 'quit-restore nil)
3616 ;; Select old window.
3617 (when (window-live-p (nth 2 quit-restore))
3618 (select-window (nth 2 quit-restore))))
3620 ;; Show some other buffer in WINDOW and reset the quit-restore
3621 ;; parameter.
3622 (set-window-parameter window 'quit-restore nil)
3623 ;; Make sure that WINDOW is no more dedicated.
3624 (set-window-dedicated-p window nil)
3625 (switch-to-prev-buffer window bury-or-kill)))
3627 ;; Deal with the buffer.
3628 (cond
3629 ((not (buffer-live-p buffer)))
3630 ((eq bury-or-kill 'kill)
3631 (kill-buffer buffer))
3632 (bury-or-kill
3633 (bury-buffer-internal buffer)))))
3635 (defun quit-window (&optional kill window)
3636 "Quit WINDOW and bury its buffer.
3637 WINDOW must be a live window and defaults to the selected one.
3638 With prefix argument KILL non-nil, kill the buffer instead of
3639 burying it.
3641 According to information stored in WINDOW's `quit-restore' window
3642 parameter either (1) delete WINDOW and its frame, (2) delete
3643 WINDOW, (3) restore the buffer previously displayed in WINDOW,
3644 or (4) make WINDOW display some other buffer than the present
3645 one. If non-nil, reset `quit-restore' parameter to nil."
3646 (interactive "P")
3647 (quit-restore-window window (if kill 'kill 'bury)))
3649 (defun quit-windows-on (&optional buffer-or-name kill frame)
3650 "Quit all windows showing BUFFER-OR-NAME.
3651 BUFFER-OR-NAME may be a buffer or the name of an existing buffer
3652 and defaults to the current buffer. Optional argument KILL
3653 non-nil means to kill BUFFER-OR-NAME. KILL nil means to bury
3654 BUFFER-OR-NAME. Optional argument FRAME is handled as by
3655 `delete-windows-on'.
3657 This function calls `quit-window' on all candidate windows
3658 showing BUFFER-OR-NAME."
3659 (interactive "BQuit windows on (buffer):\nP")
3660 (let ((buffer (window-normalize-buffer buffer-or-name))
3661 ;; Handle the "inverted" meaning of the FRAME argument wrt other
3662 ;; `window-list-1' based function.
3663 (all-frames (cond ((not frame) t) ((eq frame t) nil) (t frame))))
3664 (dolist (window (window-list-1 nil nil all-frames))
3665 (if (eq (window-buffer window) buffer)
3666 (quit-window kill window)
3667 ;; If a window doesn't show BUFFER, unrecord BUFFER in it.
3668 (unrecord-window-buffer window buffer)))))
3670 ;;; Splitting windows.
3671 (defun window-split-min-size (&optional horizontal)
3672 "Return minimum height of any window when splitting windows.
3673 Optional argument HORIZONTAL non-nil means return minimum width."
3674 (if horizontal
3675 (max window-min-width window-safe-min-width)
3676 (max window-min-height window-safe-min-height)))
3678 (defun split-window (&optional window size side)
3679 "Make a new window adjacent to WINDOW.
3680 WINDOW must be a valid window and defaults to the selected one.
3681 Return the new window which is always a live window.
3683 Optional argument SIZE a positive number means make WINDOW SIZE
3684 lines or columns tall. If SIZE is negative, make the new window
3685 -SIZE lines or columns tall. If and only if SIZE is non-nil, its
3686 absolute value can be less than `window-min-height' or
3687 `window-min-width'; so this command can make a new window as
3688 small as one line or two columns. SIZE defaults to half of
3689 WINDOW's size. Interactively, SIZE is the prefix argument.
3691 Optional third argument SIDE nil (or `below') specifies that the
3692 new window shall be located below WINDOW. SIDE `above' means the
3693 new window shall be located above WINDOW. In both cases SIZE
3694 specifies the new number of lines for WINDOW (or the new window
3695 if SIZE is negative) including space reserved for the mode and/or
3696 header line.
3698 SIDE t (or `right') specifies that the new window shall be
3699 located on the right side of WINDOW. SIDE `left' means the new
3700 window shall be located on the left of WINDOW. In both cases
3701 SIZE specifies the new number of columns for WINDOW (or the new
3702 window provided SIZE is negative) including space reserved for
3703 fringes and the scrollbar or a divider column. Any other non-nil
3704 value for SIDE is currently handled like t (or `right').
3706 If the variable `ignore-window-parameters' is non-nil or the
3707 `split-window' parameter of WINDOW equals t, do not process any
3708 parameters of WINDOW. Otherwise, if the `split-window' parameter
3709 of WINDOW specifies a function, call that function with all three
3710 arguments and return the value returned by that function.
3712 Otherwise, if WINDOW is part of an atomic window, \"split\" the
3713 root of that atomic window. The new window does not become a
3714 member of that atomic window.
3716 If WINDOW is live, properties of the new window like margins and
3717 scrollbars are inherited from WINDOW. If WINDOW is an internal
3718 window, these properties as well as the buffer displayed in the
3719 new window are inherited from the window selected on WINDOW's
3720 frame. The selected window is not changed by this function."
3721 (interactive "i")
3722 (setq window (window-normalize-window window))
3723 (let* ((side (cond
3724 ((not side) 'below)
3725 ((memq side '(below above right left)) side)
3726 (t 'right)))
3727 (horizontal (not (memq side '(below above))))
3728 (frame (window-frame window))
3729 (parent (window-parent window))
3730 (function (window-parameter window 'split-window))
3731 (window-side (window-parameter window 'window-side))
3732 ;; Rebind the following two variables since in some cases we
3733 ;; have to override their value.
3734 (window-combination-limit window-combination-limit)
3735 (window-combination-resize window-combination-resize)
3736 atom-root)
3738 (window--check frame)
3739 (catch 'done
3740 (cond
3741 ;; Ignore window parameters if either `ignore-window-parameters'
3742 ;; is t or the `split-window' parameter equals t.
3743 ((or ignore-window-parameters (eq function t)))
3744 ((functionp function)
3745 ;; The `split-window' parameter specifies the function to call.
3746 ;; If that function is `ignore', do nothing.
3747 (throw 'done (funcall function window size side)))
3748 ;; If WINDOW is part of an atomic window, split the root window
3749 ;; of that atomic window instead.
3750 ((and (window-parameter window 'window-atom)
3751 (setq atom-root (window-atom-root window))
3752 (not (eq atom-root window)))
3753 (throw 'done (split-window atom-root size side)))
3754 ;; If WINDOW is a side window or its first or last child is a
3755 ;; side window, throw an error unless `window-combination-resize'
3756 ;; equals 'side.
3757 ((and (not (eq window-combination-resize 'side))
3758 (or (window-parameter window 'window-side)
3759 (and (window-child window)
3760 (or (window-parameter
3761 (window-child window) 'window-side)
3762 (window-parameter
3763 (window-last-child window) 'window-side)))))
3764 (error "Cannot split side window or parent of side window"))
3765 ;; If `window-combination-resize' is 'side and window has a side
3766 ;; window sibling, bind `window-combination-limit' to t.
3767 ((and (not (eq window-combination-resize 'side))
3768 (or (and (window-prev-sibling window)
3769 (window-parameter
3770 (window-prev-sibling window) 'window-side))
3771 (and (window-next-sibling window)
3772 (window-parameter
3773 (window-next-sibling window) 'window-side))))
3774 (setq window-combination-limit t)))
3776 ;; If `window-combination-resize' is t and SIZE is non-negative,
3777 ;; bind `window-combination-limit' to t.
3778 (when (and (eq window-combination-resize t) size (> size 0))
3779 (setq window-combination-limit t))
3781 (let* ((parent-size
3782 ;; `parent-size' is the size of WINDOW's parent, provided
3783 ;; it has one.
3784 (when parent (window-total-size parent horizontal)))
3785 ;; `resize' non-nil means we are supposed to resize other
3786 ;; windows in WINDOW's combination.
3787 (resize
3788 (and window-combination-resize
3789 (or (window-parameter window 'window-side)
3790 (not (eq window-combination-resize 'side)))
3791 (not (eq window-combination-limit t))
3792 ;; Resize makes sense in iso-combinations only.
3793 (window-combined-p window horizontal)))
3794 ;; `old-size' is the current size of WINDOW.
3795 (old-size (window-total-size window horizontal))
3796 ;; `new-size' is the specified or calculated size of the
3797 ;; new window.
3798 (new-size
3799 (cond
3800 ((not size)
3801 (max (window-split-min-size horizontal)
3802 (if resize
3803 ;; When resizing try to give the new window the
3804 ;; average size of a window in its combination.
3805 (min (- parent-size
3806 (window-min-size parent horizontal))
3807 (/ parent-size
3808 (1+ (window-combinations
3809 parent horizontal))))
3810 ;; Else try to give the new window half the size
3811 ;; of WINDOW (plus an eventual odd line).
3812 (+ (/ old-size 2) (% old-size 2)))))
3813 ((>= size 0)
3814 ;; SIZE non-negative specifies the new size of WINDOW.
3816 ;; Note: Specifying a non-negative SIZE is practically
3817 ;; always done as workaround for making the new window
3818 ;; appear above or on the left of the new window (the
3819 ;; ispell window is a typical example of that). In all
3820 ;; these cases the SIDE argument should be set to 'above
3821 ;; or 'left in order to support the 'resize option.
3822 ;; Here we have to nest the windows instead, see above.
3823 (- old-size size))
3825 ;; SIZE negative specifies the size of the new window.
3826 (- size))))
3827 new-parent new-normal)
3829 ;; Check SIZE.
3830 (cond
3831 ((not size)
3832 (cond
3833 (resize
3834 ;; SIZE unspecified, resizing.
3835 (when (and (not (window-sizable-p parent (- new-size) horizontal))
3836 ;; Try again with minimum split size.
3837 (setq new-size
3838 (max new-size (window-split-min-size horizontal)))
3839 (not (window-sizable-p parent (- new-size) horizontal)))
3840 (error "Window %s too small for splitting" parent)))
3841 ((> (+ new-size (window-min-size window horizontal)) old-size)
3842 ;; SIZE unspecified, no resizing.
3843 (error "Window %s too small for splitting" window))))
3844 ((and (>= size 0)
3845 (or (>= size old-size)
3846 (< new-size (if horizontal
3847 window-safe-min-width
3848 window-safe-min-width))))
3849 ;; SIZE specified as new size of old window. If the new size
3850 ;; is larger than the old size or the size of the new window
3851 ;; would be less than the safe minimum, signal an error.
3852 (error "Window %s too small for splitting" window))
3853 (resize
3854 ;; SIZE specified, resizing.
3855 (unless (window-sizable-p parent (- new-size) horizontal)
3856 ;; If we cannot resize the parent give up.
3857 (error "Window %s too small for splitting" parent)))
3858 ((or (< new-size
3859 (if horizontal window-safe-min-width window-safe-min-height))
3860 (< (- old-size new-size)
3861 (if horizontal window-safe-min-width window-safe-min-height)))
3862 ;; SIZE specification violates minimum size restrictions.
3863 (error "Window %s too small for splitting" window)))
3865 (window--resize-reset frame horizontal)
3867 (setq new-parent
3868 ;; Make new-parent non-nil if we need a new parent window;
3869 ;; either because we want to nest or because WINDOW is not
3870 ;; iso-combined.
3871 (or (eq window-combination-limit t)
3872 (not (window-combined-p window horizontal))))
3873 (setq new-normal
3874 ;; Make new-normal the normal size of the new window.
3875 (cond
3876 (size (/ (float new-size) (if new-parent old-size parent-size)))
3877 (new-parent 0.5)
3878 (resize (/ 1.0 (1+ (window-combinations parent horizontal))))
3879 (t (/ (window-normal-size window horizontal) 2.0))))
3881 (if resize
3882 ;; Try to get space from OLD's siblings. We could go "up" and
3883 ;; try getting additional space from surrounding windows but
3884 ;; we won't be able to return space to those windows when we
3885 ;; delete the one we create here. Hence we do not go up.
3886 (progn
3887 (window--resize-child-windows parent (- new-size) horizontal)
3888 (let* ((normal (- 1.0 new-normal))
3889 (sub (window-child parent)))
3890 (while sub
3891 (set-window-new-normal
3892 sub (* (window-normal-size sub horizontal) normal))
3893 (setq sub (window-right sub)))))
3894 ;; Get entire space from WINDOW.
3895 (set-window-new-total window (- old-size new-size))
3896 (window--resize-this-window window (- new-size) horizontal)
3897 (set-window-new-normal
3898 window (- (if new-parent 1.0 (window-normal-size window horizontal))
3899 new-normal)))
3901 (let* ((new (split-window-internal window new-size side new-normal)))
3902 ;; Assign window-side parameters, if any.
3903 (when (eq window-combination-resize 'side)
3904 (let ((window-side
3905 (cond
3906 (window-side window-side)
3907 ((eq side 'above) 'top)
3908 ((eq side 'below) 'bottom)
3909 (t side))))
3910 ;; We made a new side window.
3911 (set-window-parameter new 'window-side window-side)
3912 (when (and new-parent (window-parameter window 'window-side))
3913 ;; We've been splitting a side root window. Give the
3914 ;; new parent the same window-side parameter.
3915 (set-window-parameter
3916 (window-parent new) 'window-side window-side))))
3918 (run-window-configuration-change-hook frame)
3919 (window--check frame)
3920 ;; Always return the new window.
3921 new)))))
3923 ;; I think this should be the default; I think people will prefer it--rms.
3924 (defcustom split-window-keep-point t
3925 "If non-nil, \\[split-window-below] preserves point in the new window.
3926 If nil, adjust point in the two windows to minimize redisplay.
3927 This option applies only to `split-window-below' and functions
3928 that call it. The low-level `split-window' function always keeps
3929 the original point in both windows."
3930 :type 'boolean
3931 :group 'windows)
3933 (defun split-window-below (&optional size)
3934 "Split the selected window into two windows, one above the other.
3935 The selected window is above. The newly split-off window is
3936 below, and displays the same buffer. Return the new window.
3938 If optional argument SIZE is omitted or nil, both windows get the
3939 same height, or close to it. If SIZE is positive, the upper
3940 \(selected) window gets SIZE lines. If SIZE is negative, the
3941 lower (new) window gets -SIZE lines.
3943 If the variable `split-window-keep-point' is non-nil, both
3944 windows get the same value of point as the selected window.
3945 Otherwise, the window starts are chosen so as to minimize the
3946 amount of redisplay; this is convenient on slow terminals."
3947 (interactive "P")
3948 (let ((old-window (selected-window))
3949 (old-point (window-point))
3950 (size (and size (prefix-numeric-value size)))
3951 moved-by-window-height moved new-window bottom)
3952 (when (and size (< size 0) (< (- size) window-min-height))
3953 ;; `split-window' would not signal an error here.
3954 (error "Size of new window too small"))
3955 (setq new-window (split-window nil size))
3956 (unless split-window-keep-point
3957 (with-current-buffer (window-buffer)
3958 ;; Use `save-excursion' around vertical movements below
3959 ;; (Bug#10971). Note: When the selected window's buffer has a
3960 ;; header line, up to two lines of the buffer may not show up
3961 ;; in the resulting configuration.
3962 (save-excursion
3963 (goto-char (window-start))
3964 (setq moved (vertical-motion (window-height)))
3965 (set-window-start new-window (point))
3966 (when (> (point) (window-point new-window))
3967 (set-window-point new-window (point)))
3968 (when (= moved (window-height))
3969 (setq moved-by-window-height t)
3970 (vertical-motion -1))
3971 (setq bottom (point)))
3972 (and moved-by-window-height
3973 (<= bottom (point))
3974 (set-window-point old-window (1- bottom)))
3975 (and moved-by-window-height
3976 (<= (window-start new-window) old-point)
3977 (set-window-point new-window old-point)
3978 (select-window new-window))))
3979 ;; Always copy quit-restore parameter in interactive use.
3980 (let ((quit-restore (window-parameter old-window 'quit-restore)))
3981 (when quit-restore
3982 (set-window-parameter new-window 'quit-restore quit-restore)))
3983 new-window))
3985 (defalias 'split-window-vertically 'split-window-below)
3987 (defun split-window-right (&optional size)
3988 "Split the selected window into two side-by-side windows.
3989 The selected window is on the left. The newly split-off window
3990 is on the right, and displays the same buffer. Return the new
3991 window.
3993 If optional argument SIZE is omitted or nil, both windows get the
3994 same width, or close to it. If SIZE is positive, the left-hand
3995 \(selected) window gets SIZE columns. If SIZE is negative, the
3996 right-hand (new) window gets -SIZE columns. Here, SIZE includes
3997 the width of the window's scroll bar; if there are no scroll
3998 bars, it includes the width of the divider column to the window's
3999 right, if any."
4000 (interactive "P")
4001 (let ((old-window (selected-window))
4002 (size (and size (prefix-numeric-value size)))
4003 new-window)
4004 (when (and size (< size 0) (< (- size) window-min-width))
4005 ;; `split-window' would not signal an error here.
4006 (error "Size of new window too small"))
4007 (setq new-window (split-window nil size t))
4008 ;; Always copy quit-restore parameter in interactive use.
4009 (let ((quit-restore (window-parameter old-window 'quit-restore)))
4010 (when quit-restore
4011 (set-window-parameter new-window 'quit-restore quit-restore)))
4012 new-window))
4014 (defalias 'split-window-horizontally 'split-window-right)
4016 ;;; Balancing windows.
4018 ;; The following routine uses the recycled code from an old version of
4019 ;; `window--resize-child-windows'. It's not very pretty, but coding it the way the
4020 ;; new `window--resize-child-windows' code does would hardly make it any shorter or
4021 ;; more readable (FWIW we'd need three loops - one to calculate the
4022 ;; minimum sizes per window, one to enlarge or shrink windows until the
4023 ;; new parent-size matches, and one where we shrink the largest/enlarge
4024 ;; the smallest window).
4025 (defun balance-windows-2 (window horizontal)
4026 "Subroutine of `balance-windows-1'.
4027 WINDOW must be a vertical combination (horizontal if HORIZONTAL
4028 is non-nil)."
4029 (let* ((first (window-child window))
4030 (sub first)
4031 (number-of-children 0)
4032 (parent-size (window-new-total window))
4033 (total-sum parent-size)
4034 failed size sub-total sub-delta sub-amount rest)
4035 (while sub
4036 (setq number-of-children (1+ number-of-children))
4037 (when (window-size-fixed-p sub horizontal)
4038 (setq total-sum
4039 (- total-sum (window-total-size sub horizontal)))
4040 (set-window-new-normal sub 'ignore))
4041 (setq sub (window-right sub)))
4043 (setq failed t)
4044 (while (and failed (> number-of-children 0))
4045 (setq size (/ total-sum number-of-children))
4046 (setq failed nil)
4047 (setq sub first)
4048 (while (and sub (not failed))
4049 ;; Ignore child windows that should be ignored or are stuck.
4050 (unless (window--resize-child-windows-skip-p sub)
4051 (setq sub-total (window-total-size sub horizontal))
4052 (setq sub-delta (- size sub-total))
4053 (setq sub-amount
4054 (window-sizable sub sub-delta horizontal))
4055 ;; Register the new total size for this child window.
4056 (set-window-new-total sub (+ sub-total sub-amount))
4057 (unless (= sub-amount sub-delta)
4058 (setq total-sum (- total-sum sub-total sub-amount))
4059 (setq number-of-children (1- number-of-children))
4060 ;; We failed and need a new round.
4061 (setq failed t)
4062 (set-window-new-normal sub 'skip)))
4063 (setq sub (window-right sub))))
4065 (setq rest (% total-sum number-of-children))
4066 ;; Fix rounding by trying to enlarge non-stuck windows by one line
4067 ;; (column) until `rest' is zero.
4068 (setq sub first)
4069 (while (and sub (> rest 0))
4070 (unless (window--resize-child-windows-skip-p window)
4071 (set-window-new-total sub 1 t)
4072 (setq rest (1- rest)))
4073 (setq sub (window-right sub)))
4075 ;; Fix rounding by trying to enlarge stuck windows by one line
4076 ;; (column) until `rest' equals zero.
4077 (setq sub first)
4078 (while (and sub (> rest 0))
4079 (unless (eq (window-new-normal sub) 'ignore)
4080 (set-window-new-total sub 1 t)
4081 (setq rest (1- rest)))
4082 (setq sub (window-right sub)))
4084 (setq sub first)
4085 (while sub
4086 ;; Record new normal sizes.
4087 (set-window-new-normal
4088 sub (/ (if (eq (window-new-normal sub) 'ignore)
4089 (window-total-size sub horizontal)
4090 (window-new-total sub))
4091 (float parent-size)))
4092 ;; Recursively balance each window's child windows.
4093 (balance-windows-1 sub horizontal)
4094 (setq sub (window-right sub)))))
4096 (defun balance-windows-1 (window &optional horizontal)
4097 "Subroutine of `balance-windows'."
4098 (if (window-child window)
4099 (let ((sub (window-child window)))
4100 (if (window-combined-p sub horizontal)
4101 (balance-windows-2 window horizontal)
4102 (let ((size (window-new-total window)))
4103 (while sub
4104 (set-window-new-total sub size)
4105 (balance-windows-1 sub horizontal)
4106 (setq sub (window-right sub))))))))
4108 (defun balance-windows (&optional window-or-frame)
4109 "Balance the sizes of windows of WINDOW-OR-FRAME.
4110 WINDOW-OR-FRAME is optional and defaults to the selected frame.
4111 If WINDOW-OR-FRAME denotes a frame, balance the sizes of all
4112 windows of that frame. If WINDOW-OR-FRAME denotes a window,
4113 recursively balance the sizes of all child windows of that
4114 window."
4115 (interactive)
4116 (let* ((window
4117 (cond
4118 ((or (not window-or-frame)
4119 (frame-live-p window-or-frame))
4120 (frame-root-window window-or-frame))
4121 ((or (window-live-p window-or-frame)
4122 (window-child window-or-frame))
4123 window-or-frame)
4125 (error "Not a window or frame %s" window-or-frame))))
4126 (frame (window-frame window)))
4127 ;; Balance vertically.
4128 (window--resize-reset (window-frame window))
4129 (balance-windows-1 window)
4130 (window-resize-apply frame)
4131 ;; Balance horizontally.
4132 (window--resize-reset (window-frame window) t)
4133 (balance-windows-1 window t)
4134 (window-resize-apply frame t)))
4136 (defun window-fixed-size-p (&optional window direction)
4137 "Return t if WINDOW cannot be resized in DIRECTION.
4138 WINDOW defaults to the selected window. DIRECTION can be
4139 nil (i.e. any), `height' or `width'."
4140 (with-current-buffer (window-buffer window)
4141 (when (and (boundp 'window-size-fixed) window-size-fixed)
4142 (not (and direction
4143 (member (cons direction window-size-fixed)
4144 '((height . width) (width . height))))))))
4146 ;;; A different solution to balance-windows.
4147 (defvar window-area-factor 1
4148 "Factor by which the window area should be over-estimated.
4149 This is used by `balance-windows-area'.
4150 Changing this globally has no effect.")
4151 (make-variable-buffer-local 'window-area-factor)
4153 (defun balance-windows-area-adjust (window delta horizontal)
4154 "Wrapper around `window-resize' with error checking.
4155 Arguments WINDOW, DELTA and HORIZONTAL are passed on to that function."
4156 ;; `window-resize' may fail if delta is too large.
4157 (while (>= (abs delta) 1)
4158 (condition-case nil
4159 (progn
4160 (window-resize window delta horizontal)
4161 (setq delta 0))
4162 (error
4163 ;;(message "adjust: %s" (error-message-string err))
4164 (setq delta (/ delta 2))))))
4166 (defun balance-windows-area ()
4167 "Make all visible windows the same area (approximately).
4168 See also `window-area-factor' to change the relative size of
4169 specific buffers."
4170 (interactive)
4171 (let* ((unchanged 0) (carry 0) (round 0)
4172 ;; Remove fixed-size windows.
4173 (wins (delq nil (mapcar (lambda (win)
4174 (if (not (window-fixed-size-p win)) win))
4175 (window-list nil 'nomini))))
4176 (changelog nil)
4177 next)
4178 ;; Resizing a window changes the size of surrounding windows in complex
4179 ;; ways, so it's difficult to balance them all. The introduction of
4180 ;; `adjust-window-trailing-edge' made it a bit easier, but it is still
4181 ;; very difficult to do. `balance-window' above takes an off-line
4182 ;; approach: get the whole window tree, then balance it, then try to
4183 ;; adjust the windows so they fit the result.
4184 ;; Here, instead, we take a "local optimization" approach, where we just
4185 ;; go through all the windows several times until nothing needs to be
4186 ;; changed. The main problem with this approach is that it's difficult
4187 ;; to make sure it terminates, so we use some heuristic to try and break
4188 ;; off infinite loops.
4189 ;; After a round without any change, we allow a second, to give a chance
4190 ;; to the carry to propagate a minor imbalance from the end back to
4191 ;; the beginning.
4192 (while (< unchanged 2)
4193 ;; (message "New round")
4194 (setq unchanged (1+ unchanged) round (1+ round))
4195 (dolist (win wins)
4196 (setq next win)
4197 (while (progn (setq next (next-window next))
4198 (window-fixed-size-p next)))
4199 ;; (assert (eq next (or (cadr (member win wins)) (car wins))))
4200 (let* ((horiz
4201 (< (car (window-edges win)) (car (window-edges next))))
4202 (areadiff (/ (- (* (window-height next) (window-width next)
4203 (buffer-local-value 'window-area-factor
4204 (window-buffer next)))
4205 (* (window-height win) (window-width win)
4206 (buffer-local-value 'window-area-factor
4207 (window-buffer win))))
4208 (max (buffer-local-value 'window-area-factor
4209 (window-buffer win))
4210 (buffer-local-value 'window-area-factor
4211 (window-buffer next)))))
4212 (edgesize (if horiz
4213 (+ (window-height win) (window-height next))
4214 (+ (window-width win) (window-width next))))
4215 (diff (/ areadiff edgesize)))
4216 (when (zerop diff)
4217 ;; Maybe diff is actually closer to 1 than to 0.
4218 (setq diff (/ (* 3 areadiff) (* 2 edgesize))))
4219 (when (and (zerop diff) (not (zerop areadiff)))
4220 (setq diff (/ (+ areadiff carry) edgesize))
4221 ;; Change things smoothly.
4222 (if (or (> diff 1) (< diff -1)) (setq diff (/ diff 2))))
4223 (if (zerop diff)
4224 ;; Make sure negligible differences don't accumulate to
4225 ;; become significant.
4226 (setq carry (+ carry areadiff))
4227 ;; This used `adjust-window-trailing-edge' before and uses
4228 ;; `window-resize' now. Error wrapping is still needed.
4229 (balance-windows-area-adjust win diff horiz)
4230 ;; (sit-for 0.5)
4231 (let ((change (cons win (window-edges win))))
4232 ;; If the same change has been seen already for this window,
4233 ;; we're most likely in an endless loop, so don't count it as
4234 ;; a change.
4235 (unless (member change changelog)
4236 (push change changelog)
4237 (setq unchanged 0 carry 0)))))))
4238 ;; We've now basically balanced all the windows.
4239 ;; But there may be some minor off-by-one imbalance left over,
4240 ;; so let's do some fine tuning.
4241 ;; (bw-finetune wins)
4242 ;; (message "Done in %d rounds" round)
4245 ;;; Window states, how to get them and how to put them in a window.
4246 (defun window--state-get-1 (window &optional writable)
4247 "Helper function for `window-state-get'."
4248 (let* ((type
4249 (cond
4250 ((window-top-child window) 'vc)
4251 ((window-left-child window) 'hc)
4252 (t 'leaf)))
4253 (buffer (window-buffer window))
4254 (selected (eq window (selected-window)))
4255 (head
4256 `(,type
4257 ,@(unless (window-next-sibling window) `((last . t)))
4258 (total-height . ,(window-total-size window))
4259 (total-width . ,(window-total-size window t))
4260 (normal-height . ,(window-normal-size window))
4261 (normal-width . ,(window-normal-size window t))
4262 (combination-limit . ,(window-combination-limit window))
4263 ,@(let ((parameters (window-parameters window))
4264 list)
4265 ;; Make copies of those window parameters whose
4266 ;; persistence property is `writable' if WRITABLE is
4267 ;; non-nil and non-nil if WRITABLE is nil.
4268 (dolist (par parameters)
4269 (let ((pers (cdr (assq (car par)
4270 window-persistent-parameters))))
4271 (when (and pers (or (not writable) (eq pers 'writable)))
4272 (setq list (cons (cons (car par) (cdr par)) list)))))
4273 ;; Add `clone-of' parameter if necessary.
4274 (let ((pers (cdr (assq 'clone-of
4275 window-persistent-parameters))))
4276 (when (and pers (or (not writable) (eq pers 'writable))
4277 (not (assq 'clone-of list)))
4278 (setq list (cons (cons 'clone-of window) list))))
4279 (when list
4280 `((parameters . ,list))))
4281 ,@(when buffer
4282 ;; All buffer related things go in here.
4283 (let ((point (window-point window))
4284 (start (window-start window)))
4285 `((buffer
4286 ,(buffer-name buffer)
4287 (selected . ,selected)
4288 (hscroll . ,(window-hscroll window))
4289 (fringes . ,(window-fringes window))
4290 (margins . ,(window-margins window))
4291 (scroll-bars . ,(window-scroll-bars window))
4292 (vscroll . ,(window-vscroll window))
4293 (dedicated . ,(window-dedicated-p window))
4294 (point . ,(if writable point
4295 (copy-marker point
4296 (buffer-local-value
4297 'window-point-insertion-type
4298 buffer))))
4299 (start . ,(if writable start (copy-marker start)))))))))
4300 (tail
4301 (when (memq type '(vc hc))
4302 (let (list)
4303 (setq window (window-child window))
4304 (while window
4305 (setq list (cons (window--state-get-1 window writable) list))
4306 (setq window (window-right window)))
4307 (nreverse list)))))
4308 (append head tail)))
4310 (defun window-state-get (&optional window writable)
4311 "Return state of WINDOW as a Lisp object.
4312 WINDOW can be any window and defaults to the root window of the
4313 selected frame.
4315 Optional argument WRITABLE non-nil means do not use markers for
4316 sampling `window-point' and `window-start'. Together, WRITABLE
4317 and the variable `window-persistent-parameters' specify which
4318 window parameters are saved by this function. WRITABLE should be
4319 non-nil when the return value shall be written to a file and read
4320 back in another session. Otherwise, an application may run into
4321 an `invalid-read-syntax' error while attempting to read back the
4322 value from file.
4324 The return value can be used as argument for `window-state-put'
4325 to put the state recorded here into an arbitrary window. The
4326 value can be also stored on disk and read back in a new session."
4327 (setq window
4328 (if window
4329 (if (window-valid-p window)
4330 window
4331 (error "%s is not a live or internal window" window))
4332 (frame-root-window)))
4333 ;; The return value is a cons whose car specifies some constraints on
4334 ;; the size of WINDOW. The cdr lists the states of the child windows
4335 ;; of WINDOW.
4336 (cons
4337 ;; Frame related things would go into a function, say `frame-state',
4338 ;; calling `window-state-get' to insert the frame's root window.
4339 `((min-height . ,(window-min-size window))
4340 (min-width . ,(window-min-size window t))
4341 (min-height-ignore . ,(window-min-size window nil t))
4342 (min-width-ignore . ,(window-min-size window t t))
4343 (min-height-safe . ,(window-min-size window nil 'safe))
4344 (min-width-safe . ,(window-min-size window t 'safe)))
4345 (window--state-get-1 window writable)))
4347 (defvar window-state-put-list nil
4348 "Helper variable for `window-state-put'.")
4350 (defun window--state-put-1 (state &optional window ignore totals)
4351 "Helper function for `window-state-put'."
4352 (let ((type (car state)))
4353 (setq state (cdr state))
4354 (cond
4355 ((eq type 'leaf)
4356 ;; For a leaf window just add unprocessed entries to
4357 ;; `window-state-put-list'.
4358 (push (cons window state) window-state-put-list))
4359 ((memq type '(vc hc))
4360 (let* ((horizontal (eq type 'hc))
4361 (total (window-total-size window horizontal))
4362 (first t)
4363 size new)
4364 (dolist (item state)
4365 ;; Find the next child window. WINDOW always points to the
4366 ;; real window that we want to fill with what we find here.
4367 (when (memq (car item) '(leaf vc hc))
4368 (if (assq 'last item)
4369 ;; The last child window. Below `window--state-put-1'
4370 ;; will put into it whatever ITEM has in store.
4371 (setq new nil)
4372 ;; Not the last child window, prepare for splitting
4373 ;; WINDOW. SIZE is the new (and final) size of the old
4374 ;; window.
4375 (setq size
4376 (if totals
4377 ;; Use total size.
4378 (cdr (assq (if horizontal 'total-width 'total-height) item))
4379 ;; Use normalized size and round.
4380 (round (* total
4381 (cdr (assq
4382 (if horizontal 'normal-width 'normal-height)
4383 item))))))
4385 ;; Use safe sizes, we try to resize later.
4386 (setq size (max size (if horizontal
4387 window-safe-min-height
4388 window-safe-min-width)))
4390 (if (window-sizable-p window (- size) horizontal 'safe)
4391 (let* ((window-combination-limit
4392 (assq 'combination-limit item)))
4393 ;; We must inherit the combination limit, otherwise
4394 ;; we might mess up handling of atomic and side
4395 ;; window.
4396 (setq new (split-window window size horizontal)))
4397 ;; Give up if we can't resize window down to safe sizes.
4398 (error "Cannot resize window %s" window))
4400 (when first
4401 (setq first nil)
4402 ;; When creating the first child window add for parent
4403 ;; unprocessed entries to `window-state-put-list'.
4404 (setq window-state-put-list
4405 (cons (cons (window-parent window) state)
4406 window-state-put-list))))
4408 ;; Now process the current window (either the one we've just
4409 ;; split or the last child of its parent).
4410 (window--state-put-1 item window ignore totals)
4411 ;; Continue with the last window split off.
4412 (setq window new))))))))
4414 (defun window--state-put-2 (ignore)
4415 "Helper function for `window-state-put'."
4416 (dolist (item window-state-put-list)
4417 (let ((window (car item))
4418 (combination-limit (cdr (assq 'combination-limit item)))
4419 (parameters (cdr (assq 'parameters item)))
4420 (state (cdr (assq 'buffer item))))
4421 (when combination-limit
4422 (set-window-combination-limit window combination-limit))
4423 ;; Reset window's parameters and assign saved ones (we might want
4424 ;; a `remove-window-parameters' function here).
4425 (dolist (parameter (window-parameters window))
4426 (set-window-parameter window (car parameter) nil))
4427 (when parameters
4428 (dolist (parameter parameters)
4429 (set-window-parameter window (car parameter) (cdr parameter))))
4430 ;; Process buffer related state.
4431 (when state
4432 ;; We don't want to raise an error here so we create a buffer if
4433 ;; there's none.
4434 (set-window-buffer window (get-buffer-create (car state)))
4435 (with-current-buffer (window-buffer window)
4436 (set-window-hscroll window (cdr (assq 'hscroll state)))
4437 (apply 'set-window-fringes
4438 (cons window (cdr (assq 'fringes state))))
4439 (let ((margins (cdr (assq 'margins state))))
4440 (set-window-margins window (car margins) (cdr margins)))
4441 (let ((scroll-bars (cdr (assq 'scroll-bars state))))
4442 (set-window-scroll-bars
4443 window (car scroll-bars) (nth 2 scroll-bars) (nth 3 scroll-bars)))
4444 (set-window-vscroll window (cdr (assq 'vscroll state)))
4445 ;; Adjust vertically.
4446 (if (memq window-size-fixed '(t height))
4447 ;; A fixed height window, try to restore the original size.
4448 (let ((delta (- (cdr (assq 'total-height item))
4449 (window-total-height window)))
4450 window-size-fixed)
4451 (when (window-resizable-p window delta)
4452 (window-resize window delta)))
4453 ;; Else check whether the window is not high enough.
4454 (let* ((min-size (window-min-size window nil ignore))
4455 (delta (- min-size (window-total-size window))))
4456 (when (and (> delta 0)
4457 (window-resizable-p window delta nil ignore))
4458 (window-resize window delta nil ignore))))
4459 ;; Adjust horizontally.
4460 (if (memq window-size-fixed '(t width))
4461 ;; A fixed width window, try to restore the original size.
4462 (let ((delta (- (cdr (assq 'total-width item))
4463 (window-total-width window)))
4464 window-size-fixed)
4465 (when (window-resizable-p window delta)
4466 (window-resize window delta)))
4467 ;; Else check whether the window is not wide enough.
4468 (let* ((min-size (window-min-size window t ignore))
4469 (delta (- min-size (window-total-size window t))))
4470 (when (and (> delta 0)
4471 (window-resizable-p window delta t ignore))
4472 (window-resize window delta t ignore))))
4473 ;; Set dedicated status.
4474 (set-window-dedicated-p window (cdr (assq 'dedicated state)))
4475 ;; Install positions (maybe we should do this after all windows
4476 ;; have been created and sized).
4477 (ignore-errors
4478 (set-window-start window (cdr (assq 'start state)))
4479 (set-window-point window (cdr (assq 'point state))))
4480 ;; Select window if it's the selected one.
4481 (when (cdr (assq 'selected state))
4482 (select-window window)))))))
4484 (defun window-state-put (state &optional window ignore)
4485 "Put window state STATE into WINDOW.
4486 STATE should be the state of a window returned by an earlier
4487 invocation of `window-state-get'. Optional argument WINDOW must
4488 specify a live window and defaults to the selected one.
4490 Optional argument IGNORE non-nil means ignore minimum window
4491 sizes and fixed size restrictions. IGNORE equal `safe' means
4492 windows can get as small as `window-safe-min-height' and
4493 `window-safe-min-width'."
4494 (setq window (window-normalize-window window t))
4495 (let* ((frame (window-frame window))
4496 (head (car state))
4497 ;; We check here (1) whether the total sizes of root window of
4498 ;; STATE and that of WINDOW are equal so we can avoid
4499 ;; calculating new sizes, and (2) if we do have to resize
4500 ;; whether we can do so without violating size restrictions.
4501 (totals
4502 (and (= (window-total-size window)
4503 (cdr (assq 'total-height state)))
4504 (= (window-total-size window t)
4505 (cdr (assq 'total-width state)))))
4506 (min-height (cdr (assq 'min-height head)))
4507 (min-width (cdr (assq 'min-width head))))
4508 (if (and (not totals)
4509 (or (> min-height (window-total-size window))
4510 (> min-width (window-total-size window t)))
4511 (or (not ignore)
4512 (and (setq min-height
4513 (cdr (assq 'min-height-ignore head)))
4514 (setq min-width
4515 (cdr (assq 'min-width-ignore head)))
4516 (or (> min-height (window-total-size window))
4517 (> min-width (window-total-size window t)))
4518 (or (not (eq ignore 'safe))
4519 (and (setq min-height
4520 (cdr (assq 'min-height-safe head)))
4521 (setq min-width
4522 (cdr (assq 'min-width-safe head)))
4523 (or (> min-height
4524 (window-total-size window))
4525 (> min-width
4526 (window-total-size window t))))))))
4527 ;; The check above might not catch all errors due to rounding
4528 ;; issues - so IGNORE equal 'safe might not always produce the
4529 ;; minimum possible state. But such configurations hardly make
4530 ;; sense anyway.
4531 (error "Window %s too small to accommodate state" window)
4532 (setq state (cdr state))
4533 (setq window-state-put-list nil)
4534 ;; Work on the windows of a temporary buffer to make sure that
4535 ;; splitting proceeds regardless of any buffer local values of
4536 ;; `window-size-fixed'. Release that buffer after the buffers of
4537 ;; all live windows have been set by `window--state-put-2'.
4538 (with-temp-buffer
4539 (set-window-buffer window (current-buffer))
4540 (window--state-put-1 state window nil totals)
4541 (window--state-put-2 ignore))
4542 (window--check frame))))
4544 (defun display-buffer-record-window (type window buffer)
4545 "Record information for window used by `display-buffer'.
4546 TYPE specifies the type of the calling operation and must be one
4547 of the symbols 'reuse (when WINDOW existed already and was
4548 reused for displaying BUFFER), 'window (when WINDOW was created
4549 on an already existing frame), or 'frame (when WINDOW was
4550 created on a new frame). WINDOW is the window used for or created
4551 by the `display-buffer' routines. BUFFER is the buffer that
4552 shall be displayed.
4554 This function installs or updates the quit-restore parameter of
4555 WINDOW. The quit-restore parameter is a list of four elements:
4556 The first element is one of the symbols 'window, 'frame, 'same or
4557 'other. The second element is either one of the symbols 'window
4558 or 'frame or a list whose elements are the buffer previously
4559 shown in the window, that buffer's window start and window point,
4560 and the window's height. The third element is the window
4561 selected at the time the parameter was created. The fourth
4562 element is BUFFER."
4563 (cond
4564 ((eq type 'reuse)
4565 (if (eq (window-buffer window) buffer)
4566 ;; WINDOW shows BUFFER already.
4567 (when (consp (window-parameter window 'quit-restore))
4568 ;; If WINDOW has a quit-restore parameter, reset its car.
4569 (setcar (window-parameter window 'quit-restore) 'same))
4570 ;; WINDOW shows another buffer.
4571 (with-current-buffer (window-buffer window)
4572 (set-window-parameter
4573 window 'quit-restore
4574 (list 'other
4575 ;; A quadruple of WINDOW's buffer, start, point and height.
4576 (list (current-buffer) (window-start window)
4577 ;; Preserve window-point-insertion-type (Bug#12588).
4578 (copy-marker
4579 (window-point window) window-point-insertion-type)
4580 (window-total-size window))
4581 (selected-window) buffer)))))
4582 ((eq type 'window)
4583 ;; WINDOW has been created on an existing frame.
4584 (set-window-parameter
4585 window 'quit-restore
4586 (list 'window 'window (selected-window) buffer)))
4587 ((eq type 'frame)
4588 ;; WINDOW has been created on a new frame.
4589 (set-window-parameter
4590 window 'quit-restore
4591 (list 'frame 'frame (selected-window) buffer)))))
4593 (defcustom display-buffer-function nil
4594 "If non-nil, function to call to handle `display-buffer'.
4595 It will receive two args, the buffer and a flag which if non-nil
4596 means that the currently selected window is not acceptable. It
4597 should choose or create a window, display the specified buffer in
4598 it, and return the window.
4600 The specified function should call `display-buffer-record-window'
4601 with corresponding arguments to set up the quit-restore parameter
4602 of the window used."
4603 :type '(choice
4604 (const nil)
4605 (function :tag "function"))
4606 :group 'windows)
4608 (make-obsolete-variable 'display-buffer-function
4609 'display-buffer-alist "24.3")
4611 ;; Eventually, we want to turn this into a defvar; instead of
4612 ;; customizing this, the user should use a `pop-up-frame-parameters'
4613 ;; alist entry in `display-buffer-base-action'.
4614 (defcustom pop-up-frame-alist nil
4615 "Alist of parameters for automatically generated new frames.
4616 If non-nil, the value you specify here is used by the default
4617 `pop-up-frame-function' for the creation of new frames.
4619 Since `pop-up-frame-function' is used by `display-buffer' for
4620 making new frames, any value specified here by default affects
4621 the automatic generation of new frames via `display-buffer' and
4622 all functions based on it. The behavior of `make-frame' is not
4623 affected by this variable."
4624 :type '(repeat (cons :format "%v"
4625 (symbol :tag "Parameter")
4626 (sexp :tag "Value")))
4627 :group 'frames)
4629 (defcustom pop-up-frame-function
4630 (lambda () (make-frame pop-up-frame-alist))
4631 "Function used by `display-buffer' for creating a new frame.
4632 This function is called with no arguments and should return a new
4633 frame. The default value calls `make-frame' with the argument
4634 `pop-up-frame-alist'."
4635 :type 'function
4636 :group 'frames)
4638 (defcustom special-display-buffer-names nil
4639 "List of names of buffers that should be displayed specially.
4640 Displaying a buffer with `display-buffer' or `pop-to-buffer', if
4641 its name is in this list, displays the buffer in a way specified
4642 by `special-display-function'. `special-display-popup-frame'
4643 \(the default for `special-display-function') usually displays
4644 the buffer in a separate frame made with the parameters specified
4645 by `special-display-frame-alist'. If `special-display-function'
4646 has been set to some other function, that function is called with
4647 the buffer as first, and nil as second argument.
4649 Alternatively, an element of this list can be specified as
4650 \(BUFFER-NAME FRAME-PARAMETERS), where BUFFER-NAME is a buffer
4651 name and FRAME-PARAMETERS an alist of (PARAMETER . VALUE) pairs.
4652 `special-display-popup-frame' will interpret such pairs as frame
4653 parameters when it creates a special frame, overriding the
4654 corresponding values from `special-display-frame-alist'.
4656 As a special case, if FRAME-PARAMETERS contains (same-window . t)
4657 `special-display-popup-frame' displays that buffer in the
4658 selected window. If FRAME-PARAMETERS contains (same-frame . t),
4659 it displays that buffer in a window on the selected frame.
4661 If `special-display-function' specifies some other function than
4662 `special-display-popup-frame', that function is called with the
4663 buffer named BUFFER-NAME as first, and FRAME-PARAMETERS as second
4664 argument.
4666 Finally, an element of this list can be also specified as
4667 \(BUFFER-NAME FUNCTION OTHER-ARGS). In that case,
4668 `special-display-popup-frame' will call FUNCTION with the buffer
4669 named BUFFER-NAME as first argument, and OTHER-ARGS as the
4670 second.
4672 Any alternative function specified here is responsible for
4673 setting up the quit-restore parameter of the window used.
4675 If this variable appears \"not to work\", because you added a
4676 name to it but the corresponding buffer is displayed in the
4677 selected window, look at the values of `same-window-buffer-names'
4678 and `same-window-regexps'. Those variables take precedence over
4679 this one.
4681 See also `special-display-regexps'."
4682 :type '(repeat
4683 (choice :tag "Buffer"
4684 :value ""
4685 (string :format "%v")
4686 (cons :tag "With parameters"
4687 :format "%v"
4688 :value ("" . nil)
4689 (string :format "%v")
4690 (repeat :tag "Parameters"
4691 (cons :format "%v"
4692 (symbol :tag "Parameter")
4693 (sexp :tag "Value"))))
4694 (list :tag "With function"
4695 :format "%v"
4696 :value ("" . nil)
4697 (string :format "%v")
4698 (function :tag "Function")
4699 (repeat :tag "Arguments" (sexp)))))
4700 :group 'windows
4701 :group 'frames)
4702 (make-obsolete-variable 'special-display-buffer-names 'display-buffer-alist "24.3")
4703 (put 'special-display-buffer-names 'risky-local-variable t)
4705 (defcustom special-display-regexps nil
4706 "List of regexps saying which buffers should be displayed specially.
4707 Displaying a buffer with `display-buffer' or `pop-to-buffer', if
4708 any regexp in this list matches its name, displays it specially
4709 using `special-display-function'. `special-display-popup-frame'
4710 \(the default for `special-display-function') usually displays
4711 the buffer in a separate frame made with the parameters specified
4712 by `special-display-frame-alist'. If `special-display-function'
4713 has been set to some other function, that function is called with
4714 the buffer as first, and nil as second argument.
4716 Alternatively, an element of this list can be specified as
4717 \(REGEXP FRAME-PARAMETERS), where REGEXP is a regexp as above and
4718 FRAME-PARAMETERS an alist of (PARAMETER . VALUE) pairs.
4719 `special-display-popup-frame' will then interpret these pairs as
4720 frame parameters when creating a special frame for a buffer whose
4721 name matches REGEXP, overriding the corresponding values from
4722 `special-display-frame-alist'.
4724 As a special case, if FRAME-PARAMETERS contains (same-window . t)
4725 `special-display-popup-frame' displays buffers matching REGEXP in
4726 the selected window. (same-frame . t) in FRAME-PARAMETERS means
4727 to display such buffers in a window on the selected frame.
4729 If `special-display-function' specifies some other function than
4730 `special-display-popup-frame', that function is called with the
4731 buffer whose name matched REGEXP as first, and FRAME-PARAMETERS
4732 as second argument.
4734 Finally, an element of this list can be also specified as
4735 \(REGEXP FUNCTION OTHER-ARGS). `special-display-popup-frame'
4736 will then call FUNCTION with the buffer whose name matched
4737 REGEXP as first, and OTHER-ARGS as second argument.
4739 Any alternative function specified here is responsible for
4740 setting up the quit-restore parameter of the window used.
4742 If this variable appears \"not to work\", because you added a
4743 name to it but the corresponding buffer is displayed in the
4744 selected window, look at the values of `same-window-buffer-names'
4745 and `same-window-regexps'. Those variables take precedence over
4746 this one.
4748 See also `special-display-buffer-names'."
4749 :type '(repeat
4750 (choice :tag "Buffer"
4751 :value ""
4752 (regexp :format "%v")
4753 (cons :tag "With parameters"
4754 :format "%v"
4755 :value ("" . nil)
4756 (regexp :format "%v")
4757 (repeat :tag "Parameters"
4758 (cons :format "%v"
4759 (symbol :tag "Parameter")
4760 (sexp :tag "Value"))))
4761 (list :tag "With function"
4762 :format "%v"
4763 :value ("" . nil)
4764 (regexp :format "%v")
4765 (function :tag "Function")
4766 (repeat :tag "Arguments" (sexp)))))
4767 :group 'windows
4768 :group 'frames)
4769 (make-obsolete-variable 'special-display-regexps 'display-buffer-alist "24.3")
4770 (put 'special-display-regexps 'risky-local-variable t)
4772 (defun special-display-p (buffer-name)
4773 "Return non-nil if a buffer named BUFFER-NAME gets a special frame.
4774 More precisely, return t if `special-display-buffer-names' or
4775 `special-display-regexps' contain a string entry equaling or
4776 matching BUFFER-NAME. If `special-display-buffer-names' or
4777 `special-display-regexps' contain a list entry whose car equals
4778 or matches BUFFER-NAME, the return value is the cdr of that
4779 entry."
4780 (let (tmp)
4781 (cond
4782 ((member buffer-name special-display-buffer-names)
4784 ((setq tmp (assoc buffer-name special-display-buffer-names))
4785 (cdr tmp))
4786 ((catch 'found
4787 (dolist (regexp special-display-regexps)
4788 (cond
4789 ((stringp regexp)
4790 (when (string-match-p regexp buffer-name)
4791 (throw 'found t)))
4792 ((and (consp regexp) (stringp (car regexp))
4793 (string-match-p (car regexp) buffer-name))
4794 (throw 'found (cdr regexp))))))))))
4796 (defcustom special-display-frame-alist
4797 '((height . 14) (width . 80) (unsplittable . t))
4798 "Alist of parameters for special frames.
4799 Special frames are used for buffers whose names are listed in
4800 `special-display-buffer-names' and for buffers whose names match
4801 one of the regular expressions in `special-display-regexps'.
4803 This variable can be set in your init file, like this:
4805 (setq special-display-frame-alist '((width . 80) (height . 20)))
4807 These supersede the values given in `default-frame-alist'."
4808 :type '(repeat (cons :format "%v"
4809 (symbol :tag "Parameter")
4810 (sexp :tag "Value")))
4811 :group 'frames)
4812 (make-obsolete-variable 'special-display-frame-alist 'display-buffer-alist "24.3")
4814 (defun special-display-popup-frame (buffer &optional args)
4815 "Pop up a frame displaying BUFFER and return its window.
4816 If BUFFER is already displayed in a visible or iconified frame,
4817 raise that frame. Otherwise, display BUFFER in a new frame.
4819 Optional argument ARGS is a list specifying additional
4820 information.
4822 If ARGS is an alist, use it as a list of frame parameters. If
4823 these parameters contain (same-window . t), display BUFFER in
4824 the selected window. If they contain (same-frame . t), display
4825 BUFFER in a window of the selected frame.
4827 If ARGS is a list whose car is a symbol, use (car ARGS) as a
4828 function to do the work. Pass it BUFFER as first argument, and
4829 pass the elements of (cdr ARGS) as the remaining arguments."
4830 (if (and args (symbolp (car args)))
4831 (apply (car args) buffer (cdr args))
4832 (let ((window (get-buffer-window buffer 0)))
4834 ;; If we have a window already, make it visible.
4835 (when window
4836 (let ((frame (window-frame window)))
4837 (make-frame-visible frame)
4838 (raise-frame frame)
4839 (display-buffer-record-window 'reuse window buffer)
4840 window))
4841 ;; Reuse the current window if the user requested it.
4842 (when (cdr (assq 'same-window args))
4843 (condition-case nil
4844 (progn (switch-to-buffer buffer nil t) (selected-window))
4845 (error nil)))
4846 ;; Stay on the same frame if requested.
4847 (when (or (cdr (assq 'same-frame args)) (cdr (assq 'same-window args)))
4848 (let* ((pop-up-windows t)
4849 pop-up-frames
4850 special-display-buffer-names special-display-regexps)
4851 (display-buffer buffer)))
4852 ;; If no window yet, make one in a new frame.
4853 (let* ((frame
4854 (with-current-buffer buffer
4855 (make-frame (append args special-display-frame-alist))))
4856 (window (frame-selected-window frame)))
4857 (display-buffer-record-window 'frame window buffer)
4858 (unless (eq buffer (window-buffer window))
4859 (set-window-buffer window buffer)
4860 (set-window-prev-buffers window nil))
4861 (set-window-dedicated-p window t)
4862 window)))))
4864 (defcustom special-display-function 'special-display-popup-frame
4865 "Function to call for displaying special buffers.
4866 This function is called with two arguments - the buffer and,
4867 optionally, a list - and should return a window displaying that
4868 buffer. The default value usually makes a separate frame for the
4869 buffer using `special-display-frame-alist' to specify the frame
4870 parameters. See the definition of `special-display-popup-frame'
4871 for how to specify such a function.
4873 A buffer is special when its name is either listed in
4874 `special-display-buffer-names' or matches a regexp in
4875 `special-display-regexps'.
4877 The specified function should call `display-buffer-record-window'
4878 with corresponding arguments to set up the quit-restore parameter
4879 of the window used."
4880 :type 'function
4881 :group 'frames)
4882 (make-obsolete-variable 'special-display-function 'display-buffer-alist "24.3")
4884 (defcustom same-window-buffer-names nil
4885 "List of names of buffers that should appear in the \"same\" window.
4886 `display-buffer' and `pop-to-buffer' show a buffer whose name is
4887 on this list in the selected rather than some other window.
4889 An element of this list can be a cons cell instead of just a
4890 string. In that case, the cell's car must be a string specifying
4891 the buffer name. This is for compatibility with
4892 `special-display-buffer-names'; the cdr of the cons cell is
4893 ignored.
4895 See also `same-window-regexps'."
4896 :type '(repeat (string :format "%v"))
4897 :group 'windows)
4899 (defcustom same-window-regexps nil
4900 "List of regexps saying which buffers should appear in the \"same\" window.
4901 `display-buffer' and `pop-to-buffer' show a buffer whose name
4902 matches a regexp on this list in the selected rather than some
4903 other window.
4905 An element of this list can be a cons cell instead of just a
4906 string. In that case, the cell's car must be a regexp matching
4907 the buffer name. This is for compatibility with
4908 `special-display-regexps'; the cdr of the cons cell is ignored.
4910 See also `same-window-buffer-names'."
4911 :type '(repeat (regexp :format "%v"))
4912 :group 'windows)
4914 (defun same-window-p (buffer-name)
4915 "Return non-nil if a buffer named BUFFER-NAME would be shown in the \"same\" window.
4916 This function returns non-nil if `display-buffer' or
4917 `pop-to-buffer' would show a buffer named BUFFER-NAME in the
4918 selected rather than (as usual) some other window. See
4919 `same-window-buffer-names' and `same-window-regexps'."
4920 (cond
4921 ((not (stringp buffer-name)))
4922 ;; The elements of `same-window-buffer-names' can be buffer
4923 ;; names or cons cells whose cars are buffer names.
4924 ((member buffer-name same-window-buffer-names))
4925 ((assoc buffer-name same-window-buffer-names))
4926 ((catch 'found
4927 (dolist (regexp same-window-regexps)
4928 ;; The elements of `same-window-regexps' can be regexps
4929 ;; or cons cells whose cars are regexps.
4930 (when (or (and (stringp regexp)
4931 (string-match-p regexp buffer-name))
4932 (and (consp regexp) (stringp (car regexp))
4933 (string-match-p (car regexp) buffer-name)))
4934 (throw 'found t)))))))
4936 (defcustom pop-up-frames nil
4937 "Whether `display-buffer' should make a separate frame.
4938 If nil, never make a separate frame.
4939 If the value is `graphic-only', make a separate frame
4940 on graphic displays only.
4941 Any other non-nil value means always make a separate frame."
4942 :type '(choice
4943 (const :tag "Never" nil)
4944 (const :tag "On graphic displays only" graphic-only)
4945 (const :tag "Always" t))
4946 :group 'windows)
4948 (defcustom display-buffer-reuse-frames nil
4949 "Non-nil means `display-buffer' should reuse frames.
4950 If the buffer in question is already displayed in a frame, raise
4951 that frame."
4952 :type 'boolean
4953 :version "21.1"
4954 :group 'windows)
4956 (make-obsolete-variable
4957 'display-buffer-reuse-frames
4958 "use a `reusable-frames' alist entry in `display-buffer-alist'."
4959 "24.3")
4961 (defcustom pop-up-windows t
4962 "Non-nil means `display-buffer' should make a new window."
4963 :type 'boolean
4964 :group 'windows)
4966 (defcustom split-window-preferred-function 'split-window-sensibly
4967 "Function called by `display-buffer' routines to split a window.
4968 This function is called with a window as single argument and is
4969 supposed to split that window and return the new window. If the
4970 window can (or shall) not be split, it is supposed to return nil.
4971 The default is to call the function `split-window-sensibly' which
4972 tries to split the window in a way which seems most suitable.
4973 You can customize the options `split-height-threshold' and/or
4974 `split-width-threshold' in order to have `split-window-sensibly'
4975 prefer either vertical or horizontal splitting.
4977 If you set this to any other function, bear in mind that the
4978 `display-buffer' routines may call this function two times. The
4979 argument of the first call is the largest window on its frame.
4980 If that call fails to return a live window, the function is
4981 called again with the least recently used window as argument. If
4982 that call fails too, `display-buffer' will use an existing window
4983 to display its buffer.
4985 The window selected at the time `display-buffer' was invoked is
4986 still selected when this function is called. Hence you can
4987 compare the window argument with the value of `selected-window'
4988 if you intend to split the selected window instead or if you do
4989 not want to split the selected window."
4990 :type 'function
4991 :version "23.1"
4992 :group 'windows)
4994 (defcustom split-height-threshold 80
4995 "Minimum height for splitting windows sensibly.
4996 If this is an integer, `split-window-sensibly' may split a window
4997 vertically only if it has at least this many lines. If this is
4998 nil, `split-window-sensibly' is not allowed to split a window
4999 vertically. If, however, a window is the only window on its
5000 frame, `split-window-sensibly' may split it vertically
5001 disregarding the value of this variable."
5002 :type '(choice (const nil) (integer :tag "lines"))
5003 :version "23.1"
5004 :group 'windows)
5006 (defcustom split-width-threshold 160
5007 "Minimum width for splitting windows sensibly.
5008 If this is an integer, `split-window-sensibly' may split a window
5009 horizontally only if it has at least this many columns. If this
5010 is nil, `split-window-sensibly' is not allowed to split a window
5011 horizontally."
5012 :type '(choice (const nil) (integer :tag "columns"))
5013 :version "23.1"
5014 :group 'windows)
5016 (defun window-splittable-p (window &optional horizontal)
5017 "Return non-nil if `split-window-sensibly' may split WINDOW.
5018 Optional argument HORIZONTAL nil or omitted means check whether
5019 `split-window-sensibly' may split WINDOW vertically. HORIZONTAL
5020 non-nil means check whether WINDOW may be split horizontally.
5022 WINDOW may be split vertically when the following conditions
5023 hold:
5024 - `window-size-fixed' is either nil or equals `width' for the
5025 buffer of WINDOW.
5026 - `split-height-threshold' is an integer and WINDOW is at least as
5027 high as `split-height-threshold'.
5028 - When WINDOW is split evenly, the emanating windows are at least
5029 `window-min-height' lines tall and can accommodate at least one
5030 line plus - if WINDOW has one - a mode line.
5032 WINDOW may be split horizontally when the following conditions
5033 hold:
5034 - `window-size-fixed' is either nil or equals `height' for the
5035 buffer of WINDOW.
5036 - `split-width-threshold' is an integer and WINDOW is at least as
5037 wide as `split-width-threshold'.
5038 - When WINDOW is split evenly, the emanating windows are at least
5039 `window-min-width' or two (whichever is larger) columns wide."
5040 (when (window-live-p window)
5041 (with-current-buffer (window-buffer window)
5042 (if horizontal
5043 ;; A window can be split horizontally when its width is not
5044 ;; fixed, it is at least `split-width-threshold' columns wide
5045 ;; and at least twice as wide as `window-min-width' and 2 (the
5046 ;; latter value is hardcoded).
5047 (and (memq window-size-fixed '(nil height))
5048 ;; Testing `window-full-width-p' here hardly makes any
5049 ;; sense nowadays. This can be done more intuitively by
5050 ;; setting up `split-width-threshold' appropriately.
5051 (numberp split-width-threshold)
5052 (>= (window-width window)
5053 (max split-width-threshold
5054 (* 2 (max window-min-width 2)))))
5055 ;; A window can be split vertically when its height is not
5056 ;; fixed, it is at least `split-height-threshold' lines high,
5057 ;; and it is at least twice as high as `window-min-height' and 2
5058 ;; if it has a mode line or 1.
5059 (and (memq window-size-fixed '(nil width))
5060 (numberp split-height-threshold)
5061 (>= (window-height window)
5062 (max split-height-threshold
5063 (* 2 (max window-min-height
5064 (if mode-line-format 2 1))))))))))
5066 (defun split-window-sensibly (&optional window)
5067 "Split WINDOW in a way suitable for `display-buffer'.
5068 WINDOW defaults to the currently selected window.
5069 If `split-height-threshold' specifies an integer, WINDOW is at
5070 least `split-height-threshold' lines tall and can be split
5071 vertically, split WINDOW into two windows one above the other and
5072 return the lower window. Otherwise, if `split-width-threshold'
5073 specifies an integer, WINDOW is at least `split-width-threshold'
5074 columns wide and can be split horizontally, split WINDOW into two
5075 windows side by side and return the window on the right. If this
5076 can't be done either and WINDOW is the only window on its frame,
5077 try to split WINDOW vertically disregarding any value specified
5078 by `split-height-threshold'. If that succeeds, return the lower
5079 window. Return nil otherwise.
5081 By default `display-buffer' routines call this function to split
5082 the largest or least recently used window. To change the default
5083 customize the option `split-window-preferred-function'.
5085 You can enforce this function to not split WINDOW horizontally,
5086 by setting (or binding) the variable `split-width-threshold' to
5087 nil. If, in addition, you set `split-height-threshold' to zero,
5088 chances increase that this function does split WINDOW vertically.
5090 In order to not split WINDOW vertically, set (or bind) the
5091 variable `split-height-threshold' to nil. Additionally, you can
5092 set `split-width-threshold' to zero to make a horizontal split
5093 more likely to occur.
5095 Have a look at the function `window-splittable-p' if you want to
5096 know how `split-window-sensibly' determines whether WINDOW can be
5097 split."
5098 (let ((window (or window (selected-window))))
5099 (or (and (window-splittable-p window)
5100 ;; Split window vertically.
5101 (with-selected-window window
5102 (split-window-below)))
5103 (and (window-splittable-p window t)
5104 ;; Split window horizontally.
5105 (with-selected-window window
5106 (split-window-right)))
5107 (and (eq window (frame-root-window (window-frame window)))
5108 (not (window-minibuffer-p window))
5109 ;; If WINDOW is the only window on its frame and is not the
5110 ;; minibuffer window, try to split it vertically disregarding
5111 ;; the value of `split-height-threshold'.
5112 (let ((split-height-threshold 0))
5113 (when (window-splittable-p window)
5114 (with-selected-window window
5115 (split-window-below))))))))
5117 (defun window--try-to-split-window (window &optional alist)
5118 "Try to split WINDOW.
5119 Return value returned by `split-window-preferred-function' if it
5120 represents a live window, nil otherwise."
5121 (and (window-live-p window)
5122 (not (frame-parameter (window-frame window) 'unsplittable))
5123 (let* ((window-combination-limit
5124 ;; When `window-combination-limit' equals
5125 ;; `display-buffer' or equals `resize-window' and a
5126 ;; `window-height' or `window-width' alist entry are
5127 ;; present, bind it to t so resizing steals space
5128 ;; preferably from the window that was split.
5129 (if (or (eq window-combination-limit 'display-buffer)
5130 (and (eq window-combination-limit 'window-size)
5131 (or (cdr (assq 'window-height alist))
5132 (cdr (assq 'window-width alist)))))
5134 window-combination-limit))
5135 (new-window
5136 ;; Since `split-window-preferred-function' might
5137 ;; throw an error use `condition-case'.
5138 (condition-case nil
5139 (funcall split-window-preferred-function window)
5140 (error nil))))
5141 (and (window-live-p new-window) new-window))))
5143 (defun window--frame-usable-p (frame)
5144 "Return FRAME if it can be used to display a buffer."
5145 (when (frame-live-p frame)
5146 (let ((window (frame-root-window frame)))
5147 ;; `frame-root-window' may be an internal window which is considered
5148 ;; "dead" by `window-live-p'. Hence if `window' is not live we
5149 ;; implicitly know that `frame' has a visible window we can use.
5150 (unless (and (window-live-p window)
5151 (or (window-minibuffer-p window)
5152 ;; If the window is soft-dedicated, the frame is usable.
5153 ;; Actually, even if the window is really dedicated,
5154 ;; the frame is still usable by splitting it.
5155 ;; At least Emacs-22 allowed it, and it is desirable
5156 ;; when displaying same-frame windows.
5157 nil ; (eq t (window-dedicated-p window))
5159 frame))))
5161 (defcustom even-window-heights t
5162 "If non-nil `display-buffer' will try to even window heights.
5163 Otherwise `display-buffer' will leave the window configuration
5164 alone. Heights are evened only when `display-buffer' chooses a
5165 window that appears above or below the selected window."
5166 :type 'boolean
5167 :group 'windows)
5169 (defun window--even-window-heights (window)
5170 "Even heights of WINDOW and selected window.
5171 Do this only if these windows are vertically adjacent to each
5172 other, `even-window-heights' is non-nil, and the selected window
5173 is higher than WINDOW."
5174 (when (and even-window-heights
5175 ;; Even iff WINDOW forms a vertical combination with the
5176 ;; selected window, and WINDOW's height exceeds that of the
5177 ;; selected window, see also bug#11880.
5178 (window-combined-p window)
5179 (= (window-child-count (window-parent window)) 2)
5180 (eq (window-parent) (window-parent window))
5181 (> (window-total-height) (window-total-height window)))
5182 ;; Don't throw an error if we can't even window heights for
5183 ;; whatever reason.
5184 (condition-case nil
5185 (enlarge-window
5186 (/ (- (window-total-height window) (window-total-height)) 2))
5187 (error nil))))
5189 (defun window--display-buffer (buffer window type &optional alist dedicated)
5190 "Display BUFFER in WINDOW.
5191 TYPE must be one of the symbols `reuse', `window' or `frame' and
5192 is passed unaltered to `display-buffer-record-window'. ALIST is
5193 the alist argument of `display-buffer'. Set `window-dedicated-p'
5194 to DEDICATED if non-nil. Return WINDOW if BUFFER and WINDOW are
5195 live."
5196 (when (and (buffer-live-p buffer) (window-live-p window))
5197 (display-buffer-record-window type window buffer)
5198 (unless (eq buffer (window-buffer window))
5199 (set-window-dedicated-p window nil)
5200 (set-window-buffer window buffer)
5201 (when dedicated
5202 (set-window-dedicated-p window dedicated))
5203 (when (memq type '(window frame))
5204 (set-window-prev-buffers window nil)))
5205 (let ((parameter (window-parameter window 'quit-restore))
5206 (height (cdr (assq 'window-height alist)))
5207 (width (cdr (assq 'window-width alist))))
5208 (when (or (eq type 'window)
5209 (and (eq (car parameter) 'same)
5210 (eq (nth 1 parameter) 'window)))
5211 ;; Adjust height of window if asked for.
5212 (cond
5213 ((not height))
5214 ((numberp height)
5215 (let* ((new-height
5216 (if (integerp height)
5217 height
5218 (round
5219 (* (window-total-size (frame-root-window window))
5220 height))))
5221 (delta (- new-height (window-total-size window))))
5222 (when (and (window-resizable-p window delta nil 'safe)
5223 (window-combined-p window))
5224 (window-resize window delta nil 'safe))))
5225 ((functionp height)
5226 (ignore-errors (funcall height window))))
5227 ;; Adjust width of window if asked for.
5228 (cond
5229 ((not width))
5230 ((numberp width)
5231 (let* ((new-width
5232 (if (integerp width)
5233 width
5234 (round
5235 (* (window-total-size (frame-root-window window) t)
5236 width))))
5237 (delta (- new-width (window-total-size window t))))
5238 (when (and (window-resizable-p window delta t 'safe)
5239 (window-combined-p window t))
5240 (window-resize window delta t 'safe))))
5241 ((functionp width)
5242 (ignore-errors (funcall width window))))))
5244 window))
5246 (defun window--maybe-raise-frame (frame)
5247 (let ((visible (frame-visible-p frame)))
5248 (unless (or (not visible)
5249 ;; Assume the selected frame is already visible enough.
5250 (eq frame (selected-frame))
5251 ;; Assume the frame from which we invoked the
5252 ;; minibuffer is visible.
5253 (and (minibuffer-window-active-p (selected-window))
5254 (eq frame (window-frame (minibuffer-selected-window)))))
5255 (raise-frame frame))))
5257 ;; FIXME: Not implemented.
5258 ;; FIXME: By the way, there could be more levels of dedication:
5259 ;; - `barely' dedicated doesn't prevent reuse of the window, only records that
5260 ;; the window hasn't been used for something else yet.
5261 ;; - `softly' dedicated only allows reuse when asked explicitly.
5262 ;; - `strongly' never allows reuse.
5263 (defvar display-buffer-mark-dedicated nil
5264 "If non-nil, `display-buffer' marks the windows it creates as dedicated.
5265 The actual non-nil value of this variable will be copied to the
5266 `window-dedicated-p' flag.")
5268 (defconst display-buffer--action-function-custom-type
5269 '(choice :tag "Function"
5270 (const :tag "--" ignore) ; default for insertion
5271 (const display-buffer-reuse-window)
5272 (const display-buffer-pop-up-window)
5273 (const display-buffer-same-window)
5274 (const display-buffer-pop-up-frame)
5275 (const display-buffer-use-some-window)
5276 (function :tag "Other function"))
5277 "Custom type for `display-buffer' action functions.")
5279 (defconst display-buffer--action-custom-type
5280 `(cons :tag "Action"
5281 (choice :tag "Action functions"
5282 ,display-buffer--action-function-custom-type
5283 (repeat
5284 :tag "List of functions"
5285 ,display-buffer--action-function-custom-type))
5286 (alist :tag "Action arguments"
5287 :key-type symbol
5288 :value-type (sexp :tag "Value")))
5289 "Custom type for `display-buffer' actions.")
5291 (defvar display-buffer-overriding-action '(nil . nil)
5292 "Overriding action to perform to display a buffer.
5293 It should be a cons cell (FUNCTION . ALIST), where FUNCTION is a
5294 function or a list of functions. Each function should accept two
5295 arguments: a buffer to display and an alist similar to ALIST.
5296 See `display-buffer' for details.")
5297 (put 'display-buffer-overriding-action 'risky-local-variable t)
5299 (defcustom display-buffer-alist nil
5300 "Alist of conditional actions for `display-buffer'.
5301 This is a list of elements (CONDITION . ACTION), where:
5303 CONDITION is either a regexp matching buffer names, or a
5304 function that takes two arguments - a buffer name and the
5305 ACTION argument of `display-buffer' - and returns a boolean.
5307 ACTION is a cons cell (FUNCTION . ALIST), where FUNCTION is a
5308 function or a list of functions. Each such function should
5309 accept two arguments: a buffer to display and an alist of the
5310 same form as ALIST. See `display-buffer' for details.
5312 `display-buffer' scans this alist until it either finds a
5313 matching regular expression or the function specified by a
5314 condition returns non-nil. In any of these cases, it adds the
5315 associated action to the list of actions it will try."
5316 :type `(alist :key-type
5317 (choice :tag "Condition"
5318 regexp
5319 (function :tag "Matcher function"))
5320 :value-type ,display-buffer--action-custom-type)
5321 :risky t
5322 :version "24.1"
5323 :group 'windows)
5325 (defcustom display-buffer-base-action '(nil . nil)
5326 "User-specified default action for `display-buffer'.
5327 It should be a cons cell (FUNCTION . ALIST), where FUNCTION is a
5328 function or a list of functions. Each function should accept two
5329 arguments: a buffer to display and an alist similar to ALIST.
5330 See `display-buffer' for details."
5331 :type display-buffer--action-custom-type
5332 :risky t
5333 :version "24.1"
5334 :group 'windows)
5336 (defconst display-buffer-fallback-action
5337 '((display-buffer--maybe-same-window ;FIXME: why isn't this redundant?
5338 display-buffer-reuse-window
5339 display-buffer--maybe-pop-up-frame-or-window
5340 display-buffer-use-some-window
5341 ;; If all else fails, pop up a new frame.
5342 display-buffer-pop-up-frame))
5343 "Default fallback action for `display-buffer'.
5344 This is the action used by `display-buffer' if no other actions
5345 specified, e.g. by the user options `display-buffer-alist' or
5346 `display-buffer-base-action'. See `display-buffer'.")
5347 (put 'display-buffer-fallback-action 'risky-local-variable t)
5349 (defun display-buffer-assq-regexp (buffer-name alist action)
5350 "Retrieve ALIST entry corresponding to BUFFER-NAME.
5351 ACTION is the action argument passed to `display-buffer'."
5352 (catch 'match
5353 (dolist (entry alist)
5354 (let ((key (car entry)))
5355 (when (or (and (stringp key)
5356 (string-match-p key buffer-name))
5357 (and (functionp key)
5358 (funcall key buffer-name action)))
5359 (throw 'match (cdr entry)))))))
5361 (defvar display-buffer--same-window-action
5362 '(display-buffer-same-window
5363 (inhibit-same-window . nil))
5364 "A `display-buffer' action for displaying in the same window.")
5365 (put 'display-buffer--same-window-action 'risky-local-variable t)
5367 (defvar display-buffer--other-frame-action
5368 '((display-buffer-reuse-window
5369 display-buffer-pop-up-frame)
5370 (reusable-frames . 0)
5371 (inhibit-same-window . t))
5372 "A `display-buffer' action for displaying in another frame.")
5373 (put 'display-buffer--other-frame-action 'risky-local-variable t)
5375 (defun display-buffer (buffer-or-name &optional action frame)
5376 "Display BUFFER-OR-NAME in some window, without selecting it.
5377 BUFFER-OR-NAME must be a buffer or the name of an existing
5378 buffer. Return the window chosen for displaying BUFFER-OR-NAME,
5379 or nil if no such window is found.
5381 Optional argument ACTION, if non-nil, should specify a display
5382 action. Its form is described below.
5384 Optional argument FRAME, if non-nil, acts like an additional
5385 ALIST entry (reusable-frames . FRAME) to the action list of ACTION,
5386 specifying the frame(s) to search for a window that is already
5387 displaying the buffer. See `display-buffer-reuse-window'
5389 If ACTION is non-nil, it should have the form (FUNCTION . ALIST),
5390 where FUNCTION is either a function or a list of functions, and
5391 ALIST is an arbitrary association list (alist).
5393 Each such FUNCTION should accept two arguments: the buffer to
5394 display and an alist. Based on those arguments, it should either
5395 display the buffer and return the window, or return nil if unable
5396 to display the buffer.
5398 The `display-buffer' function builds a function list and an alist
5399 by combining the functions and alists specified in
5400 `display-buffer-overriding-action', `display-buffer-alist', the
5401 ACTION argument, `display-buffer-base-action', and
5402 `display-buffer-fallback-action' (in order). Then it calls each
5403 function in the combined function list in turn, passing the
5404 buffer as the first argument and the combined alist as the second
5405 argument, until one of the functions returns non-nil.
5407 If ACTION is nil, the function list and the alist are built using
5408 only the other variables mentioned above.
5410 Available action functions include:
5411 `display-buffer-same-window'
5412 `display-buffer-reuse-window'
5413 `display-buffer-pop-up-frame'
5414 `display-buffer-pop-up-window'
5415 `display-buffer-use-some-window'
5417 Recognized alist entries include:
5419 `inhibit-same-window' -- A non-nil value prevents the same
5420 window from being used for display.
5422 `inhibit-switch-frame' -- A non-nil value prevents any other
5423 frame from being raised or selected,
5424 even if the window is displayed there.
5426 `reusable-frames' -- Value specifies frame(s) to search for a
5427 window that already displays the buffer.
5428 See `display-buffer-reuse-window'.
5430 `pop-up-frame-parameters' -- Value specifies an alist of frame
5431 parameters to give a new frame, if
5432 one is created.
5434 `window-height' -- Value specifies either an integer (the number
5435 of lines of a new window), a floating point number (the
5436 fraction of a new window with respect to the height of the
5437 frame's root window) or a function to be called with one
5438 argument - a new window. The function is supposed to adjust
5439 the height of the window; its return value is ignored.
5440 Suitable functions are `shrink-window-if-larger-than-buffer'
5441 and `fit-window-to-buffer'.
5443 `window-width' -- Value specifies either an integer (the number
5444 of columns of a new window), a floating point number (the
5445 fraction of a new window with respect to the width of the
5446 frame's root window) or a function to be called with one
5447 argument - a new window. The function is supposed to adjust
5448 the width of the window; its return value is ignored.
5450 The ACTION argument to `display-buffer' can also have a non-nil
5451 and non-list value. This means to display the buffer in a window
5452 other than the selected one, even if it is already displayed in
5453 the selected window. If called interactively with a prefix
5454 argument, ACTION is t."
5455 (interactive (list (read-buffer "Display buffer: " (other-buffer))
5456 (if current-prefix-arg t)))
5457 (let ((buffer (if (bufferp buffer-or-name)
5458 buffer-or-name
5459 (get-buffer buffer-or-name)))
5460 ;; Handle the old form of the first argument.
5461 (inhibit-same-window (and action (not (listp action)))))
5462 (unless (listp action) (setq action nil))
5463 (if display-buffer-function
5464 ;; If `display-buffer-function' is defined, let it do the job.
5465 (funcall display-buffer-function buffer inhibit-same-window)
5466 ;; Otherwise, use the defined actions.
5467 (let* ((user-action
5468 (display-buffer-assq-regexp
5469 (buffer-name buffer) display-buffer-alist action))
5470 (special-action (display-buffer--special-action buffer))
5471 ;; Extra actions from the arguments to this function:
5472 (extra-action
5473 (cons nil (append (if inhibit-same-window
5474 '((inhibit-same-window . t)))
5475 (if frame
5476 `((reusable-frames . ,frame))))))
5477 ;; Construct action function list and action alist.
5478 (actions (list display-buffer-overriding-action
5479 user-action special-action action extra-action
5480 display-buffer-base-action
5481 display-buffer-fallback-action))
5482 (functions (apply 'append
5483 (mapcar (lambda (x)
5484 (setq x (car x))
5485 (if (functionp x) (list x) x))
5486 actions)))
5487 (alist (apply 'append (mapcar 'cdr actions)))
5488 window)
5489 (unless (buffer-live-p buffer)
5490 (error "Invalid buffer"))
5491 (while (and functions (not window))
5492 (setq window (funcall (car functions) buffer alist)
5493 functions (cdr functions)))
5494 window))))
5496 (defun display-buffer-other-frame (buffer)
5497 "Display buffer BUFFER in another frame.
5498 This uses the function `display-buffer' as a subroutine; see
5499 its documentation for additional customization information."
5500 (interactive "BDisplay buffer in other frame: ")
5501 (display-buffer buffer display-buffer--other-frame-action t))
5503 ;;; `display-buffer' action functions:
5505 (defun display-buffer-same-window (buffer alist)
5506 "Display BUFFER in the selected window.
5507 This fails if ALIST has a non-nil `inhibit-same-window' entry, or
5508 if the selected window is a minibuffer window or is dedicated to
5509 another buffer; in that case, return nil. Otherwise, return the
5510 selected window."
5511 (unless (or (cdr (assq 'inhibit-same-window alist))
5512 (window-minibuffer-p)
5513 (window-dedicated-p))
5514 (window--display-buffer buffer (selected-window) 'reuse alist)))
5516 (defun display-buffer--maybe-same-window (buffer alist)
5517 "Conditionally display BUFFER in the selected window.
5518 If `same-window-p' returns non-nil for BUFFER's name, call
5519 `display-buffer-same-window' and return its value. Otherwise,
5520 return nil."
5521 (and (same-window-p (buffer-name buffer))
5522 (display-buffer-same-window buffer alist)))
5524 (defun display-buffer-reuse-window (buffer alist)
5525 "Return a window that is already displaying BUFFER.
5526 Return nil if no usable window is found.
5528 If ALIST has a non-nil `inhibit-same-window' entry, the selected
5529 window is not eligible for reuse.
5531 If ALIST contains a `reusable-frames' entry, its value determines
5532 which frames to search for a reusable window:
5533 nil -- the selected frame (actually the last non-minibuffer frame)
5534 A frame -- just that frame
5535 `visible' -- all visible frames
5536 0 -- all frames on the current terminal
5537 t -- all frames.
5539 If ALIST contains no `reusable-frames' entry, search just the
5540 selected frame if `display-buffer-reuse-frames' and
5541 `pop-up-frames' are both nil; search all frames on the current
5542 terminal if either of those variables is non-nil.
5544 If ALIST has a non-nil `inhibit-switch-frame' entry, then in the
5545 event that a window on another frame is chosen, avoid raising
5546 that frame."
5547 (let* ((alist-entry (assq 'reusable-frames alist))
5548 (frames (cond (alist-entry (cdr alist-entry))
5549 ((if (eq pop-up-frames 'graphic-only)
5550 (display-graphic-p)
5551 pop-up-frames)
5553 (display-buffer-reuse-frames 0)
5554 (t (last-nonminibuffer-frame))))
5555 (window (if (and (eq buffer (window-buffer))
5556 (not (cdr (assq 'inhibit-same-window alist))))
5557 (selected-window)
5558 (car (delq (selected-window)
5559 (get-buffer-window-list buffer 'nomini
5560 frames))))))
5561 (when (window-live-p window)
5562 (prog1 (window--display-buffer buffer window 'reuse alist)
5563 (unless (cdr (assq 'inhibit-switch-frame alist))
5564 (window--maybe-raise-frame (window-frame window)))))))
5566 (defun display-buffer--special-action (buffer)
5567 "Return special display action for BUFFER, if any.
5568 If `special-display-p' returns non-nil for BUFFER, return an
5569 appropriate display action involving `special-display-function'.
5570 See `display-buffer' for the format of display actions."
5571 (and special-display-function
5572 ;; `special-display-p' returns either t or a list of frame
5573 ;; parameters to pass to `special-display-function'.
5574 (let ((pars (special-display-p (buffer-name buffer))))
5575 (when pars
5576 (list (list #'display-buffer-reuse-window
5577 `(lambda (buffer _alist)
5578 (funcall special-display-function
5579 buffer ',(if (listp pars) pars)))))))))
5581 (defun display-buffer-pop-up-frame (buffer alist)
5582 "Display BUFFER in a new frame.
5583 This works by calling `pop-up-frame-function'. If successful,
5584 return the window used; otherwise return nil.
5586 If ALIST has a non-nil `inhibit-switch-frame' entry, avoid
5587 raising the new frame.
5589 If ALIST has a non-nil `pop-up-frame-parameters' entry, the
5590 corresponding value is an alist of frame parameters to give the
5591 new frame."
5592 (let* ((params (cdr (assq 'pop-up-frame-parameters alist)))
5593 (pop-up-frame-alist (append params pop-up-frame-alist))
5594 (fun pop-up-frame-function)
5595 frame window)
5596 (when (and fun
5597 (setq frame (funcall fun))
5598 (setq window (frame-selected-window frame)))
5599 (prog1 (window--display-buffer
5600 buffer window 'frame alist display-buffer-mark-dedicated)
5601 (unless (cdr (assq 'inhibit-switch-frame alist))
5602 (window--maybe-raise-frame frame))))))
5604 (defun display-buffer-pop-up-window (buffer alist)
5605 "Display BUFFER by popping up a new window.
5606 The new window is created on the selected frame, or in
5607 `last-nonminibuffer-frame' if no windows can be created there.
5608 If successful, return the new window; otherwise return nil.
5610 If ALIST has a non-nil `inhibit-switch-frame' entry, then in the
5611 event that the new window is created on another frame, avoid
5612 raising the frame."
5613 (let ((frame (or (window--frame-usable-p (selected-frame))
5614 (window--frame-usable-p (last-nonminibuffer-frame))))
5615 window)
5616 (when (and (or (not (frame-parameter frame 'unsplittable))
5617 ;; If the selected frame cannot be split, look at
5618 ;; `last-nonminibuffer-frame'.
5619 (and (eq frame (selected-frame))
5620 (setq frame (last-nonminibuffer-frame))
5621 (window--frame-usable-p frame)
5622 (not (frame-parameter frame 'unsplittable))))
5623 ;; Attempt to split largest or least recently used window.
5624 (setq window (or (window--try-to-split-window
5625 (get-largest-window frame t) alist)
5626 (window--try-to-split-window
5627 (get-lru-window frame t) alist))))
5628 (prog1 (window--display-buffer
5629 buffer window 'window alist display-buffer-mark-dedicated)
5630 (unless (cdr (assq 'inhibit-switch-frame alist))
5631 (window--maybe-raise-frame (window-frame window)))))))
5633 (defun display-buffer--maybe-pop-up-frame-or-window (buffer alist)
5634 "Try displaying BUFFER based on `pop-up-frames' or `pop-up-windows'.
5636 If `pop-up-frames' is non-nil (and not `graphic-only' on a
5637 text-only terminal), try with `display-buffer-pop-up-frame'.
5639 If that cannot be done, and `pop-up-windows' is non-nil, try
5640 again with `display-buffer-pop-up-window'."
5641 (or (and (if (eq pop-up-frames 'graphic-only)
5642 (display-graphic-p)
5643 pop-up-frames)
5644 (display-buffer-pop-up-frame buffer alist))
5645 (and pop-up-windows
5646 (display-buffer-pop-up-window buffer alist))))
5648 (defun display-buffer-below-selected (buffer alist)
5649 "Try displaying BUFFER in a window below the selected window.
5650 This either splits the selected window or reuses the window below
5651 the selected one."
5652 (let (window)
5653 (or (and (not (frame-parameter nil 'unsplittable))
5654 (setq window (window--try-to-split-window (selected-window) alist))
5655 (window--display-buffer
5656 buffer window 'window alist display-buffer-mark-dedicated))
5657 (and (setq window (window-in-direction 'below))
5658 (not (window-dedicated-p window))
5659 (window--display-buffer
5660 buffer window 'reuse alist display-buffer-mark-dedicated)))))
5662 (defun display-buffer-at-bottom (buffer alist)
5663 "Try displaying BUFFER in a window at the bottom of the selected frame.
5664 This either splits the window at the bottom of the frame or the
5665 frame's root window, or reuses an existing window at the bottom
5666 of the selected frame."
5667 (let (bottom-window window)
5668 (walk-window-tree (lambda (window) (setq bottom-window window)))
5669 (or (and (not (frame-parameter nil 'unsplittable))
5670 (setq window (window--try-to-split-window bottom-window alist))
5671 (window--display-buffer
5672 buffer window 'window alist display-buffer-mark-dedicated))
5673 (and (not (frame-parameter nil 'unsplittable))
5674 (setq window
5675 (condition-case nil
5676 (split-window (frame-root-window))
5677 (error nil)))
5678 (window--display-buffer
5679 buffer window 'window alist display-buffer-mark-dedicated))
5680 (and (setq window bottom-window)
5681 (not (window-dedicated-p window))
5682 (window--display-buffer
5683 buffer window 'reuse alist display-buffer-mark-dedicated)))))
5685 (defun display-buffer-in-previous-window (buffer alist)
5686 "Display BUFFER in a window previously showing it.
5687 If ALIST has a non-nil `inhibit-same-window' entry, the selected
5688 window is not eligible for reuse.
5690 If ALIST contains a `reusable-frames' entry, its value determines
5691 which frames to search for a reusable window:
5692 nil -- the selected frame (actually the last non-minibuffer frame)
5693 A frame -- just that frame
5694 `visible' -- all visible frames
5695 0 -- all frames on the current terminal
5696 t -- all frames.
5698 If ALIST contains no `reusable-frames' entry, search just the
5699 selected frame if `display-buffer-reuse-frames' and
5700 `pop-up-frames' are both nil; search all frames on the current
5701 terminal if either of those variables is non-nil.
5703 If ALIST has a `previous-window' entry, the window specified by
5704 that entry will override any other window found by the methods
5705 above, even if that window never showed BUFFER before."
5706 (let* ((alist-entry (assq 'reusable-frames alist))
5707 (inhibit-same-window
5708 (cdr (assq 'inhibit-same-window alist)))
5709 (frames (cond
5710 (alist-entry (cdr alist-entry))
5711 ((if (eq pop-up-frames 'graphic-only)
5712 (display-graphic-p)
5713 pop-up-frames)
5715 (display-buffer-reuse-frames 0)
5716 (t (last-nonminibuffer-frame))))
5717 entry best-window second-best-window window)
5718 ;; Scan windows whether they have shown the buffer recently.
5719 (catch 'best
5720 (dolist (window (window-list-1 (frame-first-window) 'nomini frames))
5721 (when (and (assq buffer (window-prev-buffers window))
5722 (not (window-dedicated-p window)))
5723 (if (eq window (selected-window))
5724 (unless inhibit-same-window
5725 (setq second-best-window window))
5726 (setq best-window window)
5727 (throw 'best t)))))
5728 ;; When ALIST has a `previous-window' entry, that entry may override
5729 ;; anything we found so far.
5730 (when (and (setq window (cdr (assq 'previous-window alist)))
5731 (window-live-p window)
5732 (not (window-dedicated-p window)))
5733 (if (eq window (selected-window))
5734 (unless inhibit-same-window
5735 (setq second-best-window window))
5736 (setq best-window window)))
5737 ;; Return best or second best window found.
5738 (when (setq window (or best-window second-best-window))
5739 (window--display-buffer buffer window 'reuse alist))))
5741 (defun display-buffer-use-some-window (buffer alist)
5742 "Display BUFFER in an existing window.
5743 Search for a usable window, set that window to the buffer, and
5744 return the window. If no suitable window is found, return nil.
5746 If ALIST has a non-nil `inhibit-switch-frame' entry, then in the
5747 event that a window in another frame is chosen, avoid raising
5748 that frame."
5749 (let* ((not-this-window (cdr (assq 'inhibit-same-window alist)))
5750 (frame (or (window--frame-usable-p (selected-frame))
5751 (window--frame-usable-p (last-nonminibuffer-frame))))
5752 (window
5753 ;; Reuse an existing window.
5754 (or (get-lru-window frame nil not-this-window)
5755 (let ((window (get-buffer-window buffer 'visible)))
5756 (unless (and not-this-window
5757 (eq window (selected-window)))
5758 window))
5759 (get-largest-window 'visible nil not-this-window)
5760 (let ((window (get-buffer-window buffer 0)))
5761 (unless (and not-this-window
5762 (eq window (selected-window)))
5763 window))
5764 (get-largest-window 0 not-this-window))))
5765 (when (window-live-p window)
5766 (prog1
5767 (window--display-buffer buffer window 'reuse alist)
5768 (window--even-window-heights window)
5769 (unless (cdr (assq 'inhibit-switch-frame alist))
5770 (window--maybe-raise-frame (window-frame window)))))))
5772 ;;; Display + selection commands:
5773 (defun pop-to-buffer (buffer &optional action norecord)
5774 "Select buffer BUFFER in some window, preferably a different one.
5775 BUFFER may be a buffer, a string (a buffer name), or nil. If it
5776 is a string not naming an existent buffer, create a buffer with
5777 that name. If BUFFER is nil, choose some other buffer. Return
5778 the buffer.
5780 This uses `display-buffer' as a subroutine. The optional ACTION
5781 argument is passed to `display-buffer' as its ACTION argument.
5782 See `display-buffer' for more information. ACTION is t if called
5783 interactively with a prefix argument, which means to pop to a
5784 window other than the selected one even if the buffer is already
5785 displayed in the selected window.
5787 If the window to show BUFFER is not on the selected
5788 frame, raise that window's frame and give it input focus.
5790 Optional third arg NORECORD non-nil means do not put this buffer
5791 at the front of the list of recently selected ones."
5792 (interactive (list (read-buffer "Pop to buffer: " (other-buffer))
5793 (if current-prefix-arg t)))
5794 (setq buffer (window-normalize-buffer-to-switch-to buffer))
5795 (set-buffer buffer)
5796 (let* ((old-frame (selected-frame))
5797 (window (display-buffer buffer action))
5798 (frame (window-frame window)))
5799 ;; If we chose another frame, make sure it gets input focus.
5800 (unless (eq frame old-frame)
5801 (select-frame-set-input-focus frame norecord))
5802 ;; Make sure new window is selected (Bug#8615), (Bug#6954).
5803 (select-window window norecord)
5804 buffer))
5806 (defun pop-to-buffer-same-window (buffer &optional norecord)
5807 "Select buffer BUFFER in some window, preferably the same one.
5808 This function behaves much like `switch-to-buffer', except it
5809 displays with `special-display-function' if BUFFER has a match in
5810 `special-display-buffer-names' or `special-display-regexps'.
5812 Unlike `pop-to-buffer', this function prefers using the selected
5813 window over popping up a new window or frame.
5815 BUFFER may be a buffer, a string (a buffer name), or nil. If it
5816 is a string not naming an existent buffer, create a buffer with
5817 that name. If BUFFER is nil, choose some other buffer. Return
5818 the buffer.
5820 NORECORD, if non-nil means do not put this buffer at the front of
5821 the list of recently selected ones."
5822 (pop-to-buffer buffer display-buffer--same-window-action norecord))
5824 (defun read-buffer-to-switch (prompt)
5825 "Read the name of a buffer to switch to, prompting with PROMPT.
5826 Return the name of the buffer as a string.
5828 This function is intended for the `switch-to-buffer' family of
5829 commands since these need to omit the name of the current buffer
5830 from the list of completions and default values."
5831 (let ((rbts-completion-table (internal-complete-buffer-except)))
5832 (minibuffer-with-setup-hook
5833 (lambda ()
5834 (setq minibuffer-completion-table rbts-completion-table)
5835 ;; Since rbts-completion-table is built dynamically, we
5836 ;; can't just add it to the default value of
5837 ;; icomplete-with-completion-tables, so we add it
5838 ;; here manually.
5839 (if (and (boundp 'icomplete-with-completion-tables)
5840 (listp icomplete-with-completion-tables))
5841 (set (make-local-variable 'icomplete-with-completion-tables)
5842 (cons rbts-completion-table
5843 icomplete-with-completion-tables))))
5844 (read-buffer prompt (other-buffer (current-buffer))
5845 (confirm-nonexistent-file-or-buffer)))))
5847 (defun window-normalize-buffer-to-switch-to (buffer-or-name)
5848 "Normalize BUFFER-OR-NAME argument of buffer switching functions.
5849 If BUFFER-OR-NAME is nil, return the buffer returned by
5850 `other-buffer'. Else, if a buffer specified by BUFFER-OR-NAME
5851 exists, return that buffer. If no such buffer exists, create a
5852 buffer with the name BUFFER-OR-NAME and return that buffer."
5853 (if buffer-or-name
5854 (or (get-buffer buffer-or-name)
5855 (let ((buffer (get-buffer-create buffer-or-name)))
5856 (set-buffer-major-mode buffer)
5857 buffer))
5858 (other-buffer)))
5860 (defcustom switch-to-buffer-preserve-window-point nil
5861 "If non-nil, `switch-to-buffer' tries to preserve `window-point'.
5862 If this is nil, `switch-to-buffer' displays the buffer at that
5863 buffer's `point'. If this is `already-displayed', it tries to
5864 display the buffer at its previous position in the selected
5865 window, provided the buffer is currently displayed in some other
5866 window on any visible or iconified frame. If this is t, it
5867 unconditionally tries to display the buffer at its previous
5868 position in the selected window.
5870 This variable is ignored if the buffer is already displayed in
5871 the selected window or never appeared in it before, or if
5872 `switch-to-buffer' calls `pop-to-buffer' to display the buffer."
5873 :type '(choice
5874 (const :tag "Never" nil)
5875 (const :tag "If already displayed elsewhere" already-displayed)
5876 (const :tag "Always" t))
5877 :group 'windows
5878 :version "24.3")
5880 (defun switch-to-buffer (buffer-or-name &optional norecord force-same-window)
5881 "Display buffer BUFFER-OR-NAME in the selected window.
5883 WARNING: This is NOT the way to work on another buffer temporarily
5884 within a Lisp program! Use `set-buffer' instead. That avoids
5885 messing with the window-buffer correspondences.
5887 If the selected window cannot display the specified
5888 buffer (e.g. if it is a minibuffer window or strongly dedicated
5889 to another buffer), call `pop-to-buffer' to select the buffer in
5890 another window.
5892 If called interactively, read the buffer name using the
5893 minibuffer. The variable `confirm-nonexistent-file-or-buffer'
5894 determines whether to request confirmation before creating a new
5895 buffer.
5897 BUFFER-OR-NAME may be a buffer, a string (a buffer name), or nil.
5898 If BUFFER-OR-NAME is a string that does not identify an existing
5899 buffer, create a buffer with that name. If BUFFER-OR-NAME is
5900 nil, switch to the buffer returned by `other-buffer'.
5902 If optional argument NORECORD is non-nil, do not put the buffer
5903 at the front of the buffer list, and do not make the window
5904 displaying it the most recently selected one.
5906 If optional argument FORCE-SAME-WINDOW is non-nil, the buffer
5907 must be displayed in the selected window; if that is impossible,
5908 signal an error rather than calling `pop-to-buffer'.
5910 The option `switch-to-buffer-preserve-window-point' can be used
5911 to make the buffer appear at its last position in the selected
5912 window.
5914 Return the buffer switched to."
5915 (interactive
5916 (list (read-buffer-to-switch "Switch to buffer: ") nil 'force-same-window))
5917 (let ((buffer (window-normalize-buffer-to-switch-to buffer-or-name)))
5918 (cond
5919 ;; Don't call set-window-buffer if it's not needed since it
5920 ;; might signal an error (e.g. if the window is dedicated).
5921 ((eq buffer (window-buffer)))
5922 ((window-minibuffer-p)
5923 (if force-same-window
5924 (user-error "Cannot switch buffers in minibuffer window")
5925 (pop-to-buffer buffer norecord)))
5926 ((eq (window-dedicated-p) t)
5927 (if force-same-window
5928 (user-error "Cannot switch buffers in a dedicated window")
5929 (pop-to-buffer buffer norecord)))
5931 (let* ((entry (assq buffer (window-prev-buffers)))
5932 (displayed (and (eq switch-to-buffer-preserve-window-point
5933 'already-displayed)
5934 (get-buffer-window buffer 0))))
5935 (set-window-buffer nil buffer)
5936 (when (and entry
5937 (or (eq switch-to-buffer-preserve-window-point t)
5938 displayed))
5939 ;; Try to restore start and point of buffer in the selected
5940 ;; window (Bug#4041).
5941 (set-window-start (selected-window) (nth 1 entry) t)
5942 (set-window-point nil (nth 2 entry))))))
5944 (unless norecord
5945 (select-window (selected-window)))
5946 (set-buffer buffer)))
5948 (defun switch-to-buffer-other-window (buffer-or-name &optional norecord)
5949 "Select the buffer specified by BUFFER-OR-NAME in another window.
5950 BUFFER-OR-NAME may be a buffer, a string (a buffer name), or
5951 nil. Return the buffer switched to.
5953 If called interactively, prompt for the buffer name using the
5954 minibuffer. The variable `confirm-nonexistent-file-or-buffer'
5955 determines whether to request confirmation before creating a new
5956 buffer.
5958 If BUFFER-OR-NAME is a string and does not identify an existing
5959 buffer, create a new buffer with that name. If BUFFER-OR-NAME is
5960 nil, switch to the buffer returned by `other-buffer'.
5962 Optional second argument NORECORD non-nil means do not put this
5963 buffer at the front of the list of recently selected ones.
5965 This uses the function `display-buffer' as a subroutine; see its
5966 documentation for additional customization information."
5967 (interactive
5968 (list (read-buffer-to-switch "Switch to buffer in other window: ")))
5969 (let ((pop-up-windows t))
5970 (pop-to-buffer buffer-or-name t norecord)))
5972 (defun switch-to-buffer-other-frame (buffer-or-name &optional norecord)
5973 "Switch to buffer BUFFER-OR-NAME in another frame.
5974 BUFFER-OR-NAME may be a buffer, a string (a buffer name), or
5975 nil. Return the buffer switched to.
5977 If called interactively, prompt for the buffer name using the
5978 minibuffer. The variable `confirm-nonexistent-file-or-buffer'
5979 determines whether to request confirmation before creating a new
5980 buffer.
5982 If BUFFER-OR-NAME is a string and does not identify an existing
5983 buffer, create a new buffer with that name. If BUFFER-OR-NAME is
5984 nil, switch to the buffer returned by `other-buffer'.
5986 Optional second arg NORECORD non-nil means do not put this
5987 buffer at the front of the list of recently selected ones.
5989 This uses the function `display-buffer' as a subroutine; see its
5990 documentation for additional customization information."
5991 (interactive
5992 (list (read-buffer-to-switch "Switch to buffer in other frame: ")))
5993 (pop-to-buffer buffer-or-name display-buffer--other-frame-action norecord))
5995 (defun set-window-text-height (window height)
5996 "Set the height in lines of the text display area of WINDOW to HEIGHT.
5997 WINDOW must be a live window and defaults to the selected one.
5998 HEIGHT doesn't include the mode line or header line, if any, or
5999 any partial-height lines in the text display area.
6001 Note that the current implementation of this function cannot
6002 always set the height exactly, but attempts to be conservative,
6003 by allocating more lines than are actually needed in the case
6004 where some error may be present."
6005 (setq window (window-normalize-window window t))
6006 (let ((delta (- height (window-text-height window))))
6007 (unless (zerop delta)
6008 ;; Setting window-min-height to a value like 1 can lead to very
6009 ;; bizarre displays because it also allows Emacs to make *other*
6010 ;; windows one line tall, which means that there's no more space
6011 ;; for the mode line.
6012 (let ((window-min-height (min 2 height)))
6013 (window-resize window delta)))))
6015 (defun enlarge-window-horizontally (delta)
6016 "Make selected window DELTA columns wider.
6017 Interactively, if no argument is given, make selected window one
6018 column wider."
6019 (interactive "p")
6020 (enlarge-window delta t))
6022 (defun shrink-window-horizontally (delta)
6023 "Make selected window DELTA columns narrower.
6024 Interactively, if no argument is given, make selected window one
6025 column narrower."
6026 (interactive "p")
6027 (shrink-window delta t))
6029 (defun count-screen-lines (&optional beg end count-final-newline window)
6030 "Return the number of screen lines in the region.
6031 The number of screen lines may be different from the number of actual lines,
6032 due to line breaking, display table, etc.
6034 Optional arguments BEG and END default to `point-min' and `point-max'
6035 respectively.
6037 If region ends with a newline, ignore it unless optional third argument
6038 COUNT-FINAL-NEWLINE is non-nil.
6040 The optional fourth argument WINDOW specifies the window used for obtaining
6041 parameters such as width, horizontal scrolling, and so on. The default is
6042 to use the selected window's parameters.
6044 Like `vertical-motion', `count-screen-lines' always uses the current buffer,
6045 regardless of which buffer is displayed in WINDOW. This makes possible to use
6046 `count-screen-lines' in any buffer, whether or not it is currently displayed
6047 in some window."
6048 (unless beg
6049 (setq beg (point-min)))
6050 (unless end
6051 (setq end (point-max)))
6052 (if (= beg end)
6054 (save-excursion
6055 (save-restriction
6056 (widen)
6057 (narrow-to-region (min beg end)
6058 (if (and (not count-final-newline)
6059 (= ?\n (char-before (max beg end))))
6060 (1- (max beg end))
6061 (max beg end)))
6062 (goto-char (point-min))
6063 (1+ (vertical-motion (buffer-size) window))))))
6065 (defun window-buffer-height (window)
6066 "Return the height (in screen lines) of the buffer that WINDOW is displaying.
6067 WINDOW must be a live window and defaults to the selected one."
6068 (setq window (window-normalize-window window t))
6069 (with-current-buffer (window-buffer window)
6070 (max 1
6071 (count-screen-lines (point-min) (point-max)
6072 ;; If buffer ends with a newline, ignore it when
6073 ;; counting height unless point is after it.
6074 (eobp)
6075 window))))
6077 ;;; Resizing buffers to fit their contents exactly.
6078 (defcustom fit-frame-to-buffer nil
6079 "Non-nil means `fit-window-to-buffer' can resize frames.
6080 A frame can be resized if and only if its root window is a live
6081 window. The height of the root window is subject to the values
6082 of `fit-frame-to-buffer-max-height' and `window-min-height'."
6083 :type 'boolean
6084 :version "24.3"
6085 :group 'help)
6087 (defcustom fit-frame-to-buffer-bottom-margin 4
6088 "Bottom margin for the command `fit-frame-to-buffer'.
6089 This is the number of lines that function leaves free at the bottom of
6090 the display, in order to not obscure any system task bar or panel.
6091 If you do not have one (or if it is vertical) you might want to
6092 reduce this. If it is thicker, you might want to increase this."
6093 ;; If you set this too small, fit-frame-to-buffer can shift the
6094 ;; frame up to avoid the panel.
6095 :type 'integer
6096 :version "24.3"
6097 :group 'windows)
6099 (defun fit-frame-to-buffer (&optional frame max-height min-height)
6100 "Adjust height of FRAME to display its buffer contents exactly.
6101 FRAME can be any live frame and defaults to the selected one.
6103 Optional argument MAX-HEIGHT specifies the maximum height of FRAME.
6104 It defaults to the height of the display below the current
6105 top line of FRAME, minus `fit-frame-to-buffer-bottom-margin'.
6106 Optional argument MIN-HEIGHT specifies the minimum height of FRAME.
6107 The default corresponds to `window-min-height'."
6108 (interactive)
6109 (setq frame (window-normalize-frame frame))
6110 (let* ((root (frame-root-window frame))
6111 (frame-min-height
6112 (+ (- (frame-height frame) (window-total-size root))
6113 window-min-height))
6114 (frame-top (frame-parameter frame 'top))
6115 (top (if (consp frame-top)
6116 (funcall (car frame-top) (cadr frame-top))
6117 frame-top))
6118 (frame-max-height
6119 (- (/ (- (x-display-pixel-height frame) top)
6120 (frame-char-height frame))
6121 fit-frame-to-buffer-bottom-margin))
6122 (compensate 0)
6123 delta)
6124 (when (and (window-live-p root) (not (window-size-fixed-p root)))
6125 (with-selected-window root
6126 (cond
6127 ((not max-height)
6128 (setq max-height frame-max-height))
6129 ((numberp max-height)
6130 (setq max-height (min max-height frame-max-height)))
6132 (error "%s is an invalid maximum height" max-height)))
6133 (cond
6134 ((not min-height)
6135 (setq min-height frame-min-height))
6136 ((numberp min-height)
6137 (setq min-height (min min-height frame-min-height)))
6139 (error "%s is an invalid minimum height" min-height)))
6140 ;; When tool-bar-mode is enabled and we have just created a new
6141 ;; frame, reserve lines for toolbar resizing. This is needed
6142 ;; because for reasons unknown to me Emacs (1) reserves one line
6143 ;; for the toolbar when making the initial frame and toolbars
6144 ;; are enabled, and (2) later adds the remaining lines needed.
6145 ;; Our code runs IN BETWEEN (1) and (2). YMMV when you're on a
6146 ;; system that behaves differently.
6147 (let ((quit-restore (window-parameter root 'quit-restore))
6148 (lines (tool-bar-lines-needed frame)))
6149 (when (and quit-restore (eq (car quit-restore) 'frame)
6150 (not (zerop lines)))
6151 (setq compensate (1- lines))))
6152 (message "%s" compensate)
6153 (setq delta
6154 ;; Always count a final newline - we don't do any
6155 ;; post-processing, so let's play safe.
6156 (+ (count-screen-lines nil nil t)
6157 (- (window-body-size))
6158 compensate)))
6159 ;; Move away from final newline.
6160 (when (and (eobp) (bolp) (not (bobp)))
6161 (set-window-point root (line-beginning-position 0)))
6162 (set-window-start root (point-min))
6163 (set-window-vscroll root 0)
6164 (condition-case nil
6165 (set-frame-height
6166 frame
6167 (min (max (+ (frame-height frame) delta)
6168 min-height)
6169 max-height))
6170 (error (setq delta nil))))
6171 delta))
6173 (defun fit-window-to-buffer (&optional window max-height min-height)
6174 "Adjust height of WINDOW to display its buffer's contents exactly.
6175 WINDOW must be a live window and defaults to the selected one.
6177 Optional argument MAX-HEIGHT specifies the maximum height of
6178 WINDOW and defaults to the height of WINDOW's frame. Optional
6179 argument MIN-HEIGHT specifies the minimum height of WINDOW and
6180 defaults to `window-min-height'. Both MAX-HEIGHT and MIN-HEIGHT
6181 are specified in lines and include the mode line and header line,
6182 if any.
6184 If WINDOW is a full height window, then if the option
6185 `fit-frame-to-buffer' is non-nil, this calls the function
6186 `fit-frame-to-buffer' to adjust the frame height.
6188 Return the number of lines by which WINDOW was enlarged or
6189 shrunk. If an error occurs during resizing, return nil but don't
6190 signal an error.
6192 Note that even if this function makes WINDOW large enough to show
6193 _all_ lines of its buffer you might not see the first lines when
6194 WINDOW was scrolled."
6195 (interactive)
6196 (setq window (window-normalize-window window t))
6197 (cond
6198 ((window-size-fixed-p window))
6199 ((window-full-height-p window)
6200 (when fit-frame-to-buffer
6201 (fit-frame-to-buffer (window-frame window))))
6203 (with-selected-window window
6204 (let* ((height (window-total-size))
6205 (min-height
6206 ;; Adjust MIN-HEIGHT.
6207 (if (numberp min-height)
6208 ;; Can't get smaller than `window-safe-min-height'.
6209 (max min-height window-safe-min-height)
6210 ;; Preserve header and mode line if present.
6211 (window-min-size nil nil t)))
6212 (max-height
6213 ;; Adjust MAX-HEIGHT.
6214 (if (numberp max-height)
6215 ;; Can't get larger than height of frame.
6216 (min max-height
6217 (window-total-size (frame-root-window window)))
6218 ;; Don't delete other windows.
6219 (+ height (window-max-delta nil nil window))))
6220 ;; Make `desired-height' the height necessary to show
6221 ;; all of WINDOW's buffer, constrained by MIN-HEIGHT
6222 ;; and MAX-HEIGHT.
6223 (desired-height
6224 (max
6225 (min
6226 (+ (count-screen-lines)
6227 ;; For non-minibuffers count the mode line, if any.
6228 (if (and (not (window-minibuffer-p window))
6229 mode-line-format)
6232 ;; Count the header line, if any.
6233 (if header-line-format 1 0))
6234 max-height)
6235 min-height))
6236 (desired-delta
6237 (- desired-height (window-total-size window)))
6238 (delta
6239 (if (> desired-delta 0)
6240 (min desired-delta
6241 (window-max-delta window nil window))
6242 (max desired-delta
6243 (- (window-min-delta window nil window))))))
6244 (condition-case nil
6245 (if (zerop delta)
6246 ;; Return zero if DELTA became zero in the process.
6248 ;; Don't try to redisplay with the cursor at the end on its
6249 ;; own line--that would force a scroll and spoil things.
6250 (when (and (eobp) (bolp) (not (bobp)))
6251 ;; It's silly to put `point' at the end of the previous
6252 ;; line and so maybe force horizontal scrolling.
6253 (set-window-point window (line-beginning-position 0)))
6254 ;; Call `window-resize' with OVERRIDE argument equal WINDOW.
6255 (window-resize window delta nil window)
6256 ;; Check if the last line is surely fully visible. If
6257 ;; not, enlarge the window.
6258 (let ((end (save-excursion
6259 (goto-char (point-max))
6260 (when (and (bolp) (not (bobp)))
6261 ;; Don't include final newline.
6262 (backward-char 1))
6263 (when truncate-lines
6264 ;; If line-wrapping is turned off, test the
6265 ;; beginning of the last line for
6266 ;; visibility instead of the end, as the
6267 ;; end of the line could be invisible by
6268 ;; virtue of extending past the edge of the
6269 ;; window.
6270 (forward-line 0))
6271 (point))))
6272 (set-window-vscroll window 0)
6273 ;; This loop might in some rare pathological cases raise
6274 ;; an error - another reason for the `condition-case'.
6275 (while (and (< desired-height max-height)
6276 (= desired-height (window-total-size))
6277 (not (pos-visible-in-window-p end)))
6278 (window-resize window 1 nil window)
6279 (setq desired-height (1+ desired-height)))))
6280 (error (setq delta nil)))
6281 delta)))))
6283 (defun window-safely-shrinkable-p (&optional window)
6284 "Return t if WINDOW can be shrunk without shrinking other windows.
6285 WINDOW defaults to the selected window."
6286 (with-selected-window (or window (selected-window))
6287 (let ((edges (window-edges)))
6288 (or (= (nth 2 edges) (nth 2 (window-edges (previous-window))))
6289 (= (nth 0 edges) (nth 0 (window-edges (next-window))))))))
6291 (defun shrink-window-if-larger-than-buffer (&optional window)
6292 "Shrink height of WINDOW if its buffer doesn't need so many lines.
6293 More precisely, shrink WINDOW vertically to be as small as
6294 possible, while still showing the full contents of its buffer.
6295 WINDOW must be a live window and defaults to the selected one.
6297 Do not shrink WINDOW to less than `window-min-height' lines. Do
6298 nothing if the buffer contains more lines than the present window
6299 height, or if some of the window's contents are scrolled out of
6300 view, or if shrinking this window would also shrink another
6301 window, or if the window is the only window of its frame.
6303 Return non-nil if the window was shrunk, nil otherwise."
6304 (interactive)
6305 (setq window (window-normalize-window window t))
6306 ;; Make sure that WINDOW is vertically combined and `point-min' is
6307 ;; visible (for whatever reason that's needed). The remaining issues
6308 ;; should be taken care of by `fit-window-to-buffer'.
6309 (when (and (window-combined-p window)
6310 (pos-visible-in-window-p (point-min) window))
6311 (fit-window-to-buffer window (window-total-size window))))
6313 (defun kill-buffer-and-window ()
6314 "Kill the current buffer and delete the selected window."
6315 (interactive)
6316 (let ((window-to-delete (selected-window))
6317 (buffer-to-kill (current-buffer))
6318 (delete-window-hook (lambda () (ignore-errors (delete-window)))))
6319 (unwind-protect
6320 (progn
6321 (add-hook 'kill-buffer-hook delete-window-hook t t)
6322 (if (kill-buffer (current-buffer))
6323 ;; If `delete-window' failed before, we rerun it to regenerate
6324 ;; the error so it can be seen in the echo area.
6325 (when (eq (selected-window) window-to-delete)
6326 (delete-window))))
6327 ;; If the buffer is not dead for some reason (probably because
6328 ;; of a `quit' signal), remove the hook again.
6329 (ignore-errors
6330 (with-current-buffer buffer-to-kill
6331 (remove-hook 'kill-buffer-hook delete-window-hook t))))))
6334 (defvar recenter-last-op nil
6335 "Indicates the last recenter operation performed.
6336 Possible values: `top', `middle', `bottom', integer or float numbers.")
6338 (defcustom recenter-positions '(middle top bottom)
6339 "Cycling order for `recenter-top-bottom'.
6340 A list of elements with possible values `top', `middle', `bottom',
6341 integer or float numbers that define the cycling order for
6342 the command `recenter-top-bottom'.
6344 Top and bottom destinations are `scroll-margin' lines from the true
6345 window top and bottom. Middle redraws the frame and centers point
6346 vertically within the window. Integer number moves current line to
6347 the specified absolute window-line. Float number between 0.0 and 1.0
6348 means the percentage of the screen space from the top. The default
6349 cycling order is middle -> top -> bottom."
6350 :type '(repeat (choice
6351 (const :tag "Top" top)
6352 (const :tag "Middle" middle)
6353 (const :tag "Bottom" bottom)
6354 (integer :tag "Line number")
6355 (float :tag "Percentage")))
6356 :version "23.2"
6357 :group 'windows)
6359 (defun recenter-top-bottom (&optional arg)
6360 "Move current buffer line to the specified window line.
6361 With no prefix argument, successive calls place point according
6362 to the cycling order defined by `recenter-positions'.
6364 A prefix argument is handled like `recenter':
6365 With numeric prefix ARG, move current line to window-line ARG.
6366 With plain `C-u', move current line to window center."
6367 (interactive "P")
6368 (cond
6369 (arg (recenter arg)) ; Always respect ARG.
6371 (setq recenter-last-op
6372 (if (eq this-command last-command)
6373 (car (or (cdr (member recenter-last-op recenter-positions))
6374 recenter-positions))
6375 (car recenter-positions)))
6376 (let ((this-scroll-margin
6377 (min (max 0 scroll-margin)
6378 (truncate (/ (window-body-height) 4.0)))))
6379 (cond ((eq recenter-last-op 'middle)
6380 (recenter))
6381 ((eq recenter-last-op 'top)
6382 (recenter this-scroll-margin))
6383 ((eq recenter-last-op 'bottom)
6384 (recenter (- -1 this-scroll-margin)))
6385 ((integerp recenter-last-op)
6386 (recenter recenter-last-op))
6387 ((floatp recenter-last-op)
6388 (recenter (round (* recenter-last-op (window-height))))))))))
6390 (define-key global-map [?\C-l] 'recenter-top-bottom)
6392 (defun move-to-window-line-top-bottom (&optional arg)
6393 "Position point relative to window.
6395 With a prefix argument ARG, acts like `move-to-window-line'.
6397 With no argument, positions point at center of window.
6398 Successive calls position point at positions defined
6399 by `recenter-positions'."
6400 (interactive "P")
6401 (cond
6402 (arg (move-to-window-line arg)) ; Always respect ARG.
6404 (setq recenter-last-op
6405 (if (eq this-command last-command)
6406 (car (or (cdr (member recenter-last-op recenter-positions))
6407 recenter-positions))
6408 (car recenter-positions)))
6409 (let ((this-scroll-margin
6410 (min (max 0 scroll-margin)
6411 (truncate (/ (window-body-height) 4.0)))))
6412 (cond ((eq recenter-last-op 'middle)
6413 (call-interactively 'move-to-window-line))
6414 ((eq recenter-last-op 'top)
6415 (move-to-window-line this-scroll-margin))
6416 ((eq recenter-last-op 'bottom)
6417 (move-to-window-line (- -1 this-scroll-margin)))
6418 ((integerp recenter-last-op)
6419 (move-to-window-line recenter-last-op))
6420 ((floatp recenter-last-op)
6421 (move-to-window-line (round (* recenter-last-op (window-height))))))))))
6423 (define-key global-map [?\M-r] 'move-to-window-line-top-bottom)
6425 ;;; Scrolling commands.
6427 ;;; Scrolling commands which do not signal errors at top/bottom
6428 ;;; of buffer at first key-press (instead move to top/bottom
6429 ;;; of buffer).
6431 (defcustom scroll-error-top-bottom nil
6432 "Move point to top/bottom of buffer before signaling a scrolling error.
6433 A value of nil means just signal an error if no more scrolling possible.
6434 A value of t means point moves to the beginning or the end of the buffer
6435 \(depending on scrolling direction) when no more scrolling possible.
6436 When point is already on that position, then signal an error."
6437 :type 'boolean
6438 :group 'windows
6439 :version "24.1")
6441 (defun scroll-up-command (&optional arg)
6442 "Scroll text of selected window upward ARG lines; or near full screen if no ARG.
6443 If `scroll-error-top-bottom' is non-nil and `scroll-up' cannot
6444 scroll window further, move cursor to the bottom line.
6445 When point is already on that position, then signal an error.
6446 A near full screen is `next-screen-context-lines' less than a full screen.
6447 Negative ARG means scroll downward.
6448 If ARG is the atom `-', scroll downward by nearly full screen."
6449 (interactive "^P")
6450 (cond
6451 ((null scroll-error-top-bottom)
6452 (scroll-up arg))
6453 ((eq arg '-)
6454 (scroll-down-command nil))
6455 ((< (prefix-numeric-value arg) 0)
6456 (scroll-down-command (- (prefix-numeric-value arg))))
6457 ((eobp)
6458 (scroll-up arg)) ; signal error
6460 (condition-case nil
6461 (scroll-up arg)
6462 (end-of-buffer
6463 (if arg
6464 ;; When scrolling by ARG lines can't be done,
6465 ;; move by ARG lines instead.
6466 (forward-line arg)
6467 ;; When ARG is nil for full-screen scrolling,
6468 ;; move to the bottom of the buffer.
6469 (goto-char (point-max))))))))
6471 (put 'scroll-up-command 'scroll-command t)
6473 (defun scroll-down-command (&optional arg)
6474 "Scroll text of selected window down ARG lines; or near full screen if no ARG.
6475 If `scroll-error-top-bottom' is non-nil and `scroll-down' cannot
6476 scroll window further, move cursor to the top line.
6477 When point is already on that position, then signal an error.
6478 A near full screen is `next-screen-context-lines' less than a full screen.
6479 Negative ARG means scroll upward.
6480 If ARG is the atom `-', scroll upward by nearly full screen."
6481 (interactive "^P")
6482 (cond
6483 ((null scroll-error-top-bottom)
6484 (scroll-down arg))
6485 ((eq arg '-)
6486 (scroll-up-command nil))
6487 ((< (prefix-numeric-value arg) 0)
6488 (scroll-up-command (- (prefix-numeric-value arg))))
6489 ((bobp)
6490 (scroll-down arg)) ; signal error
6492 (condition-case nil
6493 (scroll-down arg)
6494 (beginning-of-buffer
6495 (if arg
6496 ;; When scrolling by ARG lines can't be done,
6497 ;; move by ARG lines instead.
6498 (forward-line (- arg))
6499 ;; When ARG is nil for full-screen scrolling,
6500 ;; move to the top of the buffer.
6501 (goto-char (point-min))))))))
6503 (put 'scroll-down-command 'scroll-command t)
6505 ;;; Scrolling commands which scroll a line instead of full screen.
6507 (defun scroll-up-line (&optional arg)
6508 "Scroll text of selected window upward ARG lines; or one line if no ARG.
6509 If ARG is omitted or nil, scroll upward by one line.
6510 This is different from `scroll-up-command' that scrolls a full screen."
6511 (interactive "p")
6512 (scroll-up (or arg 1)))
6514 (put 'scroll-up-line 'scroll-command t)
6516 (defun scroll-down-line (&optional arg)
6517 "Scroll text of selected window down ARG lines; or one line if no ARG.
6518 If ARG is omitted or nil, scroll down by one line.
6519 This is different from `scroll-down-command' that scrolls a full screen."
6520 (interactive "p")
6521 (scroll-down (or arg 1)))
6523 (put 'scroll-down-line 'scroll-command t)
6526 (defun scroll-other-window-down (&optional lines)
6527 "Scroll the \"other window\" down.
6528 For more details, see the documentation for `scroll-other-window'."
6529 (interactive "P")
6530 (scroll-other-window
6531 ;; Just invert the argument's meaning.
6532 ;; We can do that without knowing which window it will be.
6533 (if (eq lines '-) nil
6534 (if (null lines) '-
6535 (- (prefix-numeric-value lines))))))
6537 (defun beginning-of-buffer-other-window (arg)
6538 "Move point to the beginning of the buffer in the other window.
6539 Leave mark at previous position.
6540 With arg N, put point N/10 of the way from the true beginning."
6541 (interactive "P")
6542 (let ((orig-window (selected-window))
6543 (window (other-window-for-scrolling)))
6544 ;; We use unwind-protect rather than save-window-excursion
6545 ;; because the latter would preserve the things we want to change.
6546 (unwind-protect
6547 (progn
6548 (select-window window)
6549 ;; Set point and mark in that window's buffer.
6550 (with-no-warnings
6551 (beginning-of-buffer arg))
6552 ;; Set point accordingly.
6553 (recenter '(t)))
6554 (select-window orig-window))))
6556 (defun end-of-buffer-other-window (arg)
6557 "Move point to the end of the buffer in the other window.
6558 Leave mark at previous position.
6559 With arg N, put point N/10 of the way from the true end."
6560 (interactive "P")
6561 ;; See beginning-of-buffer-other-window for comments.
6562 (let ((orig-window (selected-window))
6563 (window (other-window-for-scrolling)))
6564 (unwind-protect
6565 (progn
6566 (select-window window)
6567 (with-no-warnings
6568 (end-of-buffer arg))
6569 (recenter '(t)))
6570 (select-window orig-window))))
6572 (defvar mouse-autoselect-window-timer nil
6573 "Timer used by delayed window autoselection.")
6575 (defvar mouse-autoselect-window-position nil
6576 "Last mouse position recorded by delayed window autoselection.")
6578 (defvar mouse-autoselect-window-window nil
6579 "Last window recorded by delayed window autoselection.")
6581 (defvar mouse-autoselect-window-state nil
6582 "When non-nil, special state of delayed window autoselection.
6583 Possible values are `suspend' (suspend autoselection after a menu or
6584 scrollbar interaction) and `select' (the next invocation of
6585 `handle-select-window' shall select the window immediately).")
6587 (defun mouse-autoselect-window-cancel (&optional force)
6588 "Cancel delayed window autoselection.
6589 Optional argument FORCE means cancel unconditionally."
6590 (unless (and (not force)
6591 ;; Don't cancel for select-window or select-frame events
6592 ;; or when the user drags a scroll bar.
6593 (or (memq this-command
6594 '(handle-select-window handle-switch-frame))
6595 (and (eq this-command 'scroll-bar-toolkit-scroll)
6596 (memq (nth 4 (event-end last-input-event))
6597 '(handle end-scroll)))))
6598 (setq mouse-autoselect-window-state nil)
6599 (when (timerp mouse-autoselect-window-timer)
6600 (cancel-timer mouse-autoselect-window-timer))
6601 (remove-hook 'pre-command-hook 'mouse-autoselect-window-cancel)))
6603 (defun mouse-autoselect-window-start (mouse-position &optional window suspend)
6604 "Start delayed window autoselection.
6605 MOUSE-POSITION is the last position where the mouse was seen as returned
6606 by `mouse-position'. Optional argument WINDOW non-nil denotes the
6607 window where the mouse was seen. Optional argument SUSPEND non-nil
6608 means suspend autoselection."
6609 ;; Record values for MOUSE-POSITION, WINDOW, and SUSPEND.
6610 (setq mouse-autoselect-window-position mouse-position)
6611 (when window (setq mouse-autoselect-window-window window))
6612 (setq mouse-autoselect-window-state (when suspend 'suspend))
6613 ;; Install timer which runs `mouse-autoselect-window-select' after
6614 ;; `mouse-autoselect-window' seconds.
6615 (setq mouse-autoselect-window-timer
6616 (run-at-time
6617 (abs mouse-autoselect-window) nil 'mouse-autoselect-window-select)))
6619 (defun mouse-autoselect-window-select ()
6620 "Select window with delayed window autoselection.
6621 If the mouse position has stabilized in a non-selected window, select
6622 that window. The minibuffer window is selected only if the minibuffer
6623 is active. This function is run by `mouse-autoselect-window-timer'."
6624 (ignore-errors
6625 (let* ((mouse-position (mouse-position))
6626 (window
6627 (ignore-errors
6628 (window-at (cadr mouse-position) (cddr mouse-position)
6629 (car mouse-position)))))
6630 (cond
6631 ((or (menu-or-popup-active-p)
6632 (and window
6633 (not (coordinates-in-window-p (cdr mouse-position) window))))
6634 ;; A menu / popup dialog is active or the mouse is on the scroll-bar
6635 ;; of WINDOW, temporarily suspend delayed autoselection.
6636 (mouse-autoselect-window-start mouse-position nil t))
6637 ((eq mouse-autoselect-window-state 'suspend)
6638 ;; Delayed autoselection was temporarily suspended, reenable it.
6639 (mouse-autoselect-window-start mouse-position))
6640 ((and window (not (eq window (selected-window)))
6641 (or (not (numberp mouse-autoselect-window))
6642 (and (> mouse-autoselect-window 0)
6643 ;; If `mouse-autoselect-window' is positive, select
6644 ;; window if the window is the same as before.
6645 (eq window mouse-autoselect-window-window))
6646 ;; Otherwise select window if the mouse is at the same
6647 ;; position as before. Observe that the first test after
6648 ;; starting autoselection usually fails since the value of
6649 ;; `mouse-autoselect-window-position' recorded there is the
6650 ;; position where the mouse has entered the new window and
6651 ;; not necessarily where the mouse has stopped moving.
6652 (equal mouse-position mouse-autoselect-window-position))
6653 ;; The minibuffer is a candidate window if it's active.
6654 (or (not (window-minibuffer-p window))
6655 (eq window (active-minibuffer-window))))
6656 ;; Mouse position has stabilized in non-selected window: Cancel
6657 ;; delayed autoselection and try to select that window.
6658 (mouse-autoselect-window-cancel t)
6659 ;; Select window where mouse appears unless the selected window is the
6660 ;; minibuffer. Use `unread-command-events' in order to execute pre-
6661 ;; and post-command hooks and trigger idle timers. To avoid delaying
6662 ;; autoselection again, set `mouse-autoselect-window-state'."
6663 (unless (window-minibuffer-p (selected-window))
6664 (setq mouse-autoselect-window-state 'select)
6665 (setq unread-command-events
6666 (cons (list 'select-window (list window))
6667 unread-command-events))))
6668 ((or (and window (eq window (selected-window)))
6669 (not (numberp mouse-autoselect-window))
6670 (equal mouse-position mouse-autoselect-window-position))
6671 ;; Mouse position has either stabilized in the selected window or at
6672 ;; `mouse-autoselect-window-position': Cancel delayed autoselection.
6673 (mouse-autoselect-window-cancel t))
6675 ;; Mouse position has not stabilized yet, resume delayed
6676 ;; autoselection.
6677 (mouse-autoselect-window-start mouse-position window))))))
6679 (defun handle-select-window (event)
6680 "Handle select-window events."
6681 (interactive "e")
6682 (let ((window (posn-window (event-start event))))
6683 (unless (or (not (window-live-p window))
6684 ;; Don't switch if we're currently in the minibuffer.
6685 ;; This tries to work around problems where the
6686 ;; minibuffer gets unselected unexpectedly, and where
6687 ;; you then have to move your mouse all the way down to
6688 ;; the minibuffer to select it.
6689 (window-minibuffer-p (selected-window))
6690 ;; Don't switch to minibuffer window unless it's active.
6691 (and (window-minibuffer-p window)
6692 (not (minibuffer-window-active-p window)))
6693 ;; Don't switch when autoselection shall be delayed.
6694 (and (numberp mouse-autoselect-window)
6695 (not (zerop mouse-autoselect-window))
6696 (not (eq mouse-autoselect-window-state 'select))
6697 (progn
6698 ;; Cancel any delayed autoselection.
6699 (mouse-autoselect-window-cancel t)
6700 ;; Start delayed autoselection from current mouse
6701 ;; position and window.
6702 (mouse-autoselect-window-start (mouse-position) window)
6703 ;; Executing a command cancels delayed autoselection.
6704 (add-hook
6705 'pre-command-hook 'mouse-autoselect-window-cancel))))
6706 (when mouse-autoselect-window
6707 ;; Reset state of delayed autoselection.
6708 (setq mouse-autoselect-window-state nil)
6709 ;; Run `mouse-leave-buffer-hook' when autoselecting window.
6710 (run-hooks 'mouse-leave-buffer-hook))
6711 ;; Clear echo area.
6712 (message nil)
6713 (select-window window))))
6715 (defun truncated-partial-width-window-p (&optional window)
6716 "Return non-nil if lines in WINDOW are specifically truncated due to its width.
6717 WINDOW must be a live window and defaults to the selected one.
6718 Return nil if WINDOW is not a partial-width window
6719 (regardless of the value of `truncate-lines').
6720 Otherwise, consult the value of `truncate-partial-width-windows'
6721 for the buffer shown in WINDOW."
6722 (setq window (window-normalize-window window t))
6723 (unless (window-full-width-p window)
6724 (let ((t-p-w-w (buffer-local-value 'truncate-partial-width-windows
6725 (window-buffer window))))
6726 (if (integerp t-p-w-w)
6727 (< (window-width window) t-p-w-w)
6728 t-p-w-w))))
6730 ;; Some of these are in tutorial--default-keys, so update that if you
6731 ;; change these.
6732 (define-key ctl-x-map "0" 'delete-window)
6733 (define-key ctl-x-map "1" 'delete-other-windows)
6734 (define-key ctl-x-map "2" 'split-window-below)
6735 (define-key ctl-x-map "3" 'split-window-right)
6736 (define-key ctl-x-map "o" 'other-window)
6737 (define-key ctl-x-map "^" 'enlarge-window)
6738 (define-key ctl-x-map "}" 'enlarge-window-horizontally)
6739 (define-key ctl-x-map "{" 'shrink-window-horizontally)
6740 (define-key ctl-x-map "-" 'shrink-window-if-larger-than-buffer)
6741 (define-key ctl-x-map "+" 'balance-windows)
6742 (define-key ctl-x-4-map "0" 'kill-buffer-and-window)
6744 ;;; window.el ends here