Mercurial > emacs
annotate lisp/window.el @ 10434:5cb0747f521f
(iso-aggressive-german-trans-tab): Doc fix.
(iso-cvt-ffh, iso-cvt-wfh, iso-cvt-ash): Doc fix.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Mon, 16 Jan 1995 22:48:03 +0000 |
parents | 2c55ff956862 |
children | 3f98c129f7bc |
rev | line source |
---|---|
3375
13ddc81f0b43
(count-windows): PROC argument of walk-windows takes an argument.
Richard M. Stallman <rms@gnu.org>
parents:
3342
diff
changeset
|
1 ;;; window.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 |
7300 | 3 ;;; Copyright (C) 1985, 1989, 1992, 1993, 1994 Free Software Foundation, Inc. |
841 | 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)) | |
3375
13ddc81f0b43
(count-windows): PROC argument of walk-windows takes an argument.
Richard M. Stallman <rms@gnu.org>
parents:
3342
diff
changeset
|
30 (walk-windows (function (lambda (w) |
36 | 31 (setq count (+ count 1)))) |
32 minibuf) | |
33 count)) | |
34 | |
35 (defun balance-windows () | |
3724
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
36 "Makes all visible windows the same height (approximately)." |
36 | 37 (interactive) |
3724
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
38 (let ((count -1) levels newsizes size) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
39 ;; Find all the different vpos's at which windows start, |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
40 ;; then count them. But ignore levels that differ by only 1. |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
41 (save-window-excursion |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
42 (let (tops (prev-top -2)) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
43 (walk-windows (function (lambda (w) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
44 (setq tops (cons (nth 1 (window-edges w)) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
45 tops)))) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
46 'nomini) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
47 (setq tops (sort tops '<)) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
48 (while tops |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
49 (if (> (car tops) (1+ prev-top)) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
50 (setq prev-top (car tops) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
51 count (1+ count))) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
52 (setq levels (cons (cons (car tops) count) levels)) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
53 (setq tops (cdr tops))) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
54 (setq count (1+ count)))) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
55 ;; Subdivide the frame into that many vertical levels. |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
56 (setq size (/ (frame-height) count)) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
57 (walk-windows (function |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
58 (lambda (w) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
59 (select-window w) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
60 (let ((newtop (cdr (assq (nth 1 (window-edges)) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
61 levels))) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
62 (newbot (or (cdr (assq (+ (window-height) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
63 (nth 1 (window-edges))) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
64 levels)) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
65 count))) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
66 (setq newsizes |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
67 (cons (cons w (* size (- newbot newtop))) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
68 newsizes)))))) |
36 | 69 (walk-windows (function (lambda (w) |
3724
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
70 (select-window w) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
71 (let ((newsize (cdr (assq w newsizes)))) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
72 (enlarge-window (- newsize |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
73 (window-height)))))) |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
74 'nomini))) |
36 | 75 |
698
793483bd29fe
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
656
diff
changeset
|
76 ;;; I think this should be the default; I think people will prefer it--rms. |
793483bd29fe
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
656
diff
changeset
|
77 (defvar split-window-keep-point t |
3724
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
78 "*If non-nil, split windows keeps the original point in both children. |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
79 This is often more convenient for editing. |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
80 If nil, adjust point in each of the two windows to minimize redisplay. |
dc73f3152d2f
(balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
3375
diff
changeset
|
81 This is convenient on slow terminals, but point can move strangely.") |
382 | 82 |
36 | 83 (defun split-window-vertically (&optional arg) |
84 "Split current window into two windows, one above the other. | |
108 | 85 The uppermost window gets ARG lines and the other gets the rest. |
6670
b2c5fca3c10c
(split-window-vertically): If size is negative, measure from bottom.
Karl Heuer <kwzh@gnu.org>
parents:
6019
diff
changeset
|
86 Negative arg means select the size of the lowermost window instead. |
108 | 87 With no argument, split equally or close to it. |
88 Both windows display the same buffer now current. | |
382 | 89 |
90 If the variable split-window-keep-point is non-nil, both new windows | |
91 will get the same value of point as the current window. This is often | |
92 more convenient for editing. | |
108 | 93 |
382 | 94 Otherwise, we chose window starts so as to minimize the amount of |
95 redisplay; this is convenient on slow terminals. The new selected | |
96 window is the one that the current value of point appears in. The | |
97 value of point can change if the text around point is hidden by the | |
98 new mode line." | |
36 | 99 (interactive "P") |
100 (let ((old-w (selected-window)) | |
108 | 101 (old-point (point)) |
6670
b2c5fca3c10c
(split-window-vertically): If size is negative, measure from bottom.
Karl Heuer <kwzh@gnu.org>
parents:
6019
diff
changeset
|
102 (size (and arg (prefix-numeric-value arg))) |
108 | 103 new-w bottom switch) |
6670
b2c5fca3c10c
(split-window-vertically): If size is negative, measure from bottom.
Karl Heuer <kwzh@gnu.org>
parents:
6019
diff
changeset
|
104 (and size (< size 0) (setq size (+ (window-height) size))) |
b2c5fca3c10c
(split-window-vertically): If size is negative, measure from bottom.
Karl Heuer <kwzh@gnu.org>
parents:
6019
diff
changeset
|
105 (setq new-w (split-window nil size)) |
419 | 106 (or split-window-keep-point |
108 | 107 (progn |
382 | 108 (save-excursion |
109 (set-buffer (window-buffer)) | |
110 (goto-char (window-start)) | |
111 (vertical-motion (window-height)) | |
112 (set-window-start new-w (point)) | |
113 (if (> (point) (window-point new-w)) | |
114 (set-window-point new-w (point))) | |
115 (vertical-motion -1) | |
116 (setq bottom (point))) | |
117 (if (<= bottom (point)) | |
118 (set-window-point old-w (1- bottom))) | |
119 (if (< (window-start new-w) old-point) | |
120 (progn | |
121 (set-window-point new-w old-point) | |
3253
f4d37be94734
(split-window-vertically): Return the new window.
Richard M. Stallman <rms@gnu.org>
parents:
2529
diff
changeset
|
122 (select-window new-w))))) |
f4d37be94734
(split-window-vertically): Return the new window.
Richard M. Stallman <rms@gnu.org>
parents:
2529
diff
changeset
|
123 new-w)) |
36 | 124 |
125 (defun split-window-horizontally (&optional arg) | |
126 "Split current window into two windows side by side. | |
8565
2a2208286955
(split-window-horizontally): If size is negative, measure from the right.
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
127 This window becomes the leftmost of the two, and gets ARG columns. |
2a2208286955
(split-window-horizontally): If size is negative, measure from the right.
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
128 Negative arg means select the size of the rightmost window instead. |
2a2208286955
(split-window-horizontally): If size is negative, measure from the right.
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
129 No arg means split equally." |
36 | 130 (interactive "P") |
8565
2a2208286955
(split-window-horizontally): If size is negative, measure from the right.
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
131 (let ((size (and arg (prefix-numeric-value arg)))) |
2a2208286955
(split-window-horizontally): If size is negative, measure from the right.
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
132 (and size (< size 0) |
2a2208286955
(split-window-horizontally): If size is negative, measure from the right.
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
133 (setq size (+ (window-width) size))) |
2a2208286955
(split-window-horizontally): If size is negative, measure from the right.
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
134 (split-window nil size t))) |
36 | 135 |
136 (defun enlarge-window-horizontally (arg) | |
137 "Make current window ARG columns wider." | |
138 (interactive "p") | |
139 (enlarge-window arg t)) | |
140 | |
141 (defun shrink-window-horizontally (arg) | |
142 "Make current window ARG columns narrower." | |
143 (interactive "p") | |
144 (shrink-window arg t)) | |
145 | |
2529
bb127c1081af
(shrink-window-if-larger-than-buffer): Moved from electric.el to windows.el,
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
146 (defun shrink-window-if-larger-than-buffer (&optional window) |
3342
ce8aa0ba8b08
(shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
3253
diff
changeset
|
147 "Shrink the WINDOW to be as small as possible to display its contents. |
8721
c94f87ea8a1b
(shrink-window-if-larger-than-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
8672
diff
changeset
|
148 Do not shrink to less than `window-min-height' lines. |
3342
ce8aa0ba8b08
(shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
3253
diff
changeset
|
149 Do nothing if the buffer contains more lines than the present window height, |
4364
69e5c2373d37
(shrink-window-if-larger-than-buffer): Do nothing if the
Richard M. Stallman <rms@gnu.org>
parents:
3724
diff
changeset
|
150 or if some of the window's contents are scrolled out of view, |
6905
e068218e992b
(shrink-window-if-larger-than-buffer):
Richard M. Stallman <rms@gnu.org>
parents:
6670
diff
changeset
|
151 or if the window is not the full width of the frame, |
4364
69e5c2373d37
(shrink-window-if-larger-than-buffer): Do nothing if the
Richard M. Stallman <rms@gnu.org>
parents:
3724
diff
changeset
|
152 or if the window is the only window of its frame." |
3342
ce8aa0ba8b08
(shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
3253
diff
changeset
|
153 (interactive) |
9007
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
154 (or window (setq window (selected-window))) |
2529
bb127c1081af
(shrink-window-if-larger-than-buffer): Moved from electric.el to windows.el,
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
155 (save-excursion |
bb127c1081af
(shrink-window-if-larger-than-buffer): Moved from electric.el to windows.el,
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
156 (set-buffer (window-buffer window)) |
9007
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
157 (let* ((w (selected-window)) ;save-window-excursion can't win |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
158 (buffer-file-name buffer-file-name) |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
159 (p (point)) |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
160 (n 0) |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
161 (ignore-final-newline |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
162 ;; If buffer ends with a newline, ignore it when counting height |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
163 ;; unless point is after it. |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
164 (and (not (eobp)) |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
165 (eq ?\n (char-after (1- (point-max)))))) |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
166 (buffer-read-only nil) |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
167 (modified (buffer-modified-p)) |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
168 (buffer (current-buffer)) |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
169 (params (frame-parameters (window-frame window))) |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
170 (mini (cdr (assq 'minibuffer params))) |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
171 (edges (window-edges (selected-window)))) |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
172 (if (and (< 1 (let ((frame (selected-frame))) |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
173 (select-frame (window-frame window)) |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
174 (unwind-protect |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
175 (count-windows) |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
176 (select-frame frame)))) |
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
177 (= (window-width window) (frame-width (window-frame window))) |
6019
0c0b00572d96
(shrink-window-if-larger-than-buffer): Don't shrink if the window that would
Karl Heuer <kwzh@gnu.org>
parents:
4436
diff
changeset
|
178 (pos-visible-in-window-p (point-min) window) |
8778
1b047b18e860
(shrink-window-if-larger-than-buffer):
Richard M. Stallman <rms@gnu.org>
parents:
8750
diff
changeset
|
179 (not (eq mini 'only)) |
6019
0c0b00572d96
(shrink-window-if-larger-than-buffer): Don't shrink if the window that would
Karl Heuer <kwzh@gnu.org>
parents:
4436
diff
changeset
|
180 (or (not mini) |
0c0b00572d96
(shrink-window-if-larger-than-buffer): Don't shrink if the window that would
Karl Heuer <kwzh@gnu.org>
parents:
4436
diff
changeset
|
181 (< (nth 3 edges) |
0c0b00572d96
(shrink-window-if-larger-than-buffer): Don't shrink if the window that would
Karl Heuer <kwzh@gnu.org>
parents:
4436
diff
changeset
|
182 (nth 1 (window-edges mini))) |
0c0b00572d96
(shrink-window-if-larger-than-buffer): Don't shrink if the window that would
Karl Heuer <kwzh@gnu.org>
parents:
4436
diff
changeset
|
183 (> (nth 1 edges) |
9007
2c55ff956862
(shrink-window-if-larger-than-buffer): Use WINDOW's frame
Richard M. Stallman <rms@gnu.org>
parents:
8778
diff
changeset
|
184 (cdr (assq 'menu-bar-lines params))))) |
3342
ce8aa0ba8b08
(shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
3253
diff
changeset
|
185 (unwind-protect |
ce8aa0ba8b08
(shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
3253
diff
changeset
|
186 (progn |
ce8aa0ba8b08
(shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
3253
diff
changeset
|
187 (select-window (or window w)) |
ce8aa0ba8b08
(shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
3253
diff
changeset
|
188 (goto-char (point-min)) |
4364
69e5c2373d37
(shrink-window-if-larger-than-buffer): Do nothing if the
Richard M. Stallman <rms@gnu.org>
parents:
3724
diff
changeset
|
189 (while (pos-visible-in-window-p |
69e5c2373d37
(shrink-window-if-larger-than-buffer): Do nothing if the
Richard M. Stallman <rms@gnu.org>
parents:
3724
diff
changeset
|
190 (- (point-max) |
69e5c2373d37
(shrink-window-if-larger-than-buffer): Do nothing if the
Richard M. Stallman <rms@gnu.org>
parents:
3724
diff
changeset
|
191 (if ignore-final-newline 1 0))) |
3342
ce8aa0ba8b08
(shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
3253
diff
changeset
|
192 ;; defeat file locking... don't try this at home, kids! |
ce8aa0ba8b08
(shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
3253
diff
changeset
|
193 (setq buffer-file-name nil) |
ce8aa0ba8b08
(shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
3253
diff
changeset
|
194 (insert ?\n) (setq n (1+ n))) |
8672
415a25bb4ee7
(shrink-window-if-larger-than-buffer):
Richard M. Stallman <rms@gnu.org>
parents:
8565
diff
changeset
|
195 (if (> n 0) |
415a25bb4ee7
(shrink-window-if-larger-than-buffer):
Richard M. Stallman <rms@gnu.org>
parents:
8565
diff
changeset
|
196 (shrink-window (min (1- n) |
415a25bb4ee7
(shrink-window-if-larger-than-buffer):
Richard M. Stallman <rms@gnu.org>
parents:
8565
diff
changeset
|
197 (- (window-height) |
415a25bb4ee7
(shrink-window-if-larger-than-buffer):
Richard M. Stallman <rms@gnu.org>
parents:
8565
diff
changeset
|
198 window-min-height))))) |
3342
ce8aa0ba8b08
(shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
3253
diff
changeset
|
199 (delete-region (point-min) (point)) |
ce8aa0ba8b08
(shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
3253
diff
changeset
|
200 (set-buffer-modified-p modified) |
ce8aa0ba8b08
(shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
3253
diff
changeset
|
201 (goto-char p) |
ce8aa0ba8b08
(shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
3253
diff
changeset
|
202 (select-window w) |
ce8aa0ba8b08
(shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
3253
diff
changeset
|
203 ;; Make sure we unbind buffer-read-only |
ce8aa0ba8b08
(shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
3253
diff
changeset
|
204 ;; with the proper current buffer. |
ce8aa0ba8b08
(shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
3253
diff
changeset
|
205 (set-buffer buffer)))))) |
2529
bb127c1081af
(shrink-window-if-larger-than-buffer): Moved from electric.el to windows.el,
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
206 |
36 | 207 (define-key ctl-x-map "2" 'split-window-vertically) |
707 | 208 (define-key ctl-x-map "3" 'split-window-horizontally) |
36 | 209 (define-key ctl-x-map "}" 'enlarge-window-horizontally) |
210 (define-key ctl-x-map "{" 'shrink-window-horizontally) | |
2529
bb127c1081af
(shrink-window-if-larger-than-buffer): Moved from electric.el to windows.el,
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
211 (define-key ctl-x-map "-" 'shrink-window-if-larger-than-buffer) |
bb127c1081af
(shrink-window-if-larger-than-buffer): Moved from electric.el to windows.el,
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
212 (define-key ctl-x-map "+" 'balance-windows) |
656
d74e65773062
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
419
diff
changeset
|
213 |
d74e65773062
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
419
diff
changeset
|
214 ;;; windows.el ends here |