Mercurial > emacs
annotate lisp/window.el @ 1156:2a92ddfaf6ba
entered into RCS
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Thu, 17 Sep 1992 01:12:50 +0000 |
parents | 2cdce064065f |
children | bb127c1081af |
rev | line source |
---|---|
656
d74e65773062
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
419
diff
changeset
|
1 ;;; windows.el --- GNU Emacs window commands aside from those written in C. |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
707
diff
changeset
|
2 |
841 | 3 ;;; Copyright (C) 1985, 1989, 1992 Free Software Foundation, Inc. |
4 | |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
707
diff
changeset
|
5 ;; Maintainer: FSF |
36 | 6 |
7 ;; This file is part of GNU Emacs. | |
8 | |
9 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
10 ;; it under the terms of the GNU General Public License as published by | |
707 | 11 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 12 ;; any later version. |
13 | |
14 ;; GNU Emacs is distributed in the hope that it will be useful, | |
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 ;; GNU General Public License for more details. | |
18 | |
19 ;; You should have received a copy of the GNU General Public License | |
20 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
21 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
22 | |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
707
diff
changeset
|
23 ;;; Code: |
36 | 24 |
25 (defun count-windows (&optional minibuf) | |
26 "Returns the number of visible windows. | |
27 Optional arg NO-MINI non-nil means don't count the minibuffer | |
28 even if it is active." | |
29 (let ((count 0)) | |
30 (walk-windows (function (lambda () | |
31 (setq count (+ count 1)))) | |
32 minibuf) | |
33 count)) | |
34 | |
35 (defun balance-windows () | |
36 "Makes all visible windows the same size (approximately)." | |
37 (interactive) | |
38 (let ((count 0)) | |
39 (walk-windows (function (lambda (w) | |
40 (setq count (+ count 1)))) | |
41 'nomini) | |
779 | 42 (let ((size (/ (frame-height) count))) |
36 | 43 (walk-windows (function (lambda (w) |
44 (select-window w) | |
45 (enlarge-window (- size (window-height))))) | |
46 'nomini)))) | |
47 | |
698
793483bd29fe
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
656
diff
changeset
|
48 ;;; I think this should be the default; I think people will prefer it--rms. |
382 | 49 |
698
793483bd29fe
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
656
diff
changeset
|
50 (defvar split-window-keep-point t |
382 | 51 "*If non-nil, split windows so that both windows keep the original |
52 value of point. This is often more convenient for editing. | |
53 If nil, split windows to minimize redisplay. This is convenient on | |
54 slow terminals, but point may be moved strangely to accommodate the | |
55 redisplay.") | |
56 | |
36 | 57 (defun split-window-vertically (&optional arg) |
58 "Split current window into two windows, one above the other. | |
108 | 59 The uppermost window gets ARG lines and the other gets the rest. |
60 With no argument, split equally or close to it. | |
61 Both windows display the same buffer now current. | |
382 | 62 |
63 If the variable split-window-keep-point is non-nil, both new windows | |
64 will get the same value of point as the current window. This is often | |
65 more convenient for editing. | |
108 | 66 |
382 | 67 Otherwise, we chose window starts so as to minimize the amount of |
68 redisplay; this is convenient on slow terminals. The new selected | |
69 window is the one that the current value of point appears in. The | |
70 value of point can change if the text around point is hidden by the | |
71 new mode line." | |
36 | 72 (interactive "P") |
73 (let ((old-w (selected-window)) | |
108 | 74 (old-point (point)) |
75 new-w bottom switch) | |
36 | 76 (setq new-w (split-window nil (and arg (prefix-numeric-value arg)))) |
419 | 77 (or split-window-keep-point |
108 | 78 (progn |
382 | 79 (save-excursion |
80 (set-buffer (window-buffer)) | |
81 (goto-char (window-start)) | |
82 (vertical-motion (window-height)) | |
83 (set-window-start new-w (point)) | |
84 (if (> (point) (window-point new-w)) | |
85 (set-window-point new-w (point))) | |
86 (vertical-motion -1) | |
87 (setq bottom (point))) | |
88 (if (<= bottom (point)) | |
89 (set-window-point old-w (1- bottom))) | |
90 (if (< (window-start new-w) old-point) | |
91 (progn | |
92 (set-window-point new-w old-point) | |
93 (select-window new-w))))))) | |
36 | 94 |
95 (defun split-window-horizontally (&optional arg) | |
96 "Split current window into two windows side by side. | |
97 This window becomes the leftmost of the two, and gets | |
98 ARG columns. No arg means split equally." | |
99 (interactive "P") | |
100 (split-window nil (and arg (prefix-numeric-value arg)) t)) | |
101 | |
102 (defun enlarge-window-horizontally (arg) | |
103 "Make current window ARG columns wider." | |
104 (interactive "p") | |
105 (enlarge-window arg t)) | |
106 | |
107 (defun shrink-window-horizontally (arg) | |
108 "Make current window ARG columns narrower." | |
109 (interactive "p") | |
110 (shrink-window arg t)) | |
111 | |
112 (define-key ctl-x-map "2" 'split-window-vertically) | |
707 | 113 (define-key ctl-x-map "3" 'split-window-horizontally) |
36 | 114 (define-key ctl-x-map "}" 'enlarge-window-horizontally) |
115 (define-key ctl-x-map "{" 'shrink-window-horizontally) | |
656
d74e65773062
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
419
diff
changeset
|
116 |
d74e65773062
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
419
diff
changeset
|
117 ;;; windows.el ends here |