771
|
1 ;;; resize-minibuffer.el --- dynamically resize minibuffer to display entire contents
|
|
2
|
|
3 ;; Copyright (C) 1990 Roland McGrath
|
|
4 ;; Copyright (C) 1993, 1994 Noah S. Friedman
|
|
5
|
|
6 ;; Author: Noah Friedman <friedman@prep.ai.mit.edu>
|
|
7 ;; Author: Roland McGrath <roland@prep.ai.mit.edu>
|
|
8 ;; Modified for Lucid Emacs By: Peter Stout <pds@cs.cmu.edu>
|
|
9 ;; Maintainer: friedman@prep.ai.mit.edu
|
|
10 ;; Keywords: minibuffer, window, frames, display
|
|
11
|
|
12 ;; This file is part of XEmacs.
|
|
13
|
|
14 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
15 ;; under the terms of the GNU General Public License as published by
|
|
16 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
17 ;; any later version.
|
|
18
|
|
19 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
20 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
22 ;; General Public License for more details.
|
|
23
|
|
24 ;; You should have received a copy of the GNU General Public License
|
|
25 ;; along with XEmacs; see the file COPYING. If not, you can either
|
|
26 ;; send email to this program's maintainer or write to: The Free
|
|
27 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
28 ;; 02111-1307, USA.
|
|
29
|
|
30 ;;; Synched up with: Not synched. Copied from rsz-minibuf.el to
|
|
31 ;;; resize-minibuffer.el to avoid current problems where, when there's a
|
|
32 ;;; file in dump and a file with the same name in packages, a dumping
|
|
33 ;;; XEmacs will find the wrong one!
|
|
34
|
|
35 ;;; Commentary:
|
|
36
|
|
37 ;; This file has received maintenance by the XEmacs development team.
|
|
38
|
|
39 ;; This package allows the entire contents (or as much as possible) of the
|
|
40 ;; minibuffer to be visible at once when typing. As the end of a line is
|
|
41 ;; reached, the minibuffer will resize itself. When the user is done
|
|
42 ;; typing, the minibuffer will return to its original size.
|
|
43
|
|
44 ;; In window systems where it is possible to have a frame in which the
|
|
45 ;; minibuffer is the only window, the frame itself can be resized. In FSF
|
|
46 ;; GNU Emacs 19.22 and earlier, the frame may not be properly returned to
|
|
47 ;; its original size after it ceases to be active because
|
|
48 ;; `minibuffer-exit-hook' didn't exist until version 19.23.
|
|
49
|
|
50 ;; NOTE: The code to resize frames has not been tested under Lucid Emacs,
|
|
51 ;; because detached minibuffers are broken.
|
|
52
|
|
53 ;; Note that the minibuffer and echo area are not the same! They simply
|
|
54 ;; happen to occupy roughly the same place on the frame. Messages put in
|
|
55 ;; the echo area will not cause any resizing by this package.
|
|
56
|
|
57 ;; This package is considered a minor mode but it doesn't put anything in
|
|
58 ;; minor-mode-alist because this mode is specific to the minibuffer, which
|
|
59 ;; has no modeline.
|
|
60
|
|
61 ;; To use this package, put the following in your .emacs:
|
|
62 ;;
|
|
63 ;; (autoload 'resize-minibuffer-mode "rsz-minibuf" nil t)
|
|
64 ;;
|
|
65 ;; Invoking the command `resize-minibuffer-mode' will then enable this mode.
|
|
66
|
|
67 ;;; Code:
|
|
68
|
|
69
|
|
70
|
|
71 (defgroup resize-minibuffer nil
|
|
72 "Dynamically resize minibuffer to display entire contents"
|
|
73 :group 'frames)
|
|
74
|
|
75
|
|
76 (defcustom resize-minibuffer-mode nil
|
|
77 "*If non-`nil', resize the minibuffer so its entire contents are visible."
|
|
78 :type 'boolean
|
|
79 :require 'rsz-minibuf
|
|
80 :group 'resize-minibuffer)
|
|
81
|
|
82 (defcustom resize-minibuffer-window-max-height nil
|
|
83 "*Maximum size the minibuffer window is allowed to become.
|
|
84 If less than 1 or not a number, the limit is the height of the frame in
|
|
85 which the active minibuffer window resides."
|
|
86 :type '(choice (const nil) integer)
|
|
87 :group 'resize-minibuffer)
|
|
88
|
3929
|
89 ;; #### Yeah, I know. The relation between the echo area and the
|
|
90 ;; minibuffer needs rethinking. It's not really possible to unify them at
|
|
91 ;; present. -- sjt
|
|
92 (defcustom resize-minibuffer-idle-height nil
|
|
93 "When minibuffer is idle, crop its window to this height.
|
|
94 Must be a positive integer or nil. nil indicates no limit.
|
|
95 Effective only when `undisplay-echo-area-function' respects it. One such
|
|
96 function is `undisplay-echo-area-resize-window'.")
|
|
97
|
771
|
98 (defcustom resize-minibuffer-window-exactly t
|
|
99 "*If non-`nil', make minibuffer exactly the size needed to display all its contents.
|
|
100 Otherwise, the minibuffer window can temporarily increase in size but
|
|
101 never get smaller while it is active."
|
|
102 :type 'boolean
|
|
103 :group 'resize-minibuffer)
|
|
104
|
|
105
|
|
106 (defcustom resize-minibuffer-frame nil
|
|
107 "*If non-`nil' and the active minibuffer is the sole window in its frame, allow changing the frame height."
|
|
108 :type 'boolean
|
|
109 :group 'resize-minibuffer)
|
|
110
|
|
111 (defcustom resize-minibuffer-frame-max-height nil
|
|
112 "*Maximum size the minibuffer frame is allowed to become.
|
|
113 If less than 1 or not a number, there is no limit.")
|
|
114
|
|
115 (defcustom resize-minibuffer-frame-exactly nil
|
|
116 "*If non-`nil', make minibuffer frame exactly the size needed to display all its contents.
|
|
117 Otherwise, the minibuffer frame can temporarily increase in size but
|
|
118 never get smaller while it is active."
|
|
119 :type 'boolean
|
|
120 :group 'resize-minibuffer)
|
|
121
|
|
122
|
|
123 (defun resize-minibuffer-mode (&optional prefix)
|
|
124 "Enable or disable resize-minibuffer mode.
|
|
125 A negative prefix argument disables this mode. A positive argument or
|
|
126 argument of 0 enables it.
|
|
127
|
|
128 When this minor mode is enabled, the minibuffer is dynamically resized to
|
|
129 contain the entire region of text put in it as you type.
|
|
130
|
|
131 The variable `resize-minibuffer-mode' is set to t or nil depending on
|
|
132 whether this mode is active or not.
|
|
133
|
|
134 The maximum height to which the minibuffer can grow is controlled by the
|
|
135 variable `resize-minibuffer-window-max-height'.
|
|
136
|
|
137 The variable `resize-minibuffer-window-exactly' determines whether the
|
|
138 minibuffer window should ever be shrunk to make it no larger than needed to
|
|
139 display its contents.
|
|
140
|
|
141 When using a window system, it is possible for a minibuffer to be the sole
|
|
142 window in a frame. Since that window is already its maximum size, the only
|
|
143 way to make more text visible at once is to increase the size of the frame.
|
|
144 The variable `resize-minibuffer-frame' controls whether this should be
|
|
145 done. The variables `resize-minibuffer-frame-max-height' and
|
|
146 `resize-minibuffer-frame-exactly' are analogous to their window
|
|
147 counterparts."
|
|
148 (interactive "p")
|
|
149 (or prefix (setq prefix 0))
|
|
150 (cond
|
|
151 ((>= prefix 0)
|
|
152 (setq resize-minibuffer-mode t))
|
|
153 (t
|
|
154 (setq resize-minibuffer-mode nil))))
|
|
155
|
|
156 (defun resize-minibuffer-setup ()
|
|
157 (cond
|
|
158 (resize-minibuffer-mode
|
|
159 (cond
|
|
160 ((and (not (eq 'tty (console-type)))
|
|
161 (eq 'only (plist-get (frame-properties) 'minibuffer)))
|
|
162 (and resize-minibuffer-frame
|
|
163 (progn
|
|
164 (make-local-hook 'minibuffer-exit-hook)
|
|
165 (add-hook 'minibuffer-exit-hook 'resize-minibuffer-frame-restore
|
|
166 nil t)
|
|
167 (make-local-hook 'post-command-hook)
|
|
168 (add-hook 'post-command-hook 'resize-minibuffer-frame nil t)
|
776
|
169 (unless (and-boundp 'icomplete-mode icomplete-mode)
|
771
|
170 (resize-minibuffer-frame)))))
|
|
171 (t
|
|
172 (make-local-hook 'post-command-hook)
|
|
173 (add-hook 'post-command-hook 'resize-minibuffer-window nil t)
|
776
|
174 (unless (and-boundp 'icomplete-mode icomplete-mode)
|
771
|
175 (resize-minibuffer-window)))))))
|
|
176
|
|
177 (defun resize-minibuffer-count-window-lines (&optional start end)
|
|
178 "Return number of window lines occupied by text in region.
|
|
179 The number of window lines may be greater than the number of actual lines
|
|
180 in the buffer if any wrap on the display due to their length.
|
|
181
|
|
182 Optional arguments START and END default to point-min and point-max,
|
|
183 respectively."
|
|
184 (or start (setq start (point-min)))
|
|
185 (or end (setq end (point-max)))
|
|
186 (if (= start end)
|
|
187 0
|
|
188 (save-excursion
|
|
189 (save-restriction
|
|
190 (widen)
|
|
191 (narrow-to-region start end)
|
|
192 (goto-char start)
|
|
193 (vertical-motion (buffer-size))))))
|
|
194
|
|
195
|
|
196 ;; Resize the minibuffer window to contain the minibuffer's contents.
|
|
197 ;; The minibuffer must be the current window.
|
|
198 (defun resize-minibuffer-window ()
|
|
199 (let ((height (window-height))
|
|
200 (lines (1+ (resize-minibuffer-count-window-lines))))
|
|
201 (and (numberp resize-minibuffer-window-max-height)
|
|
202 (> resize-minibuffer-window-max-height 0)
|
|
203 (setq lines (min
|
|
204 lines
|
|
205 resize-minibuffer-window-max-height)))
|
|
206 (or (if resize-minibuffer-window-exactly
|
|
207 (= lines height)
|
|
208 (<= lines height))
|
|
209 (enlarge-window (- lines height)))))
|
|
210
|
|
211
|
|
212 ;; Resize the minibuffer frame to contain the minibuffer's contents.
|
|
213 ;; The minibuffer frame must be the current frame.
|
|
214 (defun resize-minibuffer-frame ()
|
|
215 (let ((height (frame-height))
|
|
216 (lines (1+ (resize-minibuffer-count-window-lines))))
|
|
217 (and (numberp resize-minibuffer-frame-max-height)
|
|
218 (> resize-minibuffer-frame-max-height 0)
|
|
219 (setq lines (min
|
|
220 lines
|
|
221 resize-minibuffer-frame-max-height)))
|
|
222 (cond
|
|
223 ((> lines height)
|
|
224 (set-frame-size (selected-frame) (frame-width) lines))
|
|
225 ((and resize-minibuffer-frame-exactly
|
|
226 (> height (plist-get minibuffer-frame-plist 'height))
|
|
227 (< lines height))
|
|
228 (set-frame-size (selected-frame) (frame-width) lines)))))
|
|
229
|
|
230 ;; Restore the original height of the frame.
|
|
231 (defun resize-minibuffer-frame-restore ()
|
|
232 (set-frame-size (selected-frame) (frame-width)
|
|
233 (plist-get minibuffer-frame-plist 'height)))
|
|
234
|
|
235
|
|
236 (provide 'rsz-minibuf)
|
|
237
|
|
238 (add-hook 'minibuffer-setup-hook 'resize-minibuffer-setup)
|
|
239
|
|
240 ;;; rsz-minibuf.el ends here
|