(electric-history-map): Define within defvar. Add docstring.
[bpt/emacs.git] / lisp / window.el
CommitLineData
55535639 1;;; window.el --- GNU Emacs window commands aside from those written in C
d46bac56 2
0d30b337 3;; Copyright (C) 1985, 1989, 1992, 1993, 1994, 2000, 2001, 2002,
409cc4a3 4;; 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
a2535589 5
58142744 6;; Maintainer: FSF
284b3043 7;; Keywords: internal
58142744 8
a2535589
JA
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
a2535589 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
a2535589
JA
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
a2535589 23
fe7a0e7d
SM
24;;; Commentary:
25
26;; Window tree functions.
27
28;;; Code:
82e6d8cb 29
51a0cb35
AS
30(eval-when-compile (require 'cl))
31
64da8b20
RS
32(defvar window-size-fixed nil
33 "*Non-nil in a buffer means windows displaying the buffer are fixed-size.
9fa87e0d 34If the value is `height', then only the window's height is fixed.
64da8b20
RS
35If the value is `width', then only the window's width is fixed.
36Any other non-nil value fixes both the width and the height.
37Emacs won't change the size of any window displaying that buffer,
38unless you explicitly change the size, or Emacs has no other choice.")
39(make-variable-buffer-local 'window-size-fixed)
40
471af22c
AS
41(defmacro save-selected-window (&rest body)
42 "Execute BODY, then select the window that was selected before BODY.
7db3c58f
RS
43The value returned is the value of the last form in BODY.
44
45This macro saves and restores the current buffer, since otherwise
46its normal operation could potentially make a different
198081c8 47buffer current. It does not alter the buffer list ordering.
7db3c58f
RS
48
49This macro saves and restores the selected window, as well as
50the selected window in each frame. If the previously selected
51window of some frame is no longer live at the end of BODY, that
52frame's selected window is left alone. If the selected window is
53no longer live, then whatever window is selected at the end of
54BODY remains selected."
991ce473 55 `(let ((save-selected-window-window (selected-window))
1c795a0e
RS
56 ;; It is necessary to save all of these, because calling
57 ;; select-window changes frame-selected-window for whatever
58 ;; frame that window is in.
991ce473 59 (save-selected-window-alist
62e3c31f 60 (mapcar (lambda (frame) (cons frame (frame-selected-window frame)))
991ce473 61 (frame-list))))
7db3c58f
RS
62 (save-current-buffer
63 (unwind-protect
64 (progn ,@body)
65 (dolist (elt save-selected-window-alist)
66 (and (frame-live-p (car elt))
62e3c31f
SM
67 (window-live-p (cdr elt))
68 (set-frame-selected-window (car elt) (cdr elt))))
7db3c58f
RS
69 (if (window-live-p save-selected-window-window)
70 (select-window save-selected-window-window))))))
471af22c 71
e58bff59
RS
72(defun window-body-height (&optional window)
73 "Return number of lines in window WINDOW for actual buffer text.
74This does not include the mode line (if any) or the header line (if any)."
75 (or window (setq window (selected-window)))
9df6e638
RS
76 (if (window-minibuffer-p window)
77 (window-height window)
78 (with-current-buffer (window-buffer window)
79 (max 1 (- (window-height window)
80 (if mode-line-format 1 0)
81 (if header-line-format 1 0))))))
e58bff59 82
82e6d8cb 83(defun one-window-p (&optional nomini all-frames)
90dc1922 84 "Return non-nil if the selected window is the only window.
82e6d8cb 85Optional arg NOMINI non-nil means don't count the minibuffer
90dc1922
LT
86even if it is active. Otherwise, the minibuffer is counted
87when it is active.
82e6d8cb
RS
88
89The optional arg ALL-FRAMES t means count windows on all frames.
90If it is `visible', count windows on all visible frames.
fe7a0e7d 91ALL-FRAMES nil or omitted means count only the selected frame,
82e6d8cb 92plus the minibuffer it uses (which may be on another frame).
90dc1922
LT
93ALL-FRAMES 0 means count all windows in all visible or iconified frames.
94If ALL-FRAMES is anything else, count only the selected frame."
82e6d8cb
RS
95 (let ((base-window (selected-window)))
96 (if (and nomini (eq base-window (minibuffer-window)))
97 (setq base-window (next-window base-window)))
98 (eq base-window
99 (next-window base-window (if nomini 'arg) all-frames))))
100
22f9c48c
KS
101(defun window-current-scroll-bars (&optional window)
102 "Return the current scroll-bar settings in window WINDOW.
c62195fa 103Value is a cons (VERTICAL . HORIZONTAL) where VERTICAL specifies the
22f9c48c 104current location of the vertical scroll-bars (left, right, or nil),
c62195fa 105and HORIZONTAL specifies the current location of the horizontal scroll
22f9c48c
KS
106bars (top, bottom, or nil)."
107 (let ((vert (nth 2 (window-scroll-bars window)))
108 (hor nil))
109 (when (or (eq vert t) (eq hor t))
90dc1922 110 (let ((fcsb (frame-current-scroll-bars
22f9c48c
KS
111 (window-frame (or window (selected-window))))))
112 (if (eq vert t)
113 (setq vert (car fcsb)))
114 (if (eq hor t)
115 (setq hor (cdr fcsb)))))
116 (cons vert hor)))
117
82e6d8cb
RS
118(defun walk-windows (proc &optional minibuf all-frames)
119 "Cycle through all visible windows, calling PROC for each one.
120PROC is called with a window as argument.
121
122Optional second arg MINIBUF t means count the minibuffer window even
4837b516 123if not active. MINIBUF nil or omitted means count the minibuffer only if
82e6d8cb
RS
124it is active. MINIBUF neither t nor nil means not to count the
125minibuffer even if it is active.
126
127Several frames may share a single minibuffer; if the minibuffer
128counts, all windows on all frames that share that minibuffer count
5aa29df8
RS
129too. Therefore, if you are using a separate minibuffer frame
130and the minibuffer is active and MINIBUF says it counts,
82e6d8cb 131`walk-windows' includes the windows in the frame from which you
5aa29df8 132entered the minibuffer, as well as the minibuffer window.
82e6d8cb 133
04ea572f
RS
134ALL-FRAMES is the optional third argument.
135ALL-FRAMES nil or omitted means cycle within the frames as specified above.
136ALL-FRAMES = `visible' means include windows on all visible frames.
82e6d8cb 137ALL-FRAMES = 0 means include windows on all visible and iconified frames.
04ea572f 138ALL-FRAMES = t means include windows on all frames including invisible frames.
aeb721fe 139If ALL-FRAMES is a frame, it means include windows on that frame.
c7d031ed 140Anything else means restrict to the selected frame."
82e6d8cb
RS
141 ;; If we start from the minibuffer window, don't fail to come back to it.
142 (if (window-minibuffer-p (selected-window))
143 (setq minibuf t))
aeb721fe
GM
144 (save-selected-window
145 (if (framep all-frames)
146 (select-window (frame-first-window all-frames)))
d4aff7cc
GM
147 (let* (walk-windows-already-seen
148 (walk-windows-current (selected-window)))
aeb721fe
GM
149 (while (progn
150 (setq walk-windows-current
151 (next-window walk-windows-current minibuf all-frames))
d4aff7cc
GM
152 (not (memq walk-windows-current walk-windows-already-seen)))
153 (setq walk-windows-already-seen
154 (cons walk-windows-current walk-windows-already-seen))
155 (funcall proc walk-windows-current)))))
156
d4d986f2
GM
157(defun get-window-with-predicate (predicate &optional minibuf
158 all-frames default)
d4aff7cc
GM
159 "Return a window satisfying PREDICATE.
160
161This function cycles through all visible windows using `walk-windows',
162calling PREDICATE on each one. PREDICATE is called with a window as
163argument. The first window for which PREDICATE returns a non-nil
164value is returned. If no window satisfies PREDICATE, DEFAULT is
165returned.
166
167Optional second arg MINIBUF t means count the minibuffer window even
4837b516 168if not active. MINIBUF nil or omitted means count the minibuffer only if
d4aff7cc
GM
169it is active. MINIBUF neither t nor nil means not to count the
170minibuffer even if it is active.
171
172Several frames may share a single minibuffer; if the minibuffer
173counts, all windows on all frames that share that minibuffer count
174too. Therefore, if you are using a separate minibuffer frame
175and the minibuffer is active and MINIBUF says it counts,
176`walk-windows' includes the windows in the frame from which you
177entered the minibuffer, as well as the minibuffer window.
178
179ALL-FRAMES is the optional third argument.
180ALL-FRAMES nil or omitted means cycle within the frames as specified above.
181ALL-FRAMES = `visible' means include windows on all visible frames.
182ALL-FRAMES = 0 means include windows on all visible and iconified frames.
183ALL-FRAMES = t means include windows on all frames including invisible frames.
184If ALL-FRAMES is a frame, it means include windows on that frame.
185Anything else means restrict to the selected frame."
186 (catch 'found
fe7a0e7d 187 (walk-windows #'(lambda (window)
d4aff7cc
GM
188 (when (funcall predicate window)
189 (throw 'found window)))
190 minibuf all-frames)
191 default))
82e6d8cb 192
d4d986f2
GM
193(defalias 'some-window 'get-window-with-predicate)
194
ba27aa4c
RS
195;; This should probably be written in C (i.e., without using `walk-windows').
196(defun get-buffer-window-list (buffer &optional minibuf frame)
197 "Return list of all windows displaying BUFFER, or nil if none.
198BUFFER can be a buffer or a buffer name.
199See `walk-windows' for the meaning of MINIBUF and FRAME."
200 (let ((buffer (if (bufferp buffer) buffer (get-buffer buffer))) windows)
201 (walk-windows (function (lambda (window)
202 (if (eq (window-buffer window) buffer)
203 (setq windows (cons window windows)))))
204 minibuf frame)
205 windows))
206
82e6d8cb
RS
207(defun minibuffer-window-active-p (window)
208 "Return t if WINDOW (a minibuffer window) is now active."
0d624ea4 209 (eq window (active-minibuffer-window)))
82e6d8cb 210\f
a2535589 211(defun count-windows (&optional minibuf)
fe7a0e7d 212 "Return the number of visible windows.
b70b2dd2
KH
213This counts the windows in the selected frame and (if the minibuffer is
214to be counted) its minibuffer frame (if that's not the same frame).
215The optional arg MINIBUF non-nil means count the minibuffer
c6897d8e 216even if it is inactive."
a2535589 217 (let ((count 0))
693b2fe2 218 (walk-windows (lambda (w) (setq count (+ count 1)))
a2535589
JA
219 minibuf)
220 count))
221
fe7a0e7d 222(defun window-safely-shrinkable-p (&optional window)
119171dd
EZ
223 "Non-nil if the WINDOW can be shrunk without shrinking other windows.
224If WINDOW is nil or omitted, it defaults to the currently selected window."
fc4d69e1
SM
225 (with-selected-window (or window (selected-window))
226 (let ((edges (window-edges)))
227 (or (= (nth 2 edges) (nth 2 (window-edges (previous-window))))
228 (= (nth 0 edges) (nth 0 (window-edges (next-window))))))))
229
614b38a9
EZ
230\f
231;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
232;;; `balance-windows' subroutines using `window-tree'
233
234;;; Translate from internal window tree format
235
236(defun bw-get-tree (&optional window-or-frame)
237 "Get a window split tree in our format.
238
239WINDOW-OR-FRAME must be nil, a frame, or a window. If it is nil,
240then the whole window split tree for `selected-frame' is returned.
241If it is a frame, then this is used instead. If it is a window,
242then the smallest tree containing that window is returned."
243 (when window-or-frame
244 (unless (or (framep window-or-frame)
245 (windowp window-or-frame))
246 (error "Not a frame or window: %s" window-or-frame)))
247 (let ((subtree (bw-find-tree-sub window-or-frame)))
114b3e94
EZ
248 (when subtree
249 (if (integerp subtree)
250 nil
251 (bw-get-tree-1 subtree)))))
614b38a9
EZ
252
253(defun bw-get-tree-1 (split)
254 (if (windowp split)
255 split
256 (let ((dir (car split))
257 (edges (car (cdr split)))
258 (childs (cdr (cdr split))))
259 (list
260 (cons 'dir (if dir 'ver 'hor))
261 (cons 'b (nth 3 edges))
262 (cons 'r (nth 2 edges))
263 (cons 't (nth 1 edges))
264 (cons 'l (nth 0 edges))
265 (cons 'childs (mapcar #'bw-get-tree-1 childs))))))
266
267(defun bw-find-tree-sub (window-or-frame &optional get-parent)
268 (let* ((window (when (windowp window-or-frame) window-or-frame))
269 (frame (when (windowp window) (window-frame window)))
270 (wt (car (window-tree frame))))
271 (when (< 1 (length (window-list frame 0)))
272 (if window
273 (bw-find-tree-sub-1 wt window get-parent)
274 wt))))
275
276(defun bw-find-tree-sub-1 (tree win &optional get-parent)
277 (unless (windowp win) (error "Not a window: %s" win))
278 (if (memq win tree)
279 (if get-parent
280 get-parent
281 tree)
282 (let ((childs (cdr (cdr tree)))
283 child
284 subtree)
285 (while (and childs (not subtree))
286 (setq child (car childs))
287 (setq childs (cdr childs))
288 (when (and child (listp child))
289 (setq subtree (bw-find-tree-sub-1 child win get-parent))))
290 (if (integerp subtree)
291 (progn
292 (if (= 1 subtree)
293 tree
294 (1- subtree)))
295 subtree
296 ))))
297
298;;; Window or object edges
299
7017d254 300(defun bw-l (obj)
614b38a9
EZ
301 "Left edge of OBJ."
302 (if (windowp obj) (nth 0 (window-edges obj)) (cdr (assq 'l obj))))
7017d254 303(defun bw-t (obj)
614b38a9
EZ
304 "Top edge of OBJ."
305 (if (windowp obj) (nth 1 (window-edges obj)) (cdr (assq 't obj))))
7017d254 306(defun bw-r (obj)
614b38a9
EZ
307 "Right edge of OBJ."
308 (if (windowp obj) (nth 2 (window-edges obj)) (cdr (assq 'r obj))))
7017d254 309(defun bw-b (obj)
614b38a9
EZ
310 "Bottom edge of OBJ."
311 (if (windowp obj) (nth 3 (window-edges obj)) (cdr (assq 'b obj))))
312
313;;; Split directions
314
7017d254 315(defun bw-dir (obj)
614b38a9 316 "Return window split tree direction if OBJ.
7017d254 317If OBJ is a window return 'both. If it is a window split tree
614b38a9
EZ
318then return its direction."
319 (if (symbolp obj)
320 obj
321 (if (windowp obj)
322 'both
323 (let ((dir (cdr (assq 'dir obj))))
324 (unless (memq dir '(hor ver both))
325 (error "Can't find dir in %s" obj))
326 dir))))
327
7017d254 328(defun bw-eqdir (obj1 obj2)
614b38a9
EZ
329 "Return t if window split tree directions are equal.
330OBJ1 and OBJ2 should be either windows or window split trees in
7017d254 331our format. The directions returned by `bw-dir' are compared and
614b38a9
EZ
332t is returned if they are `eq' or one of them is 'both."
333 (let ((dir1 (bw-dir obj1))
334 (dir2 (bw-dir obj2)))
335 (or (eq dir1 dir2)
336 (eq dir1 'both)
337 (eq dir2 'both))))
338
339;;; Building split tree
340
7017d254 341(defun bw-refresh-edges (obj)
614b38a9
EZ
342 "Refresh the edge information of OBJ and return OBJ."
343 (unless (windowp obj)
344 (let ((childs (cdr (assq 'childs obj)))
345 (ol 1000)
346 (ot 1000)
347 (or -1)
348 (ob -1))
349 (dolist (o childs)
350 (when (> ol (bw-l o)) (setq ol (bw-l o)))
351 (when (> ot (bw-t o)) (setq ot (bw-t o)))
352 (when (< or (bw-r o)) (setq or (bw-r o)))
353 (when (< ob (bw-b o)) (setq ob (bw-b o))))
354 (setq obj (delq 'l obj))
355 (setq obj (delq 't obj))
356 (setq obj (delq 'r obj))
357 (setq obj (delq 'b obj))
358 (add-to-list 'obj (cons 'l ol))
359 (add-to-list 'obj (cons 't ot))
360 (add-to-list 'obj (cons 'r or))
361 (add-to-list 'obj (cons 'b ob))
362 ))
363 obj)
364
365;;; Balance windows
366
7017d254 367(defun balance-windows (&optional window-or-frame)
614b38a9
EZ
368 "Make windows the same heights or widths in window split subtrees.
369
370When called non-interactively WINDOW-OR-FRAME may be either a
7017d254
JB
371window or a frame. It then balances the windows on the implied
372frame. If the parameter is a window only the corresponding window
614b38a9 373subtree is balanced."
a2535589 374 (interactive)
614b38a9
EZ
375 (let (
376 (wt (bw-get-tree window-or-frame))
377 (w)
378 (h)
379 (tried-sizes)
380 (last-sizes)
693b2fe2 381 (windows (window-list nil 0)))
614b38a9
EZ
382 (when wt
383 (while (not (member last-sizes tried-sizes))
384 (when last-sizes (setq tried-sizes (cons last-sizes tried-sizes)))
7017d254 385 (setq last-sizes (mapcar (lambda (w)
614b38a9
EZ
386 (window-edges w))
387 windows))
388 (when (eq 'hor (bw-dir wt))
389 (setq w (- (bw-r wt) (bw-l wt))))
390 (when (eq 'ver (bw-dir wt))
391 (setq h (- (bw-b wt) (bw-t wt))))
392 (bw-balance-sub wt w h)))))
393
7017d254 394(defun bw-adjust-window (window delta horizontal)
614b38a9
EZ
395 "Wrapper around `adjust-window-trailing-edge' with error checking.
396Arguments WINDOW, DELTA and HORIZONTAL are passed on to that function."
62e3c31f
SM
397 ;; `adjust-window-trailing-edge' may fail if delta is too large.
398 (while (>= (abs delta) 1)
399 (condition-case err
400 (progn
401 (adjust-window-trailing-edge window delta horizontal)
402 (setq delta 0))
403 (error
404 ;;(message "adjust: %s" (error-message-string err))
405 (setq delta (/ delta 2))))))
614b38a9 406
7017d254 407(defun bw-balance-sub (wt w h)
614b38a9
EZ
408 (setq wt (bw-refresh-edges wt))
409 (unless w (setq w (- (bw-r wt) (bw-l wt))))
410 (unless h (setq h (- (bw-b wt) (bw-t wt))))
411 (if (windowp wt)
412 (progn
413 (when w
414 (let ((dw (- w (- (bw-r wt) (bw-l wt)))))
415 (when (/= 0 dw)
693b2fe2 416 (bw-adjust-window wt dw t))))
614b38a9
EZ
417 (when h
418 (let ((dh (- h (- (bw-b wt) (bw-t wt)))))
419 (when (/= 0 dh)
420 (bw-adjust-window wt dh nil)))))
421 (let* ((childs (cdr (assq 'childs wt)))
614b38a9
EZ
422 (cw (when w (/ w (if (bw-eqdir 'hor wt) (length childs) 1))))
423 (ch (when h (/ h (if (bw-eqdir 'ver wt) (length childs) 1)))))
424 (dolist (c childs)
693b2fe2 425 (bw-balance-sub c cw ch)))))
614b38a9 426
62e3c31f
SM
427;;; A different solution to balance-windows
428
429(defun window-fixed-size-p (&optional window direction)
430 "Non-nil if WINDOW cannot be resized in DIRECTION.
431DIRECTION can be nil (i.e. any), `height' or `width'."
432 (with-current-buffer (window-buffer window)
433 (let ((fixed (and (boundp 'window-size-fixed) window-size-fixed)))
434 (when fixed
435 (not (and direction
436 (member (cons direction window-size-fixed)
437 '((height . width) (width . height)))))))))
438
439(defvar window-area-factor 1
440 "Factor by which the window area should be over-estimated.
441This is used by `balance-windows-area'.
442Changing this globally has no effect.")
443
444(defun balance-windows-area ()
445 "Make all visible windows the same area (approximately).
446See also `window-area-factor' to change the relative size of specific buffers."
447 (interactive)
448 (let* ((unchanged 0) (carry 0) (round 0)
449 ;; Remove fixed-size windows.
450 (wins (delq nil (mapcar (lambda (win)
451 (if (not (window-fixed-size-p win)) win))
452 (window-list nil 'nomini))))
453 (changelog nil)
454 next)
455 ;; Resizing a window changes the size of surrounding windows in complex
456 ;; ways, so it's difficult to balance them all. The introduction of
457 ;; `adjust-window-trailing-edge' made it a bit easier, but it is still
458 ;; very difficult to do. `balance-window' above takes an off-line
459 ;; approach: get the whole window tree, then balance it, then try to
460 ;; adjust the windows so they fit the result.
461 ;; Here, instead, we take a "local optimization" approach, where we just
462 ;; go through all the windows several times until nothing needs to be
463 ;; changed. The main problem with this approach is that it's difficult
464 ;; to make sure it terminates, so we use some heuristic to try and break
465 ;; off infinite loops.
466 ;; After a round without any change, we allow a second, to give a chance
467 ;; to the carry to propagate a minor imbalance from the end back to
468 ;; the beginning.
469 (while (< unchanged 2)
470 ;; (message "New round")
471 (setq unchanged (1+ unchanged) round (1+ round))
472 (dolist (win wins)
473 (setq next win)
474 (while (progn (setq next (next-window next))
475 (window-fixed-size-p next)))
476 ;; (assert (eq next (or (cadr (member win wins)) (car wins))))
477 (let* ((horiz
478 (< (car (window-edges win)) (car (window-edges next))))
479 (areadiff (/ (- (* (window-height next) (window-width next)
480 (buffer-local-value 'window-area-factor
481 (window-buffer next)))
482 (* (window-height win) (window-width win)
483 (buffer-local-value 'window-area-factor
484 (window-buffer win))))
485 (max (buffer-local-value 'window-area-factor
486 (window-buffer win))
487 (buffer-local-value 'window-area-factor
488 (window-buffer next)))))
489 (edgesize (if horiz
490 (+ (window-height win) (window-height next))
491 (+ (window-width win) (window-width next))))
492 (diff (/ areadiff edgesize)))
493 (when (zerop diff)
494 ;; Maybe diff is actually closer to 1 than to 0.
495 (setq diff (/ (* 3 areadiff) (* 2 edgesize))))
496 (when (and (zerop diff) (not (zerop areadiff)))
497 (setq diff (/ (+ areadiff carry) edgesize))
498 ;; Change things smoothly.
499 (if (or (> diff 1) (< diff -1)) (setq diff (/ diff 2))))
500 (if (zerop diff)
501 ;; Make sure negligible differences don't accumulate to
502 ;; become significant.
503 (setq carry (+ carry areadiff))
504 (bw-adjust-window win diff horiz)
505 ;; (sit-for 0.5)
506 (let ((change (cons win (window-edges win))))
507 ;; If the same change has been seen already for this window,
508 ;; we're most likely in an endless loop, so don't count it as
509 ;; a change.
510 (unless (member change changelog)
511 (push change changelog)
512 (setq unchanged 0 carry 0)))))))
513 ;; We've now basically balanced all the windows.
514 ;; But there may be some minor off-by-one imbalance left over,
515 ;; so let's do some fine tuning.
516 ;; (bw-finetune wins)
517 ;; (message "Done in %d rounds" round)
518 ))
519
614b38a9 520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
82e6d8cb 521\f
4a4accf7 522;; I think this should be the default; I think people will prefer it--rms.
30e19aee 523(defcustom split-window-keep-point t
90dc1922
LT
524 "*If non-nil, \\[split-window-vertically] keeps the original point \
525in both children.
7162c5c4
RS
526This is often more convenient for editing.
527If nil, adjust point in each of the two windows to minimize redisplay.
90dc1922
LT
528This is convenient on slow terminals, but point can move strangely.
529
530This option applies only to `split-window-vertically' and
531functions that call it. `split-window' always keeps the original
7017d254 532point in both children."
30e19aee
RS
533 :type 'boolean
534 :group 'windows)
8e4b71d8 535
a2535589
JA
536(defun split-window-vertically (&optional arg)
537 "Split current window into two windows, one above the other.
c65c1681 538The uppermost window gets ARG lines and the other gets the rest.
90dc1922 539Negative ARG means select the size of the lowermost window instead.
c65c1681
RS
540With no argument, split equally or close to it.
541Both windows display the same buffer now current.
c65c1681 542
3e9890d1 543If the variable `split-window-keep-point' is non-nil, both new windows
8e4b71d8 544will get the same value of point as the current window. This is often
90dc1922 545more convenient for editing. The upper window is the selected window.
8e4b71d8 546
90dc1922 547Otherwise, we choose window starts so as to minimize the amount of
8e4b71d8
JB
548redisplay; this is convenient on slow terminals. The new selected
549window is the one that the current value of point appears in. The
550value of point can change if the text around point is hidden by the
90dc1922
LT
551new mode line.
552
553Regardless of the value of `split-window-keep-point', the upper
554window is the original one and the return value is the new, lower
555window."
a2535589
JA
556 (interactive "P")
557 (let ((old-w (selected-window))
c65c1681 558 (old-point (point))
ab94bf9f 559 (size (and arg (prefix-numeric-value arg)))
4464514e 560 (window-full-p nil)
693b2fe2 561 new-w bottom moved)
ab94bf9f
KH
562 (and size (< size 0) (setq size (+ (window-height) size)))
563 (setq new-w (split-window nil size))
7d7f1f33 564 (or split-window-keep-point
c65c1681 565 (progn
8e4b71d8
JB
566 (save-excursion
567 (set-buffer (window-buffer))
568 (goto-char (window-start))
4464514e 569 (setq moved (vertical-motion (window-height)))
8e4b71d8
JB
570 (set-window-start new-w (point))
571 (if (> (point) (window-point new-w))
572 (set-window-point new-w (point)))
4464514e
RS
573 (and (= moved (window-height))
574 (progn
575 (setq window-full-p t)
576 (vertical-motion -1)))
577 (setq bottom (point)))
578 (and window-full-p
579 (<= bottom (point))
580 (set-window-point old-w (1- bottom)))
581 (and window-full-p
582 (<= (window-start new-w) old-point)
583 (progn
584 (set-window-point new-w old-point)
585 (select-window new-w)))))
c361280d
RS
586 (split-window-save-restore-data new-w old-w)))
587
3d2f23d9
RS
588;; This is to avoid compiler warnings.
589(defvar view-return-to-alist)
590
c361280d 591(defun split-window-save-restore-data (new-w old-w)
4a4accf7 592 (with-current-buffer (window-buffer)
c361280d
RS
593 (if view-mode
594 (let ((old-info (assq old-w view-return-to-alist)))
6b3b4dbb
RS
595 (if old-info
596 (push (cons new-w (cons (car (cdr old-info)) t))
597 view-return-to-alist))))
2ed3f64c 598 new-w))
a2535589
JA
599
600(defun split-window-horizontally (&optional arg)
601 "Split current window into two windows side by side.
0ef2c2f2 602This window becomes the leftmost of the two, and gets ARG columns.
90dc1922 603Negative ARG means select the size of the rightmost window instead.
dd1455c2
RS
604The argument includes the width of the window's scroll bar; if there
605are no scroll bars, it includes the width of the divider column
90dc1922
LT
606to the window's right, if any. No ARG means split equally.
607
608The original, leftmost window remains selected.
609The return value is the new, rightmost window."
a2535589 610 (interactive "P")
c361280d
RS
611 (let ((old-w (selected-window))
612 (size (and arg (prefix-numeric-value arg))))
0ef2c2f2
KH
613 (and size (< size 0)
614 (setq size (+ (window-width) size)))
c361280d 615 (split-window-save-restore-data (split-window nil size t) old-w)))
361691dc 616
b0b0ffa3
JL
617(defun split-window-preferred-horizontally (window)
618 "Split WINDOW horizontally or select an appropriate existing window.
619It is called by `display-buffer' to split windows horizontally
620when the option `split-window-preferred-function' is set to \"horizontally\".
621This function tries to match the implementation of vertical splitting
622in `display-buffer' as close as possible but with the logic of
623horizontal splitting. It returns a new window or an appropriate
624existing window if splitting is not eligible."
625 (interactive)
626 ;; If the largest window is wide enough, eligible for splitting,
627 ;; and the only window, split it horizontally.
628 (if (and window
629 (not (frame-parameter (window-frame window) 'unsplittable))
630 (one-window-p (window-frame window))
631 (>= (window-width window) (* 2 window-min-width)))
632 (split-window window nil t)
633 ;; Otherwise, if the LRU window is wide enough, eligible for
634 ;; splitting and selected or the only window, split it horizontally.
635 (setq window (get-lru-window nil t))
636 (if (and window
637 (not (frame-parameter (window-frame window) 'unsplittable))
638 (or (eq window (selected-window))
639 (one-window-p (window-frame window)))
640 (>= (window-width window) (* 2 window-min-width)))
641 (split-window window nil t)
642 ;; Otherwise, if get-lru-window returns nil, try other approaches.
643 (or
644 (get-lru-window nil nil)
645 ;; Try visible frames first.
646 (get-buffer-window (current-buffer) 'visible)
647 (get-largest-window 'visible)
648 ;; If that didn't work, try iconified frames.
649 (get-buffer-window (current-buffer) 0)
650 (get-largest-window 0)
651 ;; As a last resort, make a new frame.
652 (frame-selected-window (funcall pop-up-frame-function))))))
653
361691dc 654\f
361691dc
MB
655(defun set-window-text-height (window height)
656 "Sets the height in lines of the text display area of WINDOW to HEIGHT.
657This doesn't include the mode-line (or header-line if any) or any
658partial-height lines in the text display area.
659
660If WINDOW is nil, the selected window is used.
361691dc
MB
661
662Note that the current implementation of this function cannot always set
663the height exactly, but attempts to be conservative, by allocating more
664lines than are actually needed in the case where some error may be present."
665 (let ((delta (- height (window-text-height window))))
666 (unless (zerop delta)
5937a3fd
SM
667 ;; Setting window-min-height to a value like 1 can lead to very
668 ;; bizarre displays because it also allows Emacs to make *other*
669 ;; windows 1-line tall, which means that there's no more space for
670 ;; the modeline.
671 (let ((window-min-height (min 2 height))) ;One text line plus a modeline.
38f99c27
MB
672 (if (and window (not (eq window (selected-window))))
673 (save-selected-window
674 (select-window window)
675 (enlarge-window delta))
676 (enlarge-window delta))))))
361691dc 677
8075a110 678\f
a2535589
JA
679(defun enlarge-window-horizontally (arg)
680 "Make current window ARG columns wider."
681 (interactive "p")
682 (enlarge-window arg t))
683
684(defun shrink-window-horizontally (arg)
685 "Make current window ARG columns narrower."
686 (interactive "p")
687 (shrink-window arg t))
688
3b134005
RS
689(defun window-buffer-height (window)
690 "Return the height (in screen lines) of the buffer that WINDOW is displaying."
ba96f392
SM
691 (with-current-buffer (window-buffer window)
692 (max 1
693 (count-screen-lines (point-min) (point-max)
694 ;; If buffer ends with a newline, ignore it when
695 ;; counting height unless point is after it.
696 (eobp)
697 window))))
3b134005 698
c16c855b
GM
699(defun count-screen-lines (&optional beg end count-final-newline window)
700 "Return the number of screen lines in the region.
701The number of screen lines may be different from the number of actual lines,
702due to line breaking, display table, etc.
703
704Optional arguments BEG and END default to `point-min' and `point-max'
705respectively.
706
fe7a0e7d 707If region ends with a newline, ignore it unless optional third argument
c16c855b
GM
708COUNT-FINAL-NEWLINE is non-nil.
709
710The optional fourth argument WINDOW specifies the window used for obtaining
fe7a0e7d 711parameters such as width, horizontal scrolling, and so on. The default is
c16c855b
GM
712to use the selected window's parameters.
713
714Like `vertical-motion', `count-screen-lines' always uses the current buffer,
fe7a0e7d 715regardless of which buffer is displayed in WINDOW. This makes possible to use
c16c855b
GM
716`count-screen-lines' in any buffer, whether or not it is currently displayed
717in some window."
718 (unless beg
719 (setq beg (point-min)))
720 (unless end
721 (setq end (point-max)))
722 (if (= beg end)
723 0
724 (save-excursion
725 (save-restriction
726 (widen)
727 (narrow-to-region (min beg end)
728 (if (and (not count-final-newline)
729 (= ?\n (char-before (max beg end))))
730 (1- (max beg end))
731 (max beg end)))
732 (goto-char (point-min))
733 (1+ (vertical-motion (buffer-size) window))))))
734
65e742bd 735(defun fit-window-to-buffer (&optional window max-height min-height)
1cce8267 736 "Make WINDOW the right height to display its contents exactly.
119171dd 737If WINDOW is omitted or nil, it defaults to the selected window.
65e742bd
MB
738If the optional argument MAX-HEIGHT is supplied, it is the maximum height
739 the window is allowed to be, defaulting to the frame height.
740If the optional argument MIN-HEIGHT is supplied, it is the minimum
741 height the window is allowed to be, defaulting to `window-min-height'.
742
743The heights in MAX-HEIGHT and MIN-HEIGHT include the mode-line and/or
744header-line."
745 (interactive)
746
747 (when (null window)
748 (setq window (selected-window)))
3511cde8
MB
749 (when (null max-height)
750 (setq max-height (frame-height (window-frame window))))
65e742bd 751
88f0a1eb
MB
752 (let* ((buf
753 ;; Buffer that is displayed in WINDOW
754 (window-buffer window))
755 (window-height
65e742bd
MB
756 ;; The current height of WINDOW
757 (window-height window))
88f0a1eb 758 (desired-height
65e742bd
MB
759 ;; The height necessary to show the buffer displayed by WINDOW
760 ;; (`count-screen-lines' always works on the current buffer).
88f0a1eb
MB
761 (with-current-buffer buf
762 (+ (count-screen-lines)
b1491763
KH
763 ;; If the buffer is empty, (count-screen-lines) is
764 ;; zero. But, even in that case, we need one text line
765 ;; for cursor.
766 (if (= (point-min) (point-max))
767 1 0)
88f0a1eb
MB
768 ;; For non-minibuffers, count the mode-line, if any
769 (if (and (not (window-minibuffer-p window))
770 mode-line-format)
771 1 0)
772 ;; Count the header-line, if any
773 (if header-line-format 1 0))))
65e742bd
MB
774 (delta
775 ;; Calculate how much the window height has to change to show
88f0a1eb
MB
776 ;; desired-height lines, constrained by MIN-HEIGHT and MAX-HEIGHT.
777 (- (max (min desired-height max-height)
65e742bd 778 (or min-height window-min-height))
825906b8 779 window-height)))
65e742bd
MB
780
781 ;; Don't try to redisplay with the cursor at the end
782 ;; on its own line--that would force a scroll and spoil things.
88f0a1eb
MB
783 (when (with-current-buffer buf
784 (and (eobp) (bolp) (not (bobp))))
785 (set-window-point window (1- (window-point window))))
786
787 (save-selected-window
788 (select-window window)
789
790 ;; Adjust WINDOW to the nominally correct size (which may actually
791 ;; be slightly off because of variable height text, etc).
792 (unless (zerop delta)
793 (enlarge-window delta))
794
795 ;; Check if the last line is surely fully visible. If not,
796 ;; enlarge the window.
797 (let ((end (with-current-buffer buf
798 (save-excursion
799 (goto-char (point-max))
45450dd5
MB
800 (when (and (bolp) (not (bobp)))
801 ;; Don't include final newline
802 (backward-char 1))
803 (when truncate-lines
804 ;; If line-wrapping is turned off, test the
805 ;; beginning of the last line for visibility
806 ;; instead of the end, as the end of the line
807 ;; could be invisible by virtue of extending past
808 ;; the edge of the window.
809 (forward-line 0))
810 (point)))))
88f0a1eb
MB
811 (set-window-vscroll window 0)
812 (while (and (< desired-height max-height)
813 (= desired-height (window-height window))
df0677c3 814 (not (pos-visible-in-window-p end window)))
88f0a1eb 815 (enlarge-window 1)
edb08287 816 (setq desired-height (1+ desired-height)))))))
65e742bd 817
a0900d9f 818(defun shrink-window-if-larger-than-buffer (&optional window)
d0bee390 819 "Shrink the WINDOW to be as small as possible to display its contents.
119171dd 820If WINDOW is omitted or nil, it defaults to the selected window.
30f2e5cc 821Do not shrink to less than `window-min-height' lines.
d0bee390 822Do nothing if the buffer contains more lines than the present window height,
3eb217a0 823or if some of the window's contents are scrolled out of view,
fd8529d0 824or if shrinking this window would also shrink another window,
18fde850 825or if the window is the only window of its frame."
d0bee390 826 (interactive)
65e742bd
MB
827 (when (null window)
828 (setq window (selected-window)))
829 (let* ((frame (window-frame window))
830 (mini (frame-parameter frame 'minibuffer))
831 (edges (window-edges window)))
832 (if (and (not (eq window (frame-root-window frame)))
fe7a0e7d 833 (window-safely-shrinkable-p)
65e742bd
MB
834 (pos-visible-in-window-p (point-min) window)
835 (not (eq mini 'only))
836 (or (not mini)
f92c5e7d
GM
837 (let ((mini-window (minibuffer-window frame)))
838 (or (null mini-window)
839 (not (eq frame (window-frame mini-window)))
840 (< (nth 3 edges)
841 (nth 1 (window-edges mini-window)))
f1180544 842 (> (nth 1 edges)
f92c5e7d 843 (frame-parameter frame 'menu-bar-lines))))))
65e742bd 844 (fit-window-to-buffer window (window-height window)))))
b691df0c
RS
845
846(defun kill-buffer-and-window ()
847 "Kill the current buffer and delete the selected window."
848 (interactive)
0f790c74 849 (let ((window-to-delete (selected-window))
f5da083e 850 (buffer-to-kill (current-buffer))
0f790c74
RS
851 (delete-window-hook (lambda ()
852 (condition-case nil
853 (delete-window)
854 (error nil)))))
f5da083e
DK
855 (unwind-protect
856 (progn
857 (add-hook 'kill-buffer-hook delete-window-hook t t)
858 (if (kill-buffer (current-buffer))
859 ;; If `delete-window' failed before, we rerun it to regenerate
860 ;; the error so it can be seen in the echo area.
861 (when (eq (selected-window) window-to-delete)
862 (delete-window))))
863 ;; If the buffer is not dead for some reason (probably because
864 ;; of a `quit' signal), remove the hook again.
865 (condition-case nil
866 (with-current-buffer buffer-to-kill
867 (remove-hook 'kill-buffer-hook delete-window-hook t))
868 (error nil)))))
b691df0c 869
3d2f23d9
RS
870(defun quit-window (&optional kill window)
871 "Quit the current buffer. Bury it, and maybe delete the selected frame.
18fde850 872\(The frame is deleted if it contains a dedicated window for the buffer.)
3d2f23d9
RS
873With a prefix argument, kill the buffer instead.
874
875Noninteractively, if KILL is non-nil, then kill the current buffer,
876otherwise bury it.
877
878If WINDOW is non-nil, it specifies a window; we delete that window,
879and the buffer that is killed or buried is the one in that window."
880 (interactive "P")
881 (let ((buffer (window-buffer window))
c81845b6 882 (frame (window-frame (or window (selected-window))))
3d2f23d9
RS
883 (window-solitary
884 (save-selected-window
885 (if window
886 (select-window window))
887 (one-window-p t)))
888 window-handled)
889
890 (save-selected-window
891 (if window
892 (select-window window))
eed1360c
RS
893 (or (window-minibuffer-p)
894 (window-dedicated-p (selected-window))
895 (switch-to-buffer (other-buffer))))
3d2f23d9
RS
896
897 ;; Get rid of the frame, if it has just one dedicated window
898 ;; and other visible frames exist.
eed1360c 899 (and (or (window-minibuffer-p) (window-dedicated-p window))
3d2f23d9
RS
900 (delq frame (visible-frame-list))
901 window-solitary
902 (if (and (eq default-minibuffer-frame frame)
903 (= 1 (length (minibuffer-frame-list))))
904 (setq window nil)
905 (delete-frame frame)
906 (setq window-handled t)))
907
908 ;; Deal with the buffer.
909 (if kill
910 (kill-buffer buffer)
911 (bury-buffer buffer))
912
913 ;; Maybe get rid of the window.
914 (and window (not window-handled) (not window-solitary)
915 (delete-window window))))
de8ebf62
SM
916
917(defvar recenter-last-op nil
918 "Indicates the last recenter operation performed.
919Possible values: `top', `middle', `bottom'.")
920
921(defun recenter-top-bottom (&optional arg)
922 "Move current line to window center, top, and bottom, successively.
923With a prefix argument, this is the same as `recenter':
924 With numeric prefix ARG, move current line to window-line ARG.
925 With plain `C-u', move current line to window center.
926
927Otherwise move current line to window center on first call, and to
928top, middle, or bottom on successive calls.
929
b3c024b8 930The cycling order is: middle -> top -> bottom.
de8ebf62
SM
931
932Top and bottom destinations are actually `scroll-conservatively' lines
933from true window top and bottom."
934 (interactive "P")
935 (cond
936 (arg (recenter arg)) ; Always respect ARG.
937 ((not (eq this-command last-command))
938 ;; First time - save mode and recenter.
693b2fe2
SM
939 (setq recenter-last-op 'middle)
940 (recenter))
de8ebf62
SM
941 (t ;; repeat: loop through various options.
942 (setq recenter-last-op
18715c33
RS
943 (cond ((eq recenter-last-op 'middle)
944 (recenter scroll-conservatively)
945 'top)
946 ((eq recenter-last-op 'top)
947 (recenter (1- (- scroll-conservatively)))
948 'bottom)
949 ((eq recenter-last-op 'bottom)
950 (recenter)
951 'middle))))))
de8ebf62
SM
952
953(define-key global-map [?\C-l] 'recenter-top-bottom)
612c16f1
CY
954\f
955(defvar mouse-autoselect-window-timer nil
956 "Timer used by delayed window autoselection.")
957
958(defvar mouse-autoselect-window-position nil
959 "Last mouse position recorded by delayed window autoselection.")
960
961(defvar mouse-autoselect-window-window nil
962 "Last window recorded by delayed window autoselection.")
963
6a6af58e
EZ
964(defvar mouse-autoselect-window-state nil
965 "When non-nil, special state of delayed window autoselection.
966Possible values are `suspend' \(suspend autoselection after a menu or
967scrollbar interaction\) and `select' \(the next invocation of
968'handle-select-window' shall select the window immediately\).")
612c16f1
CY
969
970(defun mouse-autoselect-window-cancel (&optional force)
971 "Cancel delayed window autoselection.
972Optional argument FORCE means cancel unconditionally."
973 (unless (and (not force)
1398509c
MR
974 ;; Don't cancel for select-window or select-frame events
975 ;; or when the user drags a scroll bar.
976 (or (memq this-command
977 '(handle-select-window handle-switch-frame))
978 (and (eq this-command 'scroll-bar-toolkit-scroll)
979 (memq (nth 4 (event-end last-input-event))
980 '(handle end-scroll)))))
6a6af58e 981 (setq mouse-autoselect-window-state nil)
612c16f1
CY
982 (when (timerp mouse-autoselect-window-timer)
983 (cancel-timer mouse-autoselect-window-timer))
984 (remove-hook 'pre-command-hook 'mouse-autoselect-window-cancel)))
985
6a6af58e 986(defun mouse-autoselect-window-start (mouse-position &optional window suspend)
612c16f1 987 "Start delayed window autoselection.
6a6af58e
EZ
988MOUSE-POSITION is the last position where the mouse was seen as returned
989by `mouse-position'. Optional argument WINDOW non-nil denotes the
990window where the mouse was seen. Optional argument SUSPEND non-nil
991means suspend autoselection."
992 ;; Record values for MOUSE-POSITION, WINDOW, and SUSPEND.
993 (setq mouse-autoselect-window-position mouse-position)
994 (when window (setq mouse-autoselect-window-window window))
995 (setq mouse-autoselect-window-state (when suspend 'suspend))
996 ;; Install timer which runs `mouse-autoselect-window-select' after
612c16f1
CY
997 ;; `mouse-autoselect-window' seconds.
998 (setq mouse-autoselect-window-timer
999 (run-at-time
6a6af58e 1000 (abs mouse-autoselect-window) nil 'mouse-autoselect-window-select)))
612c16f1
CY
1001
1002(defun mouse-autoselect-window-select ()
1003 "Select window with delayed window autoselection.
1004If the mouse position has stabilized in a non-selected window, select
4837b516 1005that window. The minibuffer window is selected only if the minibuffer is
612c16f1
CY
1006active. This function is run by `mouse-autoselect-window-timer'."
1007 (condition-case nil
1008 (let* ((mouse-position (mouse-position))
6a6af58e
EZ
1009 (window
1010 (condition-case nil
1011 (window-at (cadr mouse-position) (cddr mouse-position)
1012 (car mouse-position))
1013 (error nil))))
612c16f1 1014 (cond
6a6af58e
EZ
1015 ((or (menu-or-popup-active-p)
1016 (and window
1017 (not (coordinates-in-window-p (cdr mouse-position) window))))
1018 ;; A menu / popup dialog is active or the mouse is on the scroll-bar
1019 ;; of WINDOW, temporarily suspend delayed autoselection.
1020 (mouse-autoselect-window-start mouse-position nil t))
1021 ((eq mouse-autoselect-window-state 'suspend)
1022 ;; Delayed autoselection was temporarily suspended, reenable it.
1023 (mouse-autoselect-window-start mouse-position))
612c16f1
CY
1024 ((and window (not (eq window (selected-window)))
1025 (or (not (numberp mouse-autoselect-window))
1026 (and (> mouse-autoselect-window 0)
1027 ;; If `mouse-autoselect-window' is positive, select
1028 ;; window if the window is the same as before.
1029 (eq window mouse-autoselect-window-window))
4837b516 1030 ;; Otherwise select window if the mouse is at the same
612c16f1 1031 ;; position as before. Observe that the first test after
6a6af58e
EZ
1032 ;; starting autoselection usually fails since the value of
1033 ;; `mouse-autoselect-window-position' recorded there is the
1034 ;; position where the mouse has entered the new window and
1035 ;; not necessarily where the mouse has stopped moving.
612c16f1 1036 (equal mouse-position mouse-autoselect-window-position))
4837b516 1037 ;; The minibuffer is a candidate window if it's active.
612c16f1
CY
1038 (or (not (window-minibuffer-p window))
1039 (eq window (active-minibuffer-window))))
6a6af58e
EZ
1040 ;; Mouse position has stabilized in non-selected window: Cancel
1041 ;; delayed autoselection and try to select that window.
612c16f1
CY
1042 (mouse-autoselect-window-cancel t)
1043 ;; Select window where mouse appears unless the selected window is the
1044 ;; minibuffer. Use `unread-command-events' in order to execute pre-
1045 ;; and post-command hooks and trigger idle timers. To avoid delaying
6a6af58e 1046 ;; autoselection again, set `mouse-autoselect-window-state'."
612c16f1 1047 (unless (window-minibuffer-p (selected-window))
6a6af58e 1048 (setq mouse-autoselect-window-state 'select)
612c16f1
CY
1049 (setq unread-command-events
1050 (cons (list 'select-window (list window))
1051 unread-command-events))))
1052 ((or (and window (eq window (selected-window)))
1053 (not (numberp mouse-autoselect-window))
1054 (equal mouse-position mouse-autoselect-window-position))
1055 ;; Mouse position has either stabilized in the selected window or at
6a6af58e 1056 ;; `mouse-autoselect-window-position': Cancel delayed autoselection.
612c16f1
CY
1057 (mouse-autoselect-window-cancel t))
1058 (t
6a6af58e
EZ
1059 ;; Mouse position has not stabilized yet, resume delayed
1060 ;; autoselection.
1061 (mouse-autoselect-window-start mouse-position window))))
612c16f1 1062 (error nil)))
3d2f23d9 1063
aa8d5134
PJ
1064(defun handle-select-window (event)
1065 "Handle select-window events."
1066 (interactive "e")
1067 (let ((window (posn-window (event-start event))))
1398509c
MR
1068 (unless (or (not (window-live-p window))
1069 ;; Don't switch if we're currently in the minibuffer.
1070 ;; This tries to work around problems where the
1071 ;; minibuffer gets unselected unexpectedly, and where
1072 ;; you then have to move your mouse all the way down to
1073 ;; the minibuffer to select it.
1074 (window-minibuffer-p (selected-window))
1075 ;; Don't switch to minibuffer window unless it's active.
1076 (and (window-minibuffer-p window)
1077 (not (minibuffer-window-active-p window)))
1078 ;; Don't switch when autoselection shall be delayed.
1079 (and (numberp mouse-autoselect-window)
1080 (not (zerop mouse-autoselect-window))
1081 (not (eq mouse-autoselect-window-state 'select))
1082 (progn
1083 ;; Cancel any delayed autoselection.
1084 (mouse-autoselect-window-cancel t)
1085 ;; Start delayed autoselection from current mouse position
1086 ;; and window.
1087 (mouse-autoselect-window-start (mouse-position) window)
1088 ;; Executing a command cancels delayed autoselection.
1089 (add-hook
1090 'pre-command-hook 'mouse-autoselect-window-cancel))))
1091 (when mouse-autoselect-window
6a6af58e
EZ
1092 ;; Reset state of delayed autoselection.
1093 (setq mouse-autoselect-window-state nil)
1398509c
MR
1094 ;; Run `mouse-leave-buffer-hook' when autoselecting window.
1095 (run-hooks 'mouse-leave-buffer-hook))
1096 (select-window window))))
aa8d5134 1097
4ecc0b67
SS
1098(defun delete-other-windows-vertically (&optional window)
1099 "Delete the windows in the same column with WINDOW, but not WINDOW itself.
1100This may be a useful alternative binding for \\[delete-other-windows]
1101 if you often split windows horizontally."
1102 (interactive)
1103 (let* ((window (or window (selected-window)))
1104 (edges (window-edges window))
1105 (w window) delenda)
1106 (while (not (eq (setq w (next-window w 1)) window))
1107 (let ((e (window-edges w)))
1108 (when (and (= (car e) (car edges))
1109 (= (caddr e) (caddr edges)))
1110 (push w delenda))))
1111 (mapc 'delete-window delenda)))
1112
a2535589 1113(define-key ctl-x-map "2" 'split-window-vertically)
492878e4 1114(define-key ctl-x-map "3" 'split-window-horizontally)
a2535589
JA
1115(define-key ctl-x-map "}" 'enlarge-window-horizontally)
1116(define-key ctl-x-map "{" 'shrink-window-horizontally)
a0900d9f
ER
1117(define-key ctl-x-map "-" 'shrink-window-if-larger-than-buffer)
1118(define-key ctl-x-map "+" 'balance-windows)
b691df0c 1119(define-key ctl-x-4-map "0" 'kill-buffer-and-window)
76d7458e 1120
66c226bf 1121;; arch-tag: b508dfcc-c353-4c37-89fa-e773fe10cea9
fe7a0e7d 1122;;; window.el ends here