1 ;;; window.el --- GNU Emacs window commands aside from those written in C
3 ;; Copyright (C) 1985, 1989, 1992-1994, 2000-2014 Free Software
6 ;; Maintainer: emacs-devel@gnu.org
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/>.
27 ;; Window tree functions.
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.
38 (mapcar (lambda (terminal)
39 (let ((frames (frames-on-display-list terminal
))
40 (top-frame (tty-top-frame terminal
))
45 (delq top-frame frames
))))
47 (push (cons f
(frame-selected-window f
))
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
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)))
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
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.
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
))
107 (run-hooks 'temp-buffer-window-setup-hook
))
108 ;; Return the 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'."
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
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))
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.
145 (defmacro with-temp-buffer-window
(buffer-or-name action quit-function
&rest body
)
146 "Bind `standard-output' to BUFFER-OR-NAME, eval BODY, show the buffer.
147 BUFFER-OR-NAME must specify either a live buffer, or the name of
148 a buffer (if it does not exist, this macro creates it).
150 Make the buffer specified by BUFFER-OR-NAME empty before running
151 BODY and bind `standard-output' to that buffer, so that output
152 generated with `prin1' and similar functions in BODY goes into
153 that buffer. Do not make that buffer current for running the
154 forms in BODY. Use `with-current-buffer-window' instead if you
155 need to run BODY with that buffer current.
157 At the end of BODY, mark the specified buffer unmodified and
158 read-only, and display it in a window (but do not select it).
159 The display happens by calling `display-buffer' passing it the
160 ACTION argument. If `temp-buffer-resize-mode' is enabled, the
161 corresponding window may be resized automatically.
163 Return the value returned by BODY, unless QUIT-FUNCTION specifies
164 a function. In that case, run that function with two arguments -
165 the window showing the specified buffer and the value returned by
166 BODY - and return 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 hook
176 `temp-buffer-window-show-hook' after displaying the buffer, with
177 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 neither runs `temp-buffer-setup-hook' which usually puts the
182 buffer in Help mode, nor `temp-buffer-show-function' (the ACTION
183 argument replaces this)."
185 (let ((buffer (make-symbol "buffer"))
186 (window (make-symbol "window"))
187 (value (make-symbol "value")))
188 `(let* ((,buffer
(temp-buffer-window-setup ,buffer-or-name
))
189 (standard-output ,buffer
)
191 (setq ,value
(progn ,@body
))
192 (with-current-buffer ,buffer
193 (setq ,window
(temp-buffer-window-show ,buffer
,action
)))
195 (if (functionp ,quit-function
)
196 (funcall ,quit-function
,window
,value
)
199 (defmacro with-current-buffer-window
(buffer-or-name action quit-function
&rest body
)
200 "Evaluate BODY with a buffer BUFFER-OR-NAME current and show that buffer.
201 This construct is like `with-temp-buffer-window' but unlike that
202 makes the buffer specified by BUFFER-OR-NAME current for running
205 (let ((buffer (make-symbol "buffer"))
206 (window (make-symbol "window"))
207 (value (make-symbol "value")))
208 `(let* ((,buffer
(temp-buffer-window-setup ,buffer-or-name
))
209 (standard-output ,buffer
)
211 (with-current-buffer ,buffer
212 (setq ,value
(progn ,@body
))
213 (setq ,window
(temp-buffer-window-show ,buffer
,action
)))
215 (if (functionp ,quit-function
)
216 (funcall ,quit-function
,window
,value
)
219 ;; The following two functions are like `window-next-sibling' and
220 ;; `window-prev-sibling' but the WINDOW argument is _not_ optional (so
221 ;; they don't substitute the selected window for nil), and they return
222 ;; nil when WINDOW doesn't have a parent (like a frame's root window or
223 ;; a minibuffer window).
224 (defun window-right (window)
225 "Return WINDOW's right sibling.
226 Return nil if WINDOW is the root window of its frame. WINDOW can
228 (and window
(window-parent window
) (window-next-sibling window
)))
230 (defun window-left (window)
231 "Return WINDOW's left sibling.
232 Return nil if WINDOW is the root window of its frame. WINDOW can
234 (and window
(window-parent window
) (window-prev-sibling window
)))
236 (defun window-child (window)
237 "Return WINDOW's first child window.
238 WINDOW can be any window."
239 (or (window-top-child window
) (window-left-child window
)))
241 (defun window-child-count (window)
242 "Return number of WINDOW's child windows.
243 WINDOW can be any window."
245 (when (and (windowp window
) (setq window
(window-child window
)))
247 (setq count
(1+ count
))
248 (setq window
(window-next-sibling window
))))
251 (defun window-last-child (window)
252 "Return last child window of WINDOW.
253 WINDOW can be any window."
254 (when (and (windowp window
) (setq window
(window-child window
)))
255 (while (window-next-sibling window
)
256 (setq window
(window-next-sibling window
))))
259 (defun window-normalize-buffer (buffer-or-name)
260 "Return buffer specified by BUFFER-OR-NAME.
261 BUFFER-OR-NAME must be either a buffer or a string naming a live
262 buffer and defaults to the current buffer."
264 ((not buffer-or-name
)
266 ((bufferp buffer-or-name
)
267 (if (buffer-live-p buffer-or-name
)
269 (error "Buffer %s is not a live buffer" buffer-or-name
)))
270 ((get-buffer buffer-or-name
))
272 (error "No such buffer %s" buffer-or-name
))))
274 (defun window-normalize-frame (frame)
275 "Return frame specified by FRAME.
276 FRAME must be a live frame and defaults to the selected frame."
278 (if (frame-live-p frame
)
280 (error "%s is not a live frame" frame
))
283 (defun window-normalize-window (window &optional live-only
)
284 "Return the window specified by WINDOW.
285 If WINDOW is nil, return the selected window. Otherwise, if
286 WINDOW is a live or an internal window, return WINDOW; if
287 LIVE-ONLY is non-nil, return WINDOW for a live window only.
288 Otherwise, signal an error."
293 (if (window-live-p window
)
295 (error "%s is not a live window" window
)))
296 ((window-valid-p window
)
299 (error "%s is not a valid window" window
))))
301 ;; Maybe this should go to frame.el.
302 (defun frame-char-size (&optional window-or-frame horizontal
)
303 "Return the value of `frame-char-height' for WINDOW-OR-FRAME.
304 If WINDOW-OR-FRAME is a live frame, return the value of
305 `frame-char-height' for that frame. If WINDOW-OR-FRAME is a
306 valid window, return the value of `frame-char-height' for that
307 window's frame. In any other case, return the value of
308 `frame-char-height' for the selected frame.
310 Optional argument HORIZONTAL non-nil means to return the value of
311 `frame-char-width' for WINDOW-OR-FRAME."
314 ((window-valid-p window-or-frame
)
315 (window-frame window-or-frame
))
316 ((frame-live-p window-or-frame
)
318 (t (selected-frame)))))
320 (frame-char-width frame
)
321 (frame-char-height frame
))))
323 (defvar ignore-window-parameters nil
324 "If non-nil, standard functions ignore window parameters.
325 The functions currently affected by this are `split-window',
326 `delete-window', `delete-other-windows' and `other-window'.
328 An application may bind this to a non-nil value around calls to
329 these functions to inhibit processing of window parameters.")
331 ;; This must go to C, finally (or get removed).
332 (defconst window-safe-min-height
1
333 "The absolute minimum number of lines of any window.
334 Anything less might crash Emacs.")
336 (defun window-safe-min-pixel-height (&optional window
)
337 "Return the absolute minimum pixel height of WINDOW."
338 (* window-safe-min-height
339 (frame-char-size (window-normalize-window window
))))
341 (defcustom window-min-height
4
342 "The minimum total height, in lines, of any window.
343 The value has to accommodate one text line, a mode and header
344 line, and a bottom divider, if present. A value less than
345 `window-safe-min-height' is ignored. The value of this variable
346 is honored when windows are resized or split.
348 Applications should never rebind this variable. To resize a
349 window to a height less than the one specified here, an
350 application should instead call `window-resize' with a non-nil
351 IGNORE argument. In order to have `split-window' make a window
352 shorter, explicitly specify the SIZE argument of that function."
357 (defun window-min-pixel-height (&optional window
)
358 "Return the minimum pixel height of window WINDOW."
359 (* (max window-min-height window-safe-min-height
)
360 (frame-char-size window
)))
362 ;; This must go to C, finally (or get removed).
363 (defconst window-safe-min-width
2
364 "The absolute minimum number of columns of a window.
365 Anything less might crash Emacs.")
367 (defun window-safe-min-pixel-width (&optional window
)
368 "Return the absolute minimum pixel width of WINDOW."
369 (* window-safe-min-width
370 (frame-char-size (window-normalize-window window
) t
)))
372 (defcustom window-min-width
10
373 "The minimum total width, in columns, of any window.
374 The value has to accommodate two text columns as well as margins,
375 fringes, a scroll bar and a right divider, if present. A value
376 less than `window-safe-min-width' is ignored. The value of this
377 variable is honored when windows are resized or split.
379 Applications should never rebind this variable. To resize a
380 window to a width less than the one specified here, an
381 application should instead call `window-resize' with a non-nil
382 IGNORE argument. In order to have `split-window' make a window
383 narrower, explicitly specify the SIZE argument of that function."
388 (defun window-min-pixel-width (&optional window
)
389 "Return the minimum pixel width of window WINDOW."
390 (* (max window-min-width window-safe-min-width
)
391 (frame-char-size window t
)))
393 (defun window-safe-min-pixel-size (&optional window horizontal
)
394 "Return the absolute minimum pixel height of WINDOW.
395 Optional argument HORIZONTAL non-nil means return the absolute
396 minimum pixel width of WINDOW."
398 (window-safe-min-pixel-width window
)
399 (window-safe-min-pixel-height window
)))
401 (defun window-combined-p (&optional window horizontal
)
402 "Return non-nil if WINDOW has siblings in a given direction.
403 WINDOW must be a valid window and defaults to the selected one.
405 HORIZONTAL determines a direction for the window combination. If
406 HORIZONTAL is omitted or nil, return non-nil if WINDOW is part of
407 a vertical window combination. If HORIZONTAL is non-nil, return
408 non-nil if WINDOW is part of a horizontal window combination."
409 (setq window
(window-normalize-window window
))
410 (let ((parent (window-parent window
)))
413 (window-left-child parent
)
414 (window-top-child parent
)))))
416 (defun window-combination-p (&optional window horizontal
)
417 "Return WINDOW's first child if WINDOW is a vertical combination.
418 WINDOW can be any window and defaults to the selected one.
419 Optional argument HORIZONTAL non-nil means return WINDOW's first
420 child if WINDOW is a horizontal combination."
421 (setq window
(window-normalize-window window
))
423 (window-left-child window
)
424 (window-top-child window
)))
426 (defun window-combinations (window &optional horizontal
)
427 "Return largest number of windows vertically arranged within WINDOW.
428 WINDOW must be a valid window and defaults to the selected one.
429 If HORIZONTAL is non-nil, return the largest number of
430 windows horizontally arranged within WINDOW."
431 (setq window
(window-normalize-window window
))
433 ((window-live-p window
)
434 ;; If WINDOW is live, return 1.
437 (window-left-child window
)
438 (window-top-child window
))
439 ;; If WINDOW is iso-combined, return the sum of the values for all
440 ;; child windows of WINDOW.
441 (let ((child (window-child window
))
445 (+ (window-combinations child horizontal
)
447 (setq child
(window-right child
)))
450 ;; If WINDOW is not iso-combined, return the maximum value of any
451 ;; child window of WINDOW.
452 (let ((child (window-child window
))
456 (max (window-combinations child horizontal
)
458 (setq child
(window-right child
)))
461 (defun walk-window-tree-1 (fun walk-window-tree-window any
&optional sub-only
)
462 "Helper function for `walk-window-tree' and `walk-window-subtree'."
463 (let (walk-window-tree-buffer)
464 (while walk-window-tree-window
465 (setq walk-window-tree-buffer
466 (window-buffer walk-window-tree-window
))
467 (when (or walk-window-tree-buffer any
)
468 (funcall fun walk-window-tree-window
))
469 (unless walk-window-tree-buffer
471 fun
(window-left-child walk-window-tree-window
) any
)
473 fun
(window-top-child walk-window-tree-window
) any
))
475 (setq walk-window-tree-window nil
)
476 (setq walk-window-tree-window
477 (window-right walk-window-tree-window
))))))
479 (defun walk-window-tree (fun &optional frame any minibuf
)
480 "Run function FUN on each live window of FRAME.
481 FUN must be a function with one argument - a window. FRAME must
482 be a live frame and defaults to the selected one. ANY, if
483 non-nil, means to run FUN on all live and internal windows of
486 Optional argument MINIBUF t means run FUN on FRAME's minibuffer
487 window even if it isn't active. MINIBUF nil or omitted means run
488 FUN on FRAME's minibuffer window only if it's active. In both
489 cases the minibuffer window must be part of FRAME. MINIBUF
490 neither nil nor t means never run FUN on the minibuffer window.
492 This function performs a pre-order, depth-first traversal of the
493 window tree. If FUN changes the window tree, the result is
495 (setq frame
(window-normalize-frame frame
))
496 (walk-window-tree-1 fun
(frame-root-window frame
) any
)
497 (when (memq minibuf
'(nil t
))
498 ;; Run FUN on FRAME's minibuffer window if requested.
499 (let ((minibuffer-window (minibuffer-window frame
)))
500 (when (and (window-live-p minibuffer-window
)
501 (eq (window-frame minibuffer-window
) frame
)
503 (minibuffer-window-active-p minibuffer-window
)))
504 (funcall fun minibuffer-window
)))))
506 (defun walk-window-subtree (fun &optional window any
)
507 "Run function FUN on the subtree of windows rooted at WINDOW.
508 WINDOW defaults to the selected window. FUN must be a function
509 with one argument - a window. By default, run FUN only on live
510 windows of the subtree. If the optional argument ANY is non-nil,
511 run FUN on all live and internal windows of the subtree. If
512 WINDOW is live, run FUN on WINDOW only.
514 This function performs a pre-order, depth-first traversal of the
515 subtree rooted at WINDOW. If FUN changes that tree, the result
517 (setq window
(window-normalize-window window
))
518 (walk-window-tree-1 fun window any t
))
520 (defun window-with-parameter (parameter &optional value frame any minibuf
)
521 "Return first window on FRAME with PARAMETER non-nil.
522 FRAME defaults to the selected frame. Optional argument VALUE
523 non-nil means only return a window whose window-parameter value
524 for PARAMETER equals VALUE (comparison is done with `equal').
525 Optional argument ANY non-nil means consider internal windows
528 Optional argument MINIBUF t means consider FRAME's minibuffer
529 window even if it isn't active. MINIBUF nil or omitted means
530 consider FRAME's minibuffer window only if it's active. In both
531 cases the minibuffer window must be part of FRAME. MINIBUF
532 neither nil nor t means never consider the minibuffer window."
537 (when (and (setq this-value
(window-parameter window parameter
))
538 (or (not value
) (equal value this-value
)))
539 (throw 'found window
)))
540 frame any minibuf
))))
543 (defun window-atom-root (&optional window
)
544 "Return root of atomic window WINDOW is a part of.
545 WINDOW must be a valid window and defaults to the selected one.
546 Return nil if WINDOW is not part of an atomic window."
547 (setq window
(window-normalize-window window
))
549 (while (and window
(window-parameter window
'window-atom
))
551 (setq window
(window-parent window
)))
554 (defun window-make-atom (window)
555 "Make WINDOW an atomic window.
556 WINDOW must be an internal window. Return WINDOW."
557 (if (not (window-child window
))
558 (error "Window %s is not an internal window" window
)
561 (unless (window-parameter window
'window-atom
)
562 (set-window-parameter window
'window-atom t
)))
566 (defun display-buffer-in-atom-window (buffer alist
)
567 "Display BUFFER in an atomic window.
568 This function displays BUFFER in a new window that will be
569 combined with an existing window to form an atomic window. If
570 the existing window is already part of an atomic window, add the
571 new window to that atomic window. Operations like `split-window'
572 or `delete-window', when applied to a constituent of an atomic
573 window, are applied atomically to the root of that atomic window.
575 ALIST is an association list of symbols and values. The
576 following symbols can be used.
578 `window' specifies the existing window the new window shall be
579 combined with. Use `window-atom-root' to make the new window a
580 sibling of an atomic window's root. If an internal window is
581 specified here, all children of that window become part of the
582 atomic window too. If no window is specified, the new window
583 becomes a sibling of the selected window. By default, the
584 `window-atom' parameter of the existing window is set to `main'
585 provided it is live and was not set before.
587 `side' denotes the side of the existing window where the new
588 window shall be located. Valid values are `below', `right',
589 `above' and `left'. The default is `below'. By default, the
590 `window-atom' parameter of the new window is set to this value.
592 The return value is the new window, nil when creating that window
594 (let* ((ignore-window-parameters t
)
595 (window-combination-limit t
)
596 (window-combination-resize 'atom
)
597 (window (cdr (assq 'window alist
)))
598 (side (cdr (assq 'side alist
)))
599 (atom (when window
(window-parameter window
'window-atom
)))
601 (setq window
(window-normalize-window window
))
602 (setq root
(window-atom-root window
))
603 ;; Split off new window.
604 (when (setq new
(split-window window nil side
))
606 (if (and root
(not (eq root window
)))
607 ;; When WINDOW was part of an atomic window and we did not
608 ;; split its root, root atomic window at old root.
610 ;; Otherwise, root atomic window at WINDOW's new parent.
611 (window-parent window
)))
612 ;; Assign `window-atom' parameters, if needed.
613 (when (and (not atom
) (window-live-p window
))
614 (set-window-parameter window
'window-atom
'main
))
615 (set-window-parameter new
'window-atom side
)
616 ;; Display BUFFER in NEW and return NEW.
617 (window--display-buffer
618 buffer new
'window alist display-buffer-mark-dedicated
))))
620 (defun window--atom-check-1 (window)
621 "Subroutine of `window--atom-check'."
623 (if (window-parameter window
'window-atom
)
625 (when (or (catch 'reset
628 (if (window-parameter window
'window-atom
)
629 (setq count
(1+ count
))
632 ;; count >= 1 must hold here. If there's no other
633 ;; window around dissolve this atomic window.
635 ;; Dissolve atomic window.
638 (set-window-parameter window
'window-atom nil
))
641 (unless (window-buffer window
)
642 (window--atom-check-1 (window-left-child window
))
643 (window--atom-check-1 (window-top-child window
))))
644 ;; Check right sibling
645 (window--atom-check-1 (window-right window
))))
647 (defun window--atom-check (&optional frame
)
648 "Check atomicity of all windows on FRAME.
649 FRAME defaults to the selected frame. If an atomic window is
650 wrongly configured, reset the atomicity of all its windows on
651 FRAME to nil. An atomic window is wrongly configured if it has
652 no child windows or one of its child windows is not atomic."
653 (window--atom-check-1 (frame-root-window frame
)))
656 (defvar window-sides
'(left top right bottom
)
659 (defcustom window-sides-vertical nil
660 "If non-nil, left and right side windows are full height.
661 Otherwise, top and bottom side windows are full width."
666 (defcustom window-sides-slots
'(nil nil nil nil
)
667 "Maximum number of side window slots.
668 The value is a list of four elements specifying the number of
669 side window slots on (in this order) the left, top, right and
670 bottom side of each frame. If an element is a number, this means
671 to display at most that many side windows on the corresponding
672 side. If an element is nil, this means there's no bound on the
673 number of slots on that side."
678 :value
(nil nil nil nil
)
681 :help-echo
"Maximum slots of left side window."
683 :format
"%[Left%] %v\n"
684 (const :tag
"Unlimited" :format
"%t" nil
)
685 (integer :tag
"Number" :value
2 :size
5))
688 :help-echo
"Maximum slots of top side window."
690 :format
"%[Top%] %v\n"
691 (const :tag
"Unlimited" :format
"%t" nil
)
692 (integer :tag
"Number" :value
3 :size
5))
695 :help-echo
"Maximum slots of right side window."
697 :format
"%[Right%] %v\n"
698 (const :tag
"Unlimited" :format
"%t" nil
)
699 (integer :tag
"Number" :value
2 :size
5))
702 :help-echo
"Maximum slots of bottom side window."
704 :format
"%[Bottom%] %v\n"
705 (const :tag
"Unlimited" :format
"%t" nil
)
706 (integer :tag
"Number" :value
3 :size
5)))
709 (defun window--major-non-side-window (&optional frame
)
710 "Return the major non-side window of frame FRAME.
711 The optional argument FRAME must be a live frame and defaults to
714 If FRAME has at least one side window, the major non-side window
715 is either an internal non-side window such that all other
716 non-side windows on FRAME descend from it, or the single live
717 non-side window of FRAME. If FRAME has no side windows, return
719 (let ((frame (window-normalize-frame frame
))
721 ;; Set major to the _last_ window found by `walk-window-tree' that
722 ;; is not a side window but has a side window as its sibling.
725 (and (not (window-parameter window
'window-side
))
726 (or (and (setq sibling
(window-prev-sibling window
))
727 (window-parameter sibling
'window-side
))
728 (and (setq sibling
(window-next-sibling window
))
729 (window-parameter sibling
'window-side
)))
730 (setq major window
)))
732 (or major
(frame-root-window frame
))))
734 (defun window--major-side-window (side)
735 "Return major side window on SIDE.
736 SIDE must be one of the symbols `left', `top', `right' or
737 `bottom'. Return nil if no such window exists."
738 (let ((root (frame-root-window))
740 ;; (1) If a window on the opposite side exists, return that window's
742 ;; (2) If the new window shall span the entire side, return the
743 ;; frame's root window.
744 ;; (3) If a window on an orthogonal side exists, return that
746 ;; (4) Otherwise return the frame's root window.
748 ((or (and (eq side
'left
)
749 (setq window
(window-with-parameter 'window-side
'right nil t
)))
751 (setq window
(window-with-parameter 'window-side
'bottom nil t
))))
752 (window-prev-sibling window
))
753 ((or (and (eq side
'right
)
754 (setq window
(window-with-parameter 'window-side
'left nil t
)))
755 (and (eq side
'bottom
)
756 (setq window
(window-with-parameter 'window-side
'top nil t
))))
757 (window-next-sibling window
))
758 ((memq side
'(left right
))
760 (window-sides-vertical
762 ((setq window
(window-with-parameter 'window-side
'top nil t
))
763 (window-next-sibling window
))
764 ((setq window
(window-with-parameter 'window-side
'bottom nil t
))
765 (window-prev-sibling window
))
767 ((memq side
'(top bottom
))
769 ((not window-sides-vertical
)
771 ((setq window
(window-with-parameter 'window-side
'left nil t
))
772 (window-next-sibling window
))
773 ((setq window
(window-with-parameter 'window-side
'right nil t
))
774 (window-prev-sibling window
))
777 (defun display-buffer-in-major-side-window (buffer side slot
&optional alist
)
778 "Display BUFFER in a new window on SIDE of the selected frame.
779 SIDE must be one of `left', `top', `right' or `bottom'. SLOT
780 specifies the slot to use. ALIST is an association list of
781 symbols and values as passed to `display-buffer-in-side-window'.
782 This function may be called only if no window on SIDE exists yet.
783 The new window automatically becomes the \"major\" side window on
784 SIDE. Return the new window, nil if its creation window failed."
785 (let* ((left-or-right (memq side
'(left right
)))
786 (major (window--major-side-window side
))
788 ((eq side
'top
) 'above
)
789 ((eq side
'bottom
) 'below
)
791 ;; The following two bindings will tell `split-window' to take
792 ;; the space for the new window from `major' and not make a new
793 ;; parent window unless needed.
794 (window-combination-resize 'side
)
795 (window-combination-limit nil
)
796 (new (split-window major nil on-side
)))
798 ;; Initialize `window-side' parameter of new window to SIDE.
799 (set-window-parameter new
'window-side side
)
800 ;; Install `window-slot' parameter of new window.
801 (set-window-parameter new
'window-slot slot
)
802 ;; Install `delete-window' parameter thus making sure that when
803 ;; the new window is deleted, a side window on the opposite side
804 ;; does not get resized.
805 (set-window-parameter new
'delete-window
'delete-side-window
)
806 ;; Auto-adjust height/width of new window unless a size has been
807 ;; explicitly requested.
808 (unless (if left-or-right
809 (cdr (assq 'window-width alist
))
810 (cdr (assq 'window-height alist
)))
814 (if left-or-right
'window-width
'window-height
)
815 (/ (window-total-size (frame-root-window) left-or-right
)
816 ;; By default use a fourth of the size of the frame's
820 ;; Install BUFFER in new window and return NEW.
821 (window--display-buffer buffer new
'window alist
'side
))))
823 (defun delete-side-window (window)
824 "Delete side window WINDOW."
825 (let ((window-combination-resize
826 (window-parameter (window-parent window
) 'window-side
))
827 (ignore-window-parameters t
))
828 (delete-window window
)))
830 (defun display-buffer-in-side-window (buffer alist
)
831 "Display BUFFER in a side window of the selected frame.
832 ALIST is an association list of symbols and values. The
833 following special symbols can be used in ALIST.
835 `side' denotes the side of the frame where the new window shall
836 be located. Valid values are `bottom', `right', `top' and
837 `left'. The default is `bottom'.
839 `slot' if non-nil, specifies the window slot where to display
840 BUFFER. A value of zero or nil means use the middle slot on
841 the specified side. A negative value means use a slot
842 preceding (that is, above or on the left of) the middle slot.
843 A positive value means use a slot following (that is, below or
844 on the right of) the middle slot. The default is zero."
845 (let ((side (or (cdr (assq 'side alist
)) 'bottom
))
846 (slot (or (cdr (assq 'slot alist
)) 0)))
848 ((not (memq side
'(top bottom left right
)))
849 (error "Invalid side %s specified" side
))
850 ((not (numberp slot
))
851 (error "Invalid slot %s specified" slot
)))
853 (let* ((major (window-with-parameter 'window-side side nil t
))
854 ;; `major' is the major window on SIDE, `windows' the list of
855 ;; life windows on SIDE.
861 (when (eq (window-parameter window
'window-side
) side
)
862 (setq windows
(cons window windows
))))
864 (nreverse windows
))))
865 (slots (when major
(max 1 (window-child-count major
))))
871 ((eq side
'bottom
) 3))
873 window this-window this-slot prev-window next-window
874 best-window best-slot abs-slot
)
877 ((and (numberp max-slots
) (<= max-slots
0))
878 ;; No side-slots available on this side. Don't create an error,
882 ;; No major window exists on this side, make one.
883 (display-buffer-in-major-side-window buffer side slot alist
))
885 ;; Scan windows on SIDE.
887 (dolist (window windows
)
888 (setq this-slot
(window-parameter window
'window-slot
))
890 ;; The following should not happen and probably be checked
891 ;; by window--side-check.
892 ((not (numberp this-slot
)))
894 ;; A window with a matching slot has been found.
895 (setq this-window window
)
898 ;; Check if this window has a better slot value wrt the
899 ;; slot of the window we want.
901 (if (or (and (> this-slot
0) (> slot
0))
902 (and (< this-slot
0) (< slot
0)))
903 (abs (- slot this-slot
))
904 (+ (abs slot
) (abs this-slot
))))
905 (unless (and best-slot
(<= best-slot abs-slot
))
906 (setq best-window window
)
907 (setq best-slot abs-slot
))
910 (setq prev-window window
))
912 (setq next-window window
)))))))
914 ;; `this-window' is the first window with the same SLOT.
915 ;; `prev-window' is the window with the largest slot < SLOT. A new
916 ;; window will be created after it.
917 ;; `next-window' is the window with the smallest slot > SLOT. A new
918 ;; window will be created before it.
919 ;; `best-window' is the window with the smallest absolute difference
920 ;; of its slot and SLOT.
922 ;; Note: We dedicate the window used softly to its buffer to
923 ;; avoid that "other" (non-side) buffer display functions steal
924 ;; it from us. This must eventually become customizable via
925 ;; ALIST (or, better, avoided in the "other" functions).
927 ;; Reuse `this-window'.
928 (window--display-buffer buffer this-window
'reuse alist
'side
))
929 (and (or (not max-slots
) (< slots max-slots
))
931 ;; Make new window before `next-window'.
933 (if (memq side
'(left right
)) 'above
'left
))
934 (window-combination-resize 'side
))
935 (setq window
(split-window next-window nil next-side
))
936 ;; When the new window is deleted, its space
937 ;; is returned to other side windows.
938 (set-window-parameter
939 window
'delete-window
'delete-side-window
)
942 ;; Make new window after `prev-window'.
944 (if (memq side
'(left right
)) 'below
'right
))
945 (window-combination-resize 'side
))
946 (setq window
(split-window prev-window nil prev-side
))
947 ;; When the new window is deleted, its space
948 ;; is returned to other side windows.
949 (set-window-parameter
950 window
'delete-window
'delete-side-window
)
952 (set-window-parameter window
'window-slot slot
)
953 (window--display-buffer buffer window
'window alist
'side
))
955 ;; Reuse `best-window'.
957 ;; Give best-window the new slot value.
958 (set-window-parameter best-window
'window-slot slot
)
959 (window--display-buffer
960 buffer best-window
'reuse alist
'side
)))))))))
962 (defun window--side-check (&optional frame
)
963 "Check the side window configuration of FRAME.
964 FRAME defaults to the selected frame.
966 A valid side window configuration preserves the following two
969 - If there exists a window whose window-side parameter is
970 non-nil, there must exist at least one live window whose
971 window-side parameter is nil.
973 - If a window W has a non-nil window-side parameter (i) it must
974 have a parent window and that parent's window-side parameter
975 must be either nil or the same as for W, and (ii) any child
976 window of W must have the same window-side parameter as W.
978 If the configuration is invalid, reset the window-side parameters
979 of all windows on FRAME to nil."
980 (let (left top right bottom none side parent parent-side
)
981 (when (or (catch 'reset
984 (setq side
(window-parameter window
'window-side
))
985 (setq parent
(window-parent window
))
987 (and parent
(window-parameter parent
'window-side
)))
988 ;; The following `cond' seems a bit tedious, but I'd
989 ;; rather stick to using just the stack.
992 (when (not (eq parent-side side
))
993 ;; A parent whose window-side is non-nil must
994 ;; have a child with the same window-side.
997 (when (window-buffer window
)
998 ;; Record that we have at least one non-side,
1001 ((if (memq side
'(left top
))
1002 (window-prev-sibling window
)
1003 (window-next-sibling window
))
1004 ;; Left and top major side windows must not have a
1005 ;; previous sibling, right and bottom major side
1006 ;; windows must not have a next sibling.
1008 ;; Now check that there's no more than one major
1009 ;; window for any of left, top, right and bottom.
1011 (if left
(throw 'reset t
) (setq left t
)))
1013 (if top
(throw 'reset t
) (setq top t
)))
1015 (if right
(throw 'reset t
) (setq right t
)))
1017 (if bottom
(throw 'reset t
) (setq bottom t
)))
1021 ;; If there's a side window, there must be at least one
1023 (and (or left top right bottom
) (not none
)))
1026 (set-window-parameter window
'window-side nil
))
1029 (defun window--check (&optional frame
)
1030 "Check atomic and side windows on FRAME.
1031 FRAME defaults to the selected frame."
1032 (window--side-check frame
)
1033 (window--atom-check frame
))
1035 ;; Dumping frame/window contents.
1036 (defun window--dump-window (&optional window erase
)
1037 "Dump WINDOW to buffer *window-frame-dump*.
1038 WINDOW must be a valid window and defaults to the selected one.
1039 Optional argument ERASE non-nil means erase *window-frame-dump*
1040 before writing to it."
1041 (setq window
(window-normalize-window window
))
1042 (with-current-buffer (get-buffer-create "*window-frame-dump*")
1043 (when erase
(erase-buffer))
1045 (format "%s parent: %s\n" window
(window-parent window
))
1046 (format "pixel left: %s top: %s size: %s x %s new: %s\n"
1047 (window-pixel-left window
) (window-pixel-top window
)
1048 (window-size window t t
) (window-size window nil t
)
1049 (window-new-pixel window
))
1050 (format "char left: %s top: %s size: %s x %s new: %s\n"
1051 (window-left-column window
) (window-top-line window
)
1052 (window-total-size window t
) (window-total-size window
)
1053 (window-new-total window
))
1054 (format "normal: %s x %s new: %s\n"
1055 (window-normal-size window t
) (window-normal-size window
)
1056 (window-new-normal window
)))
1057 (when (window-live-p window
)
1058 (let ((fringes (window-fringes window
))
1059 (margins (window-margins window
)))
1061 (format "body pixel: %s x %s char: %s x %s\n"
1062 (window-body-width window t
) (window-body-height window t
)
1063 (window-body-width window
) (window-body-height window
))
1064 (format "width left fringe: %s left margin: %s right margin: %s\n"
1065 (car fringes
) (or (car margins
) 0) (or (cdr margins
) 0))
1066 (format "width right fringe: %s scroll-bar: %s divider: %s\n"
1068 (window-scroll-bar-width window
)
1069 (window-right-divider-width window
))
1070 (format "height header-line: %s mode-line: %s divider: %s\n"
1071 (window-header-line-height window
)
1072 (window-mode-line-height window
)
1073 (window-bottom-divider-width window
)))))
1076 (defun window--dump-frame (&optional window-or-frame
)
1077 "Dump WINDOW-OR-FRAME to buffer *window-frame-dump*.
1078 WINDOW-OR-FRAME can be a frame or a window and defaults to the
1079 selected frame. When WINDOW-OR-FRAME is a window, dump that
1080 window's frame. The buffer *window-frame-dump* is erased before
1084 ((or (not window-or-frame
)
1085 (frame-live-p window-or-frame
))
1086 (frame-root-window window-or-frame
))
1087 ((or (window-live-p window-or-frame
)
1088 (window-child window-or-frame
))
1091 (frame-root-window))))
1092 (frame (window-frame window
)))
1093 (with-current-buffer (get-buffer-create "*window-frame-dump*")
1096 (format "frame pixel: %s x %s cols/lines: %s x %s units: %s x %s\n"
1097 (frame-pixel-width frame
) (frame-pixel-height frame
)
1098 (frame-total-cols frame
) (frame-text-lines frame
) ; (frame-total-lines frame)
1099 (frame-char-width frame
) (frame-char-height frame
))
1100 (format "frame text pixel: %s x %s cols/lines: %s x %s\n"
1101 (frame-text-width frame
) (frame-text-height frame
)
1102 (frame-text-cols frame
) (frame-text-lines frame
))
1103 (format "tool: %s scroll: %s fringe: %s border: %s right: %s bottom: %s\n\n"
1104 (if (fboundp 'tool-bar-height
)
1105 (tool-bar-height frame t
)
1107 (frame-scroll-bar-width frame
)
1108 (frame-fringe-width frame
)
1109 (frame-border-width frame
)
1110 (frame-right-divider-width frame
)
1111 (frame-bottom-divider-width frame
)))
1112 (walk-window-tree 'window--dump-window frame t t
))))
1115 (defun window-total-size (&optional window horizontal round
)
1116 "Return the total height or width of WINDOW.
1117 WINDOW must be a valid window and defaults to the selected one.
1119 If HORIZONTAL is omitted or nil, return the total height of
1120 WINDOW, in lines, like `window-total-height'. Otherwise return
1121 the total width, in columns, like `window-total-width'.
1123 Optional argument ROUND is handled as for `window-total-height'
1124 and `window-total-width'."
1126 (window-total-width window round
)
1127 (window-total-height window round
)))
1129 (defun window-size (&optional window horizontal pixelwise round
)
1130 "Return the height or width of WINDOW.
1131 WINDOW must be a valid window and defaults to the selected one.
1133 If HORIZONTAL is omitted or nil, return the total height of
1134 WINDOW, in lines, like `window-total-height'. Otherwise return
1135 the total width, in columns, like `window-total-width'.
1137 Optional argument PIXELWISE means return the pixel size of WINDOW
1138 like `window-pixel-height' and `window-pixel-width'.
1140 Optional argument ROUND is ignored if PIXELWISE is non-nil and
1141 handled as for `window-total-height' and `window-total-width'
1145 (window-pixel-width window
)
1146 (window-total-width window round
))
1148 (window-pixel-height window
)
1149 (window-total-height window round
))))
1151 (defvar window-size-fixed nil
1152 "Non-nil in a buffer means windows displaying the buffer are fixed-size.
1153 If the value is `height', then only the window's height is fixed.
1154 If the value is `width', then only the window's width is fixed.
1155 Any other non-nil value fixes both the width and the height.
1157 Emacs won't change the size of any window displaying that buffer,
1158 unless it has no other choice (like when deleting a neighboring
1160 (make-variable-buffer-local 'window-size-fixed
)
1162 (defun window--size-ignore-p (window ignore
)
1163 "Return non-nil if IGNORE says to ignore size restrictions for WINDOW."
1164 (if (window-valid-p ignore
) (eq window ignore
) ignore
))
1166 (defun window-safe-min-size (&optional window horizontal pixelwise
)
1167 "Return safe minimum size of WINDOW.
1168 WINDOW must be a valid window and defaults to the selected one.
1169 Optional argument HORIZONTAL non-nil means return the minimum
1170 number of columns of WINDOW; otherwise return the minimum number
1173 Optional argument PIXELWISE non-nil means return the minimum pixel-size
1175 (setq window
(window-normalize-window window
))
1178 (* window-safe-min-width
1179 (frame-char-width (window-frame window
)))
1180 (* window-safe-min-height
1181 (frame-char-height (window-frame window
))))
1182 (if horizontal window-safe-min-width window-safe-min-height
)))
1184 (defun window-min-size (&optional window horizontal ignore pixelwise
)
1185 "Return the minimum size of WINDOW.
1186 WINDOW must be a valid window and defaults to the selected one.
1187 Optional argument HORIZONTAL non-nil means return the minimum
1188 number of columns of WINDOW; otherwise return the minimum number
1191 Optional argument IGNORE, if non-nil, means ignore restrictions
1192 imposed by fixed size windows, `window-min-height' or
1193 `window-min-width' settings. If IGNORE equals `safe', live
1194 windows may get as small as `window-safe-min-height' lines and
1195 `window-safe-min-width' columns. If IGNORE is a window, ignore
1196 restrictions for that window only. Any other non-nil value
1197 means ignore all of the above restrictions for all windows.
1199 Optional argument PIXELWISE non-nil means return the minimum pixel-size
1202 (window-normalize-window window
) horizontal ignore pixelwise
))
1204 (defun window--min-size-1 (window horizontal ignore pixelwise
)
1205 "Internal function of `window-min-size'."
1206 (let ((sub (window-child window
)))
1209 ;; WINDOW is an internal window.
1210 (if (window-combined-p sub horizontal
)
1211 ;; The minimum size of an iso-combination is the sum of
1212 ;; the minimum sizes of its child windows.
1214 (setq value
(+ value
1216 sub horizontal ignore pixelwise
)))
1217 (setq sub
(window-right sub
)))
1218 ;; The minimum size of an ortho-combination is the maximum
1219 ;; of the minimum sizes of its child windows.
1221 (setq value
(max value
1223 sub horizontal ignore pixelwise
)))
1224 (setq sub
(window-right sub
))))
1226 (with-current-buffer (window-buffer window
)
1228 ((and (not (window--size-ignore-p window ignore
))
1229 (window-size-fixed-p window horizontal
))
1230 ;; The minimum size of a fixed size window is its size.
1231 (window-size window horizontal pixelwise
))
1232 ((or (eq ignore
'safe
) (eq ignore window
))
1233 ;; If IGNORE equals `safe' or WINDOW return the safe values.
1234 (window-safe-min-size window horizontal pixelwise
))
1236 ;; For the minimum width of a window take fringes and
1237 ;; scroll-bars into account. This is questionable and should
1238 ;; be removed as soon as we are able to split (and resize)
1239 ;; windows such that the new (or resized) windows can get a
1240 ;; size less than the user-specified `window-min-height' and
1241 ;; `window-min-width'.
1242 (let* ((char-size (frame-char-size window t
))
1243 (fringes (window-fringes window
))
1245 (+ (window-safe-min-size window t t
)
1246 (car fringes
) (cadr fringes
)
1247 (window-scroll-bar-width window
)
1248 (window-right-divider-width window
))))
1251 (if window-resize-pixelwise
1253 ;; Round up to next integral of columns.
1254 (* (ceiling pixel-width char-size
) char-size
))
1255 (if (window--size-ignore-p window ignore
)
1257 (window-min-pixel-width)))
1259 (ceiling pixel-width char-size
)
1260 (if (window--size-ignore-p window ignore
)
1262 window-min-width
)))))
1263 ((let ((char-size (frame-char-size window
))
1265 (+ (window-safe-min-size window nil t
)
1266 (window-header-line-height window
)
1267 (window-mode-line-height window
)
1268 (window-bottom-divider-width window
))))
1271 (if window-resize-pixelwise
1273 ;; Round up to next integral of lines.
1274 (* (ceiling pixel-height char-size
) char-size
))
1275 (if (window--size-ignore-p window ignore
)
1277 (window-min-pixel-height)))
1278 (max (ceiling pixel-height char-size
)
1279 (if (window--size-ignore-p window ignore
)
1281 window-min-height
))))))))))
1283 (defun window-sizable (window delta
&optional horizontal ignore pixelwise
)
1284 "Return DELTA if DELTA lines can be added to WINDOW.
1285 WINDOW must be a valid window and defaults to the selected one.
1286 Optional argument HORIZONTAL non-nil means return DELTA if DELTA
1287 columns can be added to WINDOW. A return value of zero means
1288 that no lines (or columns) can be added to WINDOW.
1290 This function looks only at WINDOW and, recursively, its child
1291 windows. The function `window-resizable' looks at other windows
1294 DELTA positive means WINDOW shall be enlarged by DELTA lines or
1295 columns. If WINDOW cannot be enlarged by DELTA lines or columns
1296 return the maximum value in the range 0..DELTA by which WINDOW
1299 DELTA negative means WINDOW shall be shrunk by -DELTA lines or
1300 columns. If WINDOW cannot be shrunk by -DELTA lines or columns,
1301 return the minimum value in the range DELTA..0 by which WINDOW
1304 Optional argument IGNORE non-nil means ignore restrictions
1305 imposed by fixed size windows, `window-min-height' or
1306 `window-min-width' settings. If IGNORE equals `safe', live
1307 windows may get as small as `window-safe-min-height' lines and
1308 `window-safe-min-width' columns. If IGNORE is a window, ignore
1309 restrictions for that window only. Any other non-nil value means
1310 ignore all of the above restrictions for all windows.
1312 Optional argument PIXELWISE non-nil means interpret DELTA as
1314 (setq window
(window-normalize-window window
))
1317 (max (- (window-min-size window horizontal ignore pixelwise
)
1318 (window-size window horizontal pixelwise
))
1320 ((window--size-ignore-p window ignore
)
1323 (if (window-size-fixed-p window horizontal
)
1328 (defun window-sizable-p (window delta
&optional horizontal ignore pixelwise
)
1329 "Return t if WINDOW can be resized by DELTA lines.
1330 WINDOW must be a valid window and defaults to the selected one.
1331 For the meaning of the arguments of this function see the
1332 doc-string of `window-sizable'."
1333 (setq window
(window-normalize-window window
))
1335 (>= (window-sizable window delta horizontal ignore pixelwise
)
1337 (<= (window-sizable window delta horizontal ignore pixelwise
)
1340 (defun window--size-fixed-1 (window horizontal
)
1341 "Internal function for `window-size-fixed-p'."
1342 (let ((sub (window-child window
)))
1345 ;; WINDOW is an internal window.
1346 (if (window-combined-p sub horizontal
)
1347 ;; An iso-combination is fixed size if all its child
1348 ;; windows are fixed-size.
1351 (unless (window--size-fixed-1 sub horizontal
)
1352 ;; We found a non-fixed-size child window, so
1353 ;; WINDOW's size is not fixed.
1355 (setq sub
(window-right sub
)))
1356 ;; All child windows are fixed-size, so WINDOW's size is
1359 ;; An ortho-combination is fixed-size if at least one of its
1360 ;; child windows is fixed-size.
1362 (when (window--size-fixed-1 sub horizontal
)
1363 ;; We found a fixed-size child window, so WINDOW's size
1366 (setq sub
(window-right sub
))))
1367 ;; WINDOW is a live window.
1368 (with-current-buffer (window-buffer window
)
1370 (memq window-size-fixed
'(width t
))
1371 (memq window-size-fixed
'(height t
))))))))
1373 (defun window-size-fixed-p (&optional window horizontal
)
1374 "Return non-nil if WINDOW's height is fixed.
1375 WINDOW must be a valid window and defaults to the selected one.
1376 Optional argument HORIZONTAL non-nil means return non-nil if
1377 WINDOW's width is fixed.
1379 If this function returns nil, this does not necessarily mean that
1380 WINDOW can be resized in the desired direction. The function
1381 `window-resizable' can tell that."
1382 (window--size-fixed-1
1383 (window-normalize-window window
) horizontal
))
1385 (defun window--min-delta-1 (window delta
&optional horizontal ignore trail noup pixelwise
)
1386 "Internal function for `window-min-delta'."
1387 (if (not (window-parent window
))
1388 ;; If we can't go up, return zero.
1390 ;; Else try to find a non-fixed-size sibling of WINDOW.
1391 (let* ((parent (window-parent window
))
1392 (sub (window-child parent
)))
1394 (if (window-combined-p sub horizontal
)
1395 ;; In an iso-combination throw DELTA if we find at least one
1396 ;; child window and that window is either not fixed-size or
1397 ;; we can ignore fixed-sizeness.
1398 (let ((skip (eq trail
'after
)))
1402 (setq skip
(eq trail
'before
)))
1404 ((and (not (window--size-ignore-p window ignore
))
1405 (window-size-fixed-p sub horizontal
)))
1407 ;; We found a non-fixed-size child window.
1408 (throw 'done delta
)))
1409 (setq sub
(window-right sub
))))
1410 ;; In an ortho-combination set DELTA to the minimum value by
1411 ;; which other child windows can shrink.
1413 (unless (eq sub window
)
1416 (max (- (window-size sub horizontal pixelwise
'ceiling
)
1418 sub horizontal ignore pixelwise
))
1420 (setq sub
(window-right sub
))))
1423 (window--min-delta-1
1424 parent delta horizontal ignore trail nil pixelwise
))))))
1426 (defun window-min-delta (&optional window horizontal ignore trail noup nodown pixelwise
)
1427 "Return number of lines by which WINDOW can be shrunk.
1428 WINDOW must be a valid window and defaults to the selected one.
1429 Return zero if WINDOW cannot be shrunk.
1431 Optional argument HORIZONTAL non-nil means return number of
1432 columns by which WINDOW can be shrunk.
1434 Optional argument IGNORE non-nil means ignore restrictions
1435 imposed by fixed size windows, `window-min-height' or
1436 `window-min-width' settings. If IGNORE is a window, ignore
1437 restrictions for that window only. If IGNORE equals `safe',
1438 live windows may get as small as `window-safe-min-height' lines
1439 and `window-safe-min-width' columns. Any other non-nil value
1440 means ignore all of the above restrictions for all windows.
1442 Optional argument TRAIL restricts the windows that can be enlarged.
1443 If its value is `before', only windows to the left of or above WINDOW
1444 can be enlarged. If it is `after', only windows to the right of or
1445 below WINDOW can be enlarged.
1447 Optional argument NOUP non-nil means don't go up in the window
1448 tree, but try to enlarge windows within WINDOW's combination only.
1450 Optional argument NODOWN non-nil means don't check whether WINDOW
1451 itself (and its child windows) can be shrunk; check only whether
1452 at least one other window can be enlarged appropriately.
1454 Optional argument PIXELWISE non-nil means return number of pixels
1455 by which WINDOW can be shrunk."
1456 (setq window
(window-normalize-window window
))
1457 (let ((size (window-size window horizontal pixelwise
'floor
))
1458 (minimum (window-min-size window horizontal ignore pixelwise
)))
1461 ;; If NODOWN is t, try to recover the entire size of WINDOW.
1462 (window--min-delta-1
1463 window size horizontal ignore trail noup pixelwise
))
1465 ;; If NODOWN is nil and WINDOW's size is already at its minimum,
1466 ;; there's nothing to recover.
1469 ;; Otherwise, try to recover whatever WINDOW is larger than its
1471 (window--min-delta-1
1472 window
(- size minimum
) horizontal ignore trail noup pixelwise
)))))
1474 (defun window--max-delta-1 (window delta
&optional horizontal ignore trail noup pixelwise
)
1475 "Internal function of `window-max-delta'."
1476 (if (not (window-parent window
))
1477 ;; Can't go up. Return DELTA.
1479 (let* ((parent (window-parent window
))
1480 (sub (window-child parent
)))
1482 (if (window-combined-p sub horizontal
)
1483 ;; For an iso-combination calculate how much we can get from
1484 ;; other child windows.
1485 (let ((skip (eq trail
'after
)))
1489 (setq skip
(eq trail
'before
)))
1495 (- (window-size sub horizontal pixelwise
'floor
)
1497 sub horizontal ignore pixelwise
))
1499 (setq sub
(window-right sub
))))
1500 ;; For an ortho-combination throw DELTA when at least one
1501 ;; child window is fixed-size.
1503 (when (and (not (eq sub window
))
1504 (not (window--size-ignore-p sub ignore
))
1505 (window-size-fixed-p sub horizontal
))
1506 (throw 'fixed delta
))
1507 (setq sub
(window-right sub
))))
1509 ;; When NOUP is nil, DELTA is all we can get.
1511 ;; Else try with parent of WINDOW, passing the DELTA we
1512 ;; recovered so far.
1513 (window--max-delta-1
1514 parent delta horizontal ignore trail nil pixelwise
))))))
1516 (defun window-max-delta (&optional window horizontal ignore trail noup nodown pixelwise
)
1517 "Return maximum number of lines by which WINDOW can be enlarged.
1518 WINDOW must be a valid window and defaults to the selected one.
1519 The return value is zero if WINDOW cannot be enlarged.
1521 Optional argument HORIZONTAL non-nil means return maximum number
1522 of columns by which WINDOW can be enlarged.
1524 Optional argument IGNORE non-nil means ignore restrictions
1525 imposed by fixed size windows, `window-min-height' or
1526 `window-min-width' settings. If IGNORE is a window, ignore
1527 restrictions for that window only. If IGNORE equals `safe',
1528 live windows may get as small as `window-safe-min-height' lines
1529 and `window-safe-min-width' columns. Any other non-nil value means
1530 ignore all of the above restrictions for all windows.
1532 Optional argument TRAIL restricts the windows that can be enlarged.
1533 If its value is `before', only windows to the left of or above WINDOW
1534 can be enlarged. If it is `after', only windows to the right of or
1535 below WINDOW can be enlarged.
1537 Optional argument NOUP non-nil means don't go up in the window
1538 tree but try to obtain the entire space from windows within
1539 WINDOW's combination.
1541 Optional argument NODOWN non-nil means do not check whether
1542 WINDOW itself (and its child windows) can be enlarged; check
1543 only whether other windows can be shrunk appropriately.
1545 Optional argument PIXELWISE non-nil means return number of
1546 pixels by which WINDOW can be enlarged."
1547 (setq window
(window-normalize-window window
))
1548 (if (and (not (window--size-ignore-p window ignore
))
1549 (not nodown
) (window-size-fixed-p window horizontal
))
1550 ;; With IGNORE and NOWDON nil return zero if WINDOW has fixed
1553 ;; WINDOW has no fixed size.
1554 (window--max-delta-1 window
0 horizontal ignore trail noup pixelwise
)))
1556 ;; Make NOUP also inhibit the min-size check.
1557 (defun window--resizable (window delta
&optional horizontal ignore trail noup nodown pixelwise
)
1558 "Return DELTA if WINDOW can be resized vertically by DELTA lines.
1559 WINDOW must be a valid window and defaults to the selected one.
1560 Optional argument HORIZONTAL non-nil means return DELTA if WINDOW
1561 can be resized horizontally by DELTA columns. A return value of
1562 zero means that WINDOW is not resizable.
1564 DELTA positive means WINDOW shall be enlarged by DELTA lines or
1565 columns. If WINDOW cannot be enlarged by DELTA lines or columns,
1566 return the maximum value in the range 0..DELTA by which WINDOW
1569 DELTA negative means WINDOW shall be shrunk by -DELTA lines or
1570 columns. If WINDOW cannot be shrunk by -DELTA lines or columns,
1571 return the minimum value in the range DELTA..0 that can be used
1572 for shrinking WINDOW.
1574 Optional argument IGNORE non-nil means ignore restrictions
1575 imposed by fixed size windows, `window-min-height' or
1576 `window-min-width' settings. If IGNORE is a window, ignore
1577 restrictions for that window only. If IGNORE equals `safe',
1578 live windows may get as small as `window-safe-min-height' lines
1579 and `window-safe-min-width' columns. Any other non-nil value
1580 means ignore all of the above restrictions for all windows.
1582 Optional argument TRAIL `before' means only windows to the left
1583 of or below WINDOW can be shrunk. Optional argument TRAIL
1584 `after' means only windows to the right of or above WINDOW can be
1587 Optional argument NOUP non-nil means don't go up in the window
1588 tree but check only whether space can be obtained from (or given
1589 to) WINDOW's siblings.
1591 Optional argument NODOWN non-nil means don't go down in the
1592 window tree. This means do not check whether resizing would
1593 violate size restrictions of WINDOW or its child windows.
1595 Optional argument PIXELWISE non-nil means interpret DELTA as
1597 (setq window
(window-normalize-window window
))
1600 (max (- (window-min-delta
1601 window horizontal ignore trail noup nodown pixelwise
))
1604 (min (window-max-delta
1605 window horizontal ignore trail noup nodown pixelwise
)
1609 (defun window--resizable-p (window delta
&optional horizontal ignore trail noup nodown pixelwise
)
1610 "Return t if WINDOW can be resized vertically by DELTA lines.
1611 WINDOW must be a valid window and defaults to the selected one.
1612 For the meaning of the arguments of this function see the
1613 doc-string of `window--resizable'.
1615 Optional argument PIXELWISE non-nil means interpret DELTA as
1617 (setq window
(window-normalize-window window
))
1619 (>= (window--resizable
1620 window delta horizontal ignore trail noup nodown pixelwise
)
1622 (<= (window--resizable
1623 window delta horizontal ignore trail noup nodown pixelwise
)
1626 (defun window-resizable (window delta
&optional horizontal ignore pixelwise
)
1627 "Return DELTA if WINDOW can be resized vertically by DELTA lines.
1628 WINDOW must be a valid window and defaults to the selected one.
1629 Optional argument HORIZONTAL non-nil means return DELTA if WINDOW
1630 can be resized horizontally by DELTA columns. A return value of
1631 zero means that WINDOW is not resizable.
1633 DELTA positive means WINDOW shall be enlarged by DELTA lines or
1634 columns. If WINDOW cannot be enlarged by DELTA lines or columns
1635 return the maximum value in the range 0..DELTA by which WINDOW
1638 DELTA negative means WINDOW shall be shrunk by -DELTA lines or
1639 columns. If WINDOW cannot be shrunk by -DELTA lines or columns,
1640 return the minimum value in the range DELTA..0 that can be used
1641 for shrinking WINDOW.
1643 Optional argument IGNORE non-nil means ignore restrictions
1644 imposed by fixed size windows, `window-min-height' or
1645 `window-min-width' settings. If IGNORE is a window, ignore
1646 restrictions for that window only. If IGNORE equals `safe',
1647 live windows may get as small as `window-safe-min-height' lines
1648 and `window-safe-min-width' columns. Any other non-nil value
1649 means ignore all of the above restrictions for all windows.
1651 Optional argument PIXELWISE non-nil means interpret DELTA as
1653 (setq window
(window-normalize-window window
))
1654 (window--resizable window delta horizontal ignore nil nil nil pixelwise
))
1656 (defun window-resizable-p (window delta
&optional horizontal ignore pixelwise
)
1657 "Return t if WINDOW can be resized vertically by DELTA lines.
1658 WINDOW must be a valid window and defaults to the selected one.
1659 For the meaning of the arguments of this function see the
1660 doc-string of `window-resizable'."
1661 (setq window
(window-normalize-window window
))
1663 (>= (window--resizable
1664 window delta horizontal ignore nil nil nil pixelwise
)
1666 (<= (window--resizable
1667 window delta horizontal ignore nil nil nil pixelwise
)
1670 ;; Aliases of functions defined in window.c.
1671 (defalias 'window-height
'window-total-height
)
1672 (defalias 'window-width
'window-body-width
)
1674 ;; Eventually the following two should work pixelwise.
1676 ;; See discussion in bug#4543.
1677 (defun window-full-height-p (&optional window
)
1678 "Return t if WINDOW is as high as its containing frame.
1679 More precisely, return t if and only if the total height of
1680 WINDOW equals the total height of the root window of WINDOW's
1681 frame. WINDOW must be a valid window and defaults to the
1683 (setq window
(window-normalize-window window
))
1684 (= (window-pixel-height window
)
1685 (window-pixel-height (frame-root-window window
))))
1687 (defun window-full-width-p (&optional window
)
1688 "Return t if WINDOW is as wide as its containing frame.
1689 More precisely, return t if and only if the total width of WINDOW
1690 equals the total width of the root window of WINDOW's frame.
1691 WINDOW must be a valid window and defaults to the selected one."
1692 (setq window
(window-normalize-window window
))
1693 (= (window-pixel-width window
)
1694 (window-pixel-width (frame-root-window window
))))
1696 (defun window-body-size (&optional window horizontal pixelwise
)
1697 "Return the height or width of WINDOW's text area.
1698 WINDOW must be a live window and defaults to the selected one.
1700 If HORIZONTAL is omitted or nil, return the height of the text
1701 area, like `window-body-height'. Otherwise, return the width of
1702 the text area, like `window-body-width'. In either case, the
1703 optional argument PIXELWISE is passed to the functions."
1705 (window-body-width window pixelwise
)
1706 (window-body-height window pixelwise
)))
1708 (defun window-current-scroll-bars (&optional window
)
1709 "Return the current scroll bar settings for WINDOW.
1710 WINDOW must be a live window and defaults to the selected one.
1712 The return value is a cons cell (VERTICAL . HORIZONTAL) where
1713 VERTICAL specifies the current location of the vertical scroll
1714 bars (`left', `right', or nil), and HORIZONTAL specifies the
1715 current location of the horizontal scroll bars (`top', `bottom',
1718 Unlike `window-scroll-bars', this function reports the scroll bar
1719 type actually used, once frame defaults and `scroll-bar-mode' are
1720 taken into account."
1721 (setq window
(window-normalize-window window t
))
1722 (let ((vert (nth 2 (window-scroll-bars window
)))
1724 (when (or (eq vert t
) (eq hor t
))
1725 (let ((fcsb (frame-current-scroll-bars (window-frame window
))))
1727 (setq vert
(car fcsb
)))
1729 (setq hor
(cdr fcsb
)))))
1732 (defun walk-windows (fun &optional minibuf all-frames
)
1733 "Cycle through all live windows, calling FUN for each one.
1734 FUN must specify a function with a window as its sole argument.
1735 The optional arguments MINIBUF and ALL-FRAMES specify the set of
1736 windows to include in the walk.
1738 MINIBUF t means include the minibuffer window even if the
1739 minibuffer is not active. MINIBUF nil or omitted means include
1740 the minibuffer window only if the minibuffer is active. Any
1741 other value means do not include the minibuffer window even if
1742 the minibuffer is active.
1744 ALL-FRAMES nil or omitted means consider all windows on the
1745 selected frame, plus the minibuffer window if specified by the
1746 MINIBUF argument. If the minibuffer counts, consider all windows
1747 on all frames that share that minibuffer too. The following
1748 non-nil values of ALL-FRAMES have special meanings:
1750 - t means consider all windows on all existing frames.
1752 - `visible' means consider all windows on all visible frames on
1753 the current terminal.
1755 - 0 (the number zero) means consider all windows on all visible
1756 and iconified frames on the current terminal.
1758 - A frame means consider all windows on that frame only.
1760 Anything else means consider all windows on the selected frame
1763 This function changes neither the order of recently selected
1764 windows nor the buffer list."
1765 ;; If we start from the minibuffer window, don't fail to come
1767 (when (window-minibuffer-p)
1769 ;; Make sure to not mess up the order of recently selected
1770 ;; windows. Use `save-selected-window' and `select-window'
1771 ;; with second argument non-nil for this purpose.
1772 (save-selected-window
1773 (when (framep all-frames
)
1774 (select-window (frame-first-window all-frames
) 'norecord
))
1775 (dolist (walk-windows-window (window-list-1 nil minibuf all-frames
))
1776 (funcall fun walk-windows-window
))))
1778 (defun window-at-side-p (&optional window side
)
1779 "Return t if WINDOW is at SIDE of its containing frame.
1780 WINDOW must be a valid window and defaults to the selected one.
1781 SIDE can be any of the symbols `left', `top', `right' or
1782 `bottom'. The default value nil is handled like `bottom'."
1783 (setq window
(window-normalize-window window
))
1788 ((eq side
'right
) 2)
1789 ((memq side
'(bottom nil
)) 3))))
1790 (= (nth edge
(window-pixel-edges window
))
1791 (nth edge
(window-pixel-edges (frame-root-window window
))))))
1793 (defun window-at-side-list (&optional frame side
)
1794 "Return list of all windows on SIDE of FRAME.
1795 FRAME must be a live frame and defaults to the selected frame.
1796 SIDE can be any of the symbols `left', `top', `right' or
1797 `bottom'. The default value nil is handled like `bottom'."
1798 (setq frame
(window-normalize-frame frame
))
1802 (when (window-at-side-p window side
)
1803 (setq windows
(cons window windows
))))
1805 (nreverse windows
)))
1807 (defun window--in-direction-2 (window posn
&optional horizontal
)
1808 "Support function for `window-in-direction'."
1810 (let ((top (window-pixel-top window
)))
1813 (- posn top
(window-pixel-height window
))))
1814 (let ((left (window-pixel-left window
)))
1817 (- posn left
(window-pixel-width window
))))))
1819 ;; Predecessors to the below have been devised by Julian Assange in
1820 ;; change-windows-intuitively.el and Hovav Shacham in windmove.el.
1821 ;; Neither of these allow to selectively ignore specific windows
1822 ;; (windows whose `no-other-window' parameter is non-nil) as targets of
1824 (defun window-in-direction (direction &optional window ignore sign wrap mini
)
1825 "Return window in DIRECTION as seen from WINDOW.
1826 More precisely, return the nearest window in direction DIRECTION
1827 as seen from the position of `window-point' in window WINDOW.
1828 DIRECTION must be one of `above', `below', `left' or `right'.
1829 WINDOW must be a live window and defaults to the selected one.
1831 Do not return a window whose `no-other-window' parameter is
1832 non-nil. If the nearest window's `no-other-window' parameter is
1833 non-nil, try to find another window in the indicated direction.
1834 If, however, the optional argument IGNORE is non-nil, return that
1835 window even if its `no-other-window' parameter is non-nil.
1837 Optional argument SIGN a negative number means to use the right
1838 or bottom edge of WINDOW as reference position instead of
1839 `window-point'. SIGN a positive number means to use the left or
1840 top edge of WINDOW as reference position.
1842 Optional argument WRAP non-nil means to wrap DIRECTION around
1843 frame borders. This means to return for WINDOW at the top of the
1844 frame and DIRECTION `above' the minibuffer window if the frame
1845 has one, and a window at the bottom of the frame otherwise.
1847 Optional argument MINI nil means to return the minibuffer window
1848 if and only if it is currently active. MINI non-nil means to
1849 return the minibuffer window even when it's not active. However,
1850 if WRAP non-nil, always act as if MINI were nil.
1852 Return nil if no suitable window can be found."
1853 (setq window
(window-normalize-window window t
))
1854 (unless (memq direction
'(above below left right
))
1855 (error "Wrong direction %s" direction
))
1856 (let* ((frame (window-frame window
))
1857 (hor (memq direction
'(left right
)))
1859 (window-pixel-left window
)
1860 (window-pixel-top window
)))
1861 (last (+ first
(window-size window hor t
)))
1862 ;; The column / row value of `posn-at-point' can be nil for the
1863 ;; mini-window, guard against that.
1866 ((and (numberp sign
) (< sign
0))
1868 (1- (+ (window-pixel-top window
) (window-pixel-height window
)))
1869 (1- (+ (window-pixel-left window
) (window-pixel-width window
)))))
1870 ((and (numberp sign
) (> sign
0))
1872 (window-pixel-top window
)
1873 (window-pixel-left window
)))
1874 ((let ((posn-cons (nth 2 (posn-at-point (window-point window
) window
))))
1876 (+ (or (cdr posn-cons
) 1) (window-pixel-top window
))
1877 (+ (or (car posn-cons
) 1) (window-pixel-left window
)))))))
1880 ((eq direction
'below
) (frame-pixel-height frame
))
1881 ((eq direction
'right
) (frame-pixel-width frame
))
1883 (best-edge-2 best-edge
)
1884 (best-diff-2 (if hor
(frame-pixel-height frame
) (frame-pixel-width frame
)))
1885 best best-2 best-diff-2-new
)
1888 (let* ((w-top (window-pixel-top w
))
1889 (w-left (window-pixel-left w
)))
1892 ;; Ignore ourselves.
1893 (and (window-parameter w
'no-other-window
)
1894 ;; Ignore W unless IGNORE is non-nil.
1898 ((and (<= w-top posn
)
1899 (< posn
(+ w-top
(window-pixel-height w
))))
1900 ;; W is to the left or right of WINDOW and covers POSN.
1901 (when (or (and (eq direction
'left
)
1902 (or (and (<= w-left first
) (> w-left best-edge
))
1904 (window-at-side-p window
'left
)
1905 (window-at-side-p w
'right
))))
1906 (and (eq direction
'right
)
1907 (or (and (>= w-left last
) (< w-left best-edge
))
1909 (window-at-side-p window
'right
)
1910 (window-at-side-p w
'left
)))))
1911 (setq best-edge w-left
)
1913 ((and (or (and (eq direction
'left
)
1914 (<= (+ w-left
(window-pixel-width w
)) first
))
1915 (and (eq direction
'right
) (<= last w-left
)))
1916 ;; W is to the left or right of WINDOW but does not
1918 (setq best-diff-2-new
1919 (window--in-direction-2 w posn hor
))
1920 (or (< best-diff-2-new best-diff-2
)
1921 (and (= best-diff-2-new best-diff-2
)
1922 (if (eq direction
'left
)
1923 (> w-left best-edge-2
)
1924 (< w-left best-edge-2
)))))
1925 (setq best-edge-2 w-left
)
1926 (setq best-diff-2 best-diff-2-new
)
1928 ((and (<= w-left posn
)
1929 (< posn
(+ w-left
(window-pixel-width w
))))
1930 ;; W is above or below WINDOW and covers POSN.
1931 (when (or (and (eq direction
'above
)
1932 (or (and (<= w-top first
) (> w-top best-edge
))
1934 (window-at-side-p window
'top
)
1935 (if (active-minibuffer-window)
1936 (minibuffer-window-active-p w
)
1937 (window-at-side-p w
'bottom
)))))
1938 (and (eq direction
'below
)
1939 (or (and (>= w-top first
) (< w-top best-edge
))
1941 (if (active-minibuffer-window)
1942 (minibuffer-window-active-p window
)
1943 (window-at-side-p window
'bottom
))
1944 (window-at-side-p w
'top
)))))
1945 (setq best-edge w-top
)
1947 ((and (or (and (eq direction
'above
)
1948 (<= (+ w-top
(window-pixel-height w
)) first
))
1949 (and (eq direction
'below
) (<= last w-top
)))
1950 ;; W is above or below WINDOW but does not cover POSN.
1951 (setq best-diff-2-new
1952 (window--in-direction-2 w posn hor
))
1953 (or (< best-diff-2-new best-diff-2
)
1954 (and (= best-diff-2-new best-diff-2
)
1955 (if (eq direction
'above
)
1956 (> w-top best-edge-2
)
1957 (< w-top best-edge-2
)))))
1958 (setq best-edge-2 w-top
)
1959 (setq best-diff-2 best-diff-2-new
)
1961 frame nil
(and mini t
))
1964 (defun get-window-with-predicate (predicate &optional minibuf all-frames default
)
1965 "Return a live window satisfying PREDICATE.
1966 More precisely, cycle through all windows calling the function
1967 PREDICATE on each one of them with the window as its sole
1968 argument. Return the first window for which PREDICATE returns
1969 non-nil. Windows are scanned starting with the window following
1970 the selected window. If no window satisfies PREDICATE, return
1973 MINIBUF t means include the minibuffer window even if the
1974 minibuffer is not active. MINIBUF nil or omitted means include
1975 the minibuffer window only if the minibuffer is active. Any
1976 other value means do not include the minibuffer window even if
1977 the minibuffer is active.
1979 ALL-FRAMES nil or omitted means consider all windows on the selected
1980 frame, plus the minibuffer window if specified by the MINIBUF
1981 argument. If the minibuffer counts, consider all windows on all
1982 frames that share that minibuffer too. The following non-nil
1983 values of ALL-FRAMES have special meanings:
1985 - t means consider all windows on all existing frames.
1987 - `visible' means consider all windows on all visible frames on
1988 the current terminal.
1990 - 0 (the number zero) means consider all windows on all visible
1991 and iconified frames on the current terminal.
1993 - A frame means consider all windows on that frame only.
1995 Anything else means consider all windows on the selected frame
1998 (dolist (window (window-list-1
1999 (next-window nil minibuf all-frames
)
2000 minibuf all-frames
))
2001 (when (funcall predicate window
)
2002 (throw 'found window
)))
2005 (defalias 'some-window
'get-window-with-predicate
)
2007 (defun get-lru-window (&optional all-frames dedicated not-selected
)
2008 "Return the least recently used window on frames specified by ALL-FRAMES.
2009 Return a full-width window if possible. A minibuffer window is
2010 never a candidate. A dedicated window is never a candidate
2011 unless DEDICATED is non-nil, so if all windows are dedicated, the
2012 value is nil. Avoid returning the selected window if possible.
2013 Optional argument NOT-SELECTED non-nil means never return the
2016 The following non-nil values of the optional argument ALL-FRAMES
2017 have special meanings:
2019 - t means consider all windows on all existing frames.
2021 - `visible' means consider all windows on all visible frames on
2022 the current terminal.
2024 - 0 (the number zero) means consider all windows on all visible
2025 and iconified frames on the current terminal.
2027 - A frame means consider all windows on that frame only.
2029 Any other value of ALL-FRAMES means consider all windows on the
2030 selected frame and no others."
2031 (let (best-window best-time second-best-window second-best-time time
)
2032 (dolist (window (window-list-1 nil
'nomini all-frames
))
2033 (when (and (or dedicated
(not (window-dedicated-p window
)))
2034 (or (not not-selected
) (not (eq window
(selected-window)))))
2035 (setq time
(window-use-time window
))
2036 (if (or (eq window
(selected-window))
2037 (not (window-full-width-p window
)))
2038 (when (or (not second-best-time
) (< time second-best-time
))
2039 (setq second-best-time time
)
2040 (setq second-best-window window
))
2041 (when (or (not best-time
) (< time best-time
))
2042 (setq best-time time
)
2043 (setq best-window window
)))))
2044 (or best-window second-best-window
)))
2046 (defun get-mru-window (&optional all-frames dedicated not-selected
)
2047 "Return the most recently used window on frames specified by ALL-FRAMES.
2048 A minibuffer window is never a candidate. A dedicated window is
2049 never a candidate unless DEDICATED is non-nil, so if all windows
2050 are dedicated, the value is nil. Optional argument NOT-SELECTED
2051 non-nil means never return the selected window.
2053 The following non-nil values of the optional argument ALL-FRAMES
2054 have special meanings:
2056 - t means consider all windows on all existing frames.
2058 - `visible' means consider all windows on all visible frames on
2059 the current terminal.
2061 - 0 (the number zero) means consider all windows on all visible
2062 and iconified frames on the current terminal.
2064 - A frame means consider all windows on that frame only.
2066 Any other value of ALL-FRAMES means consider all windows on the
2067 selected frame and no others."
2068 (let (best-window best-time time
)
2069 (dolist (window (window-list-1 nil
'nomini all-frames
))
2070 (setq time
(window-use-time window
))
2071 (when (and (or dedicated
(not (window-dedicated-p window
)))
2072 (or (not not-selected
) (not (eq window
(selected-window))))
2073 (or (not best-time
) (> time best-time
)))
2074 (setq best-time time
)
2075 (setq best-window window
)))
2078 (defun get-largest-window (&optional all-frames dedicated not-selected
)
2079 "Return the largest window on frames specified by ALL-FRAMES.
2080 A minibuffer window is never a candidate. A dedicated window is
2081 never a candidate unless DEDICATED is non-nil, so if all windows
2082 are dedicated, the value is nil. Optional argument NOT-SELECTED
2083 non-nil means never return the selected window.
2085 The following non-nil values of the optional argument ALL-FRAMES
2086 have special meanings:
2088 - t means consider all windows on all existing frames.
2090 - `visible' means consider all windows on all visible frames on
2091 the current terminal.
2093 - 0 (the number zero) means consider all windows on all visible
2094 and iconified frames on the current terminal.
2096 - A frame means consider all windows on that frame only.
2098 Any other value of ALL-FRAMES means consider all windows on the
2099 selected frame and no others."
2102 (dolist (window (window-list-1 nil
'nomini all-frames
))
2103 (when (and (or dedicated
(not (window-dedicated-p window
)))
2104 (or (not not-selected
) (not (eq window
(selected-window)))))
2105 (setq size
(* (window-pixel-height window
)
2106 (window-pixel-width window
)))
2107 (when (> size best-size
)
2108 (setq best-size size
)
2109 (setq best-window window
))))
2112 (defun get-buffer-window-list (&optional buffer-or-name minibuf all-frames
)
2113 "Return list of all windows displaying BUFFER-OR-NAME, or nil if none.
2114 BUFFER-OR-NAME may be a buffer or the name of an existing buffer
2115 and defaults to the current buffer. Windows are scanned starting
2116 with the selected window.
2118 MINIBUF t means include the minibuffer window even if the
2119 minibuffer is not active. MINIBUF nil or omitted means include
2120 the minibuffer window only if the minibuffer is active. Any
2121 other value means do not include the minibuffer window even if
2122 the minibuffer is active.
2124 ALL-FRAMES nil or omitted means consider all windows on the
2125 selected frame, plus the minibuffer window if specified by the
2126 MINIBUF argument. If the minibuffer counts, consider all windows
2127 on all frames that share that minibuffer too. The following
2128 non-nil values of ALL-FRAMES have special meanings:
2130 - t means consider all windows on all existing frames.
2132 - `visible' means consider all windows on all visible frames on
2133 the current terminal.
2135 - 0 (the number zero) means consider all windows on all visible
2136 and iconified frames on the current terminal.
2138 - A frame means consider all windows on that frame only.
2140 Anything else means consider all windows on the selected frame
2142 (let ((buffer (window-normalize-buffer buffer-or-name
))
2144 (dolist (window (window-list-1 (selected-window) minibuf all-frames
))
2145 (when (eq (window-buffer window
) buffer
)
2146 (setq windows
(cons window windows
))))
2147 (nreverse windows
)))
2149 (defun minibuffer-window-active-p (window)
2150 "Return t if WINDOW is the currently active minibuffer window."
2151 (eq window
(active-minibuffer-window)))
2153 (defun count-windows (&optional minibuf
)
2154 "Return the number of live windows on the selected frame.
2155 The optional argument MINIBUF specifies whether the minibuffer
2156 window shall be counted. See `walk-windows' for the precise
2157 meaning of this argument."
2158 (length (window-list-1 nil minibuf
)))
2160 ;;; Resizing windows.
2161 (defun window--size-to-pixel (window size
&optional horizontal pixelwise round-maybe
)
2162 "For WINDOW convert SIZE lines to pixels.
2163 SIZE is supposed to specify a height of WINDOW in terms of text
2164 lines. The return value is the number of pixels specifying that
2167 WINDOW must be a valid window. Optional argument HORIZONTAL
2168 non-nil means convert SIZE columns to pixels.
2170 Optional argument PIXELWISE non-nil means SIZE already specifies
2171 pixels but may have to be adjusted to a multiple of the character
2172 size of WINDOW's frame. Optional argument ROUND-MAYBE non-nil
2173 means round to the nearest multiple of the character size of
2174 WINDOW's frame if the option `window-resize-pixelwise' is nil."
2175 (setq window
(window-normalize-window window
))
2176 (let ((char-size (frame-char-size window horizontal
)))
2178 (if (and round-maybe
(not window-resize-pixelwise
))
2179 (* (round size char-size
) char-size
)
2181 (* size char-size
))))
2183 (defun window--pixel-to-total-1 (window horizontal char-size
)
2184 "Subroutine of `window--pixel-to-total'."
2185 (let ((child (window-child window
)))
2186 (if (window-combination-p window horizontal
)
2187 ;; In an iso-combination distribute sizes proportionally.
2188 (let ((remainder (window-new-total window
))
2189 size best-child rem best-rem
)
2190 ;; Initialize total sizes to each child's floor.
2192 (setq size
(max (/ (window-size child horizontal t
) char-size
) 1))
2193 (set-window-new-total child size
)
2194 (setq remainder
(- remainder size
))
2195 (setq child
(window-next-sibling child
)))
2196 ;; Distribute remainder.
2197 (while (> remainder
0)
2198 (setq child
(window-last-child window
))
2199 (setq best-child nil
)
2202 (when (and (<= (window-new-total child
)
2203 (/ (window-size child horizontal t
) char-size
))
2204 (> (setq rem
(%
(window-size child horizontal t
)
2207 (setq best-child child
)
2208 (setq best-rem rem
))
2209 (setq child
(window-prev-sibling child
)))
2210 ;; We MUST have a best-child here.
2211 (set-window-new-total best-child
1 t
)
2212 (setq remainder
(1- remainder
)))
2214 (setq child
(window-child window
))
2216 (window--pixel-to-total-1 child horizontal char-size
)
2217 (setq child
(window-next-sibling child
))))
2218 ;; In an ortho-combination assign new sizes directly.
2219 (let ((size (window-new-total window
)))
2221 (set-window-new-total child size
)
2222 (window--pixel-to-total-1 child horizontal char-size
)
2223 (setq child
(window-next-sibling child
)))))))
2225 (defun window--pixel-to-total (&optional frame horizontal
)
2226 "On FRAME assign new total window heights from pixel heights.
2227 FRAME must be a live frame and defaults to the selected frame.
2229 Optional argument HORIZONTAL non-nil means assign new total
2230 window widths from pixel widths."
2231 (setq frame
(window-normalize-frame frame
))
2232 (let* ((char-size (frame-char-size frame horizontal
))
2233 (root (frame-root-window))
2234 (root-size (window-size root horizontal t
))
2235 ;; We have to care about the minibuffer window only if it
2236 ;; appears together with the root window on this frame.
2237 (mini (let ((mini (minibuffer-window frame
)))
2238 (and (eq (window-frame mini
) frame
)
2239 (not (eq mini root
)) mini
)))
2240 (mini-size (and mini
(window-size mini horizontal t
))))
2241 ;; We round the line/column sizes of windows here to the nearest
2242 ;; integer. In some cases this can make windows appear _larger_
2243 ;; than the containing frame (line/column-wise) because the latter's
2244 ;; sizes are not (yet) rounded. We might eventually fix that.
2245 (if (and mini
(not horizontal
))
2247 (set-window-new-total root
(max (/ root-size char-size
) 1))
2248 (set-window-new-total mini
(max (/ mini-size char-size
) 1))
2249 (setq lines
(- (round (+ root-size mini-size
) char-size
)
2250 (+ (window-new-total root
) (window-new-total mini
))))
2252 (if (>= (% root-size
(window-new-total root
))
2253 (% mini-size
(window-new-total mini
)))
2254 (set-window-new-total root
1 t
)
2255 (set-window-new-total mini
1 t
))
2256 (setq lines
(1- lines
))))
2257 (set-window-new-total root
(round root-size char-size
))
2259 ;; This is taken in the horizontal case only.
2260 (set-window-new-total mini
(round mini-size char-size
))))
2261 (unless (window-buffer root
)
2262 (window--pixel-to-total-1 root horizontal char-size
))
2263 ;; Apply the new sizes.
2264 (window-resize-apply-total frame horizontal
)))
2266 (defun window--resize-reset (&optional frame horizontal
)
2267 "Reset resize values for all windows on FRAME.
2268 FRAME defaults to the selected frame.
2270 This function stores the current value of `window-size' applied
2271 with argument HORIZONTAL in the new total size of all windows on
2272 FRAME. It also resets the new normal size of each of these
2274 (window--resize-reset-1
2275 (frame-root-window (window-normalize-frame frame
)) horizontal
))
2277 (defun window--resize-reset-1 (window horizontal
)
2278 "Internal function of `window--resize-reset'."
2279 ;; Register old size in the new total size.
2280 (set-window-new-pixel window
(window-size window horizontal t
))
2281 (set-window-new-total window
(window-size window horizontal
))
2282 ;; Reset new normal size.
2283 (set-window-new-normal window
)
2284 (when (window-child window
)
2285 (window--resize-reset-1 (window-child window
) horizontal
))
2286 (when (window-right window
)
2287 (window--resize-reset-1 (window-right window
) horizontal
)))
2289 ;; The following routine is used to manually resize the minibuffer
2290 ;; window and is currently used, for example, by ispell.el.
2291 (defun window--resize-mini-window (window delta
)
2292 "Resize minibuffer window WINDOW by DELTA pixels.
2293 If WINDOW cannot be resized by DELTA pixels make it as large (or
2294 as small) as possible, but don't signal an error."
2295 (when (window-minibuffer-p window
)
2296 (let* ((frame (window-frame window
))
2297 (root (frame-root-window frame
))
2298 (height (window-pixel-height window
))
2300 (- (window-pixel-height root
)
2301 (window-min-size root nil nil t
))))
2304 ((<= (+ height delta
) 0)
2305 (setq delta
(- (frame-char-height (window-frame window
)) height
)))
2306 ((> delta min-delta
)
2307 (setq delta min-delta
)))
2309 (unless (zerop delta
)
2311 (window--resize-reset frame
)
2312 ;; Ideally we should be able to resize just the last child of root
2313 ;; here. See the comment in `resize-root-window-vertically' for
2314 ;; why we do not do that.
2315 (window--resize-this-window root
(- delta
) nil nil t
)
2316 (set-window-new-pixel window
(+ height delta
))
2317 ;; The following routine catches the case where we want to resize
2318 ;; a minibuffer-only frame.
2319 (when (resize-mini-window-internal window
)
2320 (window--pixel-to-total frame
)
2321 (run-window-configuration-change-hook frame
))))))
2323 (defun window--resize-apply-p (frame &optional horizontal
)
2324 "Return t when a window on FRAME shall be resized vertically.
2325 Optional argument HORIZONTAL non-nil means return t when a window
2326 shall be resized horizontally."
2330 (unless (= (window-new-pixel window
)
2331 (window-size window horizontal t
))
2336 (defun window-resize (window delta
&optional horizontal ignore pixelwise
)
2337 "Resize WINDOW vertically by DELTA lines.
2338 WINDOW can be an arbitrary window and defaults to the selected
2339 one. An attempt to resize the root window of a frame will raise
2342 DELTA a positive number means WINDOW shall be enlarged by DELTA
2343 lines. DELTA negative means WINDOW shall be shrunk by -DELTA
2346 Optional argument HORIZONTAL non-nil means resize WINDOW
2347 horizontally by DELTA columns. In this case a positive DELTA
2348 means enlarge WINDOW by DELTA columns. DELTA negative means
2349 WINDOW shall be shrunk by -DELTA columns.
2351 Optional argument IGNORE non-nil means ignore restrictions
2352 imposed by fixed size windows, `window-min-height' or
2353 `window-min-width' settings. If IGNORE is a window, ignore
2354 restrictions for that window only. If IGNORE equals `safe',
2355 live windows may get as small as `window-safe-min-height' lines
2356 and `window-safe-min-width' columns. Any other non-nil value
2357 means ignore all of the above restrictions for all windows.
2359 Optional argument PIXELWISE non-nil means resize WINDOW by DELTA
2362 This function resizes other windows proportionally and never
2363 deletes any windows. If you want to move only the low (right)
2364 edge of WINDOW consider using `adjust-window-trailing-edge'
2366 (setq window
(window-normalize-window window
))
2367 (let* ((frame (window-frame window
))
2368 (minibuffer-window (minibuffer-window frame
))
2370 (setq delta
(window--size-to-pixel
2371 window delta horizontal pixelwise t
))
2373 ((eq window
(frame-root-window frame
))
2374 (error "Cannot resize the root window of a frame"))
2375 ((window-minibuffer-p window
)
2377 (error "Cannot resize minibuffer window horizontally")
2378 (window--resize-mini-window window delta
)))
2379 ((and (not horizontal
)
2380 (window-full-height-p window
)
2381 (eq (window-frame minibuffer-window
) frame
)
2382 (or (not resize-mini-windows
)
2383 (eq minibuffer-window
(active-minibuffer-window))))
2384 ;; If WINDOW is full height and either `resize-mini-windows' is
2385 ;; nil or the minibuffer window is active, resize the minibuffer
2387 (window--resize-mini-window minibuffer-window
(- delta
)))
2388 ((window--resizable-p
2389 window delta horizontal ignore nil nil nil t
)
2390 (window--resize-reset frame horizontal
)
2391 (window--resize-this-window window delta horizontal ignore t
)
2392 (if (and (not window-combination-resize
)
2393 (window-combined-p window horizontal
)
2394 (setq sibling
(or (window-right window
) (window-left window
)))
2396 sibling
(- delta
) horizontal ignore t
))
2397 ;; If window-combination-resize is nil, WINDOW is part of an
2398 ;; iso-combination, and WINDOW's neighboring right or left
2399 ;; sibling can be resized as requested, resize that sibling.
2402 (window-size (window-parent window
) horizontal t
))))
2403 (window--resize-this-window sibling
(- delta
) horizontal nil t
)
2404 (set-window-new-normal
2405 window
(+ (window-normal-size window horizontal
)
2407 (set-window-new-normal
2408 sibling
(- (window-normal-size sibling horizontal
)
2410 ;; Otherwise, resize all other windows in the same combination.
2411 (window--resize-siblings window delta horizontal ignore
))
2412 (when (window--resize-apply-p frame horizontal
)
2413 (if (window-resize-apply frame horizontal
)
2415 (window--pixel-to-total frame horizontal
)
2416 (run-window-configuration-change-hook frame
))
2417 (error "Failed to apply resizing %s" window
))))
2419 (error "Cannot resize window %s" window
)))))
2421 (defun window-resize-no-error (window delta
&optional horizontal ignore pixelwise
)
2422 "Resize WINDOW vertically if it is resizable by DELTA lines.
2423 This function is like `window-resize' but does not signal an
2424 error when WINDOW cannot be resized. For the meaning of the
2425 optional arguments see the documentation of `window-resize'.
2427 Optional argument PIXELWISE non-nil means interpret DELTA as
2429 (when (window--resizable-p
2430 window delta horizontal ignore nil nil nil pixelwise
)
2431 (window-resize window delta horizontal ignore pixelwise
)))
2433 (defun window--resize-child-windows-skip-p (window)
2434 "Return non-nil if WINDOW shall be skipped by resizing routines."
2435 (memq (window-new-normal window
) '(ignore stuck skip
)))
2437 (defun window--resize-child-windows-normal (parent horizontal window this-delta
&optional trail other-delta
)
2438 "Recursively set new normal height of child windows of window PARENT.
2439 HORIZONTAL non-nil means set the new normal width of these
2440 windows. WINDOW specifies a child window of PARENT that has been
2441 resized by THIS-DELTA lines (columns).
2443 Optional argument TRAIL either `before' or `after' means set values
2444 only for windows before or after WINDOW. Optional argument
2445 OTHER-DELTA, a number, specifies that this many lines (columns)
2446 have been obtained from (or returned to) an ancestor window of
2447 PARENT in order to resize WINDOW."
2448 (let* ((delta-normal
2449 (if (and (= (- this-delta
)
2450 (window-size window horizontal t
))
2451 (zerop other-delta
))
2452 ;; When WINDOW gets deleted and we can return its entire
2453 ;; space to its siblings, use WINDOW's normal size as the
2455 (- (window-normal-size window horizontal
))
2456 ;; In any other case calculate the normal delta from the
2457 ;; relation of THIS-DELTA to the total size of PARENT.
2458 (/ (float this-delta
)
2459 (window-size parent horizontal t
))))
2460 (sub (window-child parent
))
2462 (skip (eq trail
'after
)))
2464 ;; Set parent-normal to the sum of the normal sizes of all child
2465 ;; windows of PARENT that shall be resized, excluding only WINDOW
2466 ;; and any windows specified by the optional TRAIL argument.
2470 (setq skip
(eq trail
'before
)))
2474 (+ parent-normal
(window-normal-size sub horizontal
)))))
2475 (setq sub
(window-right sub
)))
2477 ;; Set the new normal size of all child windows of PARENT from what
2478 ;; they should have contributed for recovering THIS-DELTA lines
2480 (setq sub
(window-child parent
))
2481 (setq skip
(eq trail
'after
))
2485 (setq skip
(eq trail
'before
)))
2488 (let ((old-normal (window-normal-size sub horizontal
)))
2489 (set-window-new-normal
2490 sub
(min 1.0 ; Don't get larger than 1.
2492 (* (/ old-normal parent-normal
)
2494 ;; Don't drop below 0.
2496 (setq sub
(window-right sub
)))
2498 (when (numberp other-delta
)
2499 ;; Set the new normal size of windows from what they should have
2500 ;; contributed for recovering OTHER-DELTA lines (columns).
2501 (setq delta-normal
(/ (float (window-size parent horizontal t
))
2502 (+ (window-size parent horizontal t
)
2504 (setq sub
(window-child parent
))
2505 (setq skip
(eq trail
'after
))
2509 (setq skip
(eq trail
'before
)))
2512 (set-window-new-normal
2513 sub
(min 1.0 ; Don't get larger than 1.
2514 (max (* (window-new-normal sub
) delta-normal
)
2515 ;; Don't drop below 0.
2517 (setq sub
(window-right sub
))))
2519 ;; Set the new normal size of WINDOW to what is left by the sum of
2520 ;; the normal sizes of its siblings.
2521 (set-window-new-normal
2524 (setq sub
(window-child parent
))
2528 ((not (numberp (window-new-normal sub
)))
2529 (setq sum
(+ sum
(window-normal-size sub horizontal
))))
2531 (setq sum
(+ sum
(window-new-normal sub
)))))
2532 (setq sub
(window-right sub
)))
2533 ;; Don't get larger than 1 or smaller than 0.
2534 (min 1.0 (max (- 1.0 sum
) 0.0))))))
2536 (defun window--resize-child-windows (parent delta
&optional horizontal window ignore trail edge char-size
)
2537 "Resize child windows of window PARENT vertically by DELTA pixels.
2538 PARENT must be a vertically combined internal window.
2540 Optional argument HORIZONTAL non-nil means resize child windows
2541 of PARENT horizontally by DELTA pixels. In this case PARENT must
2542 be a horizontally combined internal window.
2544 WINDOW, if specified, must denote a child window of PARENT that
2545 is resized by DELTA pixels.
2547 Optional argument IGNORE non-nil means ignore restrictions
2548 imposed by fixed size windows, `window-min-height' or
2549 `window-min-width' settings. If IGNORE equals `safe', live
2550 windows may get as small as `window-safe-min-height' lines and
2551 `window-safe-min-width' columns. If IGNORE is a window, ignore
2552 restrictions for that window only. Any other non-nil value means
2553 ignore all of the above restrictions for all windows.
2555 Optional arguments TRAIL and EDGE, when non-nil, restrict the set
2556 of windows that shall be resized. If TRAIL equals `before',
2557 resize only windows on the left or above EDGE. If TRAIL equals
2558 `after', resize only windows on the right or below EDGE. Also,
2559 preferably only resize windows adjacent to EDGE.
2561 If the optional argument CHAR-SIZE is a positive integer, it specifies
2562 the number of pixels by which windows are incrementally resized.
2563 If CHAR-SIZE is nil, this means to use the value of
2564 `frame-char-height' or `frame-char-width' of WINDOW's frame.
2566 Return the symbol `normalized' if new normal sizes have been
2567 already set by this routine."
2568 (let* ((first (window-child parent
))
2569 (last (window-last-child parent
))
2570 (parent-total (+ (window-size parent horizontal t
)
2572 (char-size (or char-size
2573 (and window-resize-pixelwise
1)
2574 (frame-char-size window horizontal
)))
2575 sub best-window best-value best-delta
)
2577 (if (and edge
(memq trail
'(before after
))
2580 (while (and (window-right sub
)
2581 (or (and (eq trail
'before
)
2582 (not (window--resize-child-windows-skip-p
2583 (window-right sub
))))
2584 (and (eq trail
'after
)
2585 (window--resize-child-windows-skip-p sub
))))
2586 (setq sub
(window-right sub
)))
2589 (if (eq trail
'before
)
2590 (= (+ (window-pixel-left sub
) (window-pixel-width sub
))
2592 (= (window-pixel-left sub
) edge
))
2593 (if (eq trail
'before
)
2594 (= (+ (window-pixel-top sub
) (window-pixel-height sub
))
2596 (= (window-pixel-top sub
) edge
)))
2597 (window-sizable-p sub delta horizontal ignore t
))
2598 ;; Resize only windows adjacent to EDGE.
2600 (window--resize-this-window
2601 sub delta horizontal ignore t trail edge
)
2602 (if (and window
(eq (window-parent sub
) parent
))
2604 ;; Assign new normal sizes.
2605 (set-window-new-normal
2606 sub
(/ (float (window-new-pixel sub
)) parent-total
))
2607 (set-window-new-normal
2608 window
(- (window-normal-size window horizontal
)
2609 (- (window-new-normal sub
)
2610 (window-normal-size sub horizontal
)))))
2611 (window--resize-child-windows-normal
2612 parent horizontal sub
0 trail delta
))
2613 ;; Return 'normalized to notify `window--resize-siblings' that
2614 ;; normal sizes have been already set.
2616 ;; Resize all windows proportionally.
2620 ((or (window--resize-child-windows-skip-p sub
)
2621 ;; Ignore windows to skip and fixed-size child windows -
2622 ;; in the latter case make it a window to skip.
2624 (window-size-fixed-p sub horizontal
)
2625 (set-window-new-normal sub
'ignore
))))
2627 ;; When shrinking store the number of lines/cols we can get
2628 ;; from this window here together with the total/normal size
2630 (set-window-new-normal
2633 ;; We used to call this with NODOWN t, "fixed" 2011-05-11.
2634 (window-min-delta sub horizontal ignore trail t nil t
)
2635 (- (/ (float (window-size sub horizontal t
))
2637 (window-normal-size sub horizontal
)))))
2639 ;; When enlarging store the total/normal size factor only
2640 (set-window-new-normal
2642 (- (/ (float (window-size sub horizontal t
))
2644 (window-normal-size sub horizontal
)))))
2646 (setq sub
(window-left sub
)))
2650 ;; Shrink windows by delta.
2651 (setq best-window t
)
2652 (while (and best-window
(not (zerop delta
)))
2654 (setq best-window nil
)
2655 (setq best-value most-negative-fixnum
)
2657 (when (and (consp (window-new-normal sub
))
2658 (not (<= (car (window-new-normal sub
)) 0))
2659 (> (cdr (window-new-normal sub
)) best-value
))
2660 (setq best-window sub
)
2661 (setq best-value
(cdr (window-new-normal sub
))))
2663 (setq sub
(window-left sub
)))
2666 (setq best-delta
(min (car (window-new-normal best-window
))
2667 char-size
(- delta
)))
2668 (setq delta
(+ delta best-delta
))
2669 (set-window-new-pixel best-window
(- best-delta
) t
)
2670 (set-window-new-normal
2672 (if (= (car (window-new-normal best-window
)) best-delta
)
2673 'skip
; We can't shrink best-window any further.
2674 (cons (- (car (window-new-normal best-window
)) best-delta
)
2675 (- (/ (float (window-new-pixel best-window
))
2677 (window-normal-size best-window horizontal
))))))))
2679 ;; Enlarge windows by delta.
2680 (setq best-window t
)
2681 (while (and best-window
(not (zerop delta
)))
2683 (setq best-window nil
)
2684 (setq best-value most-positive-fixnum
)
2686 (when (and (numberp (window-new-normal sub
))
2687 (< (window-new-normal sub
) best-value
))
2688 (setq best-window sub
)
2689 (setq best-value
(window-new-normal sub
)))
2691 (setq sub
(window-left sub
)))
2694 (setq best-delta
(min delta char-size
))
2695 (setq delta
(- delta best-delta
))
2696 (set-window-new-pixel best-window best-delta t
)
2697 (set-window-new-normal
2699 (- (/ (float (window-new-pixel best-window
))
2701 (window-normal-size best-window horizontal
)))))))
2706 (when (or (consp (window-new-normal sub
))
2707 (numberp (window-new-normal sub
)))
2708 ;; Reset new normal size fields so `window-resize-apply'
2709 ;; won't use them to apply new sizes.
2710 (set-window-new-normal sub
))
2712 (unless (eq (window-new-normal sub
) 'ignore
)
2713 ;; Resize this window's child windows (back-engineering
2714 ;; delta from sub's old and new total sizes).
2715 (let ((delta (- (window-new-pixel sub
)
2716 (window-size sub horizontal t
))))
2717 (unless (and (zerop delta
) (not trail
))
2718 ;; For the TRAIL non-nil case we have to resize SUB
2719 ;; recursively even if it's size does not change.
2720 (window--resize-this-window
2721 sub delta horizontal ignore nil trail edge
))))
2722 (setq sub
(window-left sub
)))))))
2724 (defun window--resize-siblings (window delta
&optional horizontal ignore trail edge char-size
)
2725 "Resize other windows when WINDOW is resized vertically by DELTA pixels.
2726 Optional argument HORIZONTAL non-nil means resize other windows
2727 when WINDOW is resized horizontally by DELTA pixels. WINDOW
2728 itself is not resized by this function.
2730 Optional argument IGNORE non-nil means ignore restrictions
2731 imposed by fixed size windows, `window-min-height' or
2732 `window-min-width' settings. If IGNORE equals `safe', live
2733 windows may get as small as `window-safe-min-height' lines and
2734 `window-safe-min-width' columns. If IGNORE is a window, ignore
2735 restrictions for that window only. Any other non-nil value means
2736 ignore all of the above restrictions for all windows.
2738 Optional arguments TRAIL and EDGE, when non-nil, refine the set
2739 of windows that shall be resized. If TRAIL equals `before',
2740 resize only windows on the left or above EDGE. If TRAIL equals
2741 `after', resize only windows on the right or below EDGE. Also,
2742 preferably only resize windows adjacent to EDGE."
2743 (when (window-parent window
)
2744 (let* ((parent (window-parent window
))
2745 (sub (window-child parent
)))
2746 (if (window-combined-p sub horizontal
)
2747 ;; In an iso-combination try to extract DELTA from WINDOW's
2749 (let ((skip (eq trail
'after
))
2750 this-delta other-delta
)
2751 ;; Decide which windows shall be left alone.
2755 ;; Make sure WINDOW is left alone when
2756 ;; resizing its siblings.
2757 (set-window-new-normal sub
'ignore
)
2758 (setq skip
(eq trail
'before
)))
2760 ;; Make sure this sibling is left alone when
2761 ;; resizing its siblings.
2762 (set-window-new-normal sub
'ignore
))
2763 ((or (window--size-ignore-p sub ignore
)
2764 (not (window-size-fixed-p sub horizontal
)))
2765 ;; Set this-delta to t to signal that we found a sibling
2766 ;; of WINDOW whose size is not fixed.
2767 (setq this-delta t
)))
2769 (setq sub
(window-right sub
)))
2771 ;; Set this-delta to what we can get from WINDOW's siblings.
2772 (if (= (- delta
) (window-size window horizontal t
))
2773 ;; A deletion, presumably. We must handle this case
2774 ;; specially since `window--resizable' can't be used.
2776 ;; There's at least one resizable sibling we can
2777 ;; give WINDOW's size to.
2778 (setq this-delta delta
)
2779 ;; No resizable sibling exists.
2780 (setq this-delta
0))
2781 ;; Any other form of resizing.
2784 window delta horizontal ignore trail t nil t
)))
2786 ;; Set other-delta to what we still have to get from
2787 ;; ancestor windows of parent.
2788 (setq other-delta
(- delta this-delta
))
2789 (unless (zerop other-delta
)
2790 ;; Unless we got everything from WINDOW's siblings, PARENT
2791 ;; must be resized by other-delta lines or columns.
2792 (set-window-new-pixel parent other-delta
'add
))
2794 (if (zerop this-delta
)
2795 ;; We haven't got anything from WINDOW's siblings but we
2796 ;; must update the normal sizes to respect other-delta.
2797 (window--resize-child-windows-normal
2798 parent horizontal window this-delta trail other-delta
)
2799 ;; We did get something from WINDOW's siblings which means
2800 ;; we have to resize their child windows.
2801 (unless (eq (window--resize-child-windows
2802 parent
(- this-delta
) horizontal
2803 window ignore trail edge char-size
)
2804 ;; If `window--resize-child-windows' returns
2805 ;; 'normalized, this means it has set the
2806 ;; normal sizes already.
2808 ;; Set the normal sizes.
2809 (window--resize-child-windows-normal
2810 parent horizontal window this-delta trail other-delta
))
2811 ;; Set DELTA to what we still have to get from ancestor
2813 (setq delta other-delta
)))
2815 ;; In an ortho-combination all siblings of WINDOW must be
2816 ;; resized by DELTA.
2817 (set-window-new-pixel parent delta
'add
)
2819 (unless (eq sub window
)
2820 (window--resize-this-window
2821 sub delta horizontal ignore t
))
2822 (setq sub
(window-right sub
))))
2824 (unless (zerop delta
)
2826 (window--resize-siblings
2827 parent delta horizontal ignore trail edge char-size
)))))
2829 (defun window--resize-this-window (window delta
&optional horizontal ignore add trail edge char-size
)
2830 "Resize WINDOW vertically by DELTA pixels.
2831 Optional argument HORIZONTAL non-nil means resize WINDOW
2832 horizontally by DELTA pixels.
2834 Optional argument IGNORE non-nil means ignore restrictions
2835 imposed by fixed size windows, `window-min-height' or
2836 `window-min-width' settings. If IGNORE equals `safe', live
2837 windows may get as small as `window-safe-min-height' lines and
2838 `window-safe-min-width' columns. If IGNORE is a window, ignore
2839 restrictions for that window only. Any other non-nil value
2840 means ignore all of the above restrictions for all windows.
2842 Optional argument ADD non-nil means add DELTA to the new total
2845 Optional arguments TRAIL and EDGE, when non-nil, refine the set
2846 of windows that shall be resized. If TRAIL equals `before',
2847 resize only windows on the left or above EDGE. If TRAIL equals
2848 `after', resize only windows on the right or below EDGE. Also,
2849 preferably only resize windows adjacent to EDGE.
2851 If the optional argument CHAR-SIZE is a positive integer, it specifies
2852 the number of pixels by which windows are incrementally resized.
2853 If CHAR-SIZE is nil, this means to use the value of
2854 `frame-char-height' or `frame-char-width' of WINDOW's frame.
2856 This function recursively resizes WINDOW's child windows to fit the
2857 new size. Make sure that WINDOW is `window--resizable' before
2858 calling this function. Note that this function does not resize
2859 siblings of WINDOW or WINDOW's parent window. You have to
2860 eventually call `window-resize-apply' in order to make resizing
2861 actually take effect."
2863 ;; Add DELTA to the new total size of WINDOW.
2864 (set-window-new-pixel window delta t
))
2866 (let ((sub (window-child window
)))
2869 ((window-combined-p sub horizontal
)
2870 ;; In an iso-combination resize child windows according to their
2872 (window--resize-child-windows
2873 window delta horizontal nil ignore trail edge char-size
))
2874 ;; In an ortho-combination resize each child window by DELTA.
2877 (window--resize-this-window
2878 sub delta horizontal ignore t trail edge char-size
)
2879 (setq sub
(window-right sub
)))))))
2881 (defun window--resize-root-window (window delta horizontal ignore pixelwise
)
2882 "Resize root window WINDOW vertically by DELTA lines.
2883 HORIZONTAL non-nil means resize root window WINDOW horizontally
2886 IGNORE non-nil means ignore any restrictions imposed by fixed
2887 size windows, `window-min-height' or `window-min-width' settings.
2889 This function is only called by the frame resizing routines. It
2890 resizes windows proportionally and never deletes any windows."
2891 (when (and (windowp window
) (numberp delta
))
2895 (window--size-to-pixel window delta horizontal
))))
2896 (when (window-sizable-p window pixel-delta horizontal ignore t
)
2897 (window--resize-reset (window-frame window
) horizontal
)
2898 (window--resize-this-window
2899 window pixel-delta horizontal ignore t
)))))
2901 (defun window--resize-root-window-vertically (window delta pixelwise
)
2902 "Resize root window WINDOW vertically by DELTA lines.
2903 If DELTA is less than zero and we can't shrink WINDOW by DELTA
2904 lines, shrink it as much as possible. If DELTA is greater than
2905 zero, this function can resize fixed-size windows in order to
2906 recover the necessary lines. Return the number of lines that
2909 Third argument PIXELWISE non-nil means to interpret DELTA as
2910 pixels and return the number of pixels that were recovered.
2912 This function is called by the minibuffer window resizing
2914 (let* ((frame (window-frame window
))
2920 (* (frame-char-height frame
) delta
))
2924 ((zerop pixel-delta
))
2926 (setq pixel-delta
(window-sizable window pixel-delta nil nil pixelwise
))
2927 (window--resize-reset frame
)
2928 ;; When shrinking the root window, emulate an edge drag in order
2929 ;; to not resize other windows if we can avoid it (Bug#12419).
2930 (window--resize-this-window
2931 window pixel-delta nil ignore t
'before
2932 (+ (window-pixel-top window
) (window-pixel-height window
)))
2933 ;; Don't record new normal sizes to make sure that shrinking back
2934 ;; proportionally works as intended.
2936 (lambda (window) (set-window-new-normal window
'ignore
)) frame t
))
2938 (window--resize-reset frame
)
2939 (unless (window-sizable window pixel-delta nil nil pixelwise
)
2941 ;; When growing the root window, resize proportionally. This
2942 ;; should give windows back their original sizes (hopefully).
2943 (window--resize-this-window
2944 window pixel-delta nil ignore t
)))
2945 ;; Return the possibly adjusted DELTA.
2948 (/ pixel-delta
(frame-char-height frame
)))))
2950 (defun adjust-window-trailing-edge (window delta
&optional horizontal pixelwise
)
2951 "Move WINDOW's bottom edge by DELTA lines.
2952 Optional argument HORIZONTAL non-nil means move WINDOW's right
2953 edge by DELTA columns. WINDOW must be a valid window and
2954 defaults to the selected one.
2956 Optional argument PIXELWISE non-nil means interpret DELTA as
2959 If DELTA is greater than zero, move the edge downwards or to the
2960 right. If DELTA is less than zero, move the edge upwards or to
2961 the left. If the edge can't be moved by DELTA lines or columns,
2962 move it as far as possible in the desired direction."
2963 (setq window
(window-normalize-window window
))
2964 (let* ((frame (window-frame window
))
2965 (minibuffer-window (minibuffer-window frame
))
2967 left this-delta min-delta max-delta
)
2971 (setq delta
(* delta
(frame-char-size window horizontal
))))
2973 ;; Find the edge we want to move.
2974 (while (and (or (not (window-combined-p right horizontal
))
2975 (not (window-right right
)))
2976 (setq right
(window-parent right
))))
2978 ((and (not right
) (not horizontal
)
2979 ;; Resize the minibuffer window if it's on the same frame as
2980 ;; and immediately below WINDOW and it's either active or
2981 ;; `resize-mini-windows' is nil.
2982 (eq (window-frame minibuffer-window
) frame
)
2983 (= (nth 1 (window-pixel-edges minibuffer-window
))
2984 (nth 3 (window-pixel-edges window
)))
2985 (or (not resize-mini-windows
)
2986 (eq minibuffer-window
(active-minibuffer-window))))
2987 (window--resize-mini-window minibuffer-window
(- delta
)))
2988 ((or (not (setq left right
)) (not (setq right
(window-right right
))))
2990 (error "No window on the right of this one")
2991 (error "No window below this one")))
2993 ;; Set LEFT to the first resizable window on the left. This step is
2994 ;; needed to handle fixed-size windows.
2995 (while (and left
(window-size-fixed-p left horizontal
))
2997 (or (window-left left
)
2999 (while (and (setq left
(window-parent left
))
3000 (not (window-combined-p left horizontal
))))
3001 (window-left left
)))))
3004 (error "No resizable window on the left of this one")
3005 (error "No resizable window above this one")))
3007 ;; Set RIGHT to the first resizable window on the right. This step
3008 ;; is needed to handle fixed-size windows.
3009 (while (and right
(window-size-fixed-p right horizontal
))
3011 (or (window-right right
)
3013 (while (and (setq right
(window-parent right
))
3014 (not (window-combined-p right horizontal
))))
3015 (window-right right
)))))
3018 (error "No resizable window on the right of this one")
3019 (error "No resizable window below this one")))
3021 ;; LEFT and RIGHT (which might be both internal windows) are now the
3022 ;; two windows we want to resize.
3026 (window--max-delta-1
3027 left
0 horizontal nil
'after nil pixelwise
))
3029 (window--min-delta-1
3030 right
(- delta
) horizontal nil
'before nil pixelwise
))
3031 (when (or (< max-delta delta
) (> min-delta
(- delta
)))
3032 ;; We can't get the whole DELTA - move as far as possible.
3033 (setq delta
(min max-delta
(- min-delta
))))
3034 (unless (zerop delta
)
3036 (window--resize-reset frame horizontal
)
3037 ;; Try to enlarge LEFT first.
3038 (setq this-delta
(window--resizable
3039 left delta horizontal nil
'after nil nil pixelwise
))
3040 (unless (zerop this-delta
)
3041 (window--resize-this-window
3042 left this-delta horizontal nil t
'before
3044 (+ (window-pixel-left left
) (window-pixel-width left
))
3045 (+ (window-pixel-top left
) (window-pixel-height left
)))))
3046 ;; Shrink windows on right of LEFT.
3047 (window--resize-siblings
3048 left delta horizontal nil
'after
3050 (window-pixel-left right
)
3051 (window-pixel-top right
)))))
3054 (window--max-delta-1
3055 right
0 horizontal nil
'before nil pixelwise
))
3057 (window--min-delta-1
3058 left delta horizontal nil
'after nil pixelwise
))
3059 (when (or (< max-delta
(- delta
)) (> min-delta delta
))
3060 ;; We can't get the whole DELTA - move as far as possible.
3061 (setq delta
(max (- max-delta
) min-delta
)))
3062 (unless (zerop delta
)
3064 (window--resize-reset frame horizontal
)
3065 ;; Try to enlarge RIGHT.
3068 right
(- delta
) horizontal nil
'before nil nil pixelwise
))
3069 (unless (zerop this-delta
)
3070 (window--resize-this-window
3071 right this-delta horizontal nil t
'after
3073 (window-pixel-left right
)
3074 (window-pixel-top right
))))
3075 ;; Shrink windows on left of RIGHT.
3076 (window--resize-siblings
3077 right
(- delta
) horizontal nil
'before
3079 (+ (window-pixel-left left
) (window-pixel-width left
))
3080 (+ (window-pixel-top left
) (window-pixel-height left
)))))))
3081 (unless (zerop delta
)
3082 ;; Don't report an error in the standard case.
3083 (when (window--resize-apply-p frame horizontal
)
3084 (if (window-resize-apply frame horizontal
)
3086 (window--pixel-to-total frame horizontal
)
3087 (run-window-configuration-change-hook frame
))
3088 ;; But do report an error if applying the changes fails.
3089 (error "Failed adjusting window %s" window
))))))))
3091 (defun enlarge-window (delta &optional horizontal
)
3092 "Make the selected window DELTA lines taller.
3093 Interactively, if no argument is given, make the selected window
3094 one line taller. If optional argument HORIZONTAL is non-nil,
3095 make selected window wider by DELTA columns. If DELTA is
3096 negative, shrink selected window by -DELTA lines or columns."
3098 (let ((minibuffer-window (minibuffer-window)))
3101 ((window-size-fixed-p nil horizontal
)
3102 (error "Selected window has fixed size"))
3103 ((window-minibuffer-p)
3105 (error "Cannot resize minibuffer window horizontally")
3106 (window--resize-mini-window (selected-window) delta
)))
3107 ((and (not horizontal
)
3108 (window-full-height-p)
3109 (eq (window-frame minibuffer-window
) (selected-frame))
3110 (not resize-mini-windows
))
3111 ;; If the selected window is full height and `resize-mini-windows'
3112 ;; is nil, resize the minibuffer window.
3113 (window--resize-mini-window minibuffer-window
(- delta
)))
3114 ((window--resizable-p nil delta horizontal
)
3115 (window-resize nil delta horizontal
))
3119 (window-max-delta nil horizontal
)
3120 (- (window-min-delta nil horizontal
)))
3123 (defun shrink-window (delta &optional horizontal
)
3124 "Make the selected window DELTA lines smaller.
3125 Interactively, if no argument is given, make the selected window
3126 one line smaller. If optional argument HORIZONTAL is non-nil,
3127 make selected window narrower by DELTA columns. If DELTA is
3128 negative, enlarge selected window by -DELTA lines or columns.
3129 Also see the `window-min-height' variable."
3131 (let ((minibuffer-window (minibuffer-window)))
3134 ((window-size-fixed-p nil horizontal
)
3135 (error "Selected window has fixed size"))
3136 ((window-minibuffer-p)
3138 (error "Cannot resize minibuffer window horizontally")
3139 (window--resize-mini-window (selected-window) (- delta
))))
3140 ((and (not horizontal
)
3141 (window-full-height-p)
3142 (eq (window-frame minibuffer-window
) (selected-frame))
3143 (not resize-mini-windows
))
3144 ;; If the selected window is full height and `resize-mini-windows'
3145 ;; is nil, resize the minibuffer window.
3146 (window--resize-mini-window minibuffer-window delta
))
3147 ((window--resizable-p nil
(- delta
) horizontal
)
3148 (window-resize nil
(- delta
) horizontal
))
3152 (- (window-min-delta nil horizontal
))
3153 (window-max-delta nil horizontal
))
3156 (defun maximize-window (&optional window
)
3158 Make WINDOW as large as possible without deleting any windows.
3159 WINDOW must be a valid window and defaults to the selected one.
3161 If the option `window-resize-pixelwise' is non-nil maximize
3164 (setq window
(window-normalize-window window
))
3166 window
(window-max-delta window nil nil nil nil nil window-resize-pixelwise
)
3167 nil nil window-resize-pixelwise
)
3169 window
(window-max-delta window t nil nil nil nil window-resize-pixelwise
)
3170 t nil window-resize-pixelwise
))
3172 (defun minimize-window (&optional window
)
3174 Make WINDOW as small as possible without deleting any windows.
3175 WINDOW must be a valid window and defaults to the selected one.
3177 If the option `window-resize-pixelwise' is non-nil minimize
3180 (setq window
(window-normalize-window window
))
3183 (- (window-min-delta window nil nil nil nil nil window-resize-pixelwise
))
3184 nil nil window-resize-pixelwise
)
3187 (- (window-min-delta window t nil nil nil nil window-resize-pixelwise
))
3188 t nil window-resize-pixelwise
))
3190 (defun frame-root-window-p (window)
3191 "Return non-nil if WINDOW is the root window of its frame."
3192 (eq window
(frame-root-window window
)))
3194 (defun window--subtree (window &optional next
)
3195 "Return window subtree rooted at WINDOW.
3196 Optional argument NEXT non-nil means include WINDOW's right
3197 siblings in the return value.
3199 See the documentation of `window-tree' for a description of the
3206 ((window-top-child window
)
3207 (cons t
(cons (window-edges window
)
3208 (window--subtree (window-top-child window
) t
))))
3209 ((window-left-child window
)
3210 (cons nil
(cons (window-edges window
)
3211 (window--subtree (window-left-child window
) t
))))
3214 (setq window
(when next
(window-next-sibling window
))))
3217 (defun window-tree (&optional frame
)
3218 "Return the window tree of frame FRAME.
3219 FRAME must be a live frame and defaults to the selected frame.
3220 The return value is a list of the form (ROOT MINI), where ROOT
3221 represents the window tree of the frame's root window, and MINI
3222 is the frame's minibuffer window.
3224 If the root window is not split, ROOT is the root window itself.
3225 Otherwise, ROOT is a list (DIR EDGES W1 W2 ...) where DIR is nil
3226 for a horizontal split, and t for a vertical split. EDGES gives
3227 the combined size and position of the child windows in the split,
3228 and the rest of the elements are the child windows in the split.
3229 Each of the child windows may again be a window or a list
3230 representing a window split, and so on. EDGES is a list (LEFT
3231 TOP RIGHT BOTTOM) as returned by `window-edges'."
3232 (setq frame
(window-normalize-frame frame
))
3233 (window--subtree (frame-root-window frame
) t
))
3235 (defun other-window (count &optional all-frames
)
3236 "Select another window in cyclic ordering of windows.
3237 COUNT specifies the number of windows to skip, starting with the
3238 selected window, before making the selection. If COUNT is
3239 positive, skip COUNT windows forwards. If COUNT is negative,
3240 skip -COUNT windows backwards. COUNT zero means do not skip any
3241 window, so select the selected window. In an interactive call,
3242 COUNT is the numeric prefix argument. Return nil.
3244 If the `other-window' parameter of the selected window is a
3245 function and `ignore-window-parameters' is nil, call that
3246 function with the arguments COUNT and ALL-FRAMES.
3248 This function does not select a window whose `no-other-window'
3249 window parameter is non-nil.
3251 This function uses `next-window' for finding the window to
3252 select. The argument ALL-FRAMES has the same meaning as in
3253 `next-window', but the MINIBUF argument of `next-window' is
3254 always effectively nil."
3256 (let* ((window (selected-window))
3257 (function (and (not ignore-window-parameters
)
3258 (window-parameter window
'other-window
)))
3259 old-window old-count
)
3260 (if (functionp function
)
3261 (funcall function count all-frames
)
3262 ;; `next-window' and `previous-window' may return a window we are
3263 ;; not allowed to select. Hence we need an exit strategy in case
3264 ;; all windows are non-selectable.
3267 (setq window
(next-window window nil all-frames
))
3269 ((eq window old-window
)
3270 (when (= count old-count
)
3271 ;; Keep out of infinite loops. When COUNT has not changed
3272 ;; since we last looked at `window' we're probably in one.
3274 ((window-parameter window
'no-other-window
)
3276 ;; The first non-selectable window `next-window' got us:
3277 ;; Remember it and the current value of COUNT.
3278 (setq old-window window
)
3279 (setq old-count count
)))
3281 (setq count
(1- count
)))))
3283 (setq window
(previous-window window nil all-frames
))
3285 ((eq window old-window
)
3286 (when (= count old-count
)
3287 ;; Keep out of infinite loops. When COUNT has not changed
3288 ;; since we last looked at `window' we're probably in one.
3290 ((window-parameter window
'no-other-window
)
3292 ;; The first non-selectable window `previous-window' got
3293 ;; us: Remember it and the current value of COUNT.
3294 (setq old-window window
)
3295 (setq old-count count
)))
3297 (setq count
(1+ count
)))))
3299 (select-window window
)
3300 ;; Always return nil.
3303 ;; This should probably return non-nil when the selected window is part
3304 ;; of an atomic window whose root is the frame's root window.
3305 (defun one-window-p (&optional nomini all-frames
)
3306 "Return non-nil if the selected window is the only window.
3307 Optional arg NOMINI non-nil means don't count the minibuffer
3308 even if it is active. Otherwise, the minibuffer is counted
3311 Optional argument ALL-FRAMES specifies the set of frames to
3312 consider, see also `next-window'. ALL-FRAMES nil or omitted
3313 means consider windows on the selected frame only, plus the
3314 minibuffer window if specified by the NOMINI argument. If the
3315 minibuffer counts, consider all windows on all frames that share
3316 that minibuffer too. The remaining non-nil values of ALL-FRAMES
3317 with a special meaning are:
3319 - t means consider all windows on all existing frames.
3321 - `visible' means consider all windows on all visible frames on
3322 the current terminal.
3324 - 0 (the number zero) means consider all windows on all visible
3325 and iconified frames on the current terminal.
3327 - A frame means consider all windows on that frame only.
3329 Anything else means consider all windows on the selected frame
3331 (let ((base-window (selected-window)))
3332 (if (and nomini
(eq base-window
(minibuffer-window)))
3333 (setq base-window
(next-window base-window
)))
3335 (next-window base-window
(if nomini
'arg
) all-frames
))))
3337 ;;; Deleting windows.
3338 (defun window-deletable-p (&optional window
)
3339 "Return t if WINDOW can be safely deleted from its frame.
3340 WINDOW must be a valid window and defaults to the selected one.
3341 Return 'frame if deleting WINDOW should also delete its frame."
3342 (setq window
(window-normalize-window window
))
3344 (unless (or ignore-window-parameters
3345 (eq (window-parameter window
'delete-window
) t
))
3346 ;; Handle atomicity.
3347 (when (window-parameter window
'window-atom
)
3348 (setq window
(window-atom-root window
))))
3350 (let ((frame (window-frame window
)))
3352 ((frame-root-window-p window
)
3353 ;; WINDOW's frame can be deleted only if there are other frames
3354 ;; on the same terminal, and it does not contain the active
3356 (unless (or (eq frame
(next-frame frame
0))
3357 ;; We can delete our frame only if no other frame
3358 ;; currently uses our minibuffer window.
3360 (dolist (other (frame-list))
3361 (when (and (not (eq other frame
))
3362 (eq (window-frame (minibuffer-window other
))
3365 (let ((minibuf (active-minibuffer-window)))
3366 (and minibuf
(eq frame
(window-frame minibuf
)))))
3368 ((or ignore-window-parameters
3369 (not (eq window
(window--major-non-side-window frame
))))
3370 ;; WINDOW can be deleted unless it is the major non-side window of
3374 (defun window--in-subtree-p (window root
)
3375 "Return t if WINDOW is either ROOT or a member of ROOT's subtree."
3376 (or (eq window root
)
3377 (let ((parent (window-parent window
)))
3380 (if (eq parent root
)
3382 (setq parent
(window-parent parent
))))))))
3384 (defun delete-window (&optional window
)
3386 WINDOW must be a valid window and defaults to the selected one.
3389 If the variable `ignore-window-parameters' is non-nil or the
3390 `delete-window' parameter of WINDOW equals t, do not process any
3391 parameters of WINDOW. Otherwise, if the `delete-window'
3392 parameter of WINDOW specifies a function, call that function with
3393 WINDOW as its sole argument and return the value returned by that
3396 Otherwise, if WINDOW is part of an atomic window, call
3397 `delete-window' with the root of the atomic window as its
3398 argument. Signal an error if WINDOW is either the only window on
3399 its frame, the last non-side window, or part of an atomic window
3400 that is its frame's root window."
3402 (setq window
(window-normalize-window window
))
3403 (let* ((frame (window-frame window
))
3404 (function (window-parameter window
'delete-window
))
3405 (parent (window-parent window
))
3407 (window--check frame
)
3409 ;; Handle window parameters.
3411 ;; Ignore window parameters if `ignore-window-parameters' tells
3412 ;; us so or `delete-window' equals t.
3413 ((or ignore-window-parameters
(eq function t
)))
3414 ((functionp function
)
3415 ;; The `delete-window' parameter specifies the function to call.
3416 ;; If that function is `ignore' nothing is done. It's up to the
3417 ;; function called here to avoid infinite recursion.
3418 (throw 'done
(funcall function window
)))
3419 ((and (window-parameter window
'window-atom
)
3420 (setq atom-root
(window-atom-root window
))
3421 (not (eq atom-root window
)))
3422 (if (eq atom-root
(frame-root-window frame
))
3423 (error "Root of atomic window is root window of its frame")
3424 (throw 'done
(delete-window atom-root
))))
3426 (error "Attempt to delete minibuffer or sole ordinary window"))
3427 ((eq window
(window--major-non-side-window frame
))
3428 (error "Attempt to delete last non-side window")))
3430 (let* ((horizontal (window-left-child parent
))
3431 (size (window-size window horizontal t
))
3433 (window--in-subtree-p (frame-selected-window frame
) window
))
3434 ;; Emacs 23 preferably gives WINDOW's space to its left
3436 (sibling (or (window-left window
) (window-right window
))))
3437 (window--resize-reset frame horizontal
)
3439 ((and (not window-combination-resize
)
3440 sibling
(window-sizable-p sibling size horizontal nil t
))
3441 ;; Resize WINDOW's sibling.
3442 (window--resize-this-window sibling size horizontal nil t
)
3443 (set-window-new-normal
3444 sibling
(+ (window-normal-size sibling horizontal
)
3445 (window-normal-size window horizontal
))))
3446 ((window--resizable-p window
(- size
) horizontal nil nil nil t t
)
3447 ;; Can do without resizing fixed-size windows.
3448 (window--resize-siblings window
(- size
) horizontal
))
3450 ;; Can't do without resizing fixed-size windows.
3451 (window--resize-siblings window
(- size
) horizontal t
)))
3452 ;; Actually delete WINDOW.
3453 (delete-window-internal window
)
3454 (window--pixel-to-total frame horizontal
)
3455 (when (and frame-selected
3457 (frame-selected-window frame
) 'no-other-window
))
3458 ;; `delete-window-internal' has selected a window that should
3459 ;; not be selected, fix this here.
3460 (other-window -
1 frame
))
3461 (run-window-configuration-change-hook frame
)
3462 (window--check frame
)
3463 ;; Always return nil.
3466 (defun delete-other-windows (&optional window
)
3467 "Make WINDOW fill its frame.
3468 WINDOW must be a valid window and defaults to the selected one.
3471 If the variable `ignore-window-parameters' is non-nil or the
3472 `delete-other-windows' parameter of WINDOW equals t, do not
3473 process any parameters of WINDOW. Otherwise, if the
3474 `delete-other-windows' parameter of WINDOW specifies a function,
3475 call that function with WINDOW as its sole argument and return
3476 the value returned by that function.
3478 Otherwise, if WINDOW is part of an atomic window, call this
3479 function with the root of the atomic window as its argument. If
3480 WINDOW is a non-side window, make WINDOW the only non-side window
3481 on the frame. Side windows are not deleted. If WINDOW is a side
3482 window signal an error."
3484 (setq window
(window-normalize-window window
))
3485 (let* ((frame (window-frame window
))
3486 (function (window-parameter window
'delete-other-windows
))
3487 (window-side (window-parameter window
'window-side
))
3488 atom-root side-main
)
3489 (window--check frame
)
3492 ;; Ignore window parameters if `ignore-window-parameters' is t or
3493 ;; `delete-other-windows' is t.
3494 ((or ignore-window-parameters
(eq function t
)))
3495 ((functionp function
)
3496 ;; The `delete-other-windows' parameter specifies the function
3497 ;; to call. If the function is `ignore' no windows are deleted.
3498 ;; It's up to the function called to avoid infinite recursion.
3499 (throw 'done
(funcall function window
)))
3500 ((and (window-parameter window
'window-atom
)
3501 (setq atom-root
(window-atom-root window
))
3502 (not (eq atom-root window
)))
3503 (if (eq atom-root
(frame-root-window frame
))
3504 (error "Root of atomic window is root window of its frame")
3505 (throw 'done
(delete-other-windows atom-root
))))
3506 ((memq window-side window-sides
)
3507 (error "Cannot make side window the only window"))
3508 ((and (window-minibuffer-p window
)
3509 (not (eq window
(frame-root-window window
))))
3510 (error "Can't expand minibuffer to full frame")))
3512 ;; If WINDOW is the major non-side window, do nothing.
3513 (if (window-with-parameter 'window-side
)
3514 (setq side-main
(window--major-non-side-window frame
))
3515 (setq side-main
(frame-root-window frame
)))
3516 (unless (eq window side-main
)
3517 (delete-other-windows-internal window side-main
)
3518 (run-window-configuration-change-hook frame
)
3519 (window--check frame
))
3520 ;; Always return nil.
3523 (defun delete-other-windows-vertically (&optional window
)
3524 "Delete the windows in the same column with WINDOW, but not WINDOW itself.
3525 This may be a useful alternative binding for \\[delete-other-windows]
3526 if you often split windows horizontally."
3528 (let* ((window (or window
(selected-window)))
3529 (edges (window-edges window
))
3531 (while (not (eq (setq w
(next-window w
1)) window
))
3532 (let ((e (window-edges w
)))
3533 (when (and (= (car e
) (car edges
))
3534 (= (nth 2 e
) (nth 2 edges
)))
3536 (mapc 'delete-window delenda
)))
3538 ;;; Windows and buffers.
3540 ;; `prev-buffers' and `next-buffers' are two reserved window slots used
3541 ;; for (1) determining which buffer to show in the window when its
3542 ;; buffer shall be buried or killed and (2) which buffer to show for
3543 ;; `switch-to-prev-buffer' and `switch-to-next-buffer'.
3545 ;; `prev-buffers' consists of <buffer, window-start, window-point>
3546 ;; triples. The entries on this list are ordered by the time their
3547 ;; buffer has been removed from the window, the most recently removed
3548 ;; buffer's entry being first. The window-start and window-point
3549 ;; components are `window-start' and `window-point' at the time the
3550 ;; buffer was removed from the window which implies that the entry must
3551 ;; be added when `set-window-buffer' removes the buffer from the window.
3553 ;; `next-buffers' is the list of buffers that have been replaced
3554 ;; recently by `switch-to-prev-buffer'. These buffers are the least
3555 ;; preferred candidates of `switch-to-prev-buffer' and the preferred
3556 ;; candidates of `switch-to-next-buffer' to switch to. This list is
3557 ;; reset to nil by any action changing the window's buffer with the
3558 ;; exception of `switch-to-prev-buffer' and `switch-to-next-buffer'.
3559 ;; `switch-to-prev-buffer' pushes the buffer it just replaced on it,
3560 ;; `switch-to-next-buffer' pops the last pushed buffer from it.
3562 ;; Both `prev-buffers' and `next-buffers' may reference killed buffers
3563 ;; if such a buffer was killed while the window was hidden within a
3564 ;; window configuration. Such killed buffers get removed whenever
3565 ;; `switch-to-prev-buffer' or `switch-to-next-buffer' encounter them.
3567 ;; The following function is called by `set-window-buffer' _before_ it
3568 ;; replaces the buffer of the argument window with the new buffer.
3569 (defun record-window-buffer (&optional window
)
3570 "Record WINDOW's buffer.
3571 WINDOW must be a live window and defaults to the selected one."
3572 (let* ((window (window-normalize-window window t
))
3573 (buffer (window-buffer window
))
3574 (entry (assq buffer
(window-prev-buffers window
))))
3575 ;; Reset WINDOW's next buffers. If needed, they are resurrected by
3576 ;; `switch-to-prev-buffer' and `switch-to-next-buffer'.
3577 (set-window-next-buffers window nil
)
3580 ;; Remove all entries for BUFFER from WINDOW's previous buffers.
3581 (set-window-prev-buffers
3582 window
(assq-delete-all buffer
(window-prev-buffers window
))))
3584 ;; Don't record insignificant buffers.
3585 (unless (eq (aref (buffer-name buffer
) 0) ?\s
)
3586 ;; Add an entry for buffer to WINDOW's previous buffers.
3587 (with-current-buffer buffer
3588 (let ((start (window-start window
))
3589 (point (window-point window
)))
3593 ;; We have an entry, update marker positions.
3594 (list (set-marker (nth 1 entry
) start
)
3595 (set-marker (nth 2 entry
) point
))
3596 ;; Make new markers.
3597 (list (copy-marker start
)
3599 ;; Preserve window-point-insertion-type
3601 point window-point-insertion-type
)))))
3602 (set-window-prev-buffers
3603 window
(cons entry
(window-prev-buffers window
)))))
3605 (run-hooks 'buffer-list-update-hook
))))
3607 (defun unrecord-window-buffer (&optional window buffer
)
3608 "Unrecord BUFFER in WINDOW.
3609 WINDOW must be a live window and defaults to the selected one.
3610 BUFFER must be a live buffer and defaults to the buffer of
3612 (let* ((window (window-normalize-window window t
))
3613 (buffer (or buffer
(window-buffer window
))))
3614 (set-window-prev-buffers
3615 window
(assq-delete-all buffer
(window-prev-buffers window
)))
3616 (set-window-next-buffers
3617 window
(delq buffer
(window-next-buffers window
)))))
3619 (defun set-window-buffer-start-and-point (window buffer
&optional start point
)
3620 "Set WINDOW's buffer to BUFFER.
3621 WINDOW must be a live window and defaults to the selected one.
3622 Optional argument START non-nil means set WINDOW's start position
3623 to START. Optional argument POINT non-nil means set WINDOW's
3624 point to POINT. If WINDOW is selected this also sets BUFFER's
3625 `point' to POINT. If WINDOW is selected and the buffer it showed
3626 before was current this also makes BUFFER the current buffer."
3627 (setq window
(window-normalize-window window t
))
3628 (let ((selected (eq window
(selected-window)))
3629 (current (eq (window-buffer window
) (current-buffer))))
3630 (set-window-buffer window buffer
)
3631 (when (and selected current
)
3632 (set-buffer buffer
))
3634 ;; Don't force window-start here (even if POINT is nil).
3635 (set-window-start window start t
))
3637 (set-window-point window point
))))
3639 (defcustom switch-to-visible-buffer t
3640 "If non-nil, allow switching to an already visible buffer.
3641 If this variable is non-nil, `switch-to-prev-buffer' and
3642 `switch-to-next-buffer' may switch to an already visible buffer
3643 provided the buffer was shown before in the window specified as
3644 argument to those functions. If this variable is nil,
3645 `switch-to-prev-buffer' and `switch-to-next-buffer' always try to
3646 avoid switching to a buffer that is already visible in another
3647 window on the same frame."
3652 (defun switch-to-prev-buffer (&optional window bury-or-kill
)
3653 "In WINDOW switch to previous buffer.
3654 WINDOW must be a live window and defaults to the selected one.
3655 Return the buffer switched to, nil if no suitable buffer could be
3658 Optional argument BURY-OR-KILL non-nil means the buffer currently
3659 shown in WINDOW is about to be buried or killed and consequently
3660 shall not be switched to in future invocations of this command.
3662 As a special case, if BURY-OR-KILL equals `append', this means to
3663 move the buffer to the end of WINDOW's previous buffers list so a
3664 future invocation of `switch-to-prev-buffer' less likely switches
3667 (let* ((window (window-normalize-window window t
))
3668 (frame (window-frame window
))
3669 (old-buffer (window-buffer window
))
3670 ;; Save this since it's destroyed by `set-window-buffer'.
3671 (next-buffers (window-next-buffers window
))
3672 (pred (frame-parameter frame
'buffer-predicate
))
3673 entry new-buffer killed-buffers visible
)
3674 (when (window-minibuffer-p window
)
3675 ;; Don't switch in minibuffer window.
3676 (unless (setq window
(minibuffer-selected-window))
3677 (error "Window %s is a minibuffer window" window
)))
3679 (when (window-dedicated-p window
)
3680 ;; Don't switch in dedicated window.
3681 (error "Window %s is dedicated to buffer %s" window old-buffer
))
3684 ;; Scan WINDOW's previous buffers first, skipping entries of next
3686 (dolist (entry (window-prev-buffers window
))
3687 (when (and (setq new-buffer
(car entry
))
3688 (or (buffer-live-p new-buffer
)
3689 (not (setq killed-buffers
3690 (cons new-buffer killed-buffers
))))
3691 (not (eq new-buffer old-buffer
))
3692 (or (null pred
) (funcall pred new-buffer
))
3693 ;; When BURY-OR-KILL is nil, avoid switching to a
3694 ;; buffer in WINDOW's next buffers list.
3695 (or bury-or-kill
(not (memq new-buffer next-buffers
))))
3696 (if (and (not switch-to-visible-buffer
)
3697 (get-buffer-window new-buffer frame
))
3698 ;; Try to avoid showing a buffer visible in some other
3700 (setq visible new-buffer
)
3701 (set-window-buffer-start-and-point
3702 window new-buffer
(nth 1 entry
) (nth 2 entry
))
3704 ;; Scan reverted buffer list of WINDOW's frame next, skipping
3705 ;; entries of next buffers. Note that when we bury or kill a
3706 ;; buffer we don't reverse the global buffer list to avoid showing
3707 ;; a buried buffer instead. Otherwise, we must reverse the global
3708 ;; buffer list in order to make sure that switching to the
3709 ;; previous/next buffer traverse it in opposite directions.
3710 (dolist (buffer (if bury-or-kill
3712 (nreverse (buffer-list frame
))))
3713 (when (and (buffer-live-p buffer
)
3714 (not (eq buffer old-buffer
))
3715 (or (null pred
) (funcall pred buffer
))
3716 (not (eq (aref (buffer-name buffer
) 0) ?\s
))
3717 (or bury-or-kill
(not (memq buffer next-buffers
))))
3718 (if (get-buffer-window buffer frame
)
3719 ;; Try to avoid showing a buffer visible in some other window.
3721 (setq visible buffer
))
3722 (setq new-buffer buffer
)
3723 (set-window-buffer-start-and-point window new-buffer
)
3725 (unless bury-or-kill
3726 ;; Scan reverted next buffers last (must not use nreverse
3728 (dolist (buffer (reverse next-buffers
))
3729 ;; Actually, buffer _must_ be live here since otherwise it
3730 ;; would have been caught in the scan of previous buffers.
3731 (when (and (or (buffer-live-p buffer
)
3732 (not (setq killed-buffers
3733 (cons buffer killed-buffers
))))
3734 (not (eq buffer old-buffer
))
3735 (or (null pred
) (funcall pred buffer
))
3736 (setq entry
(assq buffer
(window-prev-buffers window
))))
3737 (setq new-buffer buffer
)
3738 (set-window-buffer-start-and-point
3739 window new-buffer
(nth 1 entry
) (nth 2 entry
))
3742 ;; Show a buffer visible in another window.
3744 (setq new-buffer visible
)
3745 (set-window-buffer-start-and-point window new-buffer
)))
3748 (let ((entry (and (eq bury-or-kill
'append
)
3749 (assq old-buffer
(window-prev-buffers window
)))))
3750 ;; Remove `old-buffer' from WINDOW's previous and (restored list
3751 ;; of) next buffers.
3752 (set-window-prev-buffers
3753 window
(assq-delete-all old-buffer
(window-prev-buffers window
)))
3754 (set-window-next-buffers window
(delq old-buffer next-buffers
))
3756 ;; Append old-buffer's entry to list of WINDOW's previous
3757 ;; buffers so it's less likely to get switched to soon but
3758 ;; `display-buffer-in-previous-window' can nevertheless find
3760 (set-window-prev-buffers
3761 window
(append (window-prev-buffers window
) (list entry
)))))
3762 ;; Move `old-buffer' to head of WINDOW's restored list of next
3764 (set-window-next-buffers
3765 window
(cons old-buffer
(delq old-buffer next-buffers
))))
3767 ;; Remove killed buffers from WINDOW's previous and next buffers.
3768 (when killed-buffers
3769 (dolist (buffer killed-buffers
)
3770 (set-window-prev-buffers
3771 window
(assq-delete-all buffer
(window-prev-buffers window
)))
3772 (set-window-next-buffers
3773 window
(delq buffer
(window-next-buffers window
)))))
3775 ;; Return new-buffer.
3778 (defun switch-to-next-buffer (&optional window
)
3779 "In WINDOW switch to next buffer.
3780 WINDOW must be a live window and defaults to the selected one.
3781 Return the buffer switched to, nil if no suitable buffer could be
3784 (let* ((window (window-normalize-window window t
))
3785 (frame (window-frame window
))
3786 (old-buffer (window-buffer window
))
3787 (next-buffers (window-next-buffers window
))
3788 (pred (frame-parameter frame
'buffer-predicate
))
3789 new-buffer entry killed-buffers visible
)
3790 (when (window-minibuffer-p window
)
3791 ;; Don't switch in minibuffer window.
3792 (unless (setq window
(minibuffer-selected-window))
3793 (error "Window %s is a minibuffer window" window
)))
3795 (when (window-dedicated-p window
)
3796 ;; Don't switch in dedicated window.
3797 (error "Window %s is dedicated to buffer %s" window old-buffer
))
3800 ;; Scan WINDOW's next buffers first.
3801 (dolist (buffer next-buffers
)
3802 (when (and (or (buffer-live-p buffer
)
3803 (not (setq killed-buffers
3804 (cons buffer killed-buffers
))))
3805 (not (eq buffer old-buffer
))
3806 (or (null pred
) (funcall pred buffer
))
3807 (setq entry
(assq buffer
(window-prev-buffers window
))))
3808 (setq new-buffer buffer
)
3809 (set-window-buffer-start-and-point
3810 window new-buffer
(nth 1 entry
) (nth 2 entry
))
3812 ;; Scan the buffer list of WINDOW's frame next, skipping previous
3814 (dolist (buffer (buffer-list frame
))
3815 (when (and (buffer-live-p buffer
)
3816 (not (eq buffer old-buffer
))
3817 (or (null pred
) (funcall pred buffer
))
3818 (not (eq (aref (buffer-name buffer
) 0) ?\s
))
3819 (not (assq buffer
(window-prev-buffers window
))))
3820 (if (get-buffer-window buffer frame
)
3821 ;; Try to avoid showing a buffer visible in some other window.
3822 (setq visible buffer
)
3823 (setq new-buffer buffer
)
3824 (set-window-buffer-start-and-point window new-buffer
)
3826 ;; Scan WINDOW's reverted previous buffers last (must not use
3828 (dolist (entry (reverse (window-prev-buffers window
)))
3829 (when (and (setq new-buffer
(car entry
))
3830 (or (buffer-live-p new-buffer
)
3831 (not (setq killed-buffers
3832 (cons new-buffer killed-buffers
))))
3833 (not (eq new-buffer old-buffer
))
3834 (or (null pred
) (funcall pred new-buffer
)))
3835 (if (and (not switch-to-visible-buffer
)
3836 (get-buffer-window new-buffer frame
))
3837 ;; Try to avoid showing a buffer visible in some other window.
3839 (setq visible new-buffer
))
3840 (set-window-buffer-start-and-point
3841 window new-buffer
(nth 1 entry
) (nth 2 entry
))
3844 ;; Show a buffer visible in another window.
3846 (setq new-buffer visible
)
3847 (set-window-buffer-start-and-point window new-buffer
)))
3849 ;; Remove `new-buffer' from and restore WINDOW's next buffers.
3850 (set-window-next-buffers window
(delq new-buffer next-buffers
))
3852 ;; Remove killed buffers from WINDOW's previous and next buffers.
3853 (when killed-buffers
3854 (dolist (buffer killed-buffers
)
3855 (set-window-prev-buffers
3856 window
(assq-delete-all buffer
(window-prev-buffers window
)))
3857 (set-window-next-buffers
3858 window
(delq buffer
(window-next-buffers window
)))))
3860 ;; Return new-buffer.
3863 (defun get-next-valid-buffer (list &optional buffer visible-ok frame
)
3864 "Search LIST for a valid buffer to display in FRAME.
3865 Return nil when all buffers in LIST are undesirable for display,
3866 otherwise return the first suitable buffer in LIST.
3868 Buffers not visible in windows are preferred to visible buffers,
3869 unless VISIBLE-OK is non-nil.
3870 If the optional argument FRAME is nil, it defaults to the selected frame.
3871 If BUFFER is non-nil, ignore occurrences of that buffer in LIST."
3872 ;; This logic is more or less copied from other-buffer.
3873 (setq frame
(or frame
(selected-frame)))
3874 (let ((pred (frame-parameter frame
'buffer-predicate
))
3876 (while (and (not found
) list
)
3877 (setq buf
(car list
))
3878 (if (and (not (eq buffer buf
))
3880 (or (null pred
) (funcall pred buf
))
3881 (not (eq (aref (buffer-name buf
) 0) ?\s
))
3882 (or visible-ok
(null (get-buffer-window buf
'visible
))))
3884 (setq list
(cdr list
))))
3887 (defun last-buffer (&optional buffer visible-ok frame
)
3888 "Return the last buffer in FRAME's buffer list.
3889 If BUFFER is the last buffer, return the preceding buffer
3890 instead. Buffers not visible in windows are preferred to visible
3891 buffers, unless optional argument VISIBLE-OK is non-nil.
3892 Optional third argument FRAME nil or omitted means use the
3893 selected frame's buffer list. If no such buffer exists, return
3894 the buffer `*scratch*', creating it if necessary."
3895 (setq frame
(or frame
(selected-frame)))
3896 (or (get-next-valid-buffer (nreverse (buffer-list frame
))
3897 buffer visible-ok frame
)
3898 (get-buffer "*scratch*")
3899 (let ((scratch (get-buffer-create "*scratch*")))
3900 (set-buffer-major-mode scratch
)
3903 (defcustom frame-auto-hide-function
#'iconify-frame
3904 "Function called to automatically hide frames.
3905 The function is called with one argument - a frame.
3907 Functions affected by this option are those that bury a buffer
3908 shown in a separate frame like `quit-window' and `bury-buffer'."
3909 :type
'(choice (const :tag
"Iconify" iconify-frame
)
3910 (const :tag
"Delete" delete-frame
)
3911 (const :tag
"Do nothing" ignore
)
3917 (defun window--delete (&optional window dedicated-only kill
)
3918 "Delete WINDOW if possible.
3919 WINDOW must be a live window and defaults to the selected one.
3920 Optional argument DEDICATED-ONLY non-nil means to delete WINDOW
3921 only if it's dedicated to its buffer. Optional argument KILL
3922 means the buffer shown in window will be killed. Return non-nil
3923 if WINDOW gets deleted or its frame is auto-hidden."
3924 (setq window
(window-normalize-window window t
))
3925 (unless (and dedicated-only
(not (window-dedicated-p window
)))
3926 (let ((deletable (window-deletable-p window
)))
3928 ((eq deletable
'frame
)
3929 (let ((frame (window-frame window
)))
3932 (delete-frame frame
))
3933 ((functionp frame-auto-hide-function
)
3934 (funcall frame-auto-hide-function frame
))))
3937 (delete-window window
)
3940 (defun bury-buffer (&optional buffer-or-name
)
3941 "Put BUFFER-OR-NAME at the end of the list of all buffers.
3942 There it is the least likely candidate for `other-buffer' to
3943 return; thus, the least likely buffer for \\[switch-to-buffer] to
3946 You can specify a buffer name as BUFFER-OR-NAME, or an actual
3947 buffer object. If BUFFER-OR-NAME is nil or omitted, bury the
3948 current buffer. Also, if BUFFER-OR-NAME is nil or omitted,
3949 remove the current buffer from the selected window if it is
3952 (let* ((buffer (window-normalize-buffer buffer-or-name
)))
3953 ;; If `buffer-or-name' is not on the selected frame we unrecord it
3954 ;; although it's not "here" (call it a feature).
3955 (bury-buffer-internal buffer
)
3956 ;; Handle case where `buffer-or-name' is nil and the current buffer
3957 ;; is shown in the selected window.
3959 ((or buffer-or-name
(not (eq buffer
(window-buffer)))))
3960 ((window--delete nil t
))
3962 ;; Switch to another buffer in window.
3963 (set-window-dedicated-p nil nil
)
3964 (switch-to-prev-buffer nil
'bury
)))
3966 ;; Always return nil.
3969 (defun unbury-buffer ()
3970 "Switch to the last buffer in the buffer list."
3972 (switch-to-buffer (last-buffer)))
3974 (defun next-buffer ()
3975 "In selected window switch to next buffer."
3978 ((window-minibuffer-p)
3979 (error "Cannot switch buffers in minibuffer window"))
3980 ((eq (window-dedicated-p) t
)
3981 (error "Window is strongly dedicated to its buffer"))
3983 (switch-to-next-buffer))))
3985 (defun previous-buffer ()
3986 "In selected window switch to previous buffer."
3989 ((window-minibuffer-p)
3990 (error "Cannot switch buffers in minibuffer window"))
3991 ((eq (window-dedicated-p) t
)
3992 (error "Window is strongly dedicated to its buffer"))
3994 (switch-to-prev-buffer))))
3996 (defun delete-windows-on (&optional buffer-or-name frame
)
3997 "Delete all windows showing BUFFER-OR-NAME.
3998 BUFFER-OR-NAME may be a buffer or the name of an existing buffer
3999 and defaults to the current buffer.
4001 The following non-nil values of the optional argument FRAME
4002 have special meanings:
4004 - t means consider all windows on the selected frame only.
4006 - `visible' means consider all windows on all visible frames on
4007 the current terminal.
4009 - 0 (the number zero) means consider all windows on all visible
4010 and iconified frames on the current terminal.
4012 - A frame means consider all windows on that frame only.
4014 Any other value of FRAME means consider all windows on all
4017 When a window showing BUFFER-OR-NAME is dedicated and the only
4018 window of its frame, that frame is deleted when there are other
4020 (interactive "BDelete windows on (buffer):\nP")
4021 (let ((buffer (window-normalize-buffer buffer-or-name
))
4022 ;; Handle the "inverted" meaning of the FRAME argument wrt other
4023 ;; `window-list-1' based function.
4024 (all-frames (cond ((not frame
) t
) ((eq frame t
) nil
) (t frame
))))
4025 (dolist (window (window-list-1 nil nil all-frames
))
4026 (if (eq (window-buffer window
) buffer
)
4027 (let ((deletable (window-deletable-p window
)))
4029 ((and (eq deletable
'frame
) (window-dedicated-p window
))
4030 ;; Delete frame if and only if window is dedicated.
4031 (delete-frame (window-frame window
)))
4034 (delete-window window
))
4036 ;; In window switch to previous buffer.
4037 (set-window-dedicated-p window nil
)
4038 (switch-to-prev-buffer window
'bury
))))
4039 ;; If a window doesn't show BUFFER, unrecord BUFFER in it.
4040 (unrecord-window-buffer window buffer
)))))
4042 (defun replace-buffer-in-windows (&optional buffer-or-name
)
4043 "Replace BUFFER-OR-NAME with some other buffer in all windows showing it.
4044 BUFFER-OR-NAME may be a buffer or the name of an existing buffer
4045 and defaults to the current buffer.
4047 When a window showing BUFFER-OR-NAME is dedicated, that window is
4048 deleted. If that window is the only window on its frame, the
4049 frame is deleted too when there are other frames left. If there
4050 are no other frames left, some other buffer is displayed in that
4053 This function removes the buffer denoted by BUFFER-OR-NAME from
4054 all window-local buffer lists."
4055 (interactive "bBuffer to replace: ")
4056 (let ((buffer (window-normalize-buffer buffer-or-name
)))
4057 (dolist (window (window-list-1 nil nil t
))
4058 (if (eq (window-buffer window
) buffer
)
4059 (unless (window--delete window t t
)
4060 ;; Switch to another buffer in window.
4061 (set-window-dedicated-p window nil
)
4062 (switch-to-prev-buffer window
'kill
))
4063 ;; Unrecord BUFFER in WINDOW.
4064 (unrecord-window-buffer window buffer
)))))
4066 (defun quit-restore-window (&optional window bury-or-kill
)
4067 "Quit WINDOW and deal with its buffer.
4068 WINDOW must be a live window and defaults to the selected one.
4070 According to information stored in WINDOW's `quit-restore' window
4071 parameter either (1) delete WINDOW and its frame, (2) delete
4072 WINDOW, (3) restore the buffer previously displayed in WINDOW,
4073 or (4) make WINDOW display some other buffer than the present
4074 one. If non-nil, reset `quit-restore' parameter to nil.
4076 Optional second argument BURY-OR-KILL tells how to proceed with
4077 the buffer of WINDOW. The following values are handled:
4079 `nil' means to not handle the buffer in a particular way. This
4080 means that if WINDOW is not deleted by this function, invoking
4081 `switch-to-prev-buffer' will usually show the buffer again.
4083 `append' means that if WINDOW is not deleted, move its buffer to
4084 the end of WINDOW's previous buffers so it's less likely that a
4085 future invocation of `switch-to-prev-buffer' will switch to it.
4086 Also, move the buffer to the end of the frame's buffer list.
4088 `bury' means that if WINDOW is not deleted, remove its buffer
4089 from WINDOW'S list of previous buffers. Also, move the buffer
4090 to the end of the frame's buffer list. This value provides the
4091 most reliable remedy to not have `switch-to-prev-buffer' switch
4092 to this buffer again without killing the buffer.
4094 `kill' means to kill WINDOW's buffer."
4095 (setq window
(window-normalize-window window t
))
4096 (let* ((buffer (window-buffer window
))
4097 (quit-restore (window-parameter window
'quit-restore
))
4099 (let* ((prev-buffers (window-prev-buffers window
))
4100 (prev-buffer (caar prev-buffers
)))
4101 (and (or (not (eq prev-buffer buffer
))
4102 (and (cdr prev-buffers
)
4103 (not (eq (setq prev-buffer
(cadr prev-buffers
))
4108 ((and (not prev-buffer
)
4109 (or (eq (nth 1 quit-restore
) 'frame
)
4110 (and (eq (nth 1 quit-restore
) 'window
)
4111 ;; If the window has been created on an existing
4112 ;; frame and ended up as the sole window on that
4113 ;; frame, do not delete it (Bug#12764).
4114 (not (eq window
(frame-root-window window
)))))
4115 (eq (nth 3 quit-restore
) buffer
)
4116 ;; Delete WINDOW if possible.
4117 (window--delete window nil
(eq bury-or-kill
'kill
)))
4118 ;; If the previously selected window is still alive, select it.
4119 (when (window-live-p (nth 2 quit-restore
))
4120 (select-window (nth 2 quit-restore
))))
4121 ((and (listp (setq quad
(nth 1 quit-restore
)))
4122 (buffer-live-p (car quad
))
4123 (eq (nth 3 quit-restore
) buffer
))
4124 ;; Show another buffer stored in quit-restore parameter.
4125 (when (and (integerp (nth 3 quad
))
4126 (/= (nth 3 quad
) (window-total-height window
)))
4127 ;; Try to resize WINDOW to its old height but don't signal an
4130 (window-resize window
(- (nth 3 quad
) (window-total-height window
)))
4132 (set-window-dedicated-p window nil
)
4133 ;; Restore WINDOW's previous buffer, start and point position.
4134 (set-window-buffer-start-and-point
4135 window
(nth 0 quad
) (nth 1 quad
) (nth 2 quad
))
4136 ;; Deal with the buffer we just removed from WINDOW.
4137 (setq entry
(and (eq bury-or-kill
'append
)
4138 (assq buffer
(window-prev-buffers window
))))
4140 ;; Remove buffer from WINDOW's previous and next buffers.
4141 (set-window-prev-buffers
4142 window
(assq-delete-all buffer
(window-prev-buffers window
)))
4143 (set-window-next-buffers
4144 window
(delq buffer
(window-next-buffers window
))))
4146 ;; Append old buffer's entry to list of WINDOW's previous
4147 ;; buffers so it's less likely to get switched to soon but
4148 ;; `display-buffer-in-previous-window' can nevertheless find it.
4149 (set-window-prev-buffers
4150 window
(append (window-prev-buffers window
) (list entry
))))
4151 ;; Reset the quit-restore parameter.
4152 (set-window-parameter window
'quit-restore nil
)
4153 ;; Select old window.
4154 (when (window-live-p (nth 2 quit-restore
))
4155 (select-window (nth 2 quit-restore
))))
4157 ;; Show some other buffer in WINDOW and reset the quit-restore
4159 (set-window-parameter window
'quit-restore nil
)
4160 ;; Make sure that WINDOW is no more dedicated.
4161 (set-window-dedicated-p window nil
)
4162 (switch-to-prev-buffer window bury-or-kill
)))
4164 ;; Deal with the buffer.
4166 ((not (buffer-live-p buffer
)))
4167 ((eq bury-or-kill
'kill
)
4168 (kill-buffer buffer
))
4170 (bury-buffer-internal buffer
)))))
4172 (defun quit-window (&optional kill window
)
4173 "Quit WINDOW and bury its buffer.
4174 WINDOW must be a live window and defaults to the selected one.
4175 With prefix argument KILL non-nil, kill the buffer instead of
4178 According to information stored in WINDOW's `quit-restore' window
4179 parameter either (1) delete WINDOW and its frame, (2) delete
4180 WINDOW, (3) restore the buffer previously displayed in WINDOW,
4181 or (4) make WINDOW display some other buffer than the present
4182 one. If non-nil, reset `quit-restore' parameter to nil."
4184 (quit-restore-window window
(if kill
'kill
'bury
)))
4186 (defun quit-windows-on (&optional buffer-or-name kill frame
)
4187 "Quit all windows showing BUFFER-OR-NAME.
4188 BUFFER-OR-NAME may be a buffer or the name of an existing buffer
4189 and defaults to the current buffer. Optional argument KILL
4190 non-nil means to kill BUFFER-OR-NAME. KILL nil means to bury
4191 BUFFER-OR-NAME. Optional argument FRAME is handled as by
4192 `delete-windows-on'.
4194 This function calls `quit-window' on all candidate windows
4195 showing BUFFER-OR-NAME."
4196 (interactive "BQuit windows on (buffer):\nP")
4197 (let ((buffer (window-normalize-buffer buffer-or-name
))
4198 ;; Handle the "inverted" meaning of the FRAME argument wrt other
4199 ;; `window-list-1' based function.
4200 (all-frames (cond ((not frame
) t
) ((eq frame t
) nil
) (t frame
))))
4201 (dolist (window (window-list-1 nil nil all-frames
))
4202 (if (eq (window-buffer window
) buffer
)
4203 (quit-window kill window
)
4204 ;; If a window doesn't show BUFFER, unrecord BUFFER in it.
4205 (unrecord-window-buffer window buffer
)))))
4207 ;;; Splitting windows.
4208 (defun window-split-min-size (&optional horizontal pixelwise
)
4209 "Return minimum height of any window when splitting windows.
4210 Optional argument HORIZONTAL non-nil means return minimum width."
4214 (window-min-pixel-width)
4215 (window-min-pixel-height)))
4217 (max window-min-width window-safe-min-width
))
4219 (max window-min-height window-safe-min-height
))))
4221 (defun split-window (&optional window size side pixelwise
)
4222 "Make a new window adjacent to WINDOW.
4223 WINDOW must be a valid window and defaults to the selected one.
4224 Return the new window which is always a live window.
4226 Optional argument SIZE a positive number means make WINDOW SIZE
4227 lines or columns tall. If SIZE is negative, make the new window
4228 -SIZE lines or columns tall. If and only if SIZE is non-nil, its
4229 absolute value can be less than `window-min-height' or
4230 `window-min-width'; so this command can make a new window as
4231 small as one line or two columns. SIZE defaults to half of
4234 Optional third argument SIDE nil (or `below') specifies that the
4235 new window shall be located below WINDOW. SIDE `above' means the
4236 new window shall be located above WINDOW. In both cases SIZE
4237 specifies the new number of lines for WINDOW (or the new window
4238 if SIZE is negative) including space reserved for the mode and/or
4241 SIDE t (or `right') specifies that the new window shall be
4242 located on the right side of WINDOW. SIDE `left' means the new
4243 window shall be located on the left of WINDOW. In both cases
4244 SIZE specifies the new number of columns for WINDOW (or the new
4245 window provided SIZE is negative) including space reserved for
4246 fringes and the scrollbar or a divider column. Any other non-nil
4247 value for SIDE is currently handled like t (or `right').
4249 PIXELWISE, if non-nil, means to interpret SIZE pixelwise.
4251 If the variable `ignore-window-parameters' is non-nil or the
4252 `split-window' parameter of WINDOW equals t, do not process any
4253 parameters of WINDOW. Otherwise, if the `split-window' parameter
4254 of WINDOW specifies a function, call that function with all three
4255 arguments and return the value returned by that function.
4257 Otherwise, if WINDOW is part of an atomic window, \"split\" the
4258 root of that atomic window. The new window does not become a
4259 member of that atomic window.
4261 If WINDOW is live, properties of the new window like margins and
4262 scrollbars are inherited from WINDOW. If WINDOW is an internal
4263 window, these properties as well as the buffer displayed in the
4264 new window are inherited from the window selected on WINDOW's
4265 frame. The selected window is not changed by this function."
4266 (setq window
(window-normalize-window window
))
4269 ((memq side
'(below above right left
)) side
)
4271 (horizontal (not (memq side
'(below above
))))
4272 (frame (window-frame window
))
4273 (parent (window-parent window
))
4274 (function (window-parameter window
'split-window
))
4275 (window-side (window-parameter window
'window-side
))
4276 ;; Rebind the following two variables since in some cases we
4277 ;; have to override their value.
4278 (window-combination-limit window-combination-limit
)
4279 (window-combination-resize window-combination-resize
)
4280 (char-size (frame-char-size window horizontal
))
4282 (when (numberp size
)
4283 (window--size-to-pixel window size horizontal pixelwise t
)))
4285 (window--check frame
)
4288 ;; Ignore window parameters if either `ignore-window-parameters'
4289 ;; is t or the `split-window' parameter equals t.
4290 ((or ignore-window-parameters
(eq function t
)))
4291 ((functionp function
)
4292 ;; The `split-window' parameter specifies the function to call.
4293 ;; If that function is `ignore', do nothing.
4294 (throw 'done
(funcall function window size side
)))
4295 ;; If WINDOW is part of an atomic window, split the root window
4296 ;; of that atomic window instead.
4297 ((and (window-parameter window
'window-atom
)
4298 (setq atom-root
(window-atom-root window
))
4299 (not (eq atom-root window
)))
4300 (throw 'done
(split-window atom-root size side pixelwise
)))
4301 ;; If WINDOW is a side window or its first or last child is a
4302 ;; side window, throw an error unless `window-combination-resize'
4304 ((and (not (eq window-combination-resize
'side
))
4305 (or (window-parameter window
'window-side
)
4306 (and (window-child window
)
4307 (or (window-parameter
4308 (window-child window
) 'window-side
)
4310 (window-last-child window
) 'window-side
)))))
4311 (error "Cannot split side window or parent of side window"))
4312 ;; If `window-combination-resize' is 'side and window has a side
4313 ;; window sibling, bind `window-combination-limit' to t.
4314 ((and (not (eq window-combination-resize
'side
))
4315 (or (and (window-prev-sibling window
)
4317 (window-prev-sibling window
) 'window-side
))
4318 (and (window-next-sibling window
)
4320 (window-next-sibling window
) 'window-side
))))
4321 (setq window-combination-limit t
)))
4323 ;; If `window-combination-resize' is t and SIZE is non-negative,
4324 ;; bind `window-combination-limit' to t.
4325 (when (and (eq window-combination-resize t
)
4326 pixel-size
(> pixel-size
0))
4327 (setq window-combination-limit t
))
4329 (let* ((parent-pixel-size
4330 ;; `parent-pixel-size' is the pixel size of WINDOW's
4331 ;; parent, provided it has one.
4332 (when parent
(window-size parent horizontal t
)))
4333 ;; `resize' non-nil means we are supposed to resize other
4334 ;; windows in WINDOW's combination.
4336 (and window-combination-resize
4337 (or (window-parameter window
'window-side
)
4338 (not (eq window-combination-resize
'side
)))
4339 (not (eq window-combination-limit t
))
4340 ;; Resize makes sense in iso-combinations only.
4341 (window-combined-p window horizontal
)))
4342 ;; `old-pixel-size' is the current pixel size of WINDOW.
4343 (old-pixel-size (window-size window horizontal t
))
4344 ;; `new-size' is the specified or calculated size of the
4346 new-pixel-size new-parent new-normal
)
4349 (setq new-pixel-size
4351 ;; When resizing try to give the new window the
4352 ;; average size of a window in its combination.
4353 (min (- parent-pixel-size
4354 (window-min-size parent horizontal nil t
))
4355 (/ parent-pixel-size
4356 (1+ (window-combinations parent horizontal
))))
4357 ;; Else try to give the new window half the size
4358 ;; of WINDOW (plus an eventual odd pixel).
4359 (/ old-pixel-size
2)))
4360 (unless window-resize-pixelwise
4361 ;; Round to nearest char-size multiple.
4362 (setq new-pixel-size
4363 (* char-size
(round new-pixel-size char-size
)))))
4365 ;; SIZE non-negative specifies the new size of WINDOW.
4367 ;; Note: Specifying a non-negative SIZE is practically
4368 ;; always done as workaround for making the new window
4369 ;; appear above or on the left of the new window (the
4370 ;; ispell window is a typical example of that). In all
4371 ;; these cases the SIDE argument should be set to 'above
4372 ;; or 'left in order to support the 'resize option.
4373 ;; Here we have to nest the windows instead, see above.
4374 (setq new-pixel-size
(- old-pixel-size pixel-size
)))
4376 ;; SIZE negative specifies the size of the new window.
4377 (setq new-pixel-size
(- pixel-size
))))
4384 ;; SIZE unspecified, resizing.
4385 (when (and (not (window-sizable-p
4386 parent
(- new-pixel-size
) horizontal nil t
))
4387 ;; Try again with minimum split size.
4388 (setq new-pixel-size
4390 (window-split-min-size horizontal t
)))
4391 (not (window-sizable-p
4392 parent
(- new-pixel-size
) horizontal nil t
)))
4393 (error "Window %s too small for splitting 1" parent
)))
4394 ((> (+ new-pixel-size
(window-min-size window horizontal nil t
))
4396 ;; SIZE unspecified, no resizing.
4397 (error "Window %s too small for splitting 2" window
))))
4398 ((and (>= pixel-size
0)
4399 (or (>= pixel-size old-pixel-size
)
4401 (window-safe-min-pixel-size window horizontal
))))
4402 ;; SIZE specified as new size of old window. If the new size
4403 ;; is larger than the old size or the size of the new window
4404 ;; would be less than the safe minimum, signal an error.
4405 (error "Window %s too small for splitting 3" window
))
4407 ;; SIZE specified, resizing.
4408 (unless (window-sizable-p
4409 parent
(- new-pixel-size
) horizontal nil t
)
4410 ;; If we cannot resize the parent give up.
4411 (error "Window %s too small for splitting 4" parent
)))
4412 ((or (< new-pixel-size
4413 (window-safe-min-pixel-size window horizontal
))
4414 (< (- old-pixel-size new-pixel-size
)
4415 (window-safe-min-pixel-size window horizontal
)))
4416 ;; SIZE specification violates minimum size restrictions.
4417 (error "Window %s too small for splitting 5" window
)))
4419 (window--resize-reset frame horizontal
)
4422 ;; Make new-parent non-nil if we need a new parent window;
4423 ;; either because we want to nest or because WINDOW is not
4425 (or (eq window-combination-limit t
)
4426 (not (window-combined-p window horizontal
))))
4428 ;; Make new-normal the normal size of the new window.
4430 (pixel-size (/ (float new-pixel-size
)
4431 (if new-parent old-pixel-size parent-pixel-size
)))
4433 (resize (/ 1.0 (1+ (window-combinations parent horizontal
))))
4434 (t (/ (window-normal-size window horizontal
) 2.0))))
4437 ;; Try to get space from OLD's siblings. We could go "up" and
4438 ;; try getting additional space from surrounding windows but
4439 ;; we won't be able to return space to those windows when we
4440 ;; delete the one we create here. Hence we do not go up.
4442 (window--resize-child-windows
4443 parent
(- new-pixel-size
) horizontal
)
4444 (let* ((normal (- 1.0 new-normal
))
4445 (sub (window-child parent
)))
4447 (set-window-new-normal
4448 sub
(* (window-normal-size sub horizontal
) normal
))
4449 (setq sub
(window-right sub
)))))
4450 ;; Get entire space from WINDOW.
4451 (set-window-new-pixel
4452 window
(- old-pixel-size new-pixel-size
))
4453 ;; (set-window-new-pixel window (- old-pixel-size new-pixel-size))
4454 ;; (set-window-new-total
4455 ;; window (- old-size new-size))
4456 (window--resize-this-window window
(- new-pixel-size
) horizontal
)
4457 (set-window-new-normal
4458 window
(- (if new-parent
1.0 (window-normal-size window horizontal
))
4461 (let* ((new (split-window-internal window new-pixel-size side new-normal
)))
4462 (window--pixel-to-total frame horizontal
)
4463 ;; Assign window-side parameters, if any.
4465 ((eq window-combination-resize
'side
)
4468 (window-side window-side
)
4469 ((eq side
'above
) 'top
)
4470 ((eq side
'below
) 'bottom
)
4472 ;; We made a new side window.
4473 (set-window-parameter new
'window-side window-side
)
4474 (when (and new-parent
(window-parameter window
'window-side
))
4475 ;; We've been splitting a side root window. Give the
4476 ;; new parent the same window-side parameter.
4477 (set-window-parameter
4478 (window-parent new
) 'window-side window-side
))))
4479 ((eq window-combination-resize
'atom
)
4480 ;; Make sure `window--check-frame' won't destroy an existing
4481 ;; atomic window in case the new window gets nested inside.
4482 (unless (window-parameter window
'window-atom
)
4483 (set-window-parameter window
'window-atom t
))
4485 (set-window-parameter (window-parent new
) 'window-atom t
))
4486 (set-window-parameter new
'window-atom t
)))
4488 (run-window-configuration-change-hook frame
)
4489 (run-window-scroll-functions new
)
4490 (window--check frame
)
4491 ;; Always return the new window.
4494 ;; I think this should be the default; I think people will prefer it--rms.
4495 (defcustom split-window-keep-point t
4496 "If non-nil, \\[split-window-below] preserves point in the new window.
4497 If nil, adjust point in the two windows to minimize redisplay.
4498 This option applies only to `split-window-below' and functions
4499 that call it. The low-level `split-window' function always keeps
4500 the original point in both windows."
4504 (defun split-window-below (&optional size
)
4505 "Split the selected window into two windows, one above the other.
4506 The selected window is above. The newly split-off window is
4507 below, and displays the same buffer. Return the new window.
4509 If optional argument SIZE is omitted or nil, both windows get the
4510 same height, or close to it. If SIZE is positive, the upper
4511 \(selected) window gets SIZE lines. If SIZE is negative, the
4512 lower (new) window gets -SIZE lines.
4514 If the variable `split-window-keep-point' is non-nil, both
4515 windows get the same value of point as the selected window.
4516 Otherwise, the window starts are chosen so as to minimize the
4517 amount of redisplay; this is convenient on slow terminals."
4519 (let ((old-window (selected-window))
4520 (old-point (window-point))
4521 (size (and size
(prefix-numeric-value size
)))
4522 moved-by-window-height moved new-window bottom
)
4523 (when (and size
(< size
0) (< (- size
) window-min-height
))
4524 ;; `split-window' would not signal an error here.
4525 (error "Size of new window too small"))
4526 (setq new-window
(split-window nil size
))
4527 (unless split-window-keep-point
4528 (with-current-buffer (window-buffer)
4529 ;; Use `save-excursion' around vertical movements below
4530 ;; (Bug#10971). Note: When the selected window's buffer has a
4531 ;; header line, up to two lines of the buffer may not show up
4532 ;; in the resulting configuration.
4534 (goto-char (window-start))
4535 (setq moved
(vertical-motion (window-height)))
4536 (set-window-start new-window
(point))
4537 (when (> (point) (window-point new-window
))
4538 (set-window-point new-window
(point)))
4539 (when (= moved
(window-height))
4540 (setq moved-by-window-height t
)
4541 (vertical-motion -
1))
4542 (setq bottom
(point)))
4543 (and moved-by-window-height
4545 (set-window-point old-window
(1- bottom
)))
4546 (and moved-by-window-height
4547 (<= (window-start new-window
) old-point
)
4548 (set-window-point new-window old-point
)
4549 (select-window new-window
))))
4550 ;; Always copy quit-restore parameter in interactive use.
4551 (let ((quit-restore (window-parameter old-window
'quit-restore
)))
4553 (set-window-parameter new-window
'quit-restore quit-restore
)))
4556 (defalias 'split-window-vertically
'split-window-below
)
4558 (defun split-window-right (&optional size
)
4559 "Split the selected window into two side-by-side windows.
4560 The selected window is on the left. The newly split-off window
4561 is on the right, and displays the same buffer. Return the new
4564 If optional argument SIZE is omitted or nil, both windows get the
4565 same width, or close to it. If SIZE is positive, the left-hand
4566 \(selected) window gets SIZE columns. If SIZE is negative, the
4567 right-hand (new) window gets -SIZE columns. Here, SIZE includes
4568 the width of the window's scroll bar; if there are no scroll
4569 bars, it includes the width of the divider column to the window's
4572 (let ((old-window (selected-window))
4573 (size (and size
(prefix-numeric-value size
)))
4575 (when (and size
(< size
0) (< (- size
) window-min-width
))
4576 ;; `split-window' would not signal an error here.
4577 (error "Size of new window too small"))
4578 (setq new-window
(split-window nil size t
))
4579 ;; Always copy quit-restore parameter in interactive use.
4580 (let ((quit-restore (window-parameter old-window
'quit-restore
)))
4582 (set-window-parameter new-window
'quit-restore quit-restore
)))
4585 (defalias 'split-window-horizontally
'split-window-right
)
4587 ;;; Balancing windows.
4589 ;; The following routine uses the recycled code from an old version of
4590 ;; `window--resize-child-windows'. It's not very pretty, but coding it the way the
4591 ;; new `window--resize-child-windows' code does would hardly make it any shorter or
4592 ;; more readable (FWIW we'd need three loops - one to calculate the
4593 ;; minimum sizes per window, one to enlarge or shrink windows until the
4594 ;; new parent-size matches, and one where we shrink the largest/enlarge
4595 ;; the smallest window).
4596 (defun balance-windows-2 (window horizontal
)
4597 "Subroutine of `balance-windows-1'.
4598 WINDOW must be a vertical combination (horizontal if HORIZONTAL
4600 (let* ((char-size (if window-resize-pixelwise
4602 (frame-char-size window horizontal
)))
4603 (first (window-child window
))
4605 (number-of-children 0)
4606 (parent-size (window-new-pixel window
))
4607 (total-sum parent-size
)
4608 failed size sub-total sub-delta sub-amount rest
)
4610 (setq number-of-children
(1+ number-of-children
))
4611 (when (window-size-fixed-p sub horizontal
)
4613 (- total-sum
(window-size sub horizontal t
)))
4614 (set-window-new-normal sub
'ignore
))
4615 (setq sub
(window-right sub
)))
4618 (while (and failed
(> number-of-children
0))
4619 (setq size
(/ total-sum number-of-children
))
4622 (while (and sub
(not failed
))
4623 ;; Ignore child windows that should be ignored or are stuck.
4624 (unless (window--resize-child-windows-skip-p sub
)
4625 (setq sub-total
(window-size sub horizontal t
))
4626 (setq sub-delta
(- size sub-total
))
4628 (window-sizable sub sub-delta horizontal nil t
))
4629 ;; Register the new total size for this child window.
4630 (set-window-new-pixel sub
(+ sub-total sub-amount
))
4631 (unless (= sub-amount sub-delta
)
4632 (setq total-sum
(- total-sum sub-total sub-amount
))
4633 (setq number-of-children
(1- number-of-children
))
4634 ;; We failed and need a new round.
4636 (set-window-new-normal sub
'skip
)))
4637 (setq sub
(window-right sub
))))
4639 ;; How can we be sure that `number-of-children' is NOT zero here ?
4640 (setq rest
(% total-sum number-of-children
))
4641 ;; Fix rounding by trying to enlarge non-stuck windows by one line
4642 ;; (column) until `rest' is zero.
4644 (while (and sub
(> rest
0))
4645 (unless (window--resize-child-windows-skip-p window
)
4646 (set-window-new-pixel sub
(min rest char-size
) t
)
4647 (setq rest
(- rest char-size
)))
4648 (setq sub
(window-right sub
)))
4650 ;; Fix rounding by trying to enlarge stuck windows by one line
4651 ;; (column) until `rest' equals zero.
4653 (while (and sub
(> rest
0))
4654 (unless (eq (window-new-normal sub
) 'ignore
)
4655 (set-window-new-pixel sub
(min rest char-size
) t
)
4656 (setq rest
(- rest char-size
)))
4657 (setq sub
(window-right sub
)))
4661 ;; Record new normal sizes.
4662 (set-window-new-normal
4663 sub
(/ (if (eq (window-new-normal sub
) 'ignore
)
4664 (window-size sub horizontal t
)
4665 (window-new-pixel sub
))
4666 (float parent-size
)))
4667 ;; Recursively balance each window's child windows.
4668 (balance-windows-1 sub horizontal
)
4669 (setq sub
(window-right sub
)))))
4671 (defun balance-windows-1 (window &optional horizontal
)
4672 "Subroutine of `balance-windows'."
4673 (if (window-child window
)
4674 (let ((sub (window-child window
)))
4675 (if (window-combined-p sub horizontal
)
4676 (balance-windows-2 window horizontal
)
4677 (let ((size (window-new-pixel window
)))
4679 (set-window-new-pixel sub size
)
4680 (balance-windows-1 sub horizontal
)
4681 (setq sub
(window-right sub
))))))))
4683 (defun balance-windows (&optional window-or-frame
)
4684 "Balance the sizes of windows of WINDOW-OR-FRAME.
4685 WINDOW-OR-FRAME is optional and defaults to the selected frame.
4686 If WINDOW-OR-FRAME denotes a frame, balance the sizes of all
4687 windows of that frame. If WINDOW-OR-FRAME denotes a window,
4688 recursively balance the sizes of all child windows of that
4693 ((or (not window-or-frame
)
4694 (frame-live-p window-or-frame
))
4695 (frame-root-window window-or-frame
))
4696 ((or (window-live-p window-or-frame
)
4697 (window-child window-or-frame
))
4700 (error "Not a window or frame %s" window-or-frame
))))
4701 (frame (window-frame window
)))
4702 ;; Balance vertically.
4703 (window--resize-reset (window-frame window
))
4704 (balance-windows-1 window
)
4705 (when (window--resize-apply-p frame
)
4706 (window-resize-apply frame
)
4707 (window--pixel-to-total frame
)
4708 (run-window-configuration-change-hook frame
))
4709 ;; Balance horizontally.
4710 (window--resize-reset (window-frame window
) t
)
4711 (balance-windows-1 window t
)
4712 (when (window--resize-apply-p frame t
)
4713 (window-resize-apply frame t
)
4714 (window--pixel-to-total frame t
)
4715 (run-window-configuration-change-hook frame
))))
4717 (defun window-fixed-size-p (&optional window direction
)
4718 "Return t if WINDOW cannot be resized in DIRECTION.
4719 WINDOW defaults to the selected window. DIRECTION can be
4720 nil (i.e. any), `height' or `width'."
4721 (with-current-buffer (window-buffer window
)
4722 (when (and (boundp 'window-size-fixed
) window-size-fixed
)
4724 (member (cons direction window-size-fixed
)
4725 '((height . width
) (width . height
))))))))
4727 ;;; A different solution to balance-windows.
4728 (defvar window-area-factor
1
4729 "Factor by which the window area should be over-estimated.
4730 This is used by `balance-windows-area'.
4731 Changing this globally has no effect.")
4732 (make-variable-buffer-local 'window-area-factor
)
4734 (defun balance-windows-area-adjust (window delta horizontal pixelwise
)
4735 "Wrapper around `window-resize' with error checking.
4736 Arguments WINDOW, DELTA and HORIZONTAL are passed on to that function."
4737 ;; `window-resize' may fail if delta is too large.
4738 (while (>= (abs delta
) 1)
4741 ;; It was wrong to use `window-resize' here. Somehow
4742 ;; `balance-windows-area' depends on resizing windows
4744 (adjust-window-trailing-edge window delta horizontal pixelwise
)
4747 ;;(message "adjust: %s" (error-message-string err))
4748 (setq delta
(/ delta
2))))))
4750 (defun balance-windows-area ()
4751 "Make all visible windows the same area (approximately).
4752 See also `window-area-factor' to change the relative size of
4755 (let* ((unchanged 0) (carry 0) (round 0)
4756 ;; Remove fixed-size windows.
4757 (wins (delq nil
(mapcar (lambda (win)
4758 (if (not (window-fixed-size-p win
)) win
))
4759 (window-list nil
'nomini
))))
4761 (pixelwise window-resize-pixelwise
)
4763 ;; Resizing a window changes the size of surrounding windows in complex
4764 ;; ways, so it's difficult to balance them all. The introduction of
4765 ;; `adjust-window-trailing-edge' made it a bit easier, but it is still
4766 ;; very difficult to do. `balance-window' above takes an off-line
4767 ;; approach: get the whole window tree, then balance it, then try to
4768 ;; adjust the windows so they fit the result.
4769 ;; Here, instead, we take a "local optimization" approach, where we just
4770 ;; go through all the windows several times until nothing needs to be
4771 ;; changed. The main problem with this approach is that it's difficult
4772 ;; to make sure it terminates, so we use some heuristic to try and break
4773 ;; off infinite loops.
4774 ;; After a round without any change, we allow a second, to give a chance
4775 ;; to the carry to propagate a minor imbalance from the end back to
4777 (while (< unchanged
2)
4778 ;; (message "New round")
4779 (setq unchanged
(1+ unchanged
) round
(1+ round
))
4782 (while (progn (setq next
(next-window next
))
4783 (window-fixed-size-p next
)))
4784 ;; (assert (eq next (or (cadr (member win wins)) (car wins))))
4786 (< (car (window-pixel-edges win
)) (car (window-pixel-edges next
))))
4787 (areadiff (/ (- (* (window-size next nil pixelwise
)
4788 (window-size next t pixelwise
)
4789 (buffer-local-value 'window-area-factor
4790 (window-buffer next
)))
4791 (* (window-size win nil pixelwise
)
4792 (window-size win t pixelwise
)
4793 (buffer-local-value 'window-area-factor
4794 (window-buffer win
))))
4795 (max (buffer-local-value 'window-area-factor
4796 (window-buffer win
))
4797 (buffer-local-value 'window-area-factor
4798 (window-buffer next
)))))
4800 (+ (window-size win nil pixelwise
)
4801 (window-size next nil pixelwise
))
4802 (+ (window-size win t pixelwise
)
4803 (window-size next t pixelwise
))))
4804 (diff (/ areadiff edgesize
)))
4806 ;; Maybe diff is actually closer to 1 than to 0.
4807 (setq diff
(/ (* 3 areadiff
) (* 2 edgesize
))))
4808 (when (and (zerop diff
) (not (zerop areadiff
)))
4809 (setq diff
(/ (+ areadiff carry
) edgesize
))
4810 ;; Change things smoothly.
4811 (if (or (> diff
1) (< diff -
1)) (setq diff
(/ diff
2))))
4813 ;; Make sure negligible differences don't accumulate to
4814 ;; become significant.
4815 (setq carry
(+ carry areadiff
))
4816 ;; This used `adjust-window-trailing-edge' before and uses
4817 ;; `window-resize' now. Error wrapping is still needed.
4818 (balance-windows-area-adjust win diff horiz pixelwise
)
4820 (let ((change (cons win
(window-pixel-edges win
))))
4821 ;; If the same change has been seen already for this window,
4822 ;; we're most likely in an endless loop, so don't count it as
4824 (unless (member change changelog
)
4825 (push change changelog
)
4826 (setq unchanged
0 carry
0)))))))
4827 ;; We've now basically balanced all the windows.
4828 ;; But there may be some minor off-by-one imbalance left over,
4829 ;; so let's do some fine tuning.
4830 ;; (bw-finetune wins)
4831 ;; (message "Done in %d rounds" round)
4834 ;;; Window states, how to get them and how to put them in a window.
4835 (defun window--state-get-1 (window &optional writable
)
4836 "Helper function for `window-state-get'."
4839 ((window-top-child window
) 'vc
)
4840 ((window-left-child window
) 'hc
)
4842 (buffer (window-buffer window
))
4843 (selected (eq window
(selected-window)))
4846 ,@(unless (window-next-sibling window
) `((last . t
)))
4847 (pixel-width .
,(window-pixel-width window
))
4848 (pixel-height .
,(window-pixel-height window
))
4849 (total-width .
,(window-total-width window
))
4850 (total-height .
,(window-total-height window
))
4851 (normal-height .
,(window-normal-size window
))
4852 (normal-width .
,(window-normal-size window t
))
4853 ,@(unless (window-live-p window
)
4854 `((combination-limit .
,(window-combination-limit window
))))
4855 ,@(let ((parameters (window-parameters window
))
4857 ;; Make copies of those window parameters whose
4858 ;; persistence property is `writable' if WRITABLE is
4859 ;; non-nil and non-nil if WRITABLE is nil.
4860 (dolist (par parameters
)
4861 (let ((pers (cdr (assq (car par
)
4862 window-persistent-parameters
))))
4863 (when (and pers
(or (not writable
) (eq pers
'writable
)))
4864 (setq list
(cons (cons (car par
) (cdr par
)) list
)))))
4865 ;; Add `clone-of' parameter if necessary.
4866 (let ((pers (cdr (assq 'clone-of
4867 window-persistent-parameters
))))
4868 (when (and pers
(or (not writable
) (eq pers
'writable
))
4869 (not (assq 'clone-of list
)))
4870 (setq list
(cons (cons 'clone-of window
) list
))))
4872 `((parameters .
,list
))))
4874 ;; All buffer related things go in here.
4875 (let ((point (window-point window
))
4876 (start (window-start window
)))
4878 ,(buffer-name buffer
)
4879 (selected .
,selected
)
4880 (hscroll .
,(window-hscroll window
))
4881 (fringes .
,(window-fringes window
))
4882 (margins .
,(window-margins window
))
4883 (scroll-bars .
,(window-scroll-bars window
))
4884 (vscroll .
,(window-vscroll window
))
4885 (dedicated .
,(window-dedicated-p window
))
4886 (point .
,(if writable point
4889 'window-point-insertion-type
4891 (start .
,(if writable start
(copy-marker start
)))))))))
4893 (when (memq type
'(vc hc
))
4895 (setq window
(window-child window
))
4897 (setq list
(cons (window--state-get-1 window writable
) list
))
4898 (setq window
(window-right window
)))
4900 (append head tail
)))
4902 (defun window-state-get (&optional window writable
)
4903 "Return state of WINDOW as a Lisp object.
4904 WINDOW can be any window and defaults to the root window of the
4907 Optional argument WRITABLE non-nil means do not use markers for
4908 sampling `window-point' and `window-start'. Together, WRITABLE
4909 and the variable `window-persistent-parameters' specify which
4910 window parameters are saved by this function. WRITABLE should be
4911 non-nil when the return value shall be written to a file and read
4912 back in another session. Otherwise, an application may run into
4913 an `invalid-read-syntax' error while attempting to read back the
4916 The return value can be used as argument for `window-state-put'
4917 to put the state recorded here into an arbitrary window. The
4918 value can be also stored on disk and read back in a new session."
4921 (if (window-valid-p window
)
4923 (error "%s is not a live or internal window" window
))
4924 (frame-root-window)))
4925 ;; The return value is a cons whose car specifies some constraints on
4926 ;; the size of WINDOW. The cdr lists the states of the child windows
4929 ;; Frame related things would go into a function, say `frame-state',
4930 ;; calling `window-state-get' to insert the frame's root window.
4931 `((min-height .
,(window-min-size window
))
4932 (min-width .
,(window-min-size window t
))
4933 (min-height-ignore .
,(window-min-size window nil t
))
4934 (min-width-ignore .
,(window-min-size window t t
))
4935 (min-height-safe .
,(window-min-size window nil
'safe
))
4936 (min-width-safe .
,(window-min-size window t
'safe
))
4937 (min-pixel-height .
,(window-min-size window nil nil t
))
4938 (min-pixel-width .
,(window-min-size window t nil t
))
4939 (min-pixel-height-ignore .
,(window-min-size window nil t t
))
4940 (min-pixel-width-ignore .
,(window-min-size window t t t
))
4941 (min-pixel-height-safe .
,(window-min-size window nil
'safe t
))
4942 (min-pixel-width-safe .
,(window-min-size window t
'safe t
)))
4943 (window--state-get-1 window writable
)))
4945 (defvar window-state-put-list nil
4946 "Helper variable for `window-state-put'.")
4948 (defvar window-state-put-stale-windows nil
4949 "Helper variable for `window-state-put'.")
4951 (defun window--state-put-1 (state &optional window ignore totals pixelwise
)
4952 "Helper function for `window-state-put'."
4953 (let ((type (car state
)))
4954 (setq state
(cdr state
))
4957 ;; For a leaf window just add unprocessed entries to
4958 ;; `window-state-put-list'.
4959 (push (cons window state
) window-state-put-list
))
4960 ((memq type
'(vc hc
))
4961 (let* ((horizontal (eq type
'hc
))
4962 (total (window-size window horizontal pixelwise
))
4965 (dolist (item state
)
4966 ;; Find the next child window. WINDOW always points to the
4967 ;; real window that we want to fill with what we find here.
4968 (when (memq (car item
) '(leaf vc hc
))
4969 (if (assq 'last item
)
4970 ;; The last child window. Below `window--state-put-1'
4971 ;; will put into it whatever ITEM has in store.
4973 ;; Not the last child window, prepare for splitting
4974 ;; WINDOW. SIZE is the new (and final) size of the old
4980 (cdr (assq (if horizontal
4984 (cdr (assq (if horizontal
4988 ;; Use normalized size and round.
4991 (cdr (assq (if horizontal
'normal-width
'normal-height
)
4994 ;; Use safe sizes, we try to resize later.
4995 (setq size
(max size
4997 (* window-safe-min-width
4999 (frame-char-width (window-frame window
))
5001 (* window-safe-min-height
5003 (frame-char-height (window-frame window
))
5005 (if (window-sizable-p window
(- size
) horizontal
'safe pixelwise
)
5006 (let* ((window-combination-limit
5007 (assq 'combination-limit item
)))
5008 ;; We must inherit the combination limit, otherwise
5009 ;; we might mess up handling of atomic and side
5011 (setq new
(split-window window size horizontal pixelwise
)))
5012 ;; Give up if we can't resize window down to safe sizes.
5013 (error "Cannot resize window %s" window
))
5017 ;; When creating the first child window add for parent
5018 ;; unprocessed entries to `window-state-put-list'.
5019 (setq window-state-put-list
5020 (cons (cons (window-parent window
) state
)
5021 window-state-put-list
))))
5023 ;; Now process the current window (either the one we've just
5024 ;; split or the last child of its parent).
5025 (window--state-put-1 item window ignore totals
)
5026 ;; Continue with the last window split off.
5027 (setq window new
))))))))
5029 (defun window--state-put-2 (ignore pixelwise
)
5030 "Helper function for `window-state-put'."
5031 (dolist (item window-state-put-list
)
5032 (let ((window (car item
))
5033 (combination-limit (cdr (assq 'combination-limit item
)))
5034 (parameters (cdr (assq 'parameters item
)))
5035 (state (cdr (assq 'buffer item
))))
5036 (when combination-limit
5037 (set-window-combination-limit window combination-limit
))
5038 ;; Reset window's parameters and assign saved ones (we might want
5039 ;; a `remove-window-parameters' function here).
5040 (dolist (parameter (window-parameters window
))
5041 (set-window-parameter window
(car parameter
) nil
))
5043 (dolist (parameter parameters
)
5044 (set-window-parameter window
(car parameter
) (cdr parameter
))))
5045 ;; Process buffer related state.
5047 (let ((buffer (get-buffer (car state
))))
5049 (with-current-buffer buffer
5050 (set-window-buffer window buffer
)
5051 (set-window-hscroll window
(cdr (assq 'hscroll state
)))
5052 (apply 'set-window-fringes
5053 (cons window
(cdr (assq 'fringes state
))))
5054 (let ((margins (cdr (assq 'margins state
))))
5055 (set-window-margins window
(car margins
) (cdr margins
)))
5056 (let ((scroll-bars (cdr (assq 'scroll-bars state
))))
5057 (set-window-scroll-bars
5058 window
(car scroll-bars
) (nth 2 scroll-bars
)
5059 (nth 3 scroll-bars
)))
5060 (set-window-vscroll window
(cdr (assq 'vscroll state
)))
5061 ;; Adjust vertically.
5062 (if (memq window-size-fixed
'(t height
))
5063 ;; A fixed height window, try to restore the
5067 (if pixelwise
'pixel-height
'total-height
)
5069 (window-size window nil pixelwise
)))
5071 (when (window--resizable-p
5072 window delta nil nil nil nil nil pixelwise
)
5073 (window-resize window delta nil nil pixelwise
)))
5074 ;; Else check whether the window is not high enough.
5076 (window-min-size window nil ignore pixelwise
))
5078 (- min-size
(window-size window nil pixelwise
))))
5079 (when (and (> delta
0)
5080 (window--resizable-p
5081 window delta nil ignore nil nil nil pixelwise
))
5082 (window-resize window delta nil ignore pixelwise
))))
5083 ;; Adjust horizontally.
5084 (if (memq window-size-fixed
'(t width
))
5085 ;; A fixed width window, try to restore the original
5089 (if pixelwise
'pixel-width
'total-width
)
5091 (window-size window t pixelwise
)))
5093 (when (window--resizable-p
5094 window delta nil nil nil nil nil pixelwise
)
5095 (window-resize window delta nil nil pixelwise
)))
5096 ;; Else check whether the window is not wide enough.
5097 (let* ((min-size (window-min-size window t ignore pixelwise
))
5098 (delta (- min-size
(window-size window t pixelwise
))))
5099 (when (and (> delta
0)
5100 (window--resizable-p
5101 window delta t ignore nil nil nil pixelwise
))
5102 (window-resize window delta t ignore pixelwise
))))
5103 ;; Set dedicated status.
5104 (set-window-dedicated-p window
(cdr (assq 'dedicated state
)))
5105 ;; Install positions (maybe we should do this after all
5106 ;; windows have been created and sized).
5108 (set-window-start window
(cdr (assq 'start state
)))
5109 (set-window-point window
(cdr (assq 'point state
))))
5110 ;; Select window if it's the selected one.
5111 (when (cdr (assq 'selected state
))
5112 (select-window window
)))
5113 ;; We don't want to raise an error in case the buffer does
5114 ;; not exist anymore, so we switch to a previous one and
5115 ;; save the window with the intention of deleting it later
5117 (switch-to-prev-buffer window
)
5118 (push window window-state-put-stale-windows
)))))))
5120 (defun window-state-put (state &optional window ignore
)
5121 "Put window state STATE into WINDOW.
5122 STATE should be the state of a window returned by an earlier
5123 invocation of `window-state-get'. Optional argument WINDOW must
5124 specify a valid window and defaults to the selected one. If
5125 WINDOW is not live, replace WINDOW by a live one before putting
5128 Optional argument IGNORE non-nil means ignore minimum window
5129 sizes and fixed size restrictions. IGNORE equal `safe' means
5130 windows can get as small as `window-safe-min-height' and
5131 `window-safe-min-width'."
5132 (setq window-state-put-stale-windows nil
)
5133 (setq window
(window-normalize-window window
))
5135 ;; When WINDOW is internal, reduce it to a live one to put STATE into,
5137 (unless (window-live-p window
)
5138 (let ((root (frame-root-window window
)))
5139 (if (eq window root
)
5140 (setq window
(frame-first-window root
))
5142 (setq window
(catch 'live
5143 (walk-window-subtree
5145 (when (window-live-p window
)
5146 (throw 'live window
)))
5148 (delete-other-windows-internal window root
)))
5150 (let* ((frame (window-frame window
))
5152 ;; We check here (1) whether the total sizes of root window of
5153 ;; STATE and that of WINDOW are equal so we can avoid
5154 ;; calculating new sizes, and (2) if we do have to resize
5155 ;; whether we can do so without violating size restrictions.
5156 (pixelwise (and (cdr (assq 'pixel-width state
))
5157 (cdr (assq 'pixel-height state
))))
5158 (totals (or (and pixelwise
5159 (= (window-pixel-width window
)
5160 (cdr (assq 'pixel-width state
)))
5161 (= (window-pixel-height window
)
5162 (cdr (assq 'pixel-height state
))))
5163 (and (= (window-total-width window
)
5164 (cdr (assq 'total-width state
)))
5165 (= (window-total-height window
)
5166 (cdr (assq 'total-height state
))))))
5167 (min-height (cdr (assq
5168 (if pixelwise
'min-pixel-height
'min-height
)
5170 (min-width (cdr (assq
5171 (if pixelwise
'min-pixel-width
'min-weight
)
5173 (if (and (not totals
)
5174 (or (> min-height
(window-size window nil pixelwise
))
5175 (> min-width
(window-size window t pixelwise
)))
5177 (and (setq min-height
5180 'min-pixel-height-ignore
5186 'min-pixel-width-ignore
5190 (window-size window nil pixelwise
))
5192 (window-size window t pixelwise
)))
5193 (or (not (eq ignore
'safe
))
5194 (and (setq min-height
5197 'min-pixel-height-safe
5203 'min-pixel-width-safe
5207 (window-size window nil pixelwise
))
5209 (window-size window t pixelwise
))))))))
5210 ;; The check above might not catch all errors due to rounding
5211 ;; issues - so IGNORE equal 'safe might not always produce the
5212 ;; minimum possible state. But such configurations hardly make
5214 (error "Window %s too small to accommodate state" window
)
5215 (setq state
(cdr state
))
5216 (setq window-state-put-list nil
)
5217 ;; Work on the windows of a temporary buffer to make sure that
5218 ;; splitting proceeds regardless of any buffer local values of
5219 ;; `window-size-fixed'. Release that buffer after the buffers of
5220 ;; all live windows have been set by `window--state-put-2'.
5222 (set-window-buffer window
(current-buffer))
5223 (window--state-put-1 state window nil totals pixelwise
)
5224 (window--state-put-2 ignore pixelwise
))
5225 (while window-state-put-stale-windows
5226 (let ((window (pop window-state-put-stale-windows
)))
5227 (when (eq (window-deletable-p window
) t
)
5228 (delete-window window
))))
5229 (window--check frame
))))
5231 (defun display-buffer-record-window (type window buffer
)
5232 "Record information for window used by `display-buffer'.
5233 TYPE specifies the type of the calling operation and must be one
5234 of the symbols 'reuse (when WINDOW existed already and was
5235 reused for displaying BUFFER), 'window (when WINDOW was created
5236 on an already existing frame), or 'frame (when WINDOW was
5237 created on a new frame). WINDOW is the window used for or created
5238 by the `display-buffer' routines. BUFFER is the buffer that
5241 This function installs or updates the quit-restore parameter of
5242 WINDOW. The quit-restore parameter is a list of four elements:
5243 The first element is one of the symbols 'window, 'frame, 'same or
5244 'other. The second element is either one of the symbols 'window
5245 or 'frame or a list whose elements are the buffer previously
5246 shown in the window, that buffer's window start and window point,
5247 and the window's height. The third element is the window
5248 selected at the time the parameter was created. The fourth
5252 (if (eq (window-buffer window
) buffer
)
5253 ;; WINDOW shows BUFFER already.
5254 (when (consp (window-parameter window
'quit-restore
))
5255 ;; If WINDOW has a quit-restore parameter, reset its car.
5256 (setcar (window-parameter window
'quit-restore
) 'same
))
5257 ;; WINDOW shows another buffer.
5258 (with-current-buffer (window-buffer window
)
5259 (set-window-parameter
5260 window
'quit-restore
5262 ;; A quadruple of WINDOW's buffer, start, point and height.
5263 (list (current-buffer) (window-start window
)
5264 ;; Preserve window-point-insertion-type (Bug#12588).
5266 (window-point window
) window-point-insertion-type
)
5267 (window-total-height window
))
5268 (selected-window) buffer
)))))
5270 ;; WINDOW has been created on an existing frame.
5271 (set-window-parameter
5272 window
'quit-restore
5273 (list 'window
'window
(selected-window) buffer
)))
5275 ;; WINDOW has been created on a new frame.
5276 (set-window-parameter
5277 window
'quit-restore
5278 (list 'frame
'frame
(selected-window) buffer
)))))
5280 (defcustom display-buffer-function nil
5281 "If non-nil, function to call to handle `display-buffer'.
5282 It will receive two args, the buffer and a flag which if non-nil
5283 means that the currently selected window is not acceptable. It
5284 should choose or create a window, display the specified buffer in
5285 it, and return the window.
5287 The specified function should call `display-buffer-record-window'
5288 with corresponding arguments to set up the quit-restore parameter
5289 of the window used."
5292 (function :tag
"function"))
5295 (make-obsolete-variable 'display-buffer-function
5296 'display-buffer-alist
"24.3")
5298 ;; Eventually, we want to turn this into a defvar; instead of
5299 ;; customizing this, the user should use a `pop-up-frame-parameters'
5300 ;; alist entry in `display-buffer-base-action'.
5301 (defcustom pop-up-frame-alist nil
5302 "Alist of parameters for automatically generated new frames.
5303 If non-nil, the value you specify here is used by the default
5304 `pop-up-frame-function' for the creation of new frames.
5306 Since `pop-up-frame-function' is used by `display-buffer' for
5307 making new frames, any value specified here by default affects
5308 the automatic generation of new frames via `display-buffer' and
5309 all functions based on it. The behavior of `make-frame' is not
5310 affected by this variable."
5311 :type
'(repeat (cons :format
"%v"
5312 (symbol :tag
"Parameter")
5313 (sexp :tag
"Value")))
5316 (defcustom pop-up-frame-function
5317 (lambda () (make-frame pop-up-frame-alist
))
5318 "Function used by `display-buffer' for creating a new frame.
5319 This function is called with no arguments and should return a new
5320 frame. The default value calls `make-frame' with the argument
5321 `pop-up-frame-alist'."
5325 (defcustom special-display-buffer-names nil
5326 "List of names of buffers that should be displayed specially.
5327 Displaying a buffer with `display-buffer' or `pop-to-buffer', if
5328 its name is in this list, displays the buffer in a way specified
5329 by `special-display-function'. `special-display-popup-frame'
5330 \(the default for `special-display-function') usually displays
5331 the buffer in a separate frame made with the parameters specified
5332 by `special-display-frame-alist'. If `special-display-function'
5333 has been set to some other function, that function is called with
5334 the buffer as first, and nil as second argument.
5336 Alternatively, an element of this list can be specified as
5337 \(BUFFER-NAME FRAME-PARAMETERS), where BUFFER-NAME is a buffer
5338 name and FRAME-PARAMETERS an alist of (PARAMETER . VALUE) pairs.
5339 `special-display-popup-frame' will interpret such pairs as frame
5340 parameters when it creates a special frame, overriding the
5341 corresponding values from `special-display-frame-alist'.
5343 As a special case, if FRAME-PARAMETERS contains (same-window . t)
5344 `special-display-popup-frame' displays that buffer in the
5345 selected window. If FRAME-PARAMETERS contains (same-frame . t),
5346 it displays that buffer in a window on the selected frame.
5348 If `special-display-function' specifies some other function than
5349 `special-display-popup-frame', that function is called with the
5350 buffer named BUFFER-NAME as first, and FRAME-PARAMETERS as second
5353 Finally, an element of this list can be also specified as
5354 \(BUFFER-NAME FUNCTION OTHER-ARGS). In that case,
5355 `special-display-popup-frame' will call FUNCTION with the buffer
5356 named BUFFER-NAME as first argument, and OTHER-ARGS as the
5359 Any alternative function specified here is responsible for
5360 setting up the quit-restore parameter of the window used.
5362 If this variable appears \"not to work\", because you added a
5363 name to it but the corresponding buffer is displayed in the
5364 selected window, look at the values of `same-window-buffer-names'
5365 and `same-window-regexps'. Those variables take precedence over
5368 See also `special-display-regexps'."
5370 (choice :tag
"Buffer"
5372 (string :format
"%v")
5373 (cons :tag
"With parameters"
5376 (string :format
"%v")
5377 (repeat :tag
"Parameters"
5379 (symbol :tag
"Parameter")
5380 (sexp :tag
"Value"))))
5381 (list :tag
"With function"
5384 (string :format
"%v")
5385 (function :tag
"Function")
5386 (repeat :tag
"Arguments" (sexp)))))
5389 (make-obsolete-variable 'special-display-buffer-names
'display-buffer-alist
"24.3")
5390 (put 'special-display-buffer-names
'risky-local-variable t
)
5392 (defcustom special-display-regexps nil
5393 "List of regexps saying which buffers should be displayed specially.
5394 Displaying a buffer with `display-buffer' or `pop-to-buffer', if
5395 any regexp in this list matches its name, displays it specially
5396 using `special-display-function'. `special-display-popup-frame'
5397 \(the default for `special-display-function') usually displays
5398 the buffer in a separate frame made with the parameters specified
5399 by `special-display-frame-alist'. If `special-display-function'
5400 has been set to some other function, that function is called with
5401 the buffer as first, and nil as second argument.
5403 Alternatively, an element of this list can be specified as
5404 \(REGEXP FRAME-PARAMETERS), where REGEXP is a regexp as above and
5405 FRAME-PARAMETERS an alist of (PARAMETER . VALUE) pairs.
5406 `special-display-popup-frame' will then interpret these pairs as
5407 frame parameters when creating a special frame for a buffer whose
5408 name matches REGEXP, overriding the corresponding values from
5409 `special-display-frame-alist'.
5411 As a special case, if FRAME-PARAMETERS contains (same-window . t)
5412 `special-display-popup-frame' displays buffers matching REGEXP in
5413 the selected window. (same-frame . t) in FRAME-PARAMETERS means
5414 to display such buffers in a window on the selected frame.
5416 If `special-display-function' specifies some other function than
5417 `special-display-popup-frame', that function is called with the
5418 buffer whose name matched REGEXP as first, and FRAME-PARAMETERS
5421 Finally, an element of this list can be also specified as
5422 \(REGEXP FUNCTION OTHER-ARGS). `special-display-popup-frame'
5423 will then call FUNCTION with the buffer whose name matched
5424 REGEXP as first, and OTHER-ARGS as second argument.
5426 Any alternative function specified here is responsible for
5427 setting up the quit-restore parameter of the window used.
5429 If this variable appears \"not to work\", because you added a
5430 name to it but the corresponding buffer is displayed in the
5431 selected window, look at the values of `same-window-buffer-names'
5432 and `same-window-regexps'. Those variables take precedence over
5435 See also `special-display-buffer-names'."
5437 (choice :tag
"Buffer"
5439 (regexp :format
"%v")
5440 (cons :tag
"With parameters"
5443 (regexp :format
"%v")
5444 (repeat :tag
"Parameters"
5446 (symbol :tag
"Parameter")
5447 (sexp :tag
"Value"))))
5448 (list :tag
"With function"
5451 (regexp :format
"%v")
5452 (function :tag
"Function")
5453 (repeat :tag
"Arguments" (sexp)))))
5456 (make-obsolete-variable 'special-display-regexps
'display-buffer-alist
"24.3")
5457 (put 'special-display-regexps
'risky-local-variable t
)
5459 (defun special-display-p (buffer-name)
5460 "Return non-nil if a buffer named BUFFER-NAME gets a special frame.
5461 More precisely, return t if `special-display-buffer-names' or
5462 `special-display-regexps' contain a string entry equaling or
5463 matching BUFFER-NAME. If `special-display-buffer-names' or
5464 `special-display-regexps' contain a list entry whose car equals
5465 or matches BUFFER-NAME, the return value is the cdr of that
5469 ((member buffer-name special-display-buffer-names
)
5471 ((setq tmp
(assoc buffer-name special-display-buffer-names
))
5474 (dolist (regexp special-display-regexps
)
5477 (when (string-match-p regexp buffer-name
)
5479 ((and (consp regexp
) (stringp (car regexp
))
5480 (string-match-p (car regexp
) buffer-name
))
5481 (throw 'found
(cdr regexp
))))))))))
5483 (defcustom special-display-frame-alist
5484 '((height .
14) (width .
80) (unsplittable . t
))
5485 "Alist of parameters for special frames.
5486 Special frames are used for buffers whose names are listed in
5487 `special-display-buffer-names' and for buffers whose names match
5488 one of the regular expressions in `special-display-regexps'.
5490 This variable can be set in your init file, like this:
5492 (setq special-display-frame-alist '((width . 80) (height . 20)))
5494 These supersede the values given in `default-frame-alist'."
5495 :type
'(repeat (cons :format
"%v"
5496 (symbol :tag
"Parameter")
5497 (sexp :tag
"Value")))
5499 (make-obsolete-variable 'special-display-frame-alist
'display-buffer-alist
"24.3")
5501 (defun special-display-popup-frame (buffer &optional args
)
5502 "Pop up a frame displaying BUFFER and return its window.
5503 If BUFFER is already displayed in a visible or iconified frame,
5504 raise that frame. Otherwise, display BUFFER in a new frame.
5506 Optional argument ARGS is a list specifying additional
5509 If ARGS is an alist, use it as a list of frame parameters. If
5510 these parameters contain (same-window . t), display BUFFER in
5511 the selected window. If they contain (same-frame . t), display
5512 BUFFER in a window of the selected frame.
5514 If ARGS is a list whose car is a symbol, use (car ARGS) as a
5515 function to do the work. Pass it BUFFER as first argument, and
5516 pass the elements of (cdr ARGS) as the remaining arguments."
5517 (if (and args
(symbolp (car args
)))
5518 (apply (car args
) buffer
(cdr args
))
5519 (let ((window (get-buffer-window buffer
0)))
5521 ;; If we have a window already, make it visible.
5523 (let ((frame (window-frame window
)))
5524 (make-frame-visible frame
)
5526 (display-buffer-record-window 'reuse window buffer
)
5528 ;; Reuse the current window if the user requested it.
5529 (when (cdr (assq 'same-window args
))
5531 (progn (switch-to-buffer buffer nil t
) (selected-window))
5533 ;; Stay on the same frame if requested.
5534 (when (or (cdr (assq 'same-frame args
)) (cdr (assq 'same-window args
)))
5535 (let* ((pop-up-windows t
)
5537 special-display-buffer-names special-display-regexps
)
5538 (display-buffer buffer
)))
5539 ;; If no window yet, make one in a new frame.
5541 (with-current-buffer buffer
5542 (make-frame (append args special-display-frame-alist
))))
5543 (window (frame-selected-window frame
)))
5544 (display-buffer-record-window 'frame window buffer
)
5545 (unless (eq buffer
(window-buffer window
))
5546 (set-window-buffer window buffer
)
5547 (set-window-prev-buffers window nil
))
5548 (set-window-dedicated-p window t
)
5551 (defcustom special-display-function
'special-display-popup-frame
5552 "Function to call for displaying special buffers.
5553 This function is called with two arguments - the buffer and,
5554 optionally, a list - and should return a window displaying that
5555 buffer. The default value usually makes a separate frame for the
5556 buffer using `special-display-frame-alist' to specify the frame
5557 parameters. See the definition of `special-display-popup-frame'
5558 for how to specify such a function.
5560 A buffer is special when its name is either listed in
5561 `special-display-buffer-names' or matches a regexp in
5562 `special-display-regexps'.
5564 The specified function should call `display-buffer-record-window'
5565 with corresponding arguments to set up the quit-restore parameter
5566 of the window used."
5569 (make-obsolete-variable 'special-display-function
'display-buffer-alist
"24.3")
5571 (defcustom same-window-buffer-names nil
5572 "List of names of buffers that should appear in the \"same\" window.
5573 `display-buffer' and `pop-to-buffer' show a buffer whose name is
5574 on this list in the selected rather than some other window.
5576 An element of this list can be a cons cell instead of just a
5577 string. In that case, the cell's car must be a string specifying
5578 the buffer name. This is for compatibility with
5579 `special-display-buffer-names'; the cdr of the cons cell is
5582 See also `same-window-regexps'."
5583 :type
'(repeat (string :format
"%v"))
5586 (defcustom same-window-regexps nil
5587 "List of regexps saying which buffers should appear in the \"same\" window.
5588 `display-buffer' and `pop-to-buffer' show a buffer whose name
5589 matches a regexp on this list in the selected rather than some
5592 An element of this list can be a cons cell instead of just a
5593 string. In that case, the cell's car must be a regexp matching
5594 the buffer name. This is for compatibility with
5595 `special-display-regexps'; the cdr of the cons cell is ignored.
5597 See also `same-window-buffer-names'."
5598 :type
'(repeat (regexp :format
"%v"))
5601 (defun same-window-p (buffer-name)
5602 "Return non-nil if a buffer named BUFFER-NAME would be shown in the \"same\" window.
5603 This function returns non-nil if `display-buffer' or
5604 `pop-to-buffer' would show a buffer named BUFFER-NAME in the
5605 selected rather than (as usual) some other window. See
5606 `same-window-buffer-names' and `same-window-regexps'."
5608 ((not (stringp buffer-name
)))
5609 ;; The elements of `same-window-buffer-names' can be buffer
5610 ;; names or cons cells whose cars are buffer names.
5611 ((member buffer-name same-window-buffer-names
))
5612 ((assoc buffer-name same-window-buffer-names
))
5614 (dolist (regexp same-window-regexps
)
5615 ;; The elements of `same-window-regexps' can be regexps
5616 ;; or cons cells whose cars are regexps.
5617 (when (or (and (stringp regexp
)
5618 (string-match-p regexp buffer-name
))
5619 (and (consp regexp
) (stringp (car regexp
))
5620 (string-match-p (car regexp
) buffer-name
)))
5621 (throw 'found t
)))))))
5623 (defcustom pop-up-frames nil
5624 "Whether `display-buffer' should make a separate frame.
5625 If nil, never make a separate frame.
5626 If the value is `graphic-only', make a separate frame
5627 on graphic displays only.
5628 Any other non-nil value means always make a separate frame."
5630 (const :tag
"Never" nil
)
5631 (const :tag
"On graphic displays only" graphic-only
)
5632 (const :tag
"Always" t
))
5635 (defcustom display-buffer-reuse-frames nil
5636 "Non-nil means `display-buffer' should reuse frames.
5637 If the buffer in question is already displayed in a frame, raise
5643 (make-obsolete-variable
5644 'display-buffer-reuse-frames
5645 "use a `reusable-frames' alist entry in `display-buffer-alist'."
5648 (defcustom pop-up-windows t
5649 "Non-nil means `display-buffer' should make a new window."
5653 (defcustom split-window-preferred-function
'split-window-sensibly
5654 "Function called by `display-buffer' routines to split a window.
5655 This function is called with a window as single argument and is
5656 supposed to split that window and return the new window. If the
5657 window can (or shall) not be split, it is supposed to return nil.
5658 The default is to call the function `split-window-sensibly' which
5659 tries to split the window in a way which seems most suitable.
5660 You can customize the options `split-height-threshold' and/or
5661 `split-width-threshold' in order to have `split-window-sensibly'
5662 prefer either vertical or horizontal splitting.
5664 If you set this to any other function, bear in mind that the
5665 `display-buffer' routines may call this function two times. The
5666 argument of the first call is the largest window on its frame.
5667 If that call fails to return a live window, the function is
5668 called again with the least recently used window as argument. If
5669 that call fails too, `display-buffer' will use an existing window
5670 to display its buffer.
5672 The window selected at the time `display-buffer' was invoked is
5673 still selected when this function is called. Hence you can
5674 compare the window argument with the value of `selected-window'
5675 if you intend to split the selected window instead or if you do
5676 not want to split the selected window."
5681 (defcustom split-height-threshold
80
5682 "Minimum height for splitting windows sensibly.
5683 If this is an integer, `split-window-sensibly' may split a window
5684 vertically only if it has at least this many lines. If this is
5685 nil, `split-window-sensibly' is not allowed to split a window
5686 vertically. If, however, a window is the only window on its
5687 frame, `split-window-sensibly' may split it vertically
5688 disregarding the value of this variable."
5689 :type
'(choice (const nil
) (integer :tag
"lines"))
5693 (defcustom split-width-threshold
160
5694 "Minimum width for splitting windows sensibly.
5695 If this is an integer, `split-window-sensibly' may split a window
5696 horizontally only if it has at least this many columns. If this
5697 is nil, `split-window-sensibly' is not allowed to split a window
5699 :type
'(choice (const nil
) (integer :tag
"columns"))
5703 (defun window-splittable-p (window &optional horizontal
)
5704 "Return non-nil if `split-window-sensibly' may split WINDOW.
5705 Optional argument HORIZONTAL nil or omitted means check whether
5706 `split-window-sensibly' may split WINDOW vertically. HORIZONTAL
5707 non-nil means check whether WINDOW may be split horizontally.
5709 WINDOW may be split vertically when the following conditions
5711 - `window-size-fixed' is either nil or equals `width' for the
5713 - `split-height-threshold' is an integer and WINDOW is at least as
5714 high as `split-height-threshold'.
5715 - When WINDOW is split evenly, the emanating windows are at least
5716 `window-min-height' lines tall and can accommodate at least one
5717 line plus - if WINDOW has one - a mode line.
5719 WINDOW may be split horizontally when the following conditions
5721 - `window-size-fixed' is either nil or equals `height' for the
5723 - `split-width-threshold' is an integer and WINDOW is at least as
5724 wide as `split-width-threshold'.
5725 - When WINDOW is split evenly, the emanating windows are at least
5726 `window-min-width' or two (whichever is larger) columns wide."
5727 (when (window-live-p window
)
5728 (with-current-buffer (window-buffer window
)
5730 ;; A window can be split horizontally when its width is not
5731 ;; fixed, it is at least `split-width-threshold' columns wide
5732 ;; and at least twice as wide as `window-min-width' and 2 (the
5733 ;; latter value is hardcoded).
5734 (and (memq window-size-fixed
'(nil height
))
5735 ;; Testing `window-full-width-p' here hardly makes any
5736 ;; sense nowadays. This can be done more intuitively by
5737 ;; setting up `split-width-threshold' appropriately.
5738 (numberp split-width-threshold
)
5739 (>= (window-width window
)
5740 (max split-width-threshold
5741 (* 2 (max window-min-width
2)))))
5742 ;; A window can be split vertically when its height is not
5743 ;; fixed, it is at least `split-height-threshold' lines high,
5744 ;; and it is at least twice as high as `window-min-height' and 2
5745 ;; if it has a mode line or 1.
5746 (and (memq window-size-fixed
'(nil width
))
5747 (numberp split-height-threshold
)
5748 (>= (window-height window
)
5749 (max split-height-threshold
5750 (* 2 (max window-min-height
5751 (if mode-line-format
2 1))))))))))
5753 (defun split-window-sensibly (&optional window
)
5754 "Split WINDOW in a way suitable for `display-buffer'.
5755 WINDOW defaults to the currently selected window.
5756 If `split-height-threshold' specifies an integer, WINDOW is at
5757 least `split-height-threshold' lines tall and can be split
5758 vertically, split WINDOW into two windows one above the other and
5759 return the lower window. Otherwise, if `split-width-threshold'
5760 specifies an integer, WINDOW is at least `split-width-threshold'
5761 columns wide and can be split horizontally, split WINDOW into two
5762 windows side by side and return the window on the right. If this
5763 can't be done either and WINDOW is the only window on its frame,
5764 try to split WINDOW vertically disregarding any value specified
5765 by `split-height-threshold'. If that succeeds, return the lower
5766 window. Return nil otherwise.
5768 By default `display-buffer' routines call this function to split
5769 the largest or least recently used window. To change the default
5770 customize the option `split-window-preferred-function'.
5772 You can enforce this function to not split WINDOW horizontally,
5773 by setting (or binding) the variable `split-width-threshold' to
5774 nil. If, in addition, you set `split-height-threshold' to zero,
5775 chances increase that this function does split WINDOW vertically.
5777 In order to not split WINDOW vertically, set (or bind) the
5778 variable `split-height-threshold' to nil. Additionally, you can
5779 set `split-width-threshold' to zero to make a horizontal split
5780 more likely to occur.
5782 Have a look at the function `window-splittable-p' if you want to
5783 know how `split-window-sensibly' determines whether WINDOW can be
5785 (let ((window (or window
(selected-window))))
5786 (or (and (window-splittable-p window
)
5787 ;; Split window vertically.
5788 (with-selected-window window
5789 (split-window-below)))
5790 (and (window-splittable-p window t
)
5791 ;; Split window horizontally.
5792 (with-selected-window window
5793 (split-window-right)))
5794 (and (eq window
(frame-root-window (window-frame window
)))
5795 (not (window-minibuffer-p window
))
5796 ;; If WINDOW is the only window on its frame and is not the
5797 ;; minibuffer window, try to split it vertically disregarding
5798 ;; the value of `split-height-threshold'.
5799 (let ((split-height-threshold 0))
5800 (when (window-splittable-p window
)
5801 (with-selected-window window
5802 (split-window-below))))))))
5804 (defun window--try-to-split-window (window &optional alist
)
5805 "Try to split WINDOW.
5806 Return value returned by `split-window-preferred-function' if it
5807 represents a live window, nil otherwise."
5808 (and (window-live-p window
)
5809 (not (frame-parameter (window-frame window
) 'unsplittable
))
5810 (let* ((window-combination-limit
5811 ;; When `window-combination-limit' equals
5812 ;; `display-buffer' or equals `resize-window' and a
5813 ;; `window-height' or `window-width' alist entry are
5814 ;; present, bind it to t so resizing steals space
5815 ;; preferably from the window that was split.
5816 (if (or (eq window-combination-limit
'display-buffer
)
5817 (and (eq window-combination-limit
'window-size
)
5818 (or (cdr (assq 'window-height alist
))
5819 (cdr (assq 'window-width alist
)))))
5821 window-combination-limit
))
5823 ;; Since `split-window-preferred-function' might
5824 ;; throw an error use `condition-case'.
5826 (funcall split-window-preferred-function window
)
5828 (and (window-live-p new-window
) new-window
))))
5830 (defun window--frame-usable-p (frame)
5831 "Return FRAME if it can be used to display a buffer."
5832 (when (frame-live-p frame
)
5833 (let ((window (frame-root-window frame
)))
5834 ;; `frame-root-window' may be an internal window which is considered
5835 ;; "dead" by `window-live-p'. Hence if `window' is not live we
5836 ;; implicitly know that `frame' has a visible window we can use.
5837 (unless (and (window-live-p window
)
5838 (or (window-minibuffer-p window
)
5839 ;; If the window is soft-dedicated, the frame is usable.
5840 ;; Actually, even if the window is really dedicated,
5841 ;; the frame is still usable by splitting it.
5842 ;; At least Emacs-22 allowed it, and it is desirable
5843 ;; when displaying same-frame windows.
5844 nil
; (eq t (window-dedicated-p window))
5848 (defcustom even-window-heights t
5849 "If non-nil `display-buffer' will try to even window heights.
5850 Otherwise `display-buffer' will leave the window configuration
5851 alone. Heights are evened only when `display-buffer' chooses a
5852 window that appears above or below the selected window."
5856 (defun window--even-window-heights (window)
5857 "Even heights of WINDOW and selected window.
5858 Do this only if these windows are vertically adjacent to each
5859 other, `even-window-heights' is non-nil, and the selected window
5860 is higher than WINDOW."
5861 (when (and even-window-heights
5862 ;; Even iff WINDOW forms a vertical combination with the
5863 ;; selected window, and WINDOW's height exceeds that of the
5864 ;; selected window, see also bug#11880.
5865 (window-combined-p window
)
5866 (= (window-child-count (window-parent window
)) 2)
5867 (eq (window-parent) (window-parent window
))
5868 (> (window-total-height) (window-total-height window
)))
5869 ;; Don't throw an error if we can't even window heights for
5873 (/ (- (window-total-height window
) (window-total-height)) 2))
5876 (defun window--display-buffer (buffer window type
&optional alist dedicated
)
5877 "Display BUFFER in WINDOW.
5878 TYPE must be one of the symbols `reuse', `window' or `frame' and
5879 is passed unaltered to `display-buffer-record-window'. ALIST is
5880 the alist argument of `display-buffer'. Set `window-dedicated-p'
5881 to DEDICATED if non-nil. Return WINDOW if BUFFER and WINDOW are
5883 (when (and (buffer-live-p buffer
) (window-live-p window
))
5884 (display-buffer-record-window type window buffer
)
5885 (unless (eq buffer
(window-buffer window
))
5886 (set-window-dedicated-p window nil
)
5887 (set-window-buffer window buffer
)
5889 (set-window-dedicated-p window dedicated
))
5890 (when (memq type
'(window frame
))
5891 (set-window-prev-buffers window nil
)))
5892 (let ((parameter (window-parameter window
'quit-restore
))
5893 (height (cdr (assq 'window-height alist
)))
5894 (width (cdr (assq 'window-width alist
)))
5895 (size (cdr (assq 'window-size alist
))))
5897 ((or (eq type
'frame
)
5898 (and (eq (car parameter
) 'same
)
5899 (eq (nth 1 parameter
) 'frame
)))
5900 ;; Adjust size of frame if asked for.
5904 (let ((width (car size
))
5906 (frame (window-frame window
)))
5907 (when (and (numberp width
) (numberp height
))
5909 frame
(+ (frame-height frame
)
5910 (- height
(window-total-height window
))))
5912 frame
(+ (frame-width frame
)
5913 (- width
(window-total-width window
)))))))
5915 (ignore-errors (funcall size window
)))))
5916 ((or (eq type
'window
)
5917 (and (eq (car parameter
) 'same
)
5918 (eq (nth 1 parameter
) 'window
)))
5919 ;; Adjust height of window if asked for.
5924 (if (integerp height
)
5927 (* (window-total-height (frame-root-window window
))
5929 (delta (- new-height
(window-total-height window
))))
5930 (when (and (window--resizable-p window delta nil
'safe
)
5931 (window-combined-p window
))
5932 (window-resize window delta nil
'safe
))))
5934 (ignore-errors (funcall height window
))))
5935 ;; Adjust width of window if asked for.
5940 (if (integerp width
)
5943 (* (window-total-width (frame-root-window window
))
5945 (delta (- new-width
(window-total-width window
))))
5946 (when (and (window--resizable-p window delta t
'safe
)
5947 (window-combined-p window t
))
5948 (window-resize window delta t
'safe
))))
5950 (ignore-errors (funcall width window
)))))))
5954 (defun window--maybe-raise-frame (frame)
5955 (let ((visible (frame-visible-p frame
)))
5956 (unless (or (not visible
)
5957 ;; Assume the selected frame is already visible enough.
5958 (eq frame
(selected-frame))
5959 ;; Assume the frame from which we invoked the
5960 ;; minibuffer is visible.
5961 (and (minibuffer-window-active-p (selected-window))
5962 (eq frame
(window-frame (minibuffer-selected-window)))))
5963 (raise-frame frame
))))
5965 ;; FIXME: Not implemented.
5966 ;; FIXME: By the way, there could be more levels of dedication:
5967 ;; - `barely' dedicated doesn't prevent reuse of the window, only records that
5968 ;; the window hasn't been used for something else yet.
5969 ;; - `softly' dedicated only allows reuse when asked explicitly.
5970 ;; - `strongly' never allows reuse.
5971 (defvar display-buffer-mark-dedicated nil
5972 "If non-nil, `display-buffer' marks the windows it creates as dedicated.
5973 The actual non-nil value of this variable will be copied to the
5974 `window-dedicated-p' flag.")
5976 (defconst display-buffer--action-function-custom-type
5977 '(choice :tag
"Function"
5978 (const :tag
"--" ignore
) ; default for insertion
5979 (const display-buffer-reuse-window
)
5980 (const display-buffer-pop-up-window
)
5981 (const display-buffer-same-window
)
5982 (const display-buffer-pop-up-frame
)
5983 (const display-buffer-in-previous-window
)
5984 (const display-buffer-use-some-window
)
5985 (function :tag
"Other function"))
5986 "Custom type for `display-buffer' action functions.")
5988 (defconst display-buffer--action-custom-type
5989 `(cons :tag
"Action"
5990 (choice :tag
"Action functions"
5991 ,display-buffer--action-function-custom-type
5993 :tag
"List of functions"
5994 ,display-buffer--action-function-custom-type
))
5995 (alist :tag
"Action arguments"
5997 :value-type
(sexp :tag
"Value")))
5998 "Custom type for `display-buffer' actions.")
6000 (defvar display-buffer-overriding-action
'(nil . nil
)
6001 "Overriding action to perform to display a buffer.
6002 It should be a cons cell (FUNCTION . ALIST), where FUNCTION is a
6003 function or a list of functions. Each function should accept two
6004 arguments: a buffer to display and an alist similar to ALIST.
6005 See `display-buffer' for details.")
6006 (put 'display-buffer-overriding-action
'risky-local-variable t
)
6008 (defcustom display-buffer-alist nil
6009 "Alist of conditional actions for `display-buffer'.
6010 This is a list of elements (CONDITION . ACTION), where:
6012 CONDITION is either a regexp matching buffer names, or a
6013 function that takes two arguments - a buffer name and the
6014 ACTION argument of `display-buffer' - and returns a boolean.
6016 ACTION is a cons cell (FUNCTION . ALIST), where FUNCTION is a
6017 function or a list of functions. Each such function should
6018 accept two arguments: a buffer to display and an alist of the
6019 same form as ALIST. See `display-buffer' for details.
6021 `display-buffer' scans this alist until it either finds a
6022 matching regular expression or the function specified by a
6023 condition returns non-nil. In any of these cases, it adds the
6024 associated action to the list of actions it will try."
6025 :type
`(alist :key-type
6026 (choice :tag
"Condition"
6028 (function :tag
"Matcher function"))
6029 :value-type
,display-buffer--action-custom-type
)
6034 (defcustom display-buffer-base-action
'(nil . nil
)
6035 "User-specified default action for `display-buffer'.
6036 It should be a cons cell (FUNCTION . ALIST), where FUNCTION is a
6037 function or a list of functions. Each function should accept two
6038 arguments: a buffer to display and an alist similar to ALIST.
6039 See `display-buffer' for details."
6040 :type display-buffer--action-custom-type
6045 (defconst display-buffer-fallback-action
6046 '((display-buffer--maybe-same-window ;FIXME: why isn't this redundant?
6047 display-buffer-reuse-window
6048 display-buffer--maybe-pop-up-frame-or-window
6049 display-buffer-in-previous-window
6050 display-buffer-use-some-window
6051 ;; If all else fails, pop up a new frame.
6052 display-buffer-pop-up-frame
))
6053 "Default fallback action for `display-buffer'.
6054 This is the action used by `display-buffer' if no other actions
6055 specified, e.g. by the user options `display-buffer-alist' or
6056 `display-buffer-base-action'. See `display-buffer'.")
6057 (put 'display-buffer-fallback-action
'risky-local-variable t
)
6059 (defun display-buffer-assq-regexp (buffer-name alist action
)
6060 "Retrieve ALIST entry corresponding to BUFFER-NAME.
6061 ACTION is the action argument passed to `display-buffer'."
6063 (dolist (entry alist
)
6064 (let ((key (car entry
)))
6065 (when (or (and (stringp key
)
6066 (string-match-p key buffer-name
))
6067 (and (functionp key
)
6068 (funcall key buffer-name action
)))
6069 (throw 'match
(cdr entry
)))))))
6071 (defvar display-buffer--same-window-action
6072 '(display-buffer-same-window
6073 (inhibit-same-window . nil
))
6074 "A `display-buffer' action for displaying in the same window.")
6075 (put 'display-buffer--same-window-action
'risky-local-variable t
)
6077 (defvar display-buffer--other-frame-action
6078 '((display-buffer-reuse-window
6079 display-buffer-pop-up-frame
)
6080 (reusable-frames .
0)
6081 (inhibit-same-window . t
))
6082 "A `display-buffer' action for displaying in another frame.")
6083 (put 'display-buffer--other-frame-action
'risky-local-variable t
)
6085 (defun display-buffer (buffer-or-name &optional action frame
)
6086 "Display BUFFER-OR-NAME in some window, without selecting it.
6087 BUFFER-OR-NAME must be a buffer or the name of an existing
6088 buffer. Return the window chosen for displaying BUFFER-OR-NAME,
6089 or nil if no such window is found.
6091 Optional argument ACTION, if non-nil, should specify a display
6092 action. Its form is described below.
6094 Optional argument FRAME, if non-nil, acts like an additional
6095 ALIST entry (reusable-frames . FRAME) to the action list of ACTION,
6096 specifying the frame(s) to search for a window that is already
6097 displaying the buffer. See `display-buffer-reuse-window'
6099 If ACTION is non-nil, it should have the form (FUNCTION . ALIST),
6100 where FUNCTION is either a function or a list of functions, and
6101 ALIST is an arbitrary association list (alist).
6103 Each such FUNCTION should accept two arguments: the buffer to
6104 display and an alist. Based on those arguments, it should
6105 display the buffer and return the window. If the caller is
6106 prepared to handle the case of not displaying the buffer
6107 and returning nil from `display-buffer' it should pass
6108 \(allow-no-window . t) as an element of the ALIST.
6110 The `display-buffer' function builds a function list and an alist
6111 by combining the functions and alists specified in
6112 `display-buffer-overriding-action', `display-buffer-alist', the
6113 ACTION argument, `display-buffer-base-action', and
6114 `display-buffer-fallback-action' (in order). Then it calls each
6115 function in the combined function list in turn, passing the
6116 buffer as the first argument and the combined alist as the second
6117 argument, until one of the functions returns non-nil.
6119 If ACTION is nil, the function list and the alist are built using
6120 only the other variables mentioned above.
6122 Available action functions include:
6123 `display-buffer-same-window'
6124 `display-buffer-reuse-window'
6125 `display-buffer-pop-up-frame'
6126 `display-buffer-pop-up-window'
6127 `display-buffer-in-previous-window'
6128 `display-buffer-use-some-window'
6130 Recognized alist entries include:
6132 `inhibit-same-window' -- A non-nil value prevents the same
6133 window from being used for display.
6135 `inhibit-switch-frame' -- A non-nil value prevents any other
6136 frame from being raised or selected,
6137 even if the window is displayed there.
6139 `reusable-frames' -- Value specifies frame(s) to search for a
6140 window that already displays the buffer.
6141 See `display-buffer-reuse-window'.
6143 `pop-up-frame-parameters' -- Value specifies an alist of frame
6144 parameters to give a new frame, if
6147 `window-height' -- Value specifies either an integer (the number
6148 of lines of a new window), a floating point number (the
6149 fraction of a new window with respect to the height of the
6150 frame's root window) or a function to be called with one
6151 argument - a new window. The function is supposed to adjust
6152 the height of the window; its return value is ignored.
6153 Suitable functions are `shrink-window-if-larger-than-buffer'
6154 and `fit-window-to-buffer'.
6156 `window-width' -- Value specifies either an integer (the number
6157 of columns of a new window), a floating point number (the
6158 fraction of a new window with respect to the width of the
6159 frame's root window) or a function to be called with one
6160 argument - a new window. The function is supposed to adjust
6161 the width of the window; its return value is ignored.
6163 `allow-no-window' -- A non-nil value indicates readiness for the case
6164 of not displaying the buffer and FUNCTION can safely return
6165 a non-window value to suppress displaying.
6167 The ACTION argument to `display-buffer' can also have a non-nil
6168 and non-list value. This means to display the buffer in a window
6169 other than the selected one, even if it is already displayed in
6170 the selected window. If called interactively with a prefix
6171 argument, ACTION is t."
6172 (interactive (list (read-buffer "Display buffer: " (other-buffer))
6173 (if current-prefix-arg t
)))
6174 (let ((buffer (if (bufferp buffer-or-name
)
6176 (get-buffer buffer-or-name
)))
6177 ;; Make sure that when we split windows the old window keeps
6178 ;; point, bug#14829.
6179 (split-window-keep-point t
)
6180 ;; Handle the old form of the first argument.
6181 (inhibit-same-window (and action
(not (listp action
)))))
6182 (unless (listp action
) (setq action nil
))
6183 (if display-buffer-function
6184 ;; If `display-buffer-function' is defined, let it do the job.
6185 (funcall display-buffer-function buffer inhibit-same-window
)
6186 ;; Otherwise, use the defined actions.
6188 (display-buffer-assq-regexp
6189 (buffer-name buffer
) display-buffer-alist action
))
6190 (special-action (display-buffer--special-action buffer
))
6191 ;; Extra actions from the arguments to this function:
6193 (cons nil
(append (if inhibit-same-window
6194 '((inhibit-same-window . t
)))
6196 `((reusable-frames .
,frame
))))))
6197 ;; Construct action function list and action alist.
6198 (actions (list display-buffer-overriding-action
6199 user-action special-action action extra-action
6200 display-buffer-base-action
6201 display-buffer-fallback-action
))
6202 (functions (apply 'append
6205 (if (functionp x
) (list x
) x
))
6207 (alist (apply 'append
(mapcar 'cdr actions
)))
6209 (unless (buffer-live-p buffer
)
6210 (error "Invalid buffer"))
6211 (while (and functions
(not window
))
6212 (setq window
(funcall (car functions
) buffer alist
)
6213 functions
(cdr functions
)))
6214 (and (windowp window
) window
)))))
6216 (defun display-buffer-other-frame (buffer)
6217 "Display buffer BUFFER preferably in another frame.
6218 This uses the function `display-buffer' as a subroutine; see
6219 its documentation for additional customization information."
6220 (interactive "BDisplay buffer in other frame: ")
6221 (display-buffer buffer display-buffer--other-frame-action t
))
6223 ;;; `display-buffer' action functions:
6225 (defun display-buffer-same-window (buffer alist
)
6226 "Display BUFFER in the selected window.
6227 This fails if ALIST has a non-nil `inhibit-same-window' entry, or
6228 if the selected window is a minibuffer window or is dedicated to
6229 another buffer; in that case, return nil. Otherwise, return the
6231 (unless (or (cdr (assq 'inhibit-same-window alist
))
6232 (window-minibuffer-p)
6233 (window-dedicated-p))
6234 (window--display-buffer buffer
(selected-window) 'reuse alist
)))
6236 (defun display-buffer--maybe-same-window (buffer alist
)
6237 "Conditionally display BUFFER in the selected window.
6238 If `same-window-p' returns non-nil for BUFFER's name, call
6239 `display-buffer-same-window' and return its value. Otherwise,
6241 (and (same-window-p (buffer-name buffer
))
6242 (display-buffer-same-window buffer alist
)))
6244 (defun display-buffer-reuse-window (buffer alist
)
6245 "Return a window that is already displaying BUFFER.
6246 Return nil if no usable window is found.
6248 If ALIST has a non-nil `inhibit-same-window' entry, the selected
6249 window is not eligible for reuse.
6251 If ALIST contains a `reusable-frames' entry, its value determines
6252 which frames to search for a reusable window:
6253 nil -- the selected frame (actually the last non-minibuffer frame)
6254 A frame -- just that frame
6255 `visible' -- all visible frames
6256 0 -- all frames on the current terminal
6259 If ALIST contains no `reusable-frames' entry, search just the
6260 selected frame if `display-buffer-reuse-frames' and
6261 `pop-up-frames' are both nil; search all frames on the current
6262 terminal if either of those variables is non-nil.
6264 If ALIST has a non-nil `inhibit-switch-frame' entry, then in the
6265 event that a window on another frame is chosen, avoid raising
6267 (let* ((alist-entry (assq 'reusable-frames alist
))
6268 (frames (cond (alist-entry (cdr alist-entry
))
6269 ((if (eq pop-up-frames
'graphic-only
)
6273 (display-buffer-reuse-frames 0)
6274 (t (last-nonminibuffer-frame))))
6275 (window (if (and (eq buffer
(window-buffer))
6276 (not (cdr (assq 'inhibit-same-window alist
))))
6278 (car (delq (selected-window)
6279 (get-buffer-window-list buffer
'nomini
6281 (when (window-live-p window
)
6282 (prog1 (window--display-buffer buffer window
'reuse alist
)
6283 (unless (cdr (assq 'inhibit-switch-frame alist
))
6284 (window--maybe-raise-frame (window-frame window
)))))))
6286 (defun display-buffer--special-action (buffer)
6287 "Return special display action for BUFFER, if any.
6288 If `special-display-p' returns non-nil for BUFFER, return an
6289 appropriate display action involving `special-display-function'.
6290 See `display-buffer' for the format of display actions."
6291 (and special-display-function
6292 ;; `special-display-p' returns either t or a list of frame
6293 ;; parameters to pass to `special-display-function'.
6294 (let ((pars (special-display-p (buffer-name buffer
))))
6296 (list (list #'display-buffer-reuse-window
6297 `(lambda (buffer _alist
)
6298 (funcall special-display-function
6299 buffer
',(if (listp pars
) pars
)))))))))
6301 (defun display-buffer-pop-up-frame (buffer alist
)
6302 "Display BUFFER in a new frame.
6303 This works by calling `pop-up-frame-function'. If successful,
6304 return the window used; otherwise return nil.
6306 If ALIST has a non-nil `inhibit-switch-frame' entry, avoid
6307 raising the new frame.
6309 If ALIST has a non-nil `pop-up-frame-parameters' entry, the
6310 corresponding value is an alist of frame parameters to give the
6312 (let* ((params (cdr (assq 'pop-up-frame-parameters alist
)))
6313 (pop-up-frame-alist (append params pop-up-frame-alist
))
6314 (fun pop-up-frame-function
)
6317 ;; Make BUFFER current so `make-frame' will use it as the
6318 ;; new frame's buffer (Bug#15133).
6319 (with-current-buffer buffer
6320 (setq frame
(funcall fun
)))
6321 (setq window
(frame-selected-window frame
)))
6322 (prog1 (window--display-buffer
6323 buffer window
'frame alist display-buffer-mark-dedicated
)
6324 (unless (cdr (assq 'inhibit-switch-frame alist
))
6325 (window--maybe-raise-frame frame
))))))
6327 (defun display-buffer-pop-up-window (buffer alist
)
6328 "Display BUFFER by popping up a new window.
6329 The new window is created on the selected frame, or in
6330 `last-nonminibuffer-frame' if no windows can be created there.
6331 If successful, return the new window; otherwise return nil.
6333 If ALIST has a non-nil `inhibit-switch-frame' entry, then in the
6334 event that the new window is created on another frame, avoid
6336 (let ((frame (or (window--frame-usable-p (selected-frame))
6337 (window--frame-usable-p (last-nonminibuffer-frame))))
6339 (when (and (or (not (frame-parameter frame
'unsplittable
))
6340 ;; If the selected frame cannot be split, look at
6341 ;; `last-nonminibuffer-frame'.
6342 (and (eq frame
(selected-frame))
6343 (setq frame
(last-nonminibuffer-frame))
6344 (window--frame-usable-p frame
)
6345 (not (frame-parameter frame
'unsplittable
))))
6346 ;; Attempt to split largest or least recently used window.
6347 (setq window
(or (window--try-to-split-window
6348 (get-largest-window frame t
) alist
)
6349 (window--try-to-split-window
6350 (get-lru-window frame t
) alist
))))
6351 (prog1 (window--display-buffer
6352 buffer window
'window alist display-buffer-mark-dedicated
)
6353 (unless (cdr (assq 'inhibit-switch-frame alist
))
6354 (window--maybe-raise-frame (window-frame window
)))))))
6356 (defun display-buffer--maybe-pop-up-frame-or-window (buffer alist
)
6357 "Try displaying BUFFER based on `pop-up-frames' or `pop-up-windows'.
6359 If `pop-up-frames' is non-nil (and not `graphic-only' on a
6360 text-only terminal), try with `display-buffer-pop-up-frame'.
6362 If that cannot be done, and `pop-up-windows' is non-nil, try
6363 again with `display-buffer-pop-up-window'."
6364 (or (and (if (eq pop-up-frames
'graphic-only
)
6367 (display-buffer-pop-up-frame buffer alist
))
6369 (display-buffer-pop-up-window buffer alist
))))
6371 (defun display-buffer-below-selected (buffer alist
)
6372 "Try displaying BUFFER in a window below the selected window.
6373 This either splits the selected window or reuses the window below
6376 (or (and (not (frame-parameter nil
'unsplittable
))
6377 (let ((split-height-threshold 0)
6378 split-width-threshold
)
6379 (setq window
(window--try-to-split-window (selected-window) alist
)))
6380 (window--display-buffer
6381 buffer window
'window alist display-buffer-mark-dedicated
))
6382 (and (setq window
(window-in-direction 'below
))
6383 (not (window-dedicated-p window
))
6384 (window--display-buffer
6385 buffer window
'reuse alist display-buffer-mark-dedicated
)))))
6387 (defun display-buffer-at-bottom (buffer alist
)
6388 "Try displaying BUFFER in a window at the bottom of the selected frame.
6389 This either splits the window at the bottom of the frame or the
6390 frame's root window, or reuses an existing window at the bottom
6391 of the selected frame."
6392 (let (bottom-window window
)
6394 (lambda (window) (setq bottom-window window
)) nil nil
'nomini
)
6395 (or (and (not (frame-parameter nil
'unsplittable
))
6396 (let (split-width-threshold)
6397 (setq window
(window--try-to-split-window bottom-window alist
)))
6398 (window--display-buffer
6399 buffer window
'window alist display-buffer-mark-dedicated
))
6400 (and (not (frame-parameter nil
'unsplittable
))
6403 (split-window (window--major-non-side-window))
6405 (window--display-buffer
6406 buffer window
'window alist display-buffer-mark-dedicated
))
6407 (and (setq window bottom-window
)
6408 (not (window-dedicated-p window
))
6409 (window--display-buffer
6410 buffer window
'reuse alist display-buffer-mark-dedicated
)))))
6412 (defun display-buffer-in-previous-window (buffer alist
)
6413 "Display BUFFER in a window previously showing it.
6414 If ALIST has a non-nil `inhibit-same-window' entry, the selected
6415 window is not eligible for reuse.
6417 If ALIST contains a `reusable-frames' entry, its value determines
6418 which frames to search for a reusable window:
6419 nil -- the selected frame (actually the last non-minibuffer frame)
6420 A frame -- just that frame
6421 `visible' -- all visible frames
6422 0 -- all frames on the current terminal
6425 If ALIST contains no `reusable-frames' entry, search just the
6426 selected frame if `display-buffer-reuse-frames' and
6427 `pop-up-frames' are both nil; search all frames on the current
6428 terminal if either of those variables is non-nil.
6430 If ALIST has a `previous-window' entry, the window specified by
6431 that entry will override any other window found by the methods
6432 above, even if that window never showed BUFFER before."
6433 (let* ((alist-entry (assq 'reusable-frames alist
))
6434 (inhibit-same-window
6435 (cdr (assq 'inhibit-same-window alist
)))
6437 (alist-entry (cdr alist-entry
))
6438 ((if (eq pop-up-frames
'graphic-only
)
6442 (display-buffer-reuse-frames 0)
6443 (t (last-nonminibuffer-frame))))
6444 best-window second-best-window window
)
6445 ;; Scan windows whether they have shown the buffer recently.
6447 (dolist (window (window-list-1 (frame-first-window) 'nomini frames
))
6448 (when (and (assq buffer
(window-prev-buffers window
))
6449 (not (window-dedicated-p window
)))
6450 (if (eq window
(selected-window))
6451 (unless inhibit-same-window
6452 (setq second-best-window window
))
6453 (setq best-window window
)
6455 ;; When ALIST has a `previous-window' entry, that entry may override
6456 ;; anything we found so far.
6457 (when (and (setq window
(cdr (assq 'previous-window alist
)))
6458 (window-live-p window
)
6459 (not (window-dedicated-p window
)))
6460 (if (eq window
(selected-window))
6461 (unless inhibit-same-window
6462 (setq second-best-window window
))
6463 (setq best-window window
)))
6464 ;; Return best or second best window found.
6465 (when (setq window
(or best-window second-best-window
))
6466 (window--display-buffer buffer window
'reuse alist
))))
6468 (defun display-buffer-use-some-window (buffer alist
)
6469 "Display BUFFER in an existing window.
6470 Search for a usable window, set that window to the buffer, and
6471 return the window. If no suitable window is found, return nil.
6473 If ALIST has a non-nil `inhibit-switch-frame' entry, then in the
6474 event that a window in another frame is chosen, avoid raising
6476 (let* ((not-this-window (cdr (assq 'inhibit-same-window alist
)))
6477 (frame (or (window--frame-usable-p (selected-frame))
6478 (window--frame-usable-p (last-nonminibuffer-frame))))
6480 ;; Reuse an existing window.
6481 (or (get-lru-window frame nil not-this-window
)
6482 (let ((window (get-buffer-window buffer
'visible
)))
6483 (unless (and not-this-window
6484 (eq window
(selected-window)))
6486 (get-largest-window 'visible nil not-this-window
)
6487 (let ((window (get-buffer-window buffer
0)))
6488 (unless (and not-this-window
6489 (eq window
(selected-window)))
6491 (get-largest-window 0 nil not-this-window
)))
6492 (quit-restore (and (window-live-p window
)
6493 (window-parameter window
'quit-restore
)))
6494 (quad (nth 1 quit-restore
)))
6495 (when (window-live-p window
)
6496 ;; If the window was used by `display-buffer' before, try to
6497 ;; resize it to its old height but don't signal an error.
6498 (when (and (listp quad
)
6499 (integerp (nth 3 quad
))
6500 (/= (nth 3 quad
) (window-total-height window
)))
6502 (window-resize window
(- (nth 3 quad
) (window-total-height window
)))
6506 (window--display-buffer buffer window
'reuse alist
)
6507 (window--even-window-heights window
)
6508 (unless (cdr (assq 'inhibit-switch-frame alist
))
6509 (window--maybe-raise-frame (window-frame window
)))))))
6511 (defun display-buffer-no-window (_buffer alist
)
6512 "Display BUFFER in no window.
6513 If ALIST has a non-nil `allow-no-window' entry, then don't display
6514 a window at all. This makes possible to override the default action
6515 and avoid displaying the buffer. It is assumed that when the caller
6516 specifies a non-nil `allow-no-window' then it can handle a nil value
6517 returned from `display-buffer' in this case."
6518 (when (cdr (assq 'allow-no-window alist
))
6521 ;;; Display + selection commands:
6522 (defun pop-to-buffer (buffer &optional action norecord
)
6523 "Select buffer BUFFER in some window, preferably a different one.
6524 BUFFER may be a buffer, a string (a buffer name), or nil. If it
6525 is a string not naming an existent buffer, create a buffer with
6526 that name. If BUFFER is nil, choose some other buffer. Return
6529 This uses `display-buffer' as a subroutine. The optional ACTION
6530 argument is passed to `display-buffer' as its ACTION argument.
6531 See `display-buffer' for more information. ACTION is t if called
6532 interactively with a prefix argument, which means to pop to a
6533 window other than the selected one even if the buffer is already
6534 displayed in the selected window.
6536 If the window to show BUFFER is not on the selected
6537 frame, raise that window's frame and give it input focus.
6539 Optional third arg NORECORD non-nil means do not put this buffer
6540 at the front of the list of recently selected ones."
6541 (interactive (list (read-buffer "Pop to buffer: " (other-buffer))
6542 (if current-prefix-arg t
)))
6543 (setq buffer
(window-normalize-buffer-to-switch-to buffer
))
6544 ;; This should be done by `select-window' below.
6545 ;; (set-buffer buffer)
6546 (let* ((old-frame (selected-frame))
6547 (window (display-buffer buffer action
))
6548 (frame (window-frame window
)))
6549 ;; If we chose another frame, make sure it gets input focus.
6550 (unless (eq frame old-frame
)
6551 (select-frame-set-input-focus frame norecord
))
6552 ;; Make sure new window is selected (Bug#8615), (Bug#6954).
6553 (select-window window norecord
)
6556 (defun pop-to-buffer-same-window (buffer &optional norecord
)
6557 "Select buffer BUFFER in some window, preferably the same one.
6558 BUFFER may be a buffer, a string (a buffer name), or nil. If it
6559 is a string not naming an existent buffer, create a buffer with
6560 that name. If BUFFER is nil, choose some other buffer. Return
6563 Optional argument NORECORD, if non-nil means do not put this
6564 buffer at the front of the list of recently selected ones.
6566 Unlike `pop-to-buffer', this function prefers using the selected
6567 window over popping up a new window or frame."
6568 (pop-to-buffer buffer display-buffer--same-window-action norecord
))
6570 (defun read-buffer-to-switch (prompt)
6571 "Read the name of a buffer to switch to, prompting with PROMPT.
6572 Return the name of the buffer as a string.
6574 This function is intended for the `switch-to-buffer' family of
6575 commands since these need to omit the name of the current buffer
6576 from the list of completions and default values."
6577 (let ((rbts-completion-table (internal-complete-buffer-except)))
6578 (minibuffer-with-setup-hook
6580 (setq minibuffer-completion-table rbts-completion-table
)
6581 ;; Since rbts-completion-table is built dynamically, we
6582 ;; can't just add it to the default value of
6583 ;; icomplete-with-completion-tables, so we add it
6585 (if (and (boundp 'icomplete-with-completion-tables
)
6586 (listp icomplete-with-completion-tables
))
6587 (set (make-local-variable 'icomplete-with-completion-tables
)
6588 (cons rbts-completion-table
6589 icomplete-with-completion-tables
))))
6590 (read-buffer prompt
(other-buffer (current-buffer))
6591 (confirm-nonexistent-file-or-buffer)))))
6593 (defun window-normalize-buffer-to-switch-to (buffer-or-name)
6594 "Normalize BUFFER-OR-NAME argument of buffer switching functions.
6595 If BUFFER-OR-NAME is nil, return the buffer returned by
6596 `other-buffer'. Else, if a buffer specified by BUFFER-OR-NAME
6597 exists, return that buffer. If no such buffer exists, create a
6598 buffer with the name BUFFER-OR-NAME and return that buffer."
6600 (or (get-buffer buffer-or-name
)
6601 (let ((buffer (get-buffer-create buffer-or-name
)))
6602 (set-buffer-major-mode buffer
)
6606 (defcustom switch-to-buffer-preserve-window-point nil
6607 "If non-nil, `switch-to-buffer' tries to preserve `window-point'.
6608 If this is nil, `switch-to-buffer' displays the buffer at that
6609 buffer's `point'. If this is `already-displayed', it tries to
6610 display the buffer at its previous position in the selected
6611 window, provided the buffer is currently displayed in some other
6612 window on any visible or iconified frame. If this is t, it
6613 unconditionally tries to display the buffer at its previous
6614 position in the selected window.
6616 This variable is ignored if the buffer is already displayed in
6617 the selected window or never appeared in it before, or if
6618 `switch-to-buffer' calls `pop-to-buffer' to display the buffer."
6620 (const :tag
"Never" nil
)
6621 (const :tag
"If already displayed elsewhere" already-displayed
)
6622 (const :tag
"Always" t
))
6626 (defun switch-to-buffer (buffer-or-name &optional norecord force-same-window
)
6627 "Display buffer BUFFER-OR-NAME in the selected window.
6629 WARNING: This is NOT the way to work on another buffer temporarily
6630 within a Lisp program! Use `set-buffer' instead. That avoids
6631 messing with the window-buffer correspondences.
6633 If the selected window cannot display the specified
6634 buffer (e.g. if it is a minibuffer window or strongly dedicated
6635 to another buffer), call `pop-to-buffer' to select the buffer in
6638 If called interactively, read the buffer name using the
6639 minibuffer. The variable `confirm-nonexistent-file-or-buffer'
6640 determines whether to request confirmation before creating a new
6643 BUFFER-OR-NAME may be a buffer, a string (a buffer name), or nil.
6644 If BUFFER-OR-NAME is a string that does not identify an existing
6645 buffer, create a buffer with that name. If BUFFER-OR-NAME is
6646 nil, switch to the buffer returned by `other-buffer'.
6648 If optional argument NORECORD is non-nil, do not put the buffer
6649 at the front of the buffer list, and do not make the window
6650 displaying it the most recently selected one.
6652 If optional argument FORCE-SAME-WINDOW is non-nil, the buffer
6653 must be displayed in the selected window; if that is impossible,
6654 signal an error rather than calling `pop-to-buffer'.
6656 The option `switch-to-buffer-preserve-window-point' can be used
6657 to make the buffer appear at its last position in the selected
6660 Return the buffer switched to."
6662 (list (read-buffer-to-switch "Switch to buffer: ") nil
'force-same-window
))
6663 (let ((buffer (window-normalize-buffer-to-switch-to buffer-or-name
)))
6665 ;; Don't call set-window-buffer if it's not needed since it
6666 ;; might signal an error (e.g. if the window is dedicated).
6667 ((eq buffer
(window-buffer)))
6668 ((window-minibuffer-p)
6669 (if force-same-window
6670 (user-error "Cannot switch buffers in minibuffer window")
6671 (pop-to-buffer buffer norecord
)))
6672 ((eq (window-dedicated-p) t
)
6673 (if force-same-window
6674 (user-error "Cannot switch buffers in a dedicated window")
6675 (pop-to-buffer buffer norecord
)))
6677 (let* ((entry (assq buffer
(window-prev-buffers)))
6678 (displayed (and (eq switch-to-buffer-preserve-window-point
6680 (get-buffer-window buffer
0))))
6681 (set-window-buffer nil buffer
)
6683 (or (eq switch-to-buffer-preserve-window-point t
)
6685 ;; Try to restore start and point of buffer in the selected
6686 ;; window (Bug#4041).
6687 (set-window-start (selected-window) (nth 1 entry
) t
)
6688 (set-window-point nil
(nth 2 entry
))))))
6691 (select-window (selected-window)))
6692 (set-buffer buffer
)))
6694 (defun switch-to-buffer-other-window (buffer-or-name &optional norecord
)
6695 "Select the buffer specified by BUFFER-OR-NAME in another window.
6696 BUFFER-OR-NAME may be a buffer, a string (a buffer name), or
6697 nil. Return the buffer switched to.
6699 If called interactively, prompt for the buffer name using the
6700 minibuffer. The variable `confirm-nonexistent-file-or-buffer'
6701 determines whether to request confirmation before creating a new
6704 If BUFFER-OR-NAME is a string and does not identify an existing
6705 buffer, create a new buffer with that name. If BUFFER-OR-NAME is
6706 nil, switch to the buffer returned by `other-buffer'.
6708 Optional second argument NORECORD non-nil means do not put this
6709 buffer at the front of the list of recently selected ones.
6711 This uses the function `display-buffer' as a subroutine; see its
6712 documentation for additional customization information."
6714 (list (read-buffer-to-switch "Switch to buffer in other window: ")))
6715 (let ((pop-up-windows t
))
6716 (pop-to-buffer buffer-or-name t norecord
)))
6718 (defun switch-to-buffer-other-frame (buffer-or-name &optional norecord
)
6719 "Switch to buffer BUFFER-OR-NAME in another frame.
6720 BUFFER-OR-NAME may be a buffer, a string (a buffer name), or
6721 nil. Return the buffer switched to.
6723 If called interactively, prompt for the buffer name using the
6724 minibuffer. The variable `confirm-nonexistent-file-or-buffer'
6725 determines whether to request confirmation before creating a new
6728 If BUFFER-OR-NAME is a string and does not identify an existing
6729 buffer, create a new buffer with that name. If BUFFER-OR-NAME is
6730 nil, switch to the buffer returned by `other-buffer'.
6732 Optional second arg NORECORD non-nil means do not put this
6733 buffer at the front of the list of recently selected ones.
6735 This uses the function `display-buffer' as a subroutine; see its
6736 documentation for additional customization information."
6738 (list (read-buffer-to-switch "Switch to buffer in other frame: ")))
6739 (pop-to-buffer buffer-or-name display-buffer--other-frame-action norecord
))
6741 (defun set-window-text-height (window height
)
6742 "Set the height in lines of the text display area of WINDOW to HEIGHT.
6743 WINDOW must be a live window and defaults to the selected one.
6744 HEIGHT doesn't include the mode line or header line, if any, or
6745 any partial-height lines in the text display area.
6747 Note that the current implementation of this function cannot
6748 always set the height exactly, but attempts to be conservative,
6749 by allocating more lines than are actually needed in the case
6750 where some error may be present."
6751 (setq window
(window-normalize-window window t
))
6752 (let ((delta (- height
(window-text-height window
))))
6753 (unless (zerop delta
)
6754 ;; Setting window-min-height to a value like 1 can lead to very
6755 ;; bizarre displays because it also allows Emacs to make *other*
6756 ;; windows one line tall, which means that there's no more space
6757 ;; for the mode line.
6758 (let ((window-min-height (min 2 height
)))
6759 (window-resize window delta
)))))
6761 (defun enlarge-window-horizontally (delta)
6762 "Make selected window DELTA columns wider.
6763 Interactively, if no argument is given, make selected window one
6766 (enlarge-window delta t
))
6768 (defun shrink-window-horizontally (delta)
6769 "Make selected window DELTA columns narrower.
6770 Interactively, if no argument is given, make selected window one
6773 (shrink-window delta t
))
6775 (defun count-screen-lines (&optional beg end count-final-newline window
)
6776 "Return the number of screen lines in the region.
6777 The number of screen lines may be different from the number of actual lines,
6778 due to line breaking, display table, etc.
6780 Optional arguments BEG and END default to `point-min' and `point-max'
6783 If region ends with a newline, ignore it unless optional third argument
6784 COUNT-FINAL-NEWLINE is non-nil.
6786 The optional fourth argument WINDOW specifies the window used for obtaining
6787 parameters such as width, horizontal scrolling, and so on. The default is
6788 to use the selected window's parameters.
6790 Like `vertical-motion', `count-screen-lines' always uses the current buffer,
6791 regardless of which buffer is displayed in WINDOW. This makes possible to use
6792 `count-screen-lines' in any buffer, whether or not it is currently displayed
6795 (setq beg
(point-min)))
6797 (setq end
(point-max)))
6803 (narrow-to-region (min beg end
)
6804 (if (and (not count-final-newline
)
6805 (= ?
\n (char-before (max beg end
))))
6808 (goto-char (point-min))
6809 (1+ (vertical-motion (buffer-size) window
))))))
6811 (defun window-buffer-height (window)
6812 "Return the height (in screen lines) of the buffer that WINDOW is displaying.
6813 WINDOW must be a live window and defaults to the selected one."
6814 (setq window
(window-normalize-window window t
))
6815 (with-current-buffer (window-buffer window
)
6817 (count-screen-lines (point-min) (point-max)
6818 ;; If buffer ends with a newline, ignore it when
6819 ;; counting height unless point is after it.
6823 ;;; Resizing windows and frames to fit their contents exactly.
6824 (defcustom fit-window-to-buffer-horizontally nil
6825 "Non-nil means `fit-window-to-buffer' can resize windows horizontally.
6826 If this is nil, `fit-window-to-buffer' never resizes windows
6827 horizontally. If this is `only', it can resize windows
6828 horizontally only. Any other value means `fit-window-to-buffer'
6829 can resize windows in both dimensions."
6834 ;; `fit-frame-to-buffer' eventually wants to know the real frame sizes
6835 ;; counting title bar and outer borders.
6836 (defcustom fit-frame-to-buffer nil
6837 "Non-nil means `fit-window-to-buffer' can fit a frame to its buffer.
6838 A frame is fit if and only if its root window is a live window
6839 and this option is non-nil. If this is `horizontally', frames
6840 are resized horizontally only. If this is `vertically', frames
6841 are resized vertically only. Any other non-nil value means
6842 frames can be resized in both dimensions."
6847 (defcustom fit-frame-to-buffer-margins
'(nil nil nil nil
)
6848 "Margins around frame for `fit-frame-to-buffer'.
6849 This specifies the numbers of pixels to be left free on the left,
6850 above, on the right, and below a frame fitted to its buffer. Set
6851 this to avoid obscuring other desktop objects like the taskbar.
6852 The default is nil for each side, which means to not add margins.
6854 The value specified here can be overridden for a specific frame
6855 by that frame's `fit-frame-to-buffer-margins' parameter, if
6856 present. See also `fit-frame-to-buffer-sizes'."
6862 :format
"%[LeftMargin%] %v "
6863 (const :tag
"None" :format
"%t" nil
)
6864 (integer :tag
"Pixels" :size
5))
6868 :format
"%[TopMargin%] %v "
6869 (const :tag
"None" :format
"%t" nil
)
6870 (integer :tag
"Pixels" :size
5))
6874 :format
"%[RightMargin%] %v "
6875 (const :tag
"None" :format
"%t" nil
)
6876 (integer :tag
"Pixels" :size
5))
6880 :format
"%[BottomMargin%] %v "
6881 (const :tag
"None" :format
"%t" nil
)
6882 (integer :tag
"Pixels" :size
5)))
6885 (defcustom fit-frame-to-buffer-sizes
'(nil nil nil nil
)
6886 "Size boundaries of frame for `fit-frame-to-buffer'.
6887 This list specifies the total maximum and minimum lines and
6888 maximum and minimum columns of the root window of any frame that
6889 shall be fit to its buffer. If any of these values is non-nil,
6890 it overrides the corresponding argument of `fit-frame-to-buffer'.
6892 On window systems where the menubar can wrap, fitting a frame to
6893 its buffer may swallow the last line(s). Specifying an
6894 appropriate minimum width value here can avoid such wrapping.
6896 See also `fit-frame-to-buffer-margins'."
6900 :tag
"Maximum Height"
6902 :format
"%[MaxHeight%] %v "
6903 (const :tag
"None" :format
"%t" nil
)
6904 (integer :tag
"Lines" :size
5))
6906 :tag
"Minimum Height"
6908 :format
"%[MinHeight%] %v "
6909 (const :tag
"None" :format
"%t" nil
)
6910 (integer :tag
"Lines" :size
5))
6912 :tag
"Maximum Width"
6914 :format
"%[MaxWidth%] %v "
6915 (const :tag
"None" :format
"%t" nil
)
6916 (integer :tag
"Columns" :size
5))
6918 :tag
"Minimum Width"
6920 :format
"%[MinWidth%] %v\n"
6921 (const :tag
"None" :format
"%t" nil
)
6922 (integer :tag
"Columns" :size
5)))
6925 (declare-function x-display-pixel-height
"xfns.c" (&optional terminal
))
6927 (defun window--sanitize-margin (margin left right
)
6928 "Return MARGIN if it's a number between LEFT and RIGHT."
6929 (when (and (numberp margin
)
6930 (<= left
(- right margin
)) (<= margin right
))
6933 (defun fit-frame-to-buffer (&optional frame max-height min-height max-width min-width only
)
6934 "Adjust size of FRAME to display the contents of its buffer exactly.
6935 FRAME can be any live frame and defaults to the selected one.
6936 Fit only if FRAME's root window is live. MAX-HEIGHT, MIN-HEIGHT,
6937 MAX-WIDTH and MIN-WIDTH specify bounds on the new total size of
6938 FRAME's root window. MIN-HEIGHT and MIN-WIDTH default to the values of
6939 `window-min-height' and `window-min-width' respectively.
6941 If the optional argument ONLY is `vertically', resize the frame
6942 vertically only. If ONLY is `horizontally', resize the frame
6945 The new position and size of FRAME can be additionally determined
6946 by customizing the options `fit-frame-to-buffer-sizes' and
6947 `fit-frame-to-buffer-margins' or the corresponding parameters of
6950 (unless (and (fboundp 'x-display-pixel-height
)
6951 ;; We need the respective sizes now.
6952 (fboundp 'display-monitor-attributes-list
))
6953 (user-error "Cannot resize frame in non-graphic Emacs"))
6954 (setq frame
(window-normalize-frame frame
))
6955 (when (window-live-p (frame-root-window frame
))
6956 (with-selected-window (frame-root-window frame
)
6957 (let* ((window (frame-root-window frame
))
6958 (char-width (frame-char-width))
6959 (char-height (frame-char-height))
6960 (monitor-attributes (car (display-monitor-attributes-list
6961 (frame-parameter frame
'display
))))
6962 (geometry (cdr (assq 'geometry monitor-attributes
)))
6963 (display-width (- (nth 2 geometry
) (nth 0 geometry
)))
6964 (display-height (- (nth 3 geometry
) (nth 1 geometry
)))
6965 (workarea (cdr (assq 'workarea monitor-attributes
)))
6967 (margins (or (frame-parameter frame
'fit-frame-to-buffer-margins
)
6968 fit-frame-to-buffer-margins
))
6969 (left-margin (if (nth 0 margins
)
6970 (or (window--sanitize-margin
6971 (nth 0 margins
) 0 display-width
)
6974 (top-margin (if (nth 1 margins
)
6975 (or (window--sanitize-margin
6976 (nth 1 margins
) 0 display-height
)
6979 (workarea-width (nth 2 workarea
))
6980 (right-margin (if (nth 2 margins
)
6982 (or (window--sanitize-margin
6983 (nth 2 margins
) left-margin display-width
)
6986 (workarea-height (nth 3 workarea
))
6987 (bottom-margin (if (nth 3 margins
)
6989 (or (window--sanitize-margin
6990 (nth 3 margins
) top-margin display-height
)
6993 ;; The pixel width of FRAME (which does not include the
6994 ;; window manager's decorations).
6995 (frame-width (frame-pixel-width))
6996 ;; The pixel width of the body of FRAME's root window.
6997 (window-body-width (window-body-width nil t
))
6998 ;; The difference in pixels between total and body width of
7000 (window-extra-width (- (window-pixel-width) window-body-width
))
7001 ;; The difference in pixels between the frame's pixel width
7002 ;; and the window's body width. This is the space we can't
7004 (extra-width (- frame-width window-body-width
))
7005 ;; The maximum width we can use for fitting.
7006 (fit-width (- workarea-width extra-width
))
7007 ;; The pixel position of FRAME's left border. We usually
7008 ;; try to leave this alone.
7010 (let ((left (frame-parameter nil
'left
)))
7012 (funcall (car left
) (cadr left
))
7014 ;; The pixel height of FRAME (which does not include title
7015 ;; line, decorations, and sometimes neither the menu nor
7017 (frame-height (frame-pixel-height))
7018 ;; The pixel height of FRAME's root window (we don't care
7019 ;; about the window's body height since the return value of
7020 ;; `window-text-pixel-size' includes header and mode line).
7021 (window-height (window-pixel-height))
7022 ;; The difference in pixels between the frame's pixel
7023 ;; height and the window's height.
7024 (extra-height (- frame-height window-height
))
7025 ;; When tool-bar-mode is enabled and we just created a new
7026 ;; frame, reserve lines for toolbar resizing. Needed
7027 ;; because for reasons unknown to me Emacs (1) reserves one
7028 ;; line for the toolbar when making the initial frame and
7029 ;; toolbars are enabled, and (2) later adds the remaining
7030 ;; lines needed. Our code runs IN BETWEEN (1) and (2).
7031 ;; YMMV when you're on a system that behaves differently.
7032 (toolbar-extra-height
7033 (let ((quit-restore (window-parameter window
'quit-restore
))
7034 ;; This may have to change when we allow arbitrary
7035 ;; pixel height toolbars.
7036 (lines (tool-bar-height)))
7038 (if (and quit-restore
(eq (car quit-restore
) 'frame
)
7039 (not (zerop lines
)))
7042 ;; The pixel position of FRAME's top border.
7044 (let ((top (frame-parameter nil
'top
)))
7046 (funcall (car top
) (cadr top
))
7048 ;; Sanitize minimum and maximum sizes.
7049 (sizes (or (frame-parameter frame
'fit-frame-to-buffer-sizes
)
7050 fit-frame-to-buffer-sizes
))
7053 ((numberp (nth 0 sizes
)) (* (nth 0 sizes
) char-height
))
7054 ((numberp max-height
) (* max-height char-height
))
7055 (t display-height
)))
7058 ((numberp (nth 1 sizes
)) (* (nth 1 sizes
) char-height
))
7059 ((numberp min-height
) (* min-height char-height
))
7060 (t (* window-min-height char-height
))))
7063 ((numberp (nth 2 sizes
))
7064 (- (* (nth 2 sizes
) char-width
) window-extra-width
))
7065 ((numberp max-width
)
7066 (- (* max-width char-width
) window-extra-width
))
7070 ((numberp (nth 3 sizes
))
7071 (- (* (nth 3 sizes
) char-width
) window-extra-width
))
7072 ((numberp min-width
)
7073 (- (* min-width char-width
) window-extra-width
))
7074 (t (* window-min-width char-width
))))
7075 ;; Note: Currently, for a new frame the sizes of the header
7076 ;; and mode line may be estimated incorrectly
7077 (value (window-text-pixel-size
7078 nil t t workarea-width workarea-height t
))
7079 (width (+ (car value
) (window-right-divider-width)))
7080 (height (+ (cdr value
) (window-bottom-divider-width))))
7081 ;; Don't change height or width when the window's size is fixed
7082 ;; in either direction or ONLY forbids it.
7084 ((or (eq window-size-fixed
'width
) (eq only
'vertically
))
7086 ((or (eq window-size-fixed
'height
) (eq only
'horizontally
))
7088 ;; Fit width to constraints.
7090 (unless frame-resize-pixelwise
7091 ;; Round to character sizes.
7092 (setq width
(* (/ (+ width char-width -
1) char-width
)
7094 ;; Fit to maximum and minimum widths.
7095 (setq width
(max (min width max-width
) min-width
))
7097 (setq width
(+ width extra-width
))
7098 ;; Preserve margins.
7099 (let ((right (+ left width
)))
7101 ((> right right-margin
)
7102 ;; Move frame to left (we don't know its real width).
7103 (setq left
(max left-margin
(- left
(- right right-margin
)))))
7104 ((< left left-margin
)
7105 ;; Move frame to right.
7106 (setq left left-margin
)))))
7107 ;; Fit height to constraints.
7109 (unless frame-resize-pixelwise
7110 (setq height
(* (/ (+ height char-height -
1) char-height
)
7112 ;; Fit to maximum and minimum heights.
7113 (setq height
(max (min height max-height
) min-height
))
7114 ;; Add extra height.
7115 (setq height
(+ height extra-height
))
7116 ;; Preserve margins.
7117 (let ((bottom (+ top height
)))
7119 ((> bottom bottom-margin
)
7120 ;; Move frame up (we don't know its real height).
7121 (setq top
(max top-margin
(- top
(- bottom bottom-margin
)))))
7124 (setq top top-margin
)))))
7126 (set-frame-position frame left top
)
7127 ;; Clumsily try to translate our calculations to what
7128 ;; `set-frame-size' wants.
7130 (setq width
(- (+ (frame-text-width) width
)
7131 extra-width window-body-width
)))
7133 (setq height
(- (+ (frame-text-height) height
)
7134 extra-height window-height
)))
7138 (if frame-resize-pixelwise
7140 (/ width char-width
))
7143 (if frame-resize-pixelwise
7145 (/ height char-height
))
7146 (frame-text-height))
7147 frame-resize-pixelwise
)))))
7149 (defun fit-window-to-buffer (&optional window max-height min-height max-width min-width
)
7150 "Adjust size of WINDOW to display its buffer's contents exactly.
7151 WINDOW must be a live window and defaults to the selected one.
7153 If WINDOW is part of a vertical combination, adjust WINDOW's
7154 height. The new height is calculated from the actual height of
7155 the accessible portion of its buffer. The optional argument
7156 MAX-HEIGHT specifies a maximum height and defaults to the height
7157 of WINDOW's frame. The optional argument MIN-HEIGHT specifies a
7158 minimum height and defaults to `window-min-height'. Both
7159 MAX-HEIGHT and MIN-HEIGHT are specified in lines and include mode
7160 and header line and a bottom divider, if any.
7162 If WINDOW is part of a horizontal combination and the value of
7163 the option `fit-window-to-buffer-horizontally' is non-nil, adjust
7164 WINDOW's height. The new width of WINDOW is calculated from the
7165 maximum length of its buffer's lines that follow the current
7166 start position of WINDOW. The optional argument MAX-WIDTH
7167 specifies a maximum width and defaults to the width of WINDOW's
7168 frame. The optional argument MIN-WIDTH specifies a minimum width
7169 and defaults to `window-min-width'. Both MAX-WIDTH and MIN-WIDTH
7170 are specified in columns and include fringes, margins, a
7171 scrollbar and a vertical divider, if any.
7173 Fit pixelwise if the option `window-resize-pixelwise' is non-nil.
7174 If WINDOW is its frame's root window and the option
7175 `fit-frame-to-buffer' is non-nil, call `fit-frame-to-buffer' to
7176 adjust the frame's size.
7178 Note that even if this function makes WINDOW large enough to show
7179 _all_ parts of its buffer you might not see the first part when
7180 WINDOW was scrolled. If WINDOW is resized horizontally, you will
7181 not see the top of its buffer unless WINDOW starts at its minimum
7182 accessible position."
7184 (setq window
(window-normalize-window window t
))
7185 (if (eq window
(frame-root-window window
))
7186 (when fit-frame-to-buffer
7187 ;; Fit WINDOW's frame to buffer.
7188 (fit-frame-to-buffer
7189 (window-frame window
)
7190 max-height min-height max-width min-width
7191 (and (memq fit-frame-to-buffer
'(vertically horizontally
))
7192 fit-frame-to-buffer
)))
7193 (with-selected-window window
7194 (let* ((pixelwise window-resize-pixelwise
)
7195 (char-height (frame-char-height))
7196 (char-width (frame-char-width))
7197 (total-height (window-size window nil pixelwise
))
7198 (body-height (window-body-height window pixelwise
))
7199 (body-width (window-body-width window pixelwise
))
7201 ;; Sanitize MIN-HEIGHT.
7202 (if (numberp min-height
)
7203 ;; Can't get smaller than `window-safe-min-height'.
7205 (* char-height min-height
)
7208 (window-safe-min-pixel-height window
)
7209 window-safe-min-height
))
7210 ;; Preserve header and mode line if present.
7212 (* char-height window-min-height
)
7214 (window-min-size nil nil t pixelwise
))))
7216 ;; Sanitize MAX-HEIGHT.
7217 (if (numberp max-height
)
7221 window nil nil nil nil nil pixelwise
))
7223 (* char-height max-height
)
7225 (+ total-height
(window-max-delta
7226 window nil nil nil nil nil pixelwise
))))
7229 ;; If WINDOW is vertically combined, try to resize it
7231 ((and (not (eq fit-window-to-buffer-horizontally
'only
))
7232 (not (window-size-fixed-p window
))
7233 (window-combined-p))
7234 ;; Vertically we always want to fit the entire buffer.
7235 ;; WINDOW'S height can't get larger than its frame's pixel
7236 ;; height. Its width remains fixed.
7237 (setq height
(+ (cdr (window-text-pixel-size
7238 nil nil t nil
(frame-pixel-height) t
))
7239 (window-bottom-divider-width)))
7242 (setq height
(/ (+ height char-height -
1) char-height
)))
7243 (unless (= height total-height
)
7244 (window-resize-no-error
7246 (- (max min-height
(min max-height height
)) total-height
)
7247 nil window pixelwise
)))
7248 ;; If WINDOW is horizontally combined, try to resize it
7250 ((and fit-window-to-buffer-horizontally
7251 (not (window-size-fixed-p window t
))
7252 (window-combined-p nil t
))
7253 (let* ((total-width (window-size window t pixelwise
))
7255 ;; Sanitize MIN-WIDTH.
7256 (if (numberp min-width
)
7257 ;; Can't get smaller than `window-safe-min-width'.
7259 (* char-width min-width
)
7262 (window-safe-min-pixel-width)
7263 window-safe-min-width
))
7264 ;; Preserve fringes, margins, scrollbars if present.
7266 (* char-width window-min-width
)
7268 (window-min-size nil nil t pixelwise
))))
7270 ;; Sanitize MAX-WIDTH.
7271 (if (numberp max-width
)
7274 nil t nil nil nil nil pixelwise
))
7276 (* char-width max-width
)
7278 (+ total-width
(window-max-delta
7279 nil t nil nil nil nil pixelwise
))))
7280 ;; When fitting vertically, assume that WINDOW's start
7281 ;; position remains unaltered. WINDOW can't get wider
7282 ;; than its frame's pixel width, its height remains
7284 (width (+ (car (window-text-pixel-size
7285 nil
(window-start) (point-max)
7287 ;; Add one char-height to assure that
7288 ;; we're on the safe side. This
7289 ;; overshoots when the first line below
7290 ;; the bottom is wider than the window.
7292 (if pixelwise char-height
1))))
7293 (window-right-divider-width))))
7295 (setq width
(/ (+ width char-width -
1) char-width
)))
7296 (unless (= width body-width
)
7297 (window-resize-no-error
7301 (+ total-width
(- width body-width
))))
7303 t window pixelwise
)))))))))
7305 (defun window-safely-shrinkable-p (&optional window
)
7306 "Return t if WINDOW can be shrunk without shrinking other windows.
7307 WINDOW defaults to the selected window."
7308 (with-selected-window (or window
(selected-window))
7309 (let ((edges (window-edges)))
7310 (or (= (nth 2 edges
) (nth 2 (window-edges (previous-window))))
7311 (= (nth 0 edges
) (nth 0 (window-edges (next-window))))))))
7313 (defun shrink-window-if-larger-than-buffer (&optional window
)
7314 "Shrink height of WINDOW if its buffer doesn't need so many lines.
7315 More precisely, shrink WINDOW vertically to be as small as
7316 possible, while still showing the full contents of its buffer.
7317 WINDOW must be a live window and defaults to the selected one.
7319 Do not shrink WINDOW to less than `window-min-height' lines. Do
7320 nothing if the buffer contains more lines than the present window
7321 height, or if some of the window's contents are scrolled out of
7322 view, or if shrinking this window would also shrink another
7323 window, or if the window is the only window of its frame.
7325 Return non-nil if the window was shrunk, nil otherwise."
7327 (setq window
(window-normalize-window window t
))
7328 ;; Make sure that WINDOW is vertically combined and `point-min' is
7329 ;; visible (for whatever reason that's needed). The remaining issues
7330 ;; should be taken care of by `fit-window-to-buffer'.
7331 (when (and (window-combined-p window
)
7332 (pos-visible-in-window-p (point-min) window
))
7333 (fit-window-to-buffer window
(window-total-height window
))))
7335 (defun kill-buffer-and-window ()
7336 "Kill the current buffer and delete the selected window."
7338 (let ((window-to-delete (selected-window))
7339 (buffer-to-kill (current-buffer))
7340 (delete-window-hook (lambda () (ignore-errors (delete-window)))))
7343 (add-hook 'kill-buffer-hook delete-window-hook t t
)
7344 (if (kill-buffer (current-buffer))
7345 ;; If `delete-window' failed before, we rerun it to regenerate
7346 ;; the error so it can be seen in the echo area.
7347 (when (eq (selected-window) window-to-delete
)
7349 ;; If the buffer is not dead for some reason (probably because
7350 ;; of a `quit' signal), remove the hook again.
7352 (with-current-buffer buffer-to-kill
7353 (remove-hook 'kill-buffer-hook delete-window-hook t
))))))
7356 (defvar recenter-last-op nil
7357 "Indicates the last recenter operation performed.
7358 Possible values: `top', `middle', `bottom', integer or float numbers.")
7360 (defcustom recenter-positions
'(middle top bottom
)
7361 "Cycling order for `recenter-top-bottom'.
7362 A list of elements with possible values `top', `middle', `bottom',
7363 integer or float numbers that define the cycling order for
7364 the command `recenter-top-bottom'.
7366 Top and bottom destinations are `scroll-margin' lines from the true
7367 window top and bottom. Middle redraws the frame and centers point
7368 vertically within the window. Integer number moves current line to
7369 the specified absolute window-line. Float number between 0.0 and 1.0
7370 means the percentage of the screen space from the top. The default
7371 cycling order is middle -> top -> bottom."
7372 :type
'(repeat (choice
7373 (const :tag
"Top" top
)
7374 (const :tag
"Middle" middle
)
7375 (const :tag
"Bottom" bottom
)
7376 (integer :tag
"Line number")
7377 (float :tag
"Percentage")))
7381 (defun recenter-top-bottom (&optional arg
)
7382 "Move current buffer line to the specified window line.
7383 With no prefix argument, successive calls place point according
7384 to the cycling order defined by `recenter-positions'.
7386 A prefix argument is handled like `recenter':
7387 With numeric prefix ARG, move current line to window-line ARG.
7388 With plain `C-u', move current line to window center."
7391 (arg (recenter arg
)) ; Always respect ARG.
7393 (setq recenter-last-op
7394 (if (eq this-command last-command
)
7395 (car (or (cdr (member recenter-last-op recenter-positions
))
7396 recenter-positions
))
7397 (car recenter-positions
)))
7398 (let ((this-scroll-margin
7399 (min (max 0 scroll-margin
)
7400 (truncate (/ (window-body-height) 4.0)))))
7401 (cond ((eq recenter-last-op
'middle
)
7403 ((eq recenter-last-op
'top
)
7404 (recenter this-scroll-margin
))
7405 ((eq recenter-last-op
'bottom
)
7406 (recenter (- -
1 this-scroll-margin
)))
7407 ((integerp recenter-last-op
)
7408 (recenter recenter-last-op
))
7409 ((floatp recenter-last-op
)
7410 (recenter (round (* recenter-last-op
(window-height))))))))))
7412 (define-key global-map
[?\C-l
] 'recenter-top-bottom
)
7414 (defun move-to-window-line-top-bottom (&optional arg
)
7415 "Position point relative to window.
7417 With a prefix argument ARG, acts like `move-to-window-line'.
7419 With no argument, positions point at center of window.
7420 Successive calls position point at positions defined
7421 by `recenter-positions'."
7424 (arg (move-to-window-line arg
)) ; Always respect ARG.
7426 (setq recenter-last-op
7427 (if (eq this-command last-command
)
7428 (car (or (cdr (member recenter-last-op recenter-positions
))
7429 recenter-positions
))
7430 (car recenter-positions
)))
7431 (let ((this-scroll-margin
7432 (min (max 0 scroll-margin
)
7433 (truncate (/ (window-body-height) 4.0)))))
7434 (cond ((eq recenter-last-op
'middle
)
7435 (call-interactively 'move-to-window-line
))
7436 ((eq recenter-last-op
'top
)
7437 (move-to-window-line this-scroll-margin
))
7438 ((eq recenter-last-op
'bottom
)
7439 (move-to-window-line (- -
1 this-scroll-margin
)))
7440 ((integerp recenter-last-op
)
7441 (move-to-window-line recenter-last-op
))
7442 ((floatp recenter-last-op
)
7443 (move-to-window-line (round (* recenter-last-op
(window-height))))))))))
7445 (define-key global-map
[?\M-r
] 'move-to-window-line-top-bottom
)
7447 ;;; Scrolling commands.
7449 ;;; Scrolling commands which do not signal errors at top/bottom
7450 ;;; of buffer at first key-press (instead move to top/bottom
7453 (defcustom scroll-error-top-bottom nil
7454 "Move point to top/bottom of buffer before signaling a scrolling error.
7455 A value of nil means just signal an error if no more scrolling possible.
7456 A value of t means point moves to the beginning or the end of the buffer
7457 \(depending on scrolling direction) when no more scrolling possible.
7458 When point is already on that position, then signal an error."
7463 (defun scroll-up-command (&optional arg
)
7464 "Scroll text of selected window upward ARG lines; or near full screen if no ARG.
7465 If `scroll-error-top-bottom' is non-nil and `scroll-up' cannot
7466 scroll window further, move cursor to the bottom line.
7467 When point is already on that position, then signal an error.
7468 A near full screen is `next-screen-context-lines' less than a full screen.
7469 Negative ARG means scroll downward.
7470 If ARG is the atom `-', scroll downward by nearly full screen."
7473 ((null scroll-error-top-bottom
)
7476 (scroll-down-command nil
))
7477 ((< (prefix-numeric-value arg
) 0)
7478 (scroll-down-command (- (prefix-numeric-value arg
))))
7480 (scroll-up arg
)) ; signal error
7486 ;; When scrolling by ARG lines can't be done,
7487 ;; move by ARG lines instead.
7489 ;; When ARG is nil for full-screen scrolling,
7490 ;; move to the bottom of the buffer.
7491 (goto-char (point-max))))))))
7493 (put 'scroll-up-command
'scroll-command t
)
7495 (defun scroll-down-command (&optional arg
)
7496 "Scroll text of selected window down ARG lines; or near full screen if no ARG.
7497 If `scroll-error-top-bottom' is non-nil and `scroll-down' cannot
7498 scroll window further, move cursor to the top line.
7499 When point is already on that position, then signal an error.
7500 A near full screen is `next-screen-context-lines' less than a full screen.
7501 Negative ARG means scroll upward.
7502 If ARG is the atom `-', scroll upward by nearly full screen."
7505 ((null scroll-error-top-bottom
)
7508 (scroll-up-command nil
))
7509 ((< (prefix-numeric-value arg
) 0)
7510 (scroll-up-command (- (prefix-numeric-value arg
))))
7512 (scroll-down arg
)) ; signal error
7516 (beginning-of-buffer
7518 ;; When scrolling by ARG lines can't be done,
7519 ;; move by ARG lines instead.
7520 (forward-line (- arg
))
7521 ;; When ARG is nil for full-screen scrolling,
7522 ;; move to the top of the buffer.
7523 (goto-char (point-min))))))))
7525 (put 'scroll-down-command
'scroll-command t
)
7527 ;;; Scrolling commands which scroll a line instead of full screen.
7529 (defun scroll-up-line (&optional arg
)
7530 "Scroll text of selected window upward ARG lines; or one line if no ARG.
7531 If ARG is omitted or nil, scroll upward by one line.
7532 This is different from `scroll-up-command' that scrolls a full screen."
7534 (scroll-up (or arg
1)))
7536 (put 'scroll-up-line
'scroll-command t
)
7538 (defun scroll-down-line (&optional arg
)
7539 "Scroll text of selected window down ARG lines; or one line if no ARG.
7540 If ARG is omitted or nil, scroll down by one line.
7541 This is different from `scroll-down-command' that scrolls a full screen."
7543 (scroll-down (or arg
1)))
7545 (put 'scroll-down-line
'scroll-command t
)
7548 (defun scroll-other-window-down (&optional lines
)
7549 "Scroll the \"other window\" down.
7550 For more details, see the documentation for `scroll-other-window'."
7552 (scroll-other-window
7553 ;; Just invert the argument's meaning.
7554 ;; We can do that without knowing which window it will be.
7555 (if (eq lines
'-
) nil
7557 (- (prefix-numeric-value lines
))))))
7559 (defun beginning-of-buffer-other-window (arg)
7560 "Move point to the beginning of the buffer in the other window.
7561 Leave mark at previous position.
7562 With arg N, put point N/10 of the way from the true beginning."
7564 (let ((orig-window (selected-window))
7565 (window (other-window-for-scrolling)))
7566 ;; We use unwind-protect rather than save-window-excursion
7567 ;; because the latter would preserve the things we want to change.
7570 (select-window window
)
7571 ;; Set point and mark in that window's buffer.
7573 (beginning-of-buffer arg
))
7574 ;; Set point accordingly.
7576 (select-window orig-window
))))
7578 (defun end-of-buffer-other-window (arg)
7579 "Move point to the end of the buffer in the other window.
7580 Leave mark at previous position.
7581 With arg N, put point N/10 of the way from the true end."
7583 ;; See beginning-of-buffer-other-window for comments.
7584 (let ((orig-window (selected-window))
7585 (window (other-window-for-scrolling)))
7588 (select-window window
)
7590 (end-of-buffer arg
))
7592 (select-window orig-window
))))
7594 (defvar mouse-autoselect-window-timer nil
7595 "Timer used by delayed window autoselection.")
7597 (defvar mouse-autoselect-window-position nil
7598 "Last mouse position recorded by delayed window autoselection.")
7600 (defvar mouse-autoselect-window-window nil
7601 "Last window recorded by delayed window autoselection.")
7603 (defvar mouse-autoselect-window-state nil
7604 "When non-nil, special state of delayed window autoselection.
7605 Possible values are `suspend' (suspend autoselection after a menu or
7606 scrollbar interaction) and `select' (the next invocation of
7607 `handle-select-window' shall select the window immediately).")
7609 (defun mouse-autoselect-window-cancel (&optional force
)
7610 "Cancel delayed window autoselection.
7611 Optional argument FORCE means cancel unconditionally."
7612 (unless (and (not force
)
7613 ;; Don't cancel for select-window or select-frame events
7614 ;; or when the user drags a scroll bar.
7615 (or (memq this-command
7616 '(handle-select-window handle-switch-frame
))
7617 (and (eq this-command
'scroll-bar-toolkit-scroll
)
7618 (memq (nth 4 (event-end last-input-event
))
7619 '(handle end-scroll
)))))
7620 (setq mouse-autoselect-window-state nil
)
7621 (when (timerp mouse-autoselect-window-timer
)
7622 (cancel-timer mouse-autoselect-window-timer
))
7623 (remove-hook 'pre-command-hook
'mouse-autoselect-window-cancel
)))
7625 (defun mouse-autoselect-window-start (mouse-position &optional window suspend
)
7626 "Start delayed window autoselection.
7627 MOUSE-POSITION is the last position where the mouse was seen as returned
7628 by `mouse-position'. Optional argument WINDOW non-nil denotes the
7629 window where the mouse was seen. Optional argument SUSPEND non-nil
7630 means suspend autoselection."
7631 ;; Record values for MOUSE-POSITION, WINDOW, and SUSPEND.
7632 (setq mouse-autoselect-window-position mouse-position
)
7633 (when window
(setq mouse-autoselect-window-window window
))
7634 (setq mouse-autoselect-window-state
(when suspend
'suspend
))
7635 ;; Install timer which runs `mouse-autoselect-window-select' after
7636 ;; `mouse-autoselect-window' seconds.
7637 (setq mouse-autoselect-window-timer
7639 (abs mouse-autoselect-window
) nil
'mouse-autoselect-window-select
)))
7641 (defun mouse-autoselect-window-select ()
7642 "Select window with delayed window autoselection.
7643 If the mouse position has stabilized in a non-selected window, select
7644 that window. The minibuffer window is selected only if the minibuffer
7645 is active. This function is run by `mouse-autoselect-window-timer'."
7647 (let* ((mouse-position (mouse-position))
7650 (window-at (cadr mouse-position
) (cddr mouse-position
)
7651 (car mouse-position
)))))
7653 ((or (and (fboundp 'menu-or-popup-active-p
) (menu-or-popup-active-p))
7655 (let ((coords (coordinates-in-window-p
7656 (cdr mouse-position
) window
)))
7657 (and (not (consp coords
))
7658 (not (memq coords
'(left-margin right-margin
)))))))
7659 ;; A menu / popup dialog is active or the mouse is not on the
7660 ;; text region of WINDOW: Suspend autoselection temporarily.
7661 (mouse-autoselect-window-start mouse-position nil t
))
7662 ((eq mouse-autoselect-window-state
'suspend
)
7663 ;; Delayed autoselection was temporarily suspended, reenable it.
7664 (mouse-autoselect-window-start mouse-position
))
7665 ((and window
(not (eq window
(selected-window)))
7666 (or (not (numberp mouse-autoselect-window
))
7667 (and (> mouse-autoselect-window
0)
7668 ;; If `mouse-autoselect-window' is positive, select
7669 ;; window if the window is the same as before.
7670 (eq window mouse-autoselect-window-window
))
7671 ;; Otherwise select window if the mouse is at the same
7672 ;; position as before. Observe that the first test after
7673 ;; starting autoselection usually fails since the value of
7674 ;; `mouse-autoselect-window-position' recorded there is the
7675 ;; position where the mouse has entered the new window and
7676 ;; not necessarily where the mouse has stopped moving.
7677 (equal mouse-position mouse-autoselect-window-position
))
7678 ;; The minibuffer is a candidate window if it's active.
7679 (or (not (window-minibuffer-p window
))
7680 (eq window
(active-minibuffer-window))))
7681 ;; Mouse position has stabilized in non-selected window: Cancel
7682 ;; delayed autoselection and try to select that window.
7683 (mouse-autoselect-window-cancel t
)
7684 ;; Select window where mouse appears unless the selected window is the
7685 ;; minibuffer. Use `unread-command-events' in order to execute pre-
7686 ;; and post-command hooks and trigger idle timers. To avoid delaying
7687 ;; autoselection again, set `mouse-autoselect-window-state'."
7688 (unless (window-minibuffer-p)
7689 (setq mouse-autoselect-window-state
'select
)
7690 (setq unread-command-events
7691 (cons (list 'select-window
(list window
))
7692 unread-command-events
))))
7693 ((or (and window
(eq window
(selected-window)))
7694 (not (numberp mouse-autoselect-window
))
7695 (equal mouse-position mouse-autoselect-window-position
))
7696 ;; Mouse position has either stabilized in the selected window or at
7697 ;; `mouse-autoselect-window-position': Cancel delayed autoselection.
7698 (mouse-autoselect-window-cancel t
))
7700 ;; Mouse position has not stabilized yet, resume delayed
7702 (mouse-autoselect-window-start mouse-position window
))))))
7704 (defun handle-select-window (event)
7705 "Handle select-window events."
7707 (let ((window (posn-window (event-start event
))))
7708 (unless (or (not (window-live-p window
))
7709 ;; Don't switch if we're currently in the minibuffer.
7710 ;; This tries to work around problems where the
7711 ;; minibuffer gets unselected unexpectedly, and where
7712 ;; you then have to move your mouse all the way down to
7713 ;; the minibuffer to select it.
7714 (window-minibuffer-p)
7715 ;; Don't switch to minibuffer window unless it's active.
7716 (and (window-minibuffer-p window
)
7717 (not (minibuffer-window-active-p window
)))
7718 ;; Don't switch when autoselection shall be delayed.
7719 (and (numberp mouse-autoselect-window
)
7720 (not (zerop mouse-autoselect-window
))
7721 (not (eq mouse-autoselect-window-state
'select
))
7723 ;; Cancel any delayed autoselection.
7724 (mouse-autoselect-window-cancel t
)
7725 ;; Start delayed autoselection from current mouse
7726 ;; position and window.
7727 (mouse-autoselect-window-start (mouse-position) window
)
7728 ;; Executing a command cancels delayed autoselection.
7730 'pre-command-hook
'mouse-autoselect-window-cancel
))))
7731 (when mouse-autoselect-window
7732 ;; Reset state of delayed autoselection.
7733 (setq mouse-autoselect-window-state nil
)
7734 ;; Run `mouse-leave-buffer-hook' when autoselecting window.
7735 (run-hooks 'mouse-leave-buffer-hook
))
7738 (select-window window
))))
7740 (defun truncated-partial-width-window-p (&optional window
)
7741 "Return non-nil if lines in WINDOW are specifically truncated due to its width.
7742 WINDOW must be a live window and defaults to the selected one.
7743 Return nil if WINDOW is not a partial-width window
7744 (regardless of the value of `truncate-lines').
7745 Otherwise, consult the value of `truncate-partial-width-windows'
7746 for the buffer shown in WINDOW."
7747 (setq window
(window-normalize-window window t
))
7748 (unless (window-full-width-p window
)
7749 (let ((t-p-w-w (buffer-local-value 'truncate-partial-width-windows
7750 (window-buffer window
))))
7751 (if (integerp t-p-w-w
)
7752 (< (window-width window
) t-p-w-w
)
7755 ;; Some of these are in tutorial--default-keys, so update that if you
7757 (define-key ctl-x-map
"0" 'delete-window
)
7758 (define-key ctl-x-map
"1" 'delete-other-windows
)
7759 (define-key ctl-x-map
"2" 'split-window-below
)
7760 (define-key ctl-x-map
"3" 'split-window-right
)
7761 (define-key ctl-x-map
"o" 'other-window
)
7762 (define-key ctl-x-map
"^" 'enlarge-window
)
7763 (define-key ctl-x-map
"}" 'enlarge-window-horizontally
)
7764 (define-key ctl-x-map
"{" 'shrink-window-horizontally
)
7765 (define-key ctl-x-map
"-" 'shrink-window-if-larger-than-buffer
)
7766 (define-key ctl-x-map
"+" 'balance-windows
)
7767 (define-key ctl-x-4-map
"0" 'kill-buffer-and-window
)
7769 ;;; window.el ends here