428
|
1 ;;; minibuf.el --- Minibuffer functions for XEmacs
|
|
2
|
|
3 ;; Copyright (C) 1992, 1993, 1994, 1997 Free Software Foundation, Inc.
|
442
|
4 ;; Copyright (C) 1995 Tinker Systems.
|
771
|
5 ;; Copyright (C) 1995, 1996, 2000, 2002 Ben Wing.
|
428
|
6
|
|
7 ;; Author: Richard Mlynarik
|
|
8 ;; Created: 2-Oct-92
|
|
9 ;; Maintainer: XEmacs Development Team
|
|
10 ;; Keywords: internal, dumped
|
|
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, write to the
|
|
26 ;; Free Software Foundation, 59 Temple Place - Suite 330,
|
|
27 ;; Boston, MA 02111-1307, USA.
|
|
28
|
|
29 ;;; Synched up with: all the minibuffer history stuff is synched with
|
|
30 ;;; 19.30. Not sure about the rest.
|
|
31
|
|
32 ;;; Commentary:
|
|
33
|
|
34 ;; This file is dumped with XEmacs.
|
|
35
|
|
36 ;; Written by Richard Mlynarik 2-Oct-92
|
|
37
|
|
38 ;; 06/11/1997 - Use char-(after|before) instead of
|
|
39 ;; (following|preceding)-char. -slb
|
|
40
|
|
41 ;;; Code:
|
|
42
|
|
43 (defgroup minibuffer nil
|
|
44 "Controling the behavior of the minibuffer."
|
|
45 :group 'environment)
|
|
46
|
|
47
|
|
48 (defcustom insert-default-directory t
|
|
49 "*Non-nil means when reading a filename start with default dir in minibuffer."
|
|
50 :type 'boolean
|
|
51 :group 'minibuffer)
|
|
52
|
|
53 (defcustom minibuffer-history-uniquify t
|
|
54 "*Non-nil means when adding an item to a minibuffer history, remove
|
442
|
55 previous occurrences of the same item from the history list first,
|
428
|
56 rather than just consing the new element onto the front of the list."
|
|
57 :type 'boolean
|
|
58 :group 'minibuffer)
|
|
59
|
|
60 (defvar minibuffer-completion-table nil
|
|
61 "Alist or obarray used for completion in the minibuffer.
|
|
62 This becomes the ALIST argument to `try-completion' and `all-completions'.
|
|
63
|
|
64 The value may alternatively be a function, which is given three arguments:
|
|
65 STRING, the current buffer contents;
|
|
66 PREDICATE, the predicate for filtering possible matches;
|
|
67 CODE, which says what kind of things to do.
|
|
68 CODE can be nil, t or `lambda'.
|
|
69 nil means to return the best completion of STRING, nil if there is none,
|
|
70 or t if it is already a unique completion.
|
|
71 t means to return a list of all possible completions of STRING.
|
|
72 `lambda' means to return t if STRING is a valid completion as it stands.")
|
|
73
|
|
74 (defvar minibuffer-completion-predicate nil
|
|
75 "Within call to `completing-read', this holds the PREDICATE argument.")
|
|
76
|
|
77 (defvar minibuffer-completion-confirm nil
|
|
78 "Non-nil => demand confirmation of completion before exiting minibuffer.")
|
|
79
|
438
|
80 (defcustom minibuffer-confirm-incomplete nil
|
428
|
81 "If true, then in contexts where completing-read allows answers which
|
|
82 are not valid completions, an extra RET must be typed to confirm the
|
438
|
83 response. This is helpful for catching typos, etc."
|
|
84 :type 'boolean
|
|
85 :group 'minibuffer)
|
428
|
86
|
|
87 (defcustom completion-auto-help t
|
|
88 "*Non-nil means automatically provide help for invalid completion input."
|
|
89 :type 'boolean
|
|
90 :group 'minibuffer)
|
|
91
|
|
92 (defcustom enable-recursive-minibuffers nil
|
|
93 "*Non-nil means to allow minibuffer commands while in the minibuffer.
|
|
94 More precisely, this variable makes a difference when the minibuffer window
|
|
95 is the selected window. If you are in some other window, minibuffer commands
|
|
96 are allowed even if a minibuffer is active."
|
|
97 :type 'boolean
|
|
98 :group 'minibuffer)
|
|
99
|
|
100 (defcustom minibuffer-max-depth 1
|
|
101 ;; See comment in #'minibuffer-max-depth-exceeded
|
|
102 "*Global maximum number of minibuffers allowed;
|
|
103 compare to enable-recursive-minibuffers, which is only consulted when the
|
|
104 minibuffer is reinvoked while it is the selected window."
|
|
105 :type '(choice integer
|
|
106 (const :tag "Indefinite" nil))
|
|
107 :group 'minibuffer)
|
|
108
|
|
109 ;; Moved to C. The minibuffer prompt must be setup before this is run
|
|
110 ;; and that can only be done from the C side.
|
|
111 ;(defvar minibuffer-setup-hook nil
|
|
112 ; "Normal hook run just after entry to minibuffer.")
|
|
113
|
442
|
114 ;; see comment at list-mode-hook.
|
|
115 (put 'minibuffer-setup-hook 'permanent-local t)
|
|
116
|
428
|
117 (defvar minibuffer-exit-hook nil
|
|
118 "Normal hook run just after exit from minibuffer.")
|
442
|
119 (put 'minibuffer-exit-hook 'permanent-local t)
|
428
|
120
|
|
121 (defvar minibuffer-help-form nil
|
|
122 "Value that `help-form' takes on inside the minibuffer.")
|
|
123
|
|
124 (defvar minibuffer-default nil
|
|
125 "Default value for minibuffer input.")
|
|
126
|
|
127 (defvar minibuffer-local-map
|
|
128 (let ((map (make-sparse-keymap 'minibuffer-local-map)))
|
|
129 map)
|
|
130 "Default keymap to use when reading from the minibuffer.")
|
|
131
|
|
132 (defvar minibuffer-local-completion-map
|
|
133 (let ((map (make-sparse-keymap 'minibuffer-local-completion-map)))
|
|
134 (set-keymap-parents map (list minibuffer-local-map))
|
|
135 map)
|
|
136 "Local keymap for minibuffer input with completion.")
|
|
137
|
|
138 (defvar minibuffer-local-must-match-map
|
|
139 (let ((map (make-sparse-keymap 'minibuffer-must-match-map)))
|
|
140 (set-keymap-parents map (list minibuffer-local-completion-map))
|
|
141 map)
|
|
142 "Local keymap for minibuffer input with completion, for exact match.")
|
|
143
|
|
144 ;; (define-key minibuffer-local-map "\C-g" 'abort-recursive-edit)
|
|
145 (define-key minibuffer-local-map "\C-g" 'minibuffer-keyboard-quit) ;; moved here from pending-del.el
|
|
146 (define-key minibuffer-local-map "\r" 'exit-minibuffer)
|
|
147 (define-key minibuffer-local-map "\n" 'exit-minibuffer)
|
|
148
|
|
149 ;; Historical crock. Unused by anything but user code, if even that
|
|
150 ;(defvar minibuffer-local-ns-map
|
|
151 ; (let ((map (make-sparse-keymap 'minibuffer-local-ns-map)))
|
|
152 ; (set-keymap-parents map (list minibuffer-local-map))
|
|
153 ; map)
|
|
154 ; "Local keymap for the minibuffer when spaces are not allowed.")
|
|
155 ;(define-key minibuffer-local-ns-map [space] 'exit-minibuffer)
|
|
156 ;(define-key minibuffer-local-ns-map [tab] 'exit-minibuffer)
|
|
157 ;(define-key minibuffer-local-ns-map [?\?] 'self-insert-and-exit)
|
|
158
|
|
159 (define-key minibuffer-local-completion-map "\t" 'minibuffer-complete)
|
|
160 (define-key minibuffer-local-completion-map " " 'minibuffer-complete-word)
|
|
161 (define-key minibuffer-local-completion-map "?" 'minibuffer-completion-help)
|
|
162 (define-key minibuffer-local-must-match-map "\r" 'minibuffer-complete-and-exit)
|
|
163 (define-key minibuffer-local-must-match-map "\n" 'minibuffer-complete-and-exit)
|
|
164
|
|
165 (define-key minibuffer-local-map "\M-n" 'next-history-element)
|
|
166 (define-key minibuffer-local-map "\M-p" 'previous-history-element)
|
|
167 (define-key minibuffer-local-map '[next] "\M-n")
|
|
168 (define-key minibuffer-local-map '[prior] "\M-p")
|
|
169 (define-key minibuffer-local-map "\M-r" 'previous-matching-history-element)
|
|
170 (define-key minibuffer-local-map "\M-s" 'next-matching-history-element)
|
|
171 (define-key minibuffer-local-must-match-map [next]
|
|
172 'next-complete-history-element)
|
|
173 (define-key minibuffer-local-must-match-map [prior]
|
|
174 'previous-complete-history-element)
|
|
175
|
|
176 ;; This is an experiment--make up and down arrows do history.
|
|
177 (define-key minibuffer-local-map [up] 'previous-history-element)
|
|
178 (define-key minibuffer-local-map [down] 'next-history-element)
|
|
179 (define-key minibuffer-local-completion-map [up] 'previous-history-element)
|
|
180 (define-key minibuffer-local-completion-map [down] 'next-history-element)
|
|
181 (define-key minibuffer-local-must-match-map [up] 'previous-history-element)
|
|
182 (define-key minibuffer-local-must-match-map [down] 'next-history-element)
|
|
183
|
|
184 (defvar read-expression-map (let ((map (make-sparse-keymap
|
|
185 'read-expression-map)))
|
|
186 (set-keymap-parents map
|
|
187 (list minibuffer-local-map))
|
|
188 (define-key map "\M-\t" 'lisp-complete-symbol)
|
|
189 map)
|
|
190 "Minibuffer keymap used for reading Lisp expressions.")
|
|
191
|
|
192 (defvar read-shell-command-map
|
|
193 (let ((map (make-sparse-keymap 'read-shell-command-map)))
|
|
194 (set-keymap-parents map (list minibuffer-local-map))
|
|
195 (define-key map "\t" 'comint-dynamic-complete)
|
|
196 (define-key map "\M-\t" 'comint-dynamic-complete)
|
|
197 (define-key map "\M-?" 'comint-dynamic-list-completions)
|
|
198 map)
|
444
|
199 "Minibuffer keymap used by `shell-command' and related commands.")
|
428
|
200
|
|
201 (defcustom use-dialog-box t
|
|
202 "*Variable controlling usage of the dialog box.
|
|
203 If nil, the dialog box will never be used, even in response to mouse events."
|
|
204 :type 'boolean
|
|
205 :group 'minibuffer)
|
|
206
|
|
207 (defcustom minibuffer-electric-file-name-behavior t
|
|
208 "*If non-nil, slash and tilde in certain places cause immediate deletion.
|
|
209 These are the same places where this behavior would occur later on anyway,
|
|
210 in `substitute-in-file-name'."
|
|
211 :type 'boolean
|
|
212 :group 'minibuffer)
|
|
213
|
|
214 ;; originally by Stig@hackvan.com
|
|
215 (defun minibuffer-electric-separator ()
|
|
216 (interactive)
|
|
217 (let ((c last-command-char))
|
|
218 (and minibuffer-electric-file-name-behavior
|
|
219 (eq c directory-sep-char)
|
|
220 (eq c (char-before (point)))
|
|
221 (not (save-excursion
|
|
222 (goto-char (point-min))
|
|
223 (and (looking-at "/.+:~?[^/]*/.+")
|
|
224 (re-search-forward "^/.+:~?[^/]*" nil t)
|
|
225 (progn
|
|
226 (delete-region (point) (point-max))
|
|
227 t))))
|
|
228 (not (save-excursion
|
|
229 (goto-char (point-min))
|
|
230 (and (looking-at ".+://[^/]*/.+")
|
|
231 (re-search-forward "^.+:/" nil t)
|
|
232 (progn
|
|
233 (delete-region (point) (point-max))
|
|
234 t))))
|
|
235 ;; permit `//hostname/path/to/file'
|
|
236 (not (eq (point) (1+ (point-min))))
|
|
237 ;; permit `http://url/goes/here'
|
|
238 (or (not (eq ?: (char-after (- (point) 2))))
|
|
239 (eq ?/ (char-after (point-min))))
|
|
240 (delete-region (point-min) (point)))
|
|
241 (insert c)))
|
|
242
|
|
243 (defun minibuffer-electric-tilde ()
|
|
244 (interactive)
|
|
245 (and minibuffer-electric-file-name-behavior
|
|
246 (eq directory-sep-char (char-before (point)))
|
|
247 ;; permit URL's with //, for e.g. http://hostname/~user
|
|
248 (not (save-excursion (search-backward "//" nil t)))
|
|
249 (delete-region (point-min) (point)))
|
|
250 (insert ?~))
|
|
251
|
|
252
|
|
253 (defvar read-file-name-map
|
|
254 (let ((map (make-sparse-keymap 'read-file-name-map)))
|
|
255 (set-keymap-parents map (list minibuffer-local-completion-map))
|
|
256 (define-key map (vector directory-sep-char) 'minibuffer-electric-separator)
|
|
257 (define-key map "~" 'minibuffer-electric-tilde)
|
|
258 map
|
|
259 ))
|
|
260
|
|
261 (defvar read-file-name-must-match-map
|
|
262 (let ((map (make-sparse-keymap 'read-file-name-map)))
|
|
263 (set-keymap-parents map (list minibuffer-local-must-match-map))
|
|
264 (define-key map (vector directory-sep-char) 'minibuffer-electric-separator)
|
|
265 (define-key map "~" 'minibuffer-electric-tilde)
|
|
266 map
|
|
267 ))
|
|
268
|
|
269 (defun minibuffer-keyboard-quit ()
|
|
270 "Abort recursive edit.
|
|
271 If `zmacs-regions' is true, and the zmacs region is active in this buffer,
|
|
272 then this key deactivates the region without beeping."
|
|
273 (interactive)
|
|
274 (if (and (region-active-p)
|
|
275 (eq (current-buffer) (zmacs-region-buffer)))
|
|
276 ;; pseudo-zmacs compatibility: don't beep if this ^G is simply
|
|
277 ;; deactivating the region. If it is inactive, beep.
|
|
278 nil
|
|
279 (abort-recursive-edit)))
|
|
280
|
|
281 ;;;; Guts of minibuffer invocation
|
|
282
|
|
283 ;;#### The only things remaining in C are
|
|
284 ;; "Vminibuf_prompt" and the display junk
|
|
285 ;; "minibuf_prompt_width" and "minibuf_prompt_pix_width"
|
|
286 ;; Also "active_frame", though I suspect I could already
|
|
287 ;; hack that in Lisp if I could make any sense of the
|
|
288 ;; complete mess of frame/frame code in XEmacs.
|
|
289 ;; Vminibuf_prompt could easily be made Lisp-bindable.
|
|
290 ;; I suspect that minibuf_prompt*_width are actually recomputed
|
|
291 ;; by redisplay as needed -- or could be arranged to be so --
|
|
292 ;; and that there could be need for read-minibuffer-internal to
|
|
293 ;; save and restore them.
|
|
294 ;;#### The only other thing which read-from-minibuffer-internal does
|
|
295 ;; which we can't presently do in Lisp is move the frame cursor
|
|
296 ;; to the start of the minibuffer line as it returns. This is
|
|
297 ;; a rather nice touch and should be preserved -- probably by
|
|
298 ;; providing some Lisp-level mechanism (extension to cursor-in-echo-area ?)
|
|
299 ;; to effect it.
|
|
300
|
|
301
|
|
302 ;; Like reset_buffer in FSF's buffer.c
|
|
303 ;; (Except that kill-all-local-variables doesn't nuke 'permanent-local
|
|
304 ;; variables -- we preserve them, reset_buffer doesn't.)
|
|
305 (defun reset-buffer (buffer)
|
|
306 (with-current-buffer buffer
|
|
307 ;(if (fboundp 'unlock-buffer) (unlock-buffer))
|
|
308 (kill-all-local-variables)
|
|
309 (setq buffer-read-only nil)
|
|
310 ;; don't let read only text yanked into the minibuffer
|
|
311 ;; permanently wedge it.
|
|
312 (make-local-variable 'inhibit-read-only)
|
|
313 (setq inhibit-read-only t)
|
|
314 (erase-buffer)
|
|
315 ;(setq default-directory nil)
|
|
316 (setq buffer-file-name nil)
|
|
317 (setq buffer-file-truename nil)
|
|
318 (set-buffer-modified-p nil)
|
|
319 (setq buffer-backed-up nil)
|
|
320 (setq buffer-auto-save-file-name nil)
|
|
321 (set-buffer-dedicated-frame buffer nil)
|
|
322 buffer))
|
|
323
|
|
324 (defvar minibuffer-history-variable 'minibuffer-history
|
|
325 "History list symbol to add minibuffer values to.
|
|
326 Each minibuffer output is added with
|
|
327 (set minibuffer-history-variable
|
|
328 (cons STRING (symbol-value minibuffer-history-variable)))")
|
|
329 (defvar minibuffer-history-position)
|
|
330
|
|
331 ;; Added by hniksic:
|
|
332 (defvar initial-minibuffer-history-position)
|
|
333 (defvar current-minibuffer-contents)
|
|
334 (defvar current-minibuffer-point)
|
|
335
|
|
336 (defcustom minibuffer-history-minimum-string-length nil
|
|
337 "*If this variable is non-nil, a string will not be added to the
|
|
338 minibuffer history if its length is less than that value."
|
|
339 :type '(choice (const :tag "Any" nil)
|
|
340 integer)
|
|
341 :group 'minibuffer)
|
|
342
|
510
|
343 (define-error 'input-error "Keyboard input error" 'io-error)
|
428
|
344
|
|
345 (defun read-from-minibuffer (prompt &optional initial-contents
|
|
346 keymap
|
|
347 readp
|
|
348 history
|
430
|
349 abbrev-table
|
|
350 default)
|
428
|
351 "Read a string from the minibuffer, prompting with string PROMPT.
|
|
352 If optional second arg INITIAL-CONTENTS is non-nil, it is a string
|
|
353 to be inserted into the minibuffer before reading input.
|
|
354 If INITIAL-CONTENTS is (STRING . POSITION), the initial input
|
|
355 is STRING, but point is placed POSITION characters into the string.
|
|
356 Third arg KEYMAP is a keymap to use while reading;
|
|
357 if omitted or nil, the default is `minibuffer-local-map'.
|
|
358 If fourth arg READ is non-nil, then interpret the result as a lisp object
|
|
359 and return that object:
|
|
360 in other words, do `(car (read-from-string INPUT-STRING))'
|
|
361 Fifth arg HISTORY, if non-nil, specifies a history list
|
|
362 and optionally the initial position in the list.
|
|
363 It can be a symbol, which is the history list variable to use,
|
|
364 or it can be a cons cell (HISTVAR . HISTPOS).
|
|
365 In that case, HISTVAR is the history list variable to use,
|
|
366 and HISTPOS is the initial position (the position in the list
|
|
367 which INITIAL-CONTENTS corresponds to).
|
|
368 If HISTORY is `t', no history will be recorded.
|
|
369 Positions are counted starting from 1 at the beginning of the list.
|
|
370 Sixth arg ABBREV-TABLE, if non-nil, becomes the value of `local-abbrev-table'
|
|
371 in the minibuffer.
|
430
|
372 Seventh arg DEFAULT, if non-nil, will be returned when user enters
|
|
373 an empty string.
|
428
|
374
|
444
|
375 See also the variable `completion-highlight-first-word-only' for
|
|
376 control over completion display."
|
428
|
377 (if (and (not enable-recursive-minibuffers)
|
|
378 (> (minibuffer-depth) 0)
|
|
379 (eq (selected-window) (minibuffer-window)))
|
|
380 (error "Command attempted to use minibuffer while in minibuffer"))
|
|
381
|
|
382 (if (and minibuffer-max-depth
|
|
383 (> minibuffer-max-depth 0)
|
|
384 (>= (minibuffer-depth) minibuffer-max-depth))
|
|
385 (minibuffer-max-depth-exceeded))
|
|
386
|
|
387 ;; catch this error before the poor user has typed something...
|
|
388 (if history
|
|
389 (if (symbolp history)
|
|
390 (or (boundp history)
|
|
391 (error "History list %S is unbound" history))
|
|
392 (or (boundp (car history))
|
|
393 (error "History list %S is unbound" (car history)))))
|
|
394
|
|
395 (if (noninteractive)
|
|
396 (progn
|
|
397 ;; XEmacs in -batch mode calls minibuffer: print the prompt.
|
|
398 (message "%s" (gettext prompt))
|
|
399 ;;#### force-output
|
|
400
|
|
401 ;;#### Should this even be falling though to the code below?
|
|
402 ;;#### How does this stuff work now, anyway?
|
|
403 ))
|
|
404 (let* ((dir default-directory)
|
|
405 (owindow (selected-window))
|
|
406 (oframe (selected-frame))
|
|
407 (window (minibuffer-window))
|
|
408 (buffer (if (eq (minibuffer-depth) 0)
|
|
409 (window-buffer window)
|
|
410 (get-buffer-create (format " *Minibuf-%d"
|
|
411 (minibuffer-depth)))))
|
|
412 (frame (window-frame window))
|
|
413 (mconfig (if (eq frame (selected-frame))
|
|
414 nil (current-window-configuration frame)))
|
|
415 (oconfig (current-window-configuration))
|
|
416 ;; dynamic scope sucks sucks sucks sucks sucks sucks.
|
|
417 ;; `M-x doctor' makes history a local variable, and thus
|
|
418 ;; our binding above is buffer-local and doesn't apply
|
|
419 ;; once we switch buffers!!!! We demand better scope!
|
434
|
420 (_history_ history)
|
|
421 (minibuffer-default default))
|
428
|
422 (unwind-protect
|
|
423 (progn
|
|
424 (set-buffer (reset-buffer buffer))
|
|
425 (setq default-directory dir)
|
|
426 (make-local-variable 'print-escape-newlines)
|
|
427 (setq print-escape-newlines t)
|
|
428 (make-local-variable 'current-minibuffer-contents)
|
|
429 (make-local-variable 'current-minibuffer-point)
|
|
430 (make-local-variable 'initial-minibuffer-history-position)
|
|
431 (setq current-minibuffer-contents ""
|
|
432 current-minibuffer-point 1)
|
|
433 (if (not minibuffer-smart-completion-tracking-behavior)
|
|
434 nil
|
|
435 (make-local-variable 'mode-motion-hook)
|
|
436 (or mode-motion-hook
|
|
437 ;;####disgusting
|
|
438 (setq mode-motion-hook 'minibuffer-smart-mouse-tracker))
|
|
439 (make-local-variable 'mouse-track-click-hook)
|
|
440 (add-hook 'mouse-track-click-hook
|
|
441 'minibuffer-smart-maybe-select-highlighted-completion))
|
|
442 (set-window-buffer window buffer)
|
|
443 (select-window window)
|
|
444 (set-window-hscroll window 0)
|
|
445 (buffer-enable-undo buffer)
|
|
446 (message nil)
|
|
447 (if initial-contents
|
|
448 (if (consp initial-contents)
|
|
449 (progn
|
|
450 (insert (car initial-contents))
|
|
451 (goto-char (1+ (cdr initial-contents)))
|
|
452 (setq current-minibuffer-contents (car initial-contents)
|
|
453 current-minibuffer-point (cdr initial-contents)))
|
|
454 (insert initial-contents)
|
|
455 (setq current-minibuffer-contents initial-contents
|
|
456 current-minibuffer-point (point))))
|
|
457 (use-local-map (help-keymap-with-help-key
|
|
458 (or keymap minibuffer-local-map)
|
|
459 minibuffer-help-form))
|
|
460 (let ((mouse-grabbed-buffer
|
|
461 (and minibuffer-smart-completion-tracking-behavior
|
|
462 (current-buffer)))
|
|
463 (current-prefix-arg current-prefix-arg)
|
|
464 ;; (help-form minibuffer-help-form)
|
|
465 (minibuffer-history-variable (cond ((not _history_)
|
|
466 'minibuffer-history)
|
|
467 ((consp _history_)
|
|
468 (car _history_))
|
|
469 (t
|
|
470 _history_)))
|
|
471 (minibuffer-history-position (cond ((consp _history_)
|
|
472 (cdr _history_))
|
|
473 (t
|
|
474 0)))
|
|
475 (minibuffer-scroll-window owindow))
|
|
476 (setq initial-minibuffer-history-position
|
|
477 minibuffer-history-position)
|
|
478 (if abbrev-table
|
|
479 (setq local-abbrev-table abbrev-table
|
|
480 abbrev-mode t))
|
|
481 ;; This is now run from read-minibuffer-internal
|
|
482 ;(if minibuffer-setup-hook
|
|
483 ; (run-hooks 'minibuffer-setup-hook))
|
|
484 ;(message nil)
|
|
485 (if (eq 't
|
|
486 (catch 'exit
|
|
487 (if (> (recursion-depth) (minibuffer-depth))
|
|
488 (let ((standard-output t)
|
|
489 (standard-input t))
|
|
490 (read-minibuffer-internal prompt))
|
|
491 (read-minibuffer-internal prompt))))
|
|
492 ;; Translate an "abort" (throw 'exit 't)
|
|
493 ;; into a real quit
|
|
494 (signal 'quit '())
|
|
495 ;; return value
|
|
496 (let* ((val (progn (set-buffer buffer)
|
|
497 (if minibuffer-exit-hook
|
|
498 (run-hooks 'minibuffer-exit-hook))
|
430
|
499 (if (and (eq (char-after (point-min)) nil)
|
|
500 default)
|
|
501 default
|
|
502 (buffer-string))))
|
|
503 (histval (if (and default (string= val ""))
|
|
504 default
|
|
505 val))
|
428
|
506 (err nil))
|
|
507 (if readp
|
|
508 (condition-case e
|
|
509 (let ((v (read-from-string val)))
|
|
510 (if (< (cdr v) (length val))
|
|
511 (save-match-data
|
|
512 (or (string-match "[ \t\n]*\\'" val (cdr v))
|
|
513 (error "Trailing garbage following expression"))))
|
|
514 (setq v (car v))
|
|
515 ;; total total kludge
|
|
516 (if (stringp v) (setq v (list 'quote v)))
|
|
517 (setq val v))
|
|
518 (end-of-file
|
|
519 (setq err
|
|
520 '(input-error "End of input before end of expression")))
|
|
521 (error (setq err e))))
|
|
522 ;; Add the value to the appropriate history list unless
|
|
523 ;; it's already the most recent element, or it's only
|
|
524 ;; two characters long.
|
|
525 (if (and (symbolp minibuffer-history-variable)
|
|
526 (boundp minibuffer-history-variable))
|
|
527 (let ((list (symbol-value minibuffer-history-variable)))
|
|
528 (or (eq list t)
|
|
529 (null val)
|
|
530 (and list (equal histval (car list)))
|
|
531 (and (stringp val)
|
|
532 minibuffer-history-minimum-string-length
|
|
533 (< (length val)
|
|
534 minibuffer-history-minimum-string-length))
|
|
535 (set minibuffer-history-variable
|
|
536 (if minibuffer-history-uniquify
|
|
537 (cons histval (remove histval list))
|
|
538 (cons histval list))))))
|
|
539 (if err (signal (car err) (cdr err)))
|
|
540 val))))
|
|
541 ;; stupid display code requires this for some reason
|
|
542 (set-buffer buffer)
|
|
543 (buffer-disable-undo buffer)
|
|
544 (setq buffer-read-only nil)
|
|
545 (erase-buffer)
|
|
546
|
|
547 ;; restore frame configurations
|
|
548 (if (and mconfig (frame-live-p oframe)
|
|
549 (eq frame (selected-frame)))
|
|
550 ;; if we changed frames (due to surrogate minibuffer),
|
|
551 ;; and we're still on the new frame, go back to the old one.
|
|
552 (select-frame oframe))
|
|
553 (if mconfig (set-window-configuration mconfig))
|
|
554 (set-window-configuration oconfig))))
|
|
555
|
|
556
|
|
557 (defun minibuffer-max-depth-exceeded ()
|
|
558 ;;
|
|
559 ;; This signals an error if an Nth minibuffer is invoked while N-1 are
|
|
560 ;; already active, whether the minibuffer window is selected or not.
|
|
561 ;; Since, under X, it's easy to jump out of the minibuffer (by doing M-x,
|
|
562 ;; getting distracted, and clicking elsewhere) many many novice users have
|
|
563 ;; had the problem of having multiple minibuffers build up, even to the
|
|
564 ;; point of exceeding max-lisp-eval-depth. Since the variable
|
|
565 ;; enable-recursive-minibuffers historically/crockishly is only consulted
|
|
566 ;; when the minibuffer is currently active (like typing M-x M-x) it doesn't
|
|
567 ;; help in this situation.
|
|
568 ;;
|
|
569 ;; This routine also offers to edit .emacs for you to get rid of this
|
|
570 ;; complaint, like `disabled' commands do, since it's likely that non-novice
|
|
571 ;; users will be annoyed by this change, so we give them an easy way to get
|
|
572 ;; rid of it forever.
|
|
573 ;;
|
|
574 (beep t 'minibuffer-limit-exceeded)
|
|
575 (message
|
|
576 "Minibuffer already active: abort it with `^]', enable new one with `n': ")
|
|
577 (let ((char (let ((cursor-in-echo-area t)) ; #### doesn't always work??
|
|
578 (read-char))))
|
|
579 (cond
|
|
580 ((eq char ?n)
|
|
581 (cond
|
|
582 ((y-or-n-p "Enable recursive minibuffers for other sessions too? ")
|
|
583 ;; This is completely disgusting, but it's basically what novice.el
|
|
584 ;; does. This kind of thing should be generalized.
|
|
585 (setq minibuffer-max-depth nil)
|
|
586 (save-excursion
|
|
587 (set-buffer
|
|
588 (find-file-noselect
|
|
589 (substitute-in-file-name custom-file)))
|
|
590 (goto-char (point-min))
|
|
591 (if (re-search-forward
|
|
592 "^(setq minibuffer-max-depth \\([0-9]+\\|'?nil\\|'?()\\))\n"
|
|
593 nil t)
|
|
594 (delete-region (match-beginning 0 ) (match-end 0))
|
|
595 ;; Must have been disabled by default.
|
|
596 (goto-char (point-max)))
|
|
597 (insert"\n(setq minibuffer-max-depth nil)\n")
|
|
598 (save-buffer))
|
|
599 (message "Multiple minibuffers enabled")
|
|
600 (sit-for 1))))
|
|
601 ((eq char ?)
|
|
602 (abort-recursive-edit))
|
|
603 (t
|
|
604 (error "Minibuffer already active")))))
|
|
605
|
|
606
|
|
607 ;;;; Guts of minibuffer completion
|
|
608
|
|
609
|
|
610 ;; Used by minibuffer-do-completion
|
442
|
611 (defvar last-exact-completion nil)
|
428
|
612
|
|
613 (defun temp-minibuffer-message (m)
|
|
614 (let ((savemax (point-max)))
|
|
615 (save-excursion
|
|
616 (goto-char (point-max))
|
|
617 (message nil)
|
|
618 (insert m))
|
|
619 (let ((inhibit-quit t))
|
|
620 (sit-for 2)
|
|
621 (delete-region savemax (point-max))
|
|
622 ;; If the user types a ^G while we're in sit-for, then quit-flag
|
|
623 ;; gets set. In this case, we want that ^G to be interpreted
|
|
624 ;; as a normal character, and act just like typeahead.
|
|
625 (if (and quit-flag (not unread-command-event))
|
|
626 (setq unread-command-event (character-to-event (quit-char))
|
|
627 quit-flag nil)))))
|
|
628
|
|
629
|
|
630 ;; Determines whether buffer-string is an exact completion
|
|
631 (defun exact-minibuffer-completion-p (buffer-string)
|
|
632 (cond ((not minibuffer-completion-table)
|
|
633 ;; Empty alist
|
|
634 nil)
|
|
635 ((vectorp minibuffer-completion-table)
|
|
636 (let ((tem (intern-soft buffer-string
|
|
637 minibuffer-completion-table)))
|
|
638 (if (or tem
|
|
639 (and (string-equal buffer-string "nil")
|
|
640 ;; intern-soft loses for 'nil
|
|
641 (catch 'found
|
|
642 (mapatoms #'(lambda (s)
|
|
643 (if (string-equal
|
|
644 (symbol-name s)
|
|
645 buffer-string)
|
|
646 (throw 'found t)))
|
|
647 minibuffer-completion-table)
|
|
648 nil)))
|
|
649 (if minibuffer-completion-predicate
|
|
650 (funcall minibuffer-completion-predicate
|
|
651 tem)
|
|
652 t)
|
|
653 nil)))
|
|
654 ((and (consp minibuffer-completion-table)
|
|
655 ;;#### Emacs-Lisp truly sucks!
|
|
656 ;; lambda, autoload, etc
|
|
657 (not (symbolp (car minibuffer-completion-table))))
|
|
658 (if (not completion-ignore-case)
|
|
659 (assoc buffer-string minibuffer-completion-table)
|
|
660 (let ((s (upcase buffer-string))
|
|
661 (tail minibuffer-completion-table)
|
|
662 tem)
|
|
663 (while tail
|
|
664 (setq tem (car (car tail)))
|
|
665 (if (or (equal tem buffer-string)
|
|
666 (equal tem s)
|
|
667 (if tem (equal (upcase tem) s)))
|
|
668 (setq s 'win
|
|
669 tail nil) ;exit
|
|
670 (setq tail (cdr tail))))
|
|
671 (eq s 'win))))
|
|
672 (t
|
|
673 (funcall minibuffer-completion-table
|
|
674 buffer-string
|
|
675 minibuffer-completion-predicate
|
|
676 'lambda)))
|
|
677 )
|
|
678
|
|
679 ;; 0 'none no possible completion
|
|
680 ;; 1 'unique was already an exact and unique completion
|
|
681 ;; 3 'exact was already an exact (but nonunique) completion
|
|
682 ;; NOT USED 'completed-exact-unique completed to an exact and completion
|
|
683 ;; 4 'completed-exact completed to an exact (but nonunique) completion
|
|
684 ;; 5 'completed some completion happened
|
|
685 ;; 6 'uncompleted no completion happened
|
|
686 (defun minibuffer-do-completion-1 (buffer-string completion)
|
|
687 (cond ((not completion)
|
|
688 'none)
|
|
689 ((eq completion t)
|
|
690 ;; exact and unique match
|
|
691 'unique)
|
|
692 (t
|
|
693 ;; It did find a match. Do we match some possibility exactly now?
|
|
694 (let ((completedp (not (string-equal completion buffer-string))))
|
|
695 (if completedp
|
|
696 (progn
|
|
697 ;; Some completion happened
|
|
698 (erase-buffer)
|
|
699 (insert completion)
|
|
700 (setq buffer-string completion)))
|
|
701 (if (exact-minibuffer-completion-p buffer-string)
|
|
702 ;; An exact completion was possible
|
|
703 (if completedp
|
|
704 ;; Since no callers need to know the difference, don't bother
|
|
705 ;; with this (potentially expensive) discrimination.
|
|
706 ;; (if (eq (try-completion completion
|
|
707 ;; minibuffer-completion-table
|
|
708 ;; minibuffer-completion-predicate)
|
|
709 ;; 't)
|
|
710 ;; 'completed-exact-unique
|
|
711 'completed-exact
|
|
712 ;; )
|
|
713 'exact)
|
|
714 ;; Not an exact match
|
|
715 (if completedp
|
|
716 'completed
|
|
717 'uncompleted))))))
|
|
718
|
|
719
|
|
720 (defun minibuffer-do-completion (buffer-string)
|
|
721 (let* ((completion (try-completion buffer-string
|
|
722 minibuffer-completion-table
|
|
723 minibuffer-completion-predicate))
|
|
724 (status (minibuffer-do-completion-1 buffer-string completion))
|
|
725 (last last-exact-completion))
|
|
726 (setq last-exact-completion nil)
|
|
727 (cond ((eq status 'none)
|
|
728 ;; No completions
|
|
729 (ding nil 'no-completion)
|
|
730 (temp-minibuffer-message " [No match]"))
|
|
731 ((eq status 'unique)
|
|
732 )
|
|
733 (t
|
|
734 ;; It did find a match. Do we match some possibility exactly now?
|
|
735 (if (not (string-equal completion buffer-string))
|
|
736 (progn
|
|
737 ;; Some completion happened
|
|
738 (erase-buffer)
|
|
739 (insert completion)
|
|
740 (setq buffer-string completion)))
|
|
741 (cond ((eq status 'exact)
|
|
742 ;; If the last exact completion and this one were
|
|
743 ;; the same, it means we've already given a
|
|
744 ;; "Complete but not unique" message and that the
|
|
745 ;; user's hit TAB again, so now we give help.
|
|
746 (setq last-exact-completion completion)
|
|
747 (if (equal buffer-string last)
|
|
748 (minibuffer-completion-help)))
|
|
749 ((eq status 'uncompleted)
|
|
750 (if completion-auto-help
|
|
751 (minibuffer-completion-help)
|
|
752 (temp-minibuffer-message " [Next char not unique]")))
|
|
753 (t
|
|
754 nil))))
|
|
755 status))
|
|
756
|
|
757
|
|
758 ;;;; completing-read
|
|
759
|
|
760 (defun completing-read (prompt table
|
|
761 &optional predicate require-match
|
|
762 initial-contents history default)
|
|
763 "Read a string in the minibuffer, with completion.
|
863
|
764
|
428
|
765 PROMPT is a string to prompt with; normally it ends in a colon and a space.
|
|
766 TABLE is an alist whose elements' cars are strings, or an obarray.
|
863
|
767 TABLE can also be a function which does the completion itself.
|
428
|
768 PREDICATE limits completion to a subset of TABLE.
|
765
|
769 See `try-completion' and `all-completions' for more details
|
|
770 on completion, TABLE, and PREDICATE.
|
|
771
|
428
|
772 If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless
|
765
|
773 the input is (or completes to) an element of TABLE or is null.
|
|
774 If it is also not t, Return does not exit if it does non-null completion.
|
428
|
775 If INITIAL-CONTENTS is non-nil, insert it in the minibuffer initially.
|
|
776 If it is (STRING . POSITION), the initial input
|
|
777 is STRING, but point is placed POSITION characters into the string.
|
765
|
778
|
428
|
779 HISTORY, if non-nil, specifies a history list
|
|
780 and optionally the initial position in the list.
|
|
781 It can be a symbol, which is the history list variable to use,
|
|
782 or it can be a cons cell (HISTVAR . HISTPOS).
|
|
783 In that case, HISTVAR is the history list variable to use,
|
|
784 and HISTPOS is the initial position (the position in the list
|
|
785 which INITIAL-CONTENTS corresponds to).
|
|
786 If HISTORY is `t', no history will be recorded.
|
|
787 Positions are counted starting from 1 at the beginning of the list.
|
765
|
788 DEFAULT, if non-nil, will be returned when the user enters an empty
|
|
789 string.
|
|
790
|
428
|
791 Completion ignores case if the ambient value of
|
|
792 `completion-ignore-case' is non-nil."
|
|
793 (let ((minibuffer-completion-table table)
|
|
794 (minibuffer-completion-predicate predicate)
|
|
795 (minibuffer-completion-confirm (if (eq require-match 't) nil t))
|
|
796 (last-exact-completion nil)
|
|
797 ret)
|
|
798 (setq ret (read-from-minibuffer prompt
|
|
799 initial-contents
|
|
800 (if (not require-match)
|
|
801 minibuffer-local-completion-map
|
|
802 minibuffer-local-must-match-map)
|
|
803 nil
|
430
|
804 history
|
|
805 nil
|
|
806 default))
|
428
|
807 (if (and (string= ret "")
|
|
808 default)
|
|
809 default
|
|
810 ret)))
|
|
811
|
|
812
|
|
813 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
814 ;;;; Minibuffer completion commands ;;;;
|
|
815 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
816
|
|
817
|
|
818 (defun minibuffer-complete ()
|
|
819 "Complete the minibuffer contents as far as possible.
|
|
820 Return nil if there is no valid completion, else t.
|
|
821 If no characters can be completed, display a list of possible completions.
|
|
822 If you repeat this command after it displayed such a list,
|
|
823 scroll the window of possible completions."
|
|
824 (interactive)
|
|
825 ;; If the previous command was not this, then mark the completion
|
|
826 ;; buffer obsolete.
|
|
827 (or (eq last-command this-command)
|
|
828 (setq minibuffer-scroll-window nil))
|
|
829 (let ((window minibuffer-scroll-window))
|
|
830 (if (and window (windowp window) (window-buffer window)
|
|
831 (buffer-name (window-buffer window)))
|
|
832 ;; If there's a fresh completion window with a live buffer
|
|
833 ;; and this command is repeated, scroll that window.
|
|
834 (let ((obuf (current-buffer)))
|
|
835 (unwind-protect
|
|
836 (progn
|
|
837 (set-buffer (window-buffer window))
|
|
838 (if (pos-visible-in-window-p (point-max) window)
|
|
839 ;; If end is in view, scroll up to the beginning.
|
|
840 (set-window-start window (point-min))
|
|
841 ;; Else scroll down one frame.
|
|
842 (scroll-other-window)))
|
|
843 (set-buffer obuf))
|
|
844 nil)
|
|
845 (let ((status (minibuffer-do-completion (buffer-string))))
|
|
846 (if (eq status 'none)
|
|
847 nil
|
|
848 (progn
|
|
849 (cond ((eq status 'unique)
|
|
850 (temp-minibuffer-message
|
|
851 " [Sole completion]"))
|
|
852 ((eq status 'exact)
|
|
853 (temp-minibuffer-message
|
|
854 " [Complete, but not unique]")))
|
|
855 t))))))
|
|
856
|
|
857
|
|
858 (defun minibuffer-complete-and-exit ()
|
|
859 "Complete the minibuffer contents, and maybe exit.
|
|
860 Exit if the name is valid with no completion needed.
|
|
861 If name was completed to a valid match,
|
|
862 a repetition of this command will exit."
|
|
863 (interactive)
|
|
864 (if (= (point-min) (point-max))
|
|
865 ;; Crockishly allow user to specify null string
|
|
866 (throw 'exit nil))
|
|
867 (let ((buffer-string (buffer-string)))
|
|
868 ;; Short-cut -- don't call minibuffer-do-completion if we already
|
|
869 ;; have an (possibly nonunique) exact completion.
|
|
870 (if (exact-minibuffer-completion-p buffer-string)
|
|
871 (throw 'exit nil))
|
|
872 (let ((status (minibuffer-do-completion buffer-string)))
|
|
873 (if (or (eq status 'unique)
|
|
874 (eq status 'exact)
|
|
875 (if (or (eq status 'completed-exact)
|
|
876 (eq status 'completed-exact-unique))
|
|
877 (if minibuffer-completion-confirm
|
|
878 (progn (temp-minibuffer-message " [Confirm]")
|
|
879 nil)
|
|
880 t)))
|
|
881 (throw 'exit nil)))))
|
|
882
|
|
883
|
|
884 (defun self-insert-and-exit ()
|
|
885 "Terminate minibuffer input."
|
|
886 (interactive)
|
|
887 (self-insert-command 1)
|
|
888 (throw 'exit nil))
|
|
889
|
|
890 (defun exit-minibuffer ()
|
|
891 "Terminate this minibuffer argument.
|
|
892 If minibuffer-confirm-incomplete is true, and we are in a completing-read
|
|
893 of some kind, and the contents of the minibuffer is not an existing
|
|
894 completion, requires an additional RET before the minibuffer will be exited
|
|
895 \(assuming that RET was the character that invoked this command:
|
|
896 the character in question must be typed again)."
|
|
897 (interactive)
|
|
898 (if (not minibuffer-confirm-incomplete)
|
|
899 (throw 'exit nil))
|
|
900 (let ((buffer-string (buffer-string)))
|
|
901 (if (exact-minibuffer-completion-p buffer-string)
|
|
902 (throw 'exit nil))
|
|
903 (let ((completion (if (not minibuffer-completion-table)
|
|
904 t
|
|
905 (try-completion buffer-string
|
|
906 minibuffer-completion-table
|
|
907 minibuffer-completion-predicate))))
|
|
908 (if (or (eq completion 't)
|
|
909 ;; Crockishly allow user to specify null string
|
|
910 (string-equal buffer-string ""))
|
|
911 (throw 'exit nil))
|
|
912 (if completion ;; rewritten for I18N3 snarfing
|
|
913 (temp-minibuffer-message " [incomplete; confirm]")
|
|
914 (temp-minibuffer-message " [no completions; confirm]"))
|
|
915 (let ((event (let ((inhibit-quit t))
|
|
916 (prog1
|
|
917 (next-command-event)
|
|
918 (setq quit-flag nil)))))
|
|
919 (cond ((equal event last-command-event)
|
|
920 (throw 'exit nil))
|
|
921 ((equal (quit-char) (event-to-character event))
|
|
922 ;; Minibuffer abort.
|
|
923 (throw 'exit t)))
|
|
924 (dispatch-event event)))))
|
|
925
|
|
926 ;;;; minibuffer-complete-word
|
|
927
|
|
928
|
|
929 ;;;#### I think I have done this correctly; it certainly is simpler
|
|
930 ;;;#### than what the C code seemed to be trying to do.
|
|
931 (defun minibuffer-complete-word ()
|
|
932 "Complete the minibuffer contents at most a single word.
|
|
933 After one word is completed as much as possible, a space or hyphen
|
|
934 is added, provided that matches some possible completion.
|
|
935 Return nil if there is no valid completion, else t."
|
|
936 (interactive)
|
|
937 (let* ((buffer-string (buffer-string))
|
|
938 (completion (try-completion buffer-string
|
|
939 minibuffer-completion-table
|
|
940 minibuffer-completion-predicate))
|
|
941 (status (minibuffer-do-completion-1 buffer-string completion)))
|
|
942 (cond ((eq status 'none)
|
|
943 (ding nil 'no-completion)
|
|
944 (temp-minibuffer-message " [No match]")
|
|
945 nil)
|
|
946 ((eq status 'unique)
|
|
947 ;; New message, only in this new Lisp code
|
|
948 (temp-minibuffer-message " [Sole completion]")
|
|
949 t)
|
|
950 (t
|
|
951 (cond ((or (eq status 'uncompleted)
|
|
952 (eq status 'exact))
|
|
953 (let ((foo #'(lambda (s)
|
|
954 (condition-case nil
|
|
955 (if (try-completion
|
|
956 (concat buffer-string s)
|
|
957 minibuffer-completion-table
|
|
958 minibuffer-completion-predicate)
|
|
959 (progn
|
|
960 (goto-char (point-max))
|
|
961 (insert s)
|
|
962 t)
|
|
963 nil)
|
|
964 (error nil))))
|
|
965 (char last-command-char))
|
|
966 ;; Try to complete by adding a word-delimiter
|
|
967 (or (and (characterp char) (> char 0)
|
|
968 (funcall foo (char-to-string char)))
|
|
969 (and (not (eq char ?\ ))
|
|
970 (funcall foo " "))
|
|
971 (and (not (eq char ?\-))
|
|
972 (funcall foo "-"))
|
|
973 (progn
|
|
974 (if completion-auto-help
|
|
975 (minibuffer-completion-help)
|
|
976 ;; New message, only in this new Lisp code
|
|
977 ;; rewritten for I18N3 snarfing
|
|
978 (if (eq status 'exact)
|
|
979 (temp-minibuffer-message
|
|
980 " [Complete, but not unique]")
|
|
981 (temp-minibuffer-message " [Ambiguous]")))
|
|
982 nil))))
|
|
983 (t
|
|
984 (erase-buffer)
|
|
985 (insert completion)
|
|
986 ;; First word-break in stuff found by completion
|
|
987 (goto-char (point-min))
|
|
988 (let ((len (length buffer-string))
|
|
989 n)
|
|
990 (if (and (< len (length completion))
|
|
991 (catch 'match
|
|
992 (setq n 0)
|
|
993 (while (< n len)
|
|
994 (if (char-equal
|
|
995 (upcase (aref buffer-string n))
|
|
996 (upcase (aref completion n)))
|
|
997 (setq n (1+ n))
|
|
998 (throw 'match nil)))
|
|
999 t)
|
|
1000 (progn
|
|
1001 (goto-char (point-min))
|
|
1002 (forward-char len)
|
|
1003 (re-search-forward "\\W" nil t)))
|
|
1004 (delete-region (point) (point-max))
|
|
1005 (goto-char (point-max))))
|
|
1006 t))))))
|
|
1007
|
|
1008
|
|
1009 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1010 ;;;; "Smart minibuffer" hackery ;;;;
|
|
1011 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1012
|
|
1013 ;;; ("Kludgy minibuffer hackery" is perhaps a better name)
|
|
1014
|
|
1015 ;; This works by setting `mouse-grabbed-buffer' to the minibuffer,
|
|
1016 ;; defining button2 in the minibuffer keymap to
|
|
1017 ;; `minibuffer-smart-select-highlighted-completion', and setting the
|
|
1018 ;; mode-motion-hook of the minibuffer to `minibuffer-mouse-tracker'.
|
|
1019 ;; By setting `mouse-grabbed-buffer', the minibuffer's keymap and
|
|
1020 ;; mode-motion-hook apply (for mouse motion and presses) no matter
|
|
1021 ;; what buffer the mouse is over. Then, `minibuffer-mouse-tracker'
|
|
1022 ;; examines the text under the mouse looking for something that looks
|
|
1023 ;; like a completion, and causes it to be highlighted, and
|
|
1024 ;; `minibuffer-smart-select-highlighted-completion' looks for a
|
|
1025 ;; flagged completion under the mouse and inserts it. This has the
|
|
1026 ;; following advantages:
|
|
1027 ;;
|
|
1028 ;; -- filenames and such in any buffer can be inserted by clicking,
|
|
1029 ;; not just completions
|
|
1030 ;;
|
|
1031 ;; but the following disadvantages:
|
|
1032 ;;
|
|
1033 ;; -- unless you're aware of the "filename in any buffer" feature,
|
|
1034 ;; the fact that strings in arbitrary buffers get highlighted appears
|
|
1035 ;; as a bug
|
|
1036 ;; -- mouse motion can cause ange-ftp actions -- bad bad bad.
|
|
1037 ;;
|
|
1038 ;; There's some hackery in minibuffer-mouse-tracker to try to avoid the
|
|
1039 ;; ange-ftp stuff, but it doesn't work.
|
|
1040 ;;
|
|
1041
|
|
1042 (defcustom minibuffer-smart-completion-tracking-behavior nil
|
|
1043 "*If non-nil, look for completions under mouse in all buffers.
|
|
1044 This allows you to click on something that looks like a completion
|
|
1045 and have it selected, regardless of what buffer it is in.
|
|
1046
|
|
1047 This is not enabled by default because
|
|
1048
|
|
1049 -- The \"mysterious\" highlighting in normal buffers is confusing to
|
|
1050 people not expecting it, and looks like a bug
|
|
1051 -- If ange-ftp is enabled, this tracking sometimes causes ange-ftp
|
|
1052 action as a result of mouse motion, which is *bad bad bad*.
|
|
1053 Hopefully this bug will be fixed at some point."
|
|
1054 :type 'boolean
|
|
1055 :group 'minibuffer)
|
|
1056
|
|
1057 (defun minibuffer-smart-mouse-tracker (event)
|
|
1058 ;; Used as the mode-motion-hook of the minibuffer window, which is the
|
|
1059 ;; value of `mouse-grabbed-buffer' while the minibuffer is active. If
|
|
1060 ;; the word under the mouse is a valid minibuffer completion, then it
|
|
1061 ;; is highlighted.
|
|
1062 ;;
|
|
1063 ;; We do some special voodoo when we're reading a pathname, because
|
|
1064 ;; the way filename completion works is funny. Possibly there's some
|
|
1065 ;; more general way this could be dealt with...
|
|
1066 ;;
|
|
1067 ;; We do some further voodoo when reading a pathname that is an
|
|
1068 ;; ange-ftp or efs path, because causing FTP activity as a result of
|
|
1069 ;; mouse motion is a really bad time.
|
|
1070 ;;
|
|
1071 (and minibuffer-smart-completion-tracking-behavior
|
|
1072 (event-point event)
|
|
1073 ;; avoid conflict with display-completion-list extents
|
|
1074 (not (extent-at (event-point event)
|
|
1075 (event-buffer event)
|
|
1076 'list-mode-item))
|
|
1077 (let ((filename-kludge-p (eq minibuffer-completion-table
|
|
1078 'read-file-name-internal)))
|
|
1079 (mode-motion-highlight-internal
|
|
1080 event
|
|
1081 #'(lambda () (default-mouse-track-beginning-of-word
|
|
1082 (if filename-kludge-p 'nonwhite t)))
|
|
1083 #'(lambda ()
|
|
1084 (let ((p (point))
|
|
1085 (string ""))
|
|
1086 (default-mouse-track-end-of-word
|
|
1087 (if filename-kludge-p 'nonwhite t))
|
|
1088 (if (and (/= p (point)) minibuffer-completion-table)
|
|
1089 (setq string (buffer-substring p (point))))
|
|
1090 (if (string-match "\\`[ \t\n]*\\'" string)
|
|
1091 (goto-char p)
|
|
1092 (if filename-kludge-p
|
|
1093 (setq string (minibuffer-smart-select-kludge-filename
|
|
1094 string)))
|
|
1095 ;; try-completion bogusly returns a string even when
|
|
1096 ;; that string is complete if that string is also a
|
|
1097 ;; prefix for other completions. This means that we
|
|
1098 ;; can't just do the obvious thing, (eq t
|
|
1099 ;; (try-completion ...)).
|
|
1100 (let (comp)
|
|
1101 (if (and filename-kludge-p
|
|
1102 ;; #### evil evil evil evil
|
|
1103 (or (and (fboundp 'ange-ftp-ftp-path)
|
502
|
1104 (declare-fboundp
|
|
1105 (ange-ftp-ftp-path string)))
|
428
|
1106 (and (fboundp 'efs-ftp-path)
|
502
|
1107 (declare-fboundp
|
|
1108 (efs-ftp-path string)))))
|
428
|
1109 (setq comp t)
|
|
1110 (setq comp
|
|
1111 (try-completion string
|
|
1112 minibuffer-completion-table
|
|
1113 minibuffer-completion-predicate)))
|
|
1114 (or (eq comp t)
|
|
1115 (and (equal comp string)
|
|
1116 (or (null minibuffer-completion-predicate)
|
|
1117 (stringp
|
|
1118 minibuffer-completion-predicate) ; ???
|
|
1119 (funcall minibuffer-completion-predicate
|
|
1120 (if (vectorp
|
|
1121 minibuffer-completion-table)
|
|
1122 (intern-soft
|
|
1123 string
|
|
1124 minibuffer-completion-table)
|
|
1125 string))))
|
|
1126 (goto-char p))))))))))
|
|
1127
|
|
1128 (defun minibuffer-smart-select-kludge-filename (string)
|
|
1129 (save-excursion
|
|
1130 (set-buffer mouse-grabbed-buffer) ; the minibuf
|
|
1131 (let ((kludge-string (concat (buffer-string) string)))
|
|
1132 (if (or (and (fboundp 'ange-ftp-ftp-path)
|
502
|
1133 (declare-fboundp (ange-ftp-ftp-path kludge-string)))
|
|
1134 (and (fboundp 'efs-ftp-path)
|
|
1135 (declare-fboundp (efs-ftp-path kludge-string))))
|
|
1136 ;; #### evil evil evil, but more so.
|
|
1137 string
|
|
1138 (append-expand-filename (buffer-string) string)))))
|
428
|
1139
|
|
1140 (defun minibuffer-smart-select-highlighted-completion (event)
|
|
1141 "Select the highlighted text under the mouse as a minibuffer response.
|
|
1142 When the minibuffer is being used to prompt the user for a completion,
|
|
1143 any valid completions which are visible on the frame will highlight
|
|
1144 when the mouse moves over them. Clicking \\<minibuffer-local-map>\
|
|
1145 \\[minibuffer-smart-select-highlighted-completion] will select the
|
|
1146 highlighted completion under the mouse.
|
|
1147
|
|
1148 If the mouse is clicked while not over a highlighted completion,
|
|
1149 then the global binding of \\[minibuffer-smart-select-highlighted-completion] \
|
|
1150 will be executed instead. In this\nway you can get at the normal global \
|
|
1151 behavior of \\[minibuffer-smart-select-highlighted-completion] as well as
|
|
1152 the special minibuffer behavior."
|
|
1153 (interactive "e")
|
|
1154 (if minibuffer-smart-completion-tracking-behavior
|
|
1155 (minibuffer-smart-select-highlighted-completion-1 event t)
|
|
1156 (let ((command (lookup-key global-map
|
|
1157 (vector current-mouse-event))))
|
|
1158 (if command (call-interactively command)))))
|
|
1159
|
|
1160 (defun minibuffer-smart-select-highlighted-completion-1 (event global-p)
|
|
1161 (let* ((filename-kludge-p (eq minibuffer-completion-table
|
|
1162 'read-file-name-internal))
|
|
1163 completion
|
|
1164 command-p
|
|
1165 (evpoint (event-point event))
|
|
1166 (evextent (and evpoint (extent-at evpoint (event-buffer event)
|
|
1167 'list-mode-item))))
|
|
1168 (if evextent
|
|
1169 ;; avoid conflict with display-completion-list extents.
|
|
1170 ;; if we find one, do that behavior instead.
|
|
1171 (list-mode-item-selected-1 evextent event)
|
|
1172 (save-excursion
|
|
1173 (let* ((buffer (window-buffer (event-window event)))
|
|
1174 (p (event-point event))
|
|
1175 (extent (and p (extent-at p buffer 'mouse-face))))
|
|
1176 (set-buffer buffer)
|
|
1177 (if (not (and (extent-live-p extent)
|
|
1178 (eq (extent-object extent) (current-buffer))
|
|
1179 (not (extent-detached-p extent))))
|
|
1180 (setq command-p t)
|
|
1181 ;; ...else user has selected a highlighted completion.
|
|
1182 (setq completion
|
|
1183 (buffer-substring (extent-start-position extent)
|
|
1184 (extent-end-position extent)))
|
|
1185 (if filename-kludge-p
|
|
1186 (setq completion (minibuffer-smart-select-kludge-filename
|
|
1187 completion)))
|
|
1188 ;; remove the extent so that it's not hanging around in
|
|
1189 ;; *Completions*
|
|
1190 (detach-extent extent)
|
|
1191 (set-buffer mouse-grabbed-buffer)
|
|
1192 (erase-buffer)
|
|
1193 (insert completion))))
|
|
1194 ;; we need to execute the command or do the throw outside of the
|
|
1195 ;; save-excursion.
|
|
1196 (cond ((and command-p global-p)
|
|
1197 (let ((command (lookup-key global-map
|
|
1198 (vector current-mouse-event))))
|
|
1199 (if command
|
|
1200 (call-interactively command)
|
|
1201 (if minibuffer-completion-table
|
|
1202 (error
|
|
1203 "Highlighted words are valid completions. You may select one.")
|
|
1204 (error "no completions")))))
|
|
1205 ((not command-p)
|
|
1206 ;; things get confused if the minibuffer is terminated while
|
|
1207 ;; not selected.
|
|
1208 (select-window (minibuffer-window))
|
|
1209 (if (and filename-kludge-p (file-directory-p completion))
|
|
1210 ;; if the user clicked middle on a directory name, display the
|
|
1211 ;; files in that directory.
|
|
1212 (progn
|
|
1213 (goto-char (point-max))
|
|
1214 (minibuffer-completion-help))
|
|
1215 ;; otherwise, terminate input
|
|
1216 (throw 'exit nil)))))))
|
|
1217
|
|
1218 (defun minibuffer-smart-maybe-select-highlighted-completion
|
|
1219 (event &optional click-count)
|
444
|
1220 "Like `minibuffer-smart-select-highlighted-completion' but does nothing if
|
428
|
1221 there is no completion (as opposed to executing the global binding). Useful
|
|
1222 as the value of `mouse-track-click-hook'."
|
|
1223 (interactive "e")
|
|
1224 (minibuffer-smart-select-highlighted-completion-1 event nil))
|
|
1225
|
|
1226 (define-key minibuffer-local-map 'button2
|
|
1227 'minibuffer-smart-select-highlighted-completion)
|
|
1228
|
|
1229
|
|
1230 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1231 ;;;; Minibuffer History ;;;;
|
|
1232 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1233
|
|
1234 (defvar minibuffer-history '()
|
|
1235 "Default minibuffer history list.
|
|
1236 This is used for all minibuffer input except when an alternate history
|
|
1237 list is specified.")
|
|
1238
|
|
1239 ;; Some other history lists:
|
|
1240 ;;
|
|
1241 (defvar minibuffer-history-search-history '())
|
|
1242 (defvar function-history '())
|
|
1243 (defvar variable-history '())
|
|
1244 (defvar buffer-history '())
|
|
1245 (defvar shell-command-history '())
|
|
1246 (defvar file-name-history '())
|
|
1247
|
|
1248 (defvar read-expression-history nil)
|
|
1249
|
|
1250 (defvar minibuffer-history-sexp-flag nil ;weird FSF Emacs kludge
|
|
1251 "Non-nil when doing history operations on `command-history'.
|
|
1252 More generally, indicates that the history list being acted on
|
|
1253 contains expressions rather than strings.")
|
|
1254
|
|
1255 (defun previous-matching-history-element (regexp n)
|
|
1256 "Find the previous history element that matches REGEXP.
|
|
1257 \(Previous history elements refer to earlier actions.)
|
|
1258 With prefix argument N, search for Nth previous match.
|
|
1259 If N is negative, find the next or Nth next match."
|
|
1260 (interactive
|
|
1261 (let ((enable-recursive-minibuffers t)
|
438
|
1262 (minibuffer-history-sexp-flag nil)
|
|
1263 (minibuffer-max-depth (and minibuffer-max-depth
|
|
1264 (1+ minibuffer-max-depth))))
|
428
|
1265 (if (eq 't (symbol-value minibuffer-history-variable))
|
|
1266 (error "History is not being recorded in this context"))
|
|
1267 (list (read-from-minibuffer "Previous element matching (regexp): "
|
|
1268 (car minibuffer-history-search-history)
|
|
1269 minibuffer-local-map
|
|
1270 nil
|
|
1271 'minibuffer-history-search-history)
|
|
1272 (prefix-numeric-value current-prefix-arg))))
|
|
1273 (let ((history (symbol-value minibuffer-history-variable))
|
|
1274 prevpos
|
|
1275 (pos minibuffer-history-position))
|
|
1276 (if (eq history t)
|
|
1277 (error "History is not being recorded in this context"))
|
|
1278 (while (/= n 0)
|
|
1279 (setq prevpos pos)
|
|
1280 (setq pos (min (max 1 (+ pos (if (< n 0) -1 1))) (length history)))
|
|
1281 (if (= pos prevpos)
|
|
1282 (if (= pos 1) ;; rewritten for I18N3 snarfing
|
|
1283 (error "No later matching history item")
|
|
1284 (error "No earlier matching history item")))
|
|
1285 (if (string-match regexp
|
|
1286 (if minibuffer-history-sexp-flag
|
|
1287 (let ((print-level nil))
|
|
1288 (prin1-to-string (nth (1- pos) history)))
|
|
1289 (nth (1- pos) history)))
|
|
1290 (setq n (+ n (if (< n 0) 1 -1)))))
|
|
1291 (setq minibuffer-history-position pos)
|
|
1292 (setq current-minibuffer-contents (buffer-string)
|
|
1293 current-minibuffer-point (point))
|
|
1294 (erase-buffer)
|
|
1295 (let ((elt (nth (1- pos) history)))
|
|
1296 (insert (if minibuffer-history-sexp-flag
|
|
1297 (let ((print-level nil))
|
|
1298 (prin1-to-string elt))
|
|
1299 elt)))
|
|
1300 (goto-char (point-min)))
|
|
1301 (if (or (eq (car (car command-history)) 'previous-matching-history-element)
|
|
1302 (eq (car (car command-history)) 'next-matching-history-element))
|
|
1303 (setq command-history (cdr command-history))))
|
|
1304
|
|
1305 (defun next-matching-history-element (regexp n)
|
|
1306 "Find the next history element that matches REGEXP.
|
|
1307 \(The next history element refers to a more recent action.)
|
|
1308 With prefix argument N, search for Nth next match.
|
|
1309 If N is negative, find the previous or Nth previous match."
|
|
1310 (interactive
|
|
1311 (let ((enable-recursive-minibuffers t)
|
438
|
1312 (minibuffer-history-sexp-flag nil)
|
|
1313 (minibuffer-max-depth (and minibuffer-max-depth
|
|
1314 (1+ minibuffer-max-depth))))
|
428
|
1315 (if (eq t (symbol-value minibuffer-history-variable))
|
|
1316 (error "History is not being recorded in this context"))
|
|
1317 (list (read-from-minibuffer "Next element matching (regexp): "
|
|
1318 (car minibuffer-history-search-history)
|
|
1319 minibuffer-local-map
|
|
1320 nil
|
|
1321 'minibuffer-history-search-history)
|
|
1322 (prefix-numeric-value current-prefix-arg))))
|
|
1323 (previous-matching-history-element regexp (- n)))
|
|
1324
|
|
1325 (defun next-history-element (n)
|
|
1326 "Insert the next element of the minibuffer history into the minibuffer."
|
|
1327 (interactive "p")
|
|
1328 (if (eq 't (symbol-value minibuffer-history-variable))
|
|
1329 (error "History is not being recorded in this context"))
|
|
1330 (unless (zerop n)
|
|
1331 (when (eq minibuffer-history-position
|
|
1332 initial-minibuffer-history-position)
|
|
1333 (setq current-minibuffer-contents (buffer-string)
|
|
1334 current-minibuffer-point (point)))
|
|
1335 (let ((narg (- minibuffer-history-position n))
|
|
1336 (minimum (if minibuffer-default -1 0)))
|
442
|
1337 ;; a weird special case here; when in repeat-complex-command, we're
|
|
1338 ;; trying to edit the top command, and minibuffer-history-position
|
|
1339 ;; points to 1, the next-to-top command. in this case, the top
|
|
1340 ;; command in the history is suppressed in favor of the one being
|
|
1341 ;; edited, and there is no more command below it, except maybe the
|
|
1342 ;; default.
|
|
1343 (if (and (zerop narg) (eq minibuffer-history-position
|
|
1344 initial-minibuffer-history-position))
|
|
1345 (setq minimum (1+ minimum)))
|
428
|
1346 (cond ((< narg minimum)
|
440
|
1347 (error (if minibuffer-default
|
|
1348 "No following item in %s"
|
|
1349 "No following item in %s; no default available")
|
|
1350 minibuffer-history-variable))
|
428
|
1351 ((> narg (length (symbol-value minibuffer-history-variable)))
|
|
1352 (error "No preceding item in %s" minibuffer-history-variable)))
|
|
1353 (erase-buffer)
|
|
1354 (setq minibuffer-history-position narg)
|
|
1355 (if (eq narg initial-minibuffer-history-position)
|
|
1356 (progn
|
|
1357 (insert current-minibuffer-contents)
|
|
1358 (goto-char current-minibuffer-point))
|
442
|
1359 (let ((elt (if (> narg 0)
|
428
|
1360 (nth (1- minibuffer-history-position)
|
|
1361 (symbol-value minibuffer-history-variable))
|
|
1362 minibuffer-default)))
|
|
1363 (insert
|
|
1364 (if (not (stringp elt))
|
|
1365 (let ((print-level nil))
|
|
1366 (condition-case nil
|
|
1367 (let ((print-readably t)
|
|
1368 (print-escape-newlines t))
|
|
1369 (prin1-to-string elt))
|
|
1370 (error (prin1-to-string elt))))
|
|
1371 elt)))
|
|
1372 ;; FSF has point-min here.
|
|
1373 (goto-char (point-max))))))
|
|
1374
|
|
1375 (defun previous-history-element (n)
|
|
1376 "Insert the previous element of the minibuffer history into the minibuffer."
|
|
1377 (interactive "p")
|
|
1378 (next-history-element (- n)))
|
|
1379
|
|
1380 (defun next-complete-history-element (n)
|
|
1381 "Get next element of history which is a completion of minibuffer contents."
|
|
1382 (interactive "p")
|
|
1383 (let ((point-at-start (point)))
|
|
1384 (next-matching-history-element
|
|
1385 (concat "^" (regexp-quote (buffer-substring (point-min) (point)))) n)
|
|
1386 ;; next-matching-history-element always puts us at (point-min).
|
|
1387 ;; Move to the position we were at before changing the buffer contents.
|
|
1388 ;; This is still sensical, because the text before point has not changed.
|
|
1389 (goto-char point-at-start)))
|
|
1390
|
|
1391 (defun previous-complete-history-element (n)
|
|
1392 "Get previous element of history which is a completion of minibuffer contents."
|
|
1393 (interactive "p")
|
|
1394 (next-complete-history-element (- n)))
|
|
1395
|
|
1396
|
|
1397 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1398 ;;;; reading various things from a minibuffer ;;;;
|
|
1399 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1400
|
440
|
1401 (defun read-expression (prompt &optional initial-contents history default-value)
|
|
1402 "Return a Lisp object read using the minibuffer, prompting with PROMPT.
|
|
1403 If non-nil, optional second arg INITIAL-CONTENTS is a string to insert
|
|
1404 in the minibuffer before reading.
|
|
1405 Third arg HISTORY, if non-nil, specifies a history list.
|
|
1406 Fourth arg DEFAULT-VALUE is the default value. If non-nil, it is used
|
|
1407 for history command, and as the value to return if the user enters the
|
|
1408 empty string."
|
428
|
1409 (let ((minibuffer-history-sexp-flag t)
|
|
1410 ;; Semi-kludge to get around M-x C-x o M-ESC trying to do completion.
|
|
1411 (minibuffer-completion-table nil))
|
|
1412 (read-from-minibuffer prompt
|
|
1413 initial-contents
|
|
1414 read-expression-map
|
|
1415 t
|
|
1416 (or history 'read-expression-history)
|
440
|
1417 lisp-mode-abbrev-table
|
|
1418 default-value)))
|
428
|
1419
|
440
|
1420 (defun read-string (prompt &optional initial-contents history default-value)
|
428
|
1421 "Return a string from the minibuffer, prompting with string PROMPT.
|
|
1422 If non-nil, optional second arg INITIAL-CONTENTS is a string to insert
|
440
|
1423 in the minibuffer before reading.
|
|
1424 Third arg HISTORY, if non-nil, specifies a history list.
|
|
1425 Fourth arg DEFAULT-VALUE is the default value. If non-nil, it is used
|
|
1426 for history command, and as the value to return if the user enters the
|
|
1427 empty string."
|
428
|
1428 (let ((minibuffer-completion-table nil))
|
|
1429 (read-from-minibuffer prompt
|
|
1430 initial-contents
|
|
1431 minibuffer-local-map
|
440
|
1432 nil history nil default-value)))
|
428
|
1433
|
440
|
1434 (defun eval-minibuffer (prompt &optional initial-contents history default-value)
|
428
|
1435 "Return value of Lisp expression read using the minibuffer.
|
|
1436 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS
|
|
1437 is a string to insert in the minibuffer before reading.
|
440
|
1438 Third arg HISTORY, if non-nil, specifies a history list.
|
|
1439 Fourth arg DEFAULT-VALUE is the default value. If non-nil, it is used
|
|
1440 for history command, and as the value to return if the user enters the
|
|
1441 empty string."
|
|
1442 (eval (read-expression prompt initial-contents history default-value)))
|
428
|
1443
|
|
1444 ;; The name `command-history' is already taken
|
|
1445 (defvar read-command-history '())
|
|
1446
|
440
|
1447 (defun read-command (prompt &optional default-value)
|
428
|
1448 "Read the name of a command and return as a symbol.
|
440
|
1449 Prompts with PROMPT. By default, return DEFAULT-VALUE."
|
428
|
1450 (intern (completing-read prompt obarray 'commandp t nil
|
|
1451 ;; 'command-history is not right here: that's a
|
|
1452 ;; list of evalable forms, not a history list.
|
|
1453 'read-command-history
|
440
|
1454 default-value)))
|
428
|
1455
|
440
|
1456 (defun read-function (prompt &optional default-value)
|
428
|
1457 "Read the name of a function and return as a symbol.
|
440
|
1458 Prompts with PROMPT. By default, return DEFAULT-VALUE."
|
428
|
1459 (intern (completing-read prompt obarray 'fboundp t nil
|
440
|
1460 'function-history default-value)))
|
428
|
1461
|
440
|
1462 (defun read-variable (prompt &optional default-value)
|
428
|
1463 "Read the name of a user variable and return it as a symbol.
|
440
|
1464 Prompts with PROMPT. By default, return DEFAULT-VALUE.
|
428
|
1465 A user variable is one whose documentation starts with a `*' character."
|
|
1466 (intern (completing-read prompt obarray 'user-variable-p t nil
|
442
|
1467 'variable-history
|
|
1468 (if (symbolp default-value)
|
|
1469 (symbol-name default-value)
|
|
1470 default-value))))
|
428
|
1471
|
|
1472 (defun read-buffer (prompt &optional default require-match)
|
|
1473 "Read the name of a buffer and return as a string.
|
|
1474 Prompts with PROMPT. Optional second arg DEFAULT is value to return if user
|
|
1475 enters an empty line. If optional third arg REQUIRE-MATCH is non-nil,
|
|
1476 only existing buffer names are allowed."
|
|
1477 (let ((prompt (if default
|
|
1478 (format "%s(default %s) "
|
|
1479 (gettext prompt) (if (bufferp default)
|
|
1480 (buffer-name default)
|
|
1481 default))
|
|
1482 prompt))
|
|
1483 (alist (mapcar #'(lambda (b) (cons (buffer-name b) b))
|
|
1484 (buffer-list)))
|
|
1485 result)
|
|
1486 (while (progn
|
|
1487 (setq result (completing-read prompt alist nil require-match
|
430
|
1488 nil 'buffer-history
|
434
|
1489 (if (bufferp default)
|
|
1490 (buffer-name default)
|
|
1491 default)))
|
428
|
1492 (cond ((not (equal result ""))
|
|
1493 nil)
|
|
1494 ((not require-match)
|
|
1495 (setq result default)
|
|
1496 nil)
|
|
1497 ((not default)
|
|
1498 t)
|
|
1499 ((not (get-buffer default))
|
|
1500 t)
|
|
1501 (t
|
|
1502 (setq result default)
|
|
1503 nil))))
|
|
1504 (if (bufferp result)
|
|
1505 (buffer-name result)
|
|
1506 result)))
|
|
1507
|
440
|
1508 (defun read-number (prompt &optional integers-only default-value)
|
|
1509 "Read a number from the minibuffer, prompting with PROMPT.
|
|
1510 If optional second argument INTEGERS-ONLY is non-nil, accept
|
|
1511 only integer input.
|
|
1512 If DEFAULT-VALUE is non-nil, return that if user enters an empty
|
|
1513 line."
|
428
|
1514 (let ((pred (if integers-only 'integerp 'numberp))
|
|
1515 num)
|
|
1516 (while (not (funcall pred num))
|
|
1517 (setq num (condition-case ()
|
|
1518 (let ((minibuffer-completion-table nil))
|
|
1519 (read-from-minibuffer
|
|
1520 prompt (if num (prin1-to-string num)) nil t
|
440
|
1521 nil nil default-value))
|
428
|
1522 (input-error nil)
|
|
1523 (invalid-read-syntax nil)
|
|
1524 (end-of-file nil)))
|
|
1525 (or (funcall pred num) (beep)))
|
|
1526 num))
|
|
1527
|
440
|
1528 (defun read-shell-command (prompt &optional initial-input history default-value)
|
428
|
1529 "Just like read-string, but uses read-shell-command-map:
|
|
1530 \\{read-shell-command-map}"
|
|
1531 (let ((minibuffer-completion-table nil))
|
|
1532 (read-from-minibuffer prompt initial-input read-shell-command-map
|
440
|
1533 nil (or history 'shell-command-history)
|
|
1534 nil default-value)))
|
428
|
1535
|
|
1536
|
|
1537 ;;; This read-file-name stuff probably belongs in files.el
|
|
1538
|
|
1539 ;; Quote "$" as "$$" to get it past substitute-in-file-name
|
|
1540 (defun un-substitute-in-file-name (string)
|
|
1541 (let ((regexp "\\$")
|
|
1542 (olen (length string))
|
|
1543 new
|
|
1544 n o ch)
|
|
1545 (if (not (string-match regexp string))
|
|
1546 string
|
|
1547 (setq n 1)
|
|
1548 (while (string-match regexp string (match-end 0))
|
|
1549 (setq n (1+ n)))
|
|
1550 (setq new (make-string (+ olen n) ?$))
|
|
1551 (setq n 0 o 0)
|
|
1552 (while (< o olen)
|
|
1553 (setq ch (aref string o))
|
|
1554 (aset new n ch)
|
|
1555 (setq o (1+ o) n (1+ n))
|
|
1556 (if (eq ch ?$)
|
|
1557 ;; already aset by make-string initial-value
|
|
1558 (setq n (1+ n))))
|
|
1559 new)))
|
|
1560
|
442
|
1561
|
|
1562 ;; Wrapper for `directory-files' for use in generating completion lists.
|
|
1563 ;; Generates output in the same format as `file-name-all-completions'.
|
|
1564 ;;
|
|
1565 ;; The EFS replacement for `directory-files' doesn't support the FILES-ONLY
|
|
1566 ;; option, so it has to be faked. The listing cache will hopefully
|
|
1567 ;; improve the performance of this operation.
|
|
1568 (defun minibuf-directory-files (dir &optional match-regexp files-only)
|
|
1569 (let ((want-file (or (eq files-only nil) (eq files-only t)))
|
|
1570 (want-dirs (or (eq files-only nil) (not (eq files-only t)))))
|
|
1571 (delete nil
|
|
1572 (mapcar (function (lambda (f)
|
|
1573 (if (file-directory-p (expand-file-name f dir))
|
|
1574 (and want-dirs (file-name-as-directory f))
|
|
1575 (and want-file f))))
|
|
1576 (delete "." (directory-files dir nil match-regexp))))))
|
|
1577
|
|
1578
|
428
|
1579 (defun read-file-name-2 (history prompt dir default
|
|
1580 must-match initial-contents
|
|
1581 completer)
|
|
1582 (if (not dir)
|
|
1583 (setq dir default-directory))
|
|
1584 (setq dir (abbreviate-file-name dir t))
|
|
1585 (let* ((insert (cond ((and (not insert-default-directory)
|
|
1586 (not initial-contents))
|
|
1587 "")
|
|
1588 (initial-contents
|
|
1589 (cons (un-substitute-in-file-name
|
|
1590 (concat dir initial-contents))
|
|
1591 (length dir)))
|
|
1592 (t
|
|
1593 (un-substitute-in-file-name dir))))
|
|
1594 (val
|
|
1595 ;; Hateful, broken, case-sensitive un*x
|
|
1596 ;;; (completing-read prompt
|
|
1597 ;;; completer
|
|
1598 ;;; dir
|
|
1599 ;;; must-match
|
|
1600 ;;; insert
|
|
1601 ;;; history)
|
|
1602 ;; #### - this is essentially the guts of completing read.
|
|
1603 ;; There should be an elegant way to pass a pair of keymaps to
|
|
1604 ;; completing read, but this will do for now. All sins are
|
|
1605 ;; relative. --Stig
|
|
1606 (let ((minibuffer-completion-table completer)
|
|
1607 (minibuffer-completion-predicate dir)
|
|
1608 (minibuffer-completion-confirm (if (eq must-match 't)
|
|
1609 nil t))
|
|
1610 (last-exact-completion nil))
|
|
1611 (read-from-minibuffer prompt
|
|
1612 insert
|
|
1613 (if (not must-match)
|
|
1614 read-file-name-map
|
|
1615 read-file-name-must-match-map)
|
|
1616 nil
|
434
|
1617 history
|
|
1618 nil
|
|
1619 default))))
|
428
|
1620 ;;; ;; Kludge! Put "/foo/bar" on history rather than "/default//foo/bar"
|
|
1621 ;;; (let ((hist (cond ((not history) 'minibuffer-history)
|
|
1622 ;;; ((consp history) (car history))
|
|
1623 ;;; (t history))))
|
|
1624 ;;; (if (and val
|
|
1625 ;;; hist
|
|
1626 ;;; (not (eq hist 't))
|
|
1627 ;;; (boundp hist)
|
|
1628 ;;; (equal (car-safe (symbol-value hist)) val))
|
|
1629 ;;; (let ((e (condition-case nil
|
|
1630 ;;; (expand-file-name val)
|
|
1631 ;;; (error nil))))
|
|
1632 ;;; (if (and e (not (equal e val)))
|
|
1633 ;;; (set hist (cons e (cdr (symbol-value hist))))))))
|
|
1634
|
|
1635 (cond ((not val)
|
|
1636 (error "No file name specified"))
|
|
1637 ((and default
|
|
1638 (equal val (if (consp insert) (car insert) insert)))
|
|
1639 default)
|
|
1640 (t
|
|
1641 (substitute-in-file-name val)))))
|
|
1642
|
|
1643 ;; #### this function should use minibuffer-completion-table
|
|
1644 ;; or something. But that is sloooooow.
|
|
1645 ;; #### all this shit needs better documentation!!!!!!!!
|
|
1646 (defun read-file-name-activate-callback (event extent dir-p)
|
|
1647 ;; used as the activate-callback of the filename list items
|
|
1648 ;; in the completion buffer, in place of default-choose-completion.
|
|
1649 ;; if a regular file was selected, we call default-choose-completion
|
|
1650 ;; (which just inserts the string in the minibuffer and calls
|
|
1651 ;; exit-minibuffer). If a directory was selected, we display
|
|
1652 ;; the contents of the directory.
|
|
1653 (let* ((file (extent-string extent))
|
|
1654 (completion-buf (extent-object extent))
|
|
1655 (minibuf (symbol-value-in-buffer 'completion-reference-buffer
|
|
1656 completion-buf))
|
|
1657 (in-dir (file-name-directory (buffer-substring nil nil minibuf)))
|
|
1658 (full (expand-file-name file in-dir)))
|
|
1659 (if (not (file-directory-p full))
|
|
1660 (default-choose-completion event extent minibuf)
|
|
1661 (erase-buffer minibuf)
|
|
1662 (insert-string (file-name-as-directory
|
|
1663 (abbreviate-file-name full t)) minibuf)
|
|
1664 (reset-buffer completion-buf)
|
|
1665 (let ((standard-output completion-buf))
|
|
1666 (display-completion-list
|
442
|
1667 (minibuf-directory-files full nil (if dir-p 'directory))
|
428
|
1668 :user-data dir-p
|
|
1669 :reference-buffer minibuf
|
|
1670 :activate-callback 'read-file-name-activate-callback)
|
|
1671 (goto-char (point-min) completion-buf)))))
|
|
1672
|
673
|
1673 (defun read-file-name-1 (type history prompt dir default
|
|
1674 must-match initial-contents
|
|
1675 completer)
|
428
|
1676 (if (should-use-dialog-box-p)
|
442
|
1677 (condition-case nil
|
|
1678 (let ((file
|
|
1679 (apply #'make-dialog-box
|
673
|
1680 type `(:title ,(capitalize-string-as-title
|
|
1681 ;; Kludge: Delete ": " off the end.
|
|
1682 (replace-in-string prompt ": $" ""))
|
|
1683 ,@(and dir (list :initial-directory
|
|
1684 dir))
|
|
1685 :file-must-exist ,must-match
|
|
1686 ,@(and initial-contents
|
|
1687 (list :initial-filename
|
|
1688 initial-contents))))))
|
442
|
1689 ;; hack -- until we implement reading a directory properly,
|
|
1690 ;; allow a file as indicating the directory it's in
|
|
1691 (if (and (eq completer 'read-directory-name-internal)
|
|
1692 (not (file-directory-p file)))
|
|
1693 (file-name-directory file)
|
|
1694 file))
|
|
1695 (unimplemented
|
|
1696 ;; this calls read-file-name-2
|
|
1697 (mouse-read-file-name-1 history prompt dir default must-match
|
|
1698 initial-contents completer)
|
|
1699 ))
|
|
1700 (add-one-shot-hook
|
|
1701 'minibuffer-setup-hook
|
|
1702 (lambda ()
|
|
1703 ;; #### SCREAM! Create a `file-system-ignore-case'
|
|
1704 ;; function, so this kind of stuff is generalized!
|
|
1705 (and (eq system-type 'windows-nt)
|
|
1706 (set (make-local-variable 'completion-ignore-case) t))
|
|
1707 (set
|
|
1708 (make-local-variable
|
|
1709 'completion-display-completion-list-function)
|
|
1710 #'(lambda (completions)
|
|
1711 (display-completion-list
|
|
1712 completions
|
|
1713 :user-data (not (eq completer 'read-file-name-internal))
|
|
1714 :activate-callback
|
|
1715 'read-file-name-activate-callback)))))
|
|
1716 (read-file-name-2 history prompt dir default must-match
|
|
1717 initial-contents completer)))
|
428
|
1718
|
|
1719 (defun read-file-name (prompt
|
|
1720 &optional dir default must-match initial-contents
|
|
1721 history)
|
|
1722 "Read file name, prompting with PROMPT and completing in directory DIR.
|
|
1723 This will prompt with a dialog box if appropriate, according to
|
|
1724 `should-use-dialog-box-p'.
|
|
1725 Value is not expanded---you must call `expand-file-name' yourself.
|
438
|
1726 Value is subject to interpretation by `substitute-in-file-name' however.
|
428
|
1727 Default name to DEFAULT if user enters a null string.
|
|
1728 (If DEFAULT is omitted, the visited file name is used,
|
|
1729 except that if INITIAL-CONTENTS is specified, that combined with DIR is
|
|
1730 used.)
|
|
1731 Fourth arg MUST-MATCH non-nil means require existing file's name.
|
|
1732 Non-nil and non-t means also require confirmation after completion.
|
440
|
1733 Fifth arg INITIAL-CONTENTS specifies text to start with. If this is not
|
|
1734 specified, and `insert-default-directory' is non-nil, DIR or the current
|
|
1735 directory will be used.
|
428
|
1736 Sixth arg HISTORY specifies the history list to use. Default is
|
|
1737 `file-name-history'.
|
|
1738 DIR defaults to current buffer's directory default."
|
673
|
1739 (read-file-name-1
|
|
1740 'file (or history 'file-name-history)
|
428
|
1741 prompt dir (or default
|
440
|
1742 (and initial-contents
|
|
1743 (abbreviate-file-name (expand-file-name
|
|
1744 initial-contents dir) t))
|
|
1745 (and buffer-file-truename
|
|
1746 (abbreviate-file-name buffer-file-name t)))
|
428
|
1747 must-match initial-contents
|
|
1748 ;; A separate function (not an anonymous lambda-expression)
|
|
1749 ;; and passed as a symbol because of disgusting kludges in various
|
|
1750 ;; places which do stuff like (let ((filename-kludge-p (eq minibuffer-completion-table 'read-file-name-internal))) ...)
|
|
1751 'read-file-name-internal))
|
|
1752
|
|
1753 (defun read-directory-name (prompt
|
|
1754 &optional dir default must-match initial-contents
|
|
1755 history)
|
|
1756 "Read directory name, prompting with PROMPT and completing in directory DIR.
|
|
1757 This will prompt with a dialog box if appropriate, according to
|
|
1758 `should-use-dialog-box-p'.
|
|
1759 Value is not expanded---you must call `expand-file-name' yourself.
|
|
1760 Value is subject to interpreted by substitute-in-file-name however.
|
|
1761 Default name to DEFAULT if user enters a null string.
|
|
1762 (If DEFAULT is omitted, the current buffer's default directory is used.)
|
|
1763 Fourth arg MUST-MATCH non-nil means require existing directory's name.
|
|
1764 Non-nil and non-t means also require confirmation after completion.
|
|
1765 Fifth arg INITIAL-CONTENTS specifies text to start with.
|
|
1766 Sixth arg HISTORY specifies the history list to use. Default is
|
|
1767 `file-name-history'.
|
|
1768 DIR defaults to current buffer's directory default."
|
|
1769 (read-file-name-1
|
673
|
1770 'directory (or history 'file-name-history)
|
|
1771 prompt dir (or default default-directory) must-match initial-contents
|
|
1772 'read-directory-name-internal))
|
428
|
1773
|
|
1774
|
|
1775 ;; Environment-variable and ~username completion hack
|
|
1776 (defun read-file-name-internal-1 (string dir action completer)
|
|
1777 (if (not (string-match
|
|
1778 "\\([^$]\\|\\`\\)\\(\\$\\$\\)*\\$\\([A-Za-z0-9_]*\\|{[^}]*\\)\\'"
|
|
1779 string))
|
|
1780 ;; Not doing environment-variable completion hack
|
|
1781 (let* ((orig (if (equal string "") nil string))
|
|
1782 (sstring (if orig (substitute-in-file-name string) string))
|
|
1783 (specdir (if orig (file-name-directory sstring) nil))
|
|
1784 (name (if orig (file-name-nondirectory sstring) string))
|
|
1785 (direct (if specdir (expand-file-name specdir dir) dir)))
|
|
1786 ;; ~username completion
|
|
1787 (if (and (fboundp 'user-name-completion-1)
|
|
1788 (string-match "^[~]" name))
|
|
1789 (let ((user (substring name 1)))
|
|
1790 (cond ((eq action 'lambda)
|
|
1791 (file-directory-p name))
|
|
1792 ((eq action 't)
|
|
1793 ;; all completions
|
|
1794 (mapcar #'(lambda (p) (concat "~" p))
|
502
|
1795 (declare-fboundp
|
|
1796 (user-name-all-completions user))))
|
428
|
1797 (t;; 'nil
|
|
1798 ;; complete
|
502
|
1799 (let* ((val+uniq (declare-fboundp
|
|
1800 (user-name-completion-1 user)))
|
428
|
1801 (val (car val+uniq))
|
|
1802 (uniq (cdr val+uniq)))
|
|
1803 (cond ((stringp val)
|
|
1804 (if uniq
|
|
1805 (file-name-as-directory (concat "~" val))
|
|
1806 (concat "~" val)))
|
|
1807 ((eq val t)
|
|
1808 (file-name-as-directory name))
|
|
1809 (t nil))))))
|
|
1810 (funcall completer
|
|
1811 action
|
|
1812 orig
|
|
1813 sstring
|
|
1814 specdir
|
|
1815 direct
|
|
1816 name)))
|
|
1817 ;; An odd number of trailing $'s
|
|
1818 (let* ((start (match-beginning 3))
|
|
1819 (env (substring string
|
|
1820 (cond ((= start (length string))
|
|
1821 ;; "...$"
|
|
1822 start)
|
|
1823 ((= (aref string start) ?{)
|
|
1824 ;; "...${..."
|
|
1825 (1+ start))
|
|
1826 (t
|
|
1827 start))))
|
|
1828 (head (substring string 0 (1- start)))
|
|
1829 (alist #'(lambda ()
|
|
1830 (mapcar #'(lambda (x)
|
|
1831 (cons (substring x 0 (string-match "=" x))
|
|
1832 nil))
|
|
1833 process-environment))))
|
|
1834
|
|
1835 (cond ((eq action 'lambda)
|
|
1836 nil)
|
|
1837 ((eq action 't)
|
|
1838 ;; all completions
|
|
1839 (mapcar #'(lambda (p)
|
|
1840 (if (and (> (length p) 0)
|
|
1841 ;;#### Unix-specific
|
|
1842 ;;#### -- need absolute-pathname-p
|
|
1843 (/= (aref p 0) ?/))
|
|
1844 (concat "$" p)
|
|
1845 (concat head "$" p)))
|
|
1846 (all-completions env (funcall alist))))
|
|
1847 (t ;; nil
|
|
1848 ;; complete
|
|
1849 (let* ((e (funcall alist))
|
|
1850 (val (try-completion env e)))
|
|
1851 (cond ((stringp val)
|
|
1852 (if (string-match "[^A-Za-z0-9_]" val)
|
|
1853 (concat head
|
|
1854 "${" val
|
|
1855 ;; completed uniquely?
|
|
1856 (if (eq (try-completion val e) 't)
|
|
1857 "}" ""))
|
|
1858 (concat head "$" val)))
|
|
1859 ((eql val 't)
|
|
1860 (concat head
|
|
1861 (un-substitute-in-file-name (getenv env))))
|
|
1862 (t nil))))))))
|
|
1863
|
|
1864
|
|
1865 (defun read-file-name-internal (string dir action)
|
|
1866 (read-file-name-internal-1
|
|
1867 string dir action
|
|
1868 #'(lambda (action orig string specdir dir name)
|
|
1869 (cond ((eq action 'lambda)
|
|
1870 (if (not orig)
|
|
1871 nil
|
|
1872 (let ((sstring (condition-case nil
|
|
1873 (expand-file-name string)
|
|
1874 (error nil))))
|
|
1875 (if (not sstring)
|
|
1876 ;; Some pathname syntax error in string
|
|
1877 nil
|
|
1878 (file-exists-p sstring)))))
|
|
1879 ((eq action 't)
|
|
1880 ;; all completions
|
|
1881 (mapcar #'un-substitute-in-file-name
|
442
|
1882 (if (string= name "")
|
|
1883 (delete "./" (file-name-all-completions "" dir))
|
|
1884 (file-name-all-completions name dir))))
|
428
|
1885 (t;; nil
|
|
1886 ;; complete
|
|
1887 (let* ((d (or dir default-directory))
|
|
1888 (val (file-name-completion name d)))
|
|
1889 (if (and (eq val 't)
|
|
1890 (not (null completion-ignored-extensions)))
|
|
1891 ;;#### (file-name-completion "foo") returns 't
|
|
1892 ;; when both "foo" and "foo~" exist and the latter
|
|
1893 ;; is "pruned" by completion-ignored-extensions.
|
|
1894 ;; I think this is a bug in file-name-completion.
|
|
1895 (setq val (let ((completion-ignored-extensions '()))
|
|
1896 (file-name-completion name d))))
|
|
1897 (if (stringp val)
|
|
1898 (un-substitute-in-file-name (if specdir
|
|
1899 (concat specdir val)
|
|
1900 val))
|
|
1901 (let ((tem (un-substitute-in-file-name string)))
|
|
1902 (if (not (equal tem orig))
|
|
1903 ;; substitute-in-file-name did something
|
|
1904 tem
|
|
1905 val)))))))))
|
|
1906
|
|
1907 (defun read-directory-name-internal (string dir action)
|
|
1908 (read-file-name-internal-1
|
|
1909 string dir action
|
|
1910 #'(lambda (action orig string specdir dir name)
|
|
1911 (let* ((dirs #'(lambda (fn)
|
|
1912 (let ((l (if (equal name "")
|
442
|
1913 (minibuf-directory-files
|
428
|
1914 dir
|
|
1915 ""
|
|
1916 'directories)
|
442
|
1917 (minibuf-directory-files
|
428
|
1918 dir
|
|
1919 (concat "\\`" (regexp-quote name))
|
|
1920 'directories))))
|
|
1921 (mapcar fn
|
|
1922 ;; Wretched unix
|
|
1923 (delete "." l))))))
|
|
1924 (cond ((eq action 'lambda)
|
|
1925 ;; complete?
|
|
1926 (if (not orig)
|
|
1927 nil
|
|
1928 (file-directory-p string)))
|
|
1929 ((eq action 't)
|
|
1930 ;; all completions
|
|
1931 (funcall dirs #'(lambda (n)
|
|
1932 (un-substitute-in-file-name
|
|
1933 (file-name-as-directory n)))))
|
|
1934 (t
|
|
1935 ;; complete
|
|
1936 (let ((val (try-completion
|
|
1937 name
|
|
1938 (funcall dirs
|
|
1939 #'(lambda (n)
|
|
1940 (list (file-name-as-directory
|
|
1941 n)))))))
|
|
1942 (if (stringp val)
|
|
1943 (un-substitute-in-file-name (if specdir
|
|
1944 (concat specdir val)
|
|
1945 val))
|
|
1946 (let ((tem (un-substitute-in-file-name string)))
|
|
1947 (if (not (equal tem orig))
|
|
1948 ;; substitute-in-file-name did something
|
|
1949 tem
|
|
1950 val))))))))))
|
|
1951
|
|
1952 (defun append-expand-filename (file-string string)
|
|
1953 "Append STRING to FILE-STRING differently depending on whether STRING
|
|
1954 is a username (~string), an environment variable ($string),
|
|
1955 or a filename (/string). The resultant string is returned with the
|
|
1956 environment variable or username expanded and resolved to indicate
|
|
1957 whether it is a file(/result) or a directory (/result/)."
|
|
1958 (let ((file
|
|
1959 (cond ((string-match "\\([~$]\\)\\([^~$/]*\\)$" file-string)
|
|
1960 (cond ((string= (substring file-string
|
|
1961 (match-beginning 1)
|
|
1962 (match-end 1)) "~")
|
|
1963 (concat (substring file-string 0 (match-end 1))
|
|
1964 string))
|
|
1965 (t (substitute-in-file-name
|
|
1966 (concat (substring file-string 0 (match-end 1))
|
|
1967 string)))))
|
|
1968 (t (concat (file-name-directory
|
|
1969 (substitute-in-file-name file-string)) string))))
|
|
1970 result)
|
|
1971
|
|
1972 (cond ((stringp (setq result (and (file-exists-p (expand-file-name file))
|
|
1973 (read-file-name-internal
|
|
1974 (condition-case nil
|
|
1975 (expand-file-name file)
|
|
1976 (error file))
|
|
1977 "" nil))))
|
|
1978 result)
|
|
1979 (t file))))
|
|
1980
|
442
|
1981 (defun mouse-rfn-setup-vars (prompt)
|
|
1982 ;; a specifier would be nice.
|
|
1983 (set (make-local-variable 'frame-title-format)
|
|
1984 (capitalize-string-as-title
|
|
1985 ;; Kludge: Delete ": " off the end.
|
|
1986 (replace-in-string prompt ": $" "")))
|
|
1987 ;; ensure that killing the frame works right,
|
|
1988 ;; instead of leaving us in the minibuffer.
|
|
1989 (add-local-hook 'delete-frame-hook
|
|
1990 #'(lambda (frame)
|
|
1991 (abort-recursive-edit))))
|
|
1992
|
428
|
1993 (defun mouse-file-display-completion-list (window dir minibuf user-data)
|
|
1994 (let ((standard-output (window-buffer window)))
|
|
1995 (condition-case nil
|
|
1996 (display-completion-list
|
442
|
1997 (minibuf-directory-files dir nil t)
|
|
1998 :window-width (window-width window)
|
|
1999 :window-height (window-text-area-height window)
|
|
2000 :completion-string ""
|
428
|
2001 :activate-callback
|
|
2002 'mouse-read-file-name-activate-callback
|
|
2003 :user-data user-data
|
|
2004 :reference-buffer minibuf
|
|
2005 :help-string "")
|
442
|
2006 (t nil))
|
|
2007 ))
|
428
|
2008
|
|
2009 (defun mouse-directory-display-completion-list (window dir minibuf user-data)
|
|
2010 (let ((standard-output (window-buffer window)))
|
|
2011 (condition-case nil
|
|
2012 (display-completion-list
|
442
|
2013 (minibuf-directory-files dir nil 1)
|
428
|
2014 :window-width (window-width window)
|
442
|
2015 :window-height (window-text-area-height window)
|
|
2016 :completion-string ""
|
428
|
2017 :activate-callback
|
|
2018 'mouse-read-file-name-activate-callback
|
|
2019 :user-data user-data
|
|
2020 :reference-buffer minibuf
|
|
2021 :help-string "")
|
442
|
2022 (t nil))
|
|
2023 ))
|
428
|
2024
|
|
2025 (defun mouse-read-file-name-activate-callback (event extent user-data)
|
|
2026 (let* ((file (extent-string extent))
|
|
2027 (minibuf (symbol-value-in-buffer 'completion-reference-buffer
|
|
2028 (extent-object extent)))
|
442
|
2029 (ministring (buffer-substring nil nil minibuf))
|
|
2030 (in-dir (file-name-directory ministring))
|
428
|
2031 (full (expand-file-name file in-dir))
|
|
2032 (filebuf (nth 0 user-data))
|
442
|
2033 (dirbuf (nth 1 user-data))
|
428
|
2034 (filewin (nth 2 user-data))
|
|
2035 (dirwin (nth 3 user-data)))
|
|
2036 (if (file-regular-p full)
|
|
2037 (default-choose-completion event extent minibuf)
|
|
2038 (erase-buffer minibuf)
|
|
2039 (insert-string (file-name-as-directory
|
|
2040 (abbreviate-file-name full t)) minibuf)
|
|
2041 (reset-buffer filebuf)
|
442
|
2042 (if (not dirbuf)
|
428
|
2043 (mouse-directory-display-completion-list filewin full minibuf
|
|
2044 user-data)
|
|
2045 (mouse-file-display-completion-list filewin full minibuf user-data)
|
442
|
2046 (reset-buffer dirbuf)
|
428
|
2047 (mouse-directory-display-completion-list dirwin full minibuf
|
|
2048 user-data)))))
|
|
2049
|
442
|
2050 ;; our cheesy but god-awful time consuming file dialog box implementation.
|
|
2051 ;; this will be replaced with use of the native file dialog box (when
|
|
2052 ;; available).
|
428
|
2053 (defun mouse-read-file-name-1 (history prompt dir default
|
442
|
2054 must-match initial-contents
|
|
2055 completer)
|
|
2056 ;; file-p is t if we're reading files, nil if directories.
|
428
|
2057 (let* ((file-p (eq 'read-file-name-internal completer))
|
|
2058 (filebuf (get-buffer-create "*Completions*"))
|
442
|
2059 (dirbuf (and file-p (generate-new-buffer " *mouse-read-file*")))
|
|
2060 (butbuf (generate-new-buffer " *mouse-read-file*"))
|
428
|
2061 (frame (make-dialog-frame))
|
|
2062 filewin dirwin
|
|
2063 user-data)
|
|
2064 (unwind-protect
|
|
2065 (progn
|
|
2066 (reset-buffer filebuf)
|
442
|
2067
|
|
2068 ;; set up the frame.
|
|
2069 (focus-frame frame)
|
428
|
2070 (let ((window-min-height 1))
|
|
2071 ;; #### should be 2 not 3, but that causes
|
|
2072 ;; "window too small to split" errors for some
|
|
2073 ;; people (but not for me ...) There's a more
|
|
2074 ;; fundamental bug somewhere.
|
|
2075 (split-window nil (- (frame-height frame) 3)))
|
|
2076 (if file-p
|
|
2077 (progn
|
|
2078 (split-window-horizontally 16)
|
|
2079 (setq filewin (frame-rightmost-window frame)
|
|
2080 dirwin (frame-leftmost-window frame))
|
|
2081 (set-window-buffer filewin filebuf)
|
442
|
2082 (set-window-buffer dirwin dirbuf))
|
428
|
2083 (setq filewin (frame-highest-window frame))
|
|
2084 (set-window-buffer filewin filebuf))
|
442
|
2085 (setq user-data (list filebuf dirbuf filewin dirwin))
|
|
2086 (set-window-buffer (frame-lowest-window frame) butbuf)
|
|
2087
|
|
2088 ;; set up completion buffers.
|
|
2089 (let ((rfcshookfun
|
|
2090 ;; kludge!
|
|
2091 ;; #### I really need to flesh out the object
|
|
2092 ;; hierarchy better to avoid these kludges.
|
|
2093 ;; (?? I wrote this comment above some time ago,
|
|
2094 ;; and I don't understand what I'm referring to
|
|
2095 ;; any more. --ben
|
|
2096 (lambda ()
|
|
2097 (mouse-rfn-setup-vars prompt)
|
|
2098 (when (featurep 'scrollbar)
|
|
2099 (set-specifier scrollbar-width 0 (current-buffer)))
|
|
2100 (setq truncate-lines t))))
|
|
2101
|
|
2102 (set-buffer filebuf)
|
|
2103 (add-local-hook 'completion-setup-hook rfcshookfun)
|
|
2104 (when file-p
|
|
2105 (set-buffer dirbuf)
|
|
2106 (add-local-hook 'completion-setup-hook rfcshookfun)))
|
|
2107
|
|
2108 ;; set up minibuffer.
|
|
2109 (add-one-shot-hook
|
|
2110 'minibuffer-setup-hook
|
|
2111 (lambda ()
|
|
2112 (if (not file-p)
|
|
2113 (mouse-directory-display-completion-list
|
|
2114 filewin dir (current-buffer) user-data)
|
|
2115 (mouse-file-display-completion-list
|
|
2116 filewin dir (current-buffer) user-data)
|
|
2117 (mouse-directory-display-completion-list
|
|
2118 dirwin dir (current-buffer) user-data))
|
|
2119 (set
|
|
2120 (make-local-variable
|
|
2121 'completion-display-completion-list-function)
|
|
2122 (lambda (completions)
|
|
2123 (display-completion-list
|
|
2124 completions
|
|
2125 :help-string ""
|
|
2126 :window-width (window-width filewin)
|
|
2127 :window-height (window-text-area-height filewin)
|
|
2128 :completion-string ""
|
|
2129 :activate-callback
|
|
2130 'mouse-read-file-name-activate-callback
|
|
2131 :user-data user-data)))
|
|
2132 (mouse-rfn-setup-vars prompt)
|
|
2133 (save-selected-window
|
|
2134 ;; kludge to ensure the frame title is correct.
|
|
2135 ;; the minibuffer leaves the frame title the way
|
|
2136 ;; it was before (i.e. of the selected window before
|
|
2137 ;; the dialog box was opened), so to get it correct
|
|
2138 ;; we have to be tricky.
|
|
2139 (select-window filewin)
|
|
2140 (redisplay-frame nil t)
|
|
2141 ;; #### another kludge. sometimes the focus ends up
|
|
2142 ;; back in the main window, not the dialog box. it
|
|
2143 ;; occurs randomly and it's not possible to reliably
|
|
2144 ;; reproduce. We try to fix it by draining non-user
|
|
2145 ;; events and then setting the focus back on the frame.
|
|
2146 (sit-for 0 t)
|
|
2147 (focus-frame frame))))
|
|
2148
|
|
2149 ;; set up button buffer.
|
|
2150 (set-buffer butbuf)
|
|
2151 (mouse-rfn-setup-vars prompt)
|
428
|
2152 (when dir
|
|
2153 (setq default-directory dir))
|
|
2154 (when (featurep 'scrollbar)
|
442
|
2155 (set-specifier scrollbar-width 0 butbuf))
|
428
|
2156 (insert " ")
|
|
2157 (insert-gui-button (make-gui-button "OK"
|
|
2158 (lambda (foo)
|
|
2159 (exit-minibuffer))))
|
|
2160 (insert " ")
|
|
2161 (insert-gui-button (make-gui-button "Cancel"
|
|
2162 (lambda (foo)
|
|
2163 (abort-recursive-edit))))
|
442
|
2164
|
|
2165 ;; now start reading filename.
|
|
2166 (read-file-name-2 history prompt dir default
|
|
2167 must-match initial-contents
|
|
2168 completer))
|
|
2169
|
|
2170 ;; always clean up.
|
|
2171 ;; get rid of our hook that calls abort-recursive-edit -- not a good
|
|
2172 ;; idea here.
|
|
2173 (kill-local-variable 'delete-frame-hook)
|
428
|
2174 (delete-frame frame)
|
|
2175 (kill-buffer filebuf)
|
442
|
2176 (kill-buffer butbuf)
|
|
2177 (and dirbuf (kill-buffer dirbuf)))))
|
428
|
2178
|
|
2179 (defun read-face (prompt &optional must-match)
|
|
2180 "Read the name of a face from the minibuffer and return it as a symbol."
|
|
2181 (intern (completing-read prompt obarray 'find-face must-match)))
|
|
2182
|
|
2183 ;; #### - wrong place for this variable? Exactly. We probably want
|
|
2184 ;; `color-list' to be a console method, so `tty-color-list' becomes
|
|
2185 ;; obsolete, and `read-color-completion-table' conses (mapcar #'list
|
|
2186 ;; (color-list)), optionally caching the results.
|
|
2187
|
|
2188 ;; Ben wanted all of the possibilities from the `configure' script used
|
|
2189 ;; here, but I think this is way too many. I already trimmed the R4 variants
|
|
2190 ;; and a few obvious losers from the list. --Stig
|
|
2191 (defvar x-library-search-path '("/usr/X11R6/lib/X11/"
|
|
2192 "/usr/X11R5/lib/X11/"
|
|
2193 "/usr/lib/X11R6/X11/"
|
|
2194 "/usr/lib/X11R5/X11/"
|
|
2195 "/usr/local/X11R6/lib/X11/"
|
|
2196 "/usr/local/X11R5/lib/X11/"
|
|
2197 "/usr/local/lib/X11R6/X11/"
|
|
2198 "/usr/local/lib/X11R5/X11/"
|
|
2199 "/usr/X11/lib/X11/"
|
|
2200 "/usr/lib/X11/"
|
|
2201 "/usr/local/lib/X11/"
|
|
2202 "/usr/X386/lib/X11/"
|
|
2203 "/usr/x386/lib/X11/"
|
|
2204 "/usr/XFree86/lib/X11/"
|
|
2205 "/usr/unsupported/lib/X11/"
|
|
2206 "/usr/athena/lib/X11/"
|
|
2207 "/usr/local/x11r5/lib/X11/"
|
|
2208 "/usr/lpp/Xamples/lib/X11/"
|
|
2209 "/usr/openwin/lib/X11/"
|
|
2210 "/usr/openwin/share/lib/X11/")
|
|
2211 "Search path used by `read-color' to find rgb.txt.")
|
|
2212
|
|
2213 (defvar x-read-color-completion-table)
|
|
2214
|
|
2215 (defun read-color-completion-table ()
|
|
2216 (case (device-type)
|
|
2217 ;; #### Evil device-type dependency
|
462
|
2218 ((x gtk)
|
428
|
2219 (if (boundp 'x-read-color-completion-table)
|
|
2220 x-read-color-completion-table
|
|
2221 (let ((rgb-file (locate-file "rgb.txt" x-library-search-path))
|
|
2222 clist color p)
|
|
2223 (if (not rgb-file)
|
|
2224 ;; prevents multiple searches for rgb.txt if we can't find it
|
|
2225 (setq x-read-color-completion-table nil)
|
|
2226 (with-current-buffer (get-buffer-create " *colors*")
|
|
2227 (reset-buffer (current-buffer))
|
|
2228 (insert-file-contents rgb-file)
|
|
2229 (while (not (eobp))
|
|
2230 ;; skip over comments
|
|
2231 (while (looking-at "^!")
|
|
2232 (end-of-line)
|
|
2233 (forward-char 1))
|
|
2234 (skip-chars-forward "0-9 \t")
|
|
2235 (setq p (point))
|
|
2236 (end-of-line)
|
|
2237 (setq color (buffer-substring p (point))
|
|
2238 clist (cons (list color) clist))
|
|
2239 ;; Ugh. If we want to be able to complete the lowercase form
|
|
2240 ;; of the color name, we need to add it twice! Yuck.
|
|
2241 (let ((dcase (downcase color)))
|
|
2242 (or (string= dcase color)
|
|
2243 (push (list dcase) clist)))
|
|
2244 (forward-char 1))
|
|
2245 (kill-buffer (current-buffer))))
|
|
2246 (setq x-read-color-completion-table clist)
|
|
2247 x-read-color-completion-table)))
|
|
2248 (mswindows
|
502
|
2249 (mapcar #'list (declare-fboundp (mswindows-color-list))))
|
428
|
2250 (tty
|
502
|
2251 (mapcar #'list (declare-fboundp (tty-color-list))))))
|
428
|
2252
|
|
2253 (defun read-color (prompt &optional must-match initial-contents)
|
|
2254 "Read the name of a color from the minibuffer.
|
|
2255 On X devices, this uses `x-library-search-path' to find rgb.txt in order
|
|
2256 to build a completion table.
|
|
2257 On TTY devices, this uses `tty-color-list'.
|
|
2258 On mswindows devices, this uses `mswindows-color-list'."
|
|
2259 (let ((table (read-color-completion-table)))
|
|
2260 (completing-read prompt table nil (and table must-match)
|
|
2261 initial-contents)))
|
|
2262
|
|
2263
|
|
2264 (defun read-coding-system (prompt &optional default-coding-system)
|
|
2265 "Read a coding-system (or nil) from the minibuffer.
|
|
2266 Prompting with string PROMPT.
|
|
2267 If the user enters null input, return second argument DEFAULT-CODING-SYSTEM.
|
|
2268 DEFAULT-CODING-SYSTEM can be a string, symbol, or coding-system object."
|
|
2269 (intern (completing-read prompt obarray 'find-coding-system t nil nil
|
|
2270 (cond ((symbolp default-coding-system)
|
|
2271 (symbol-name default-coding-system))
|
|
2272 ((coding-system-p default-coding-system)
|
|
2273 (symbol-name (coding-system-name default-coding-system)))
|
|
2274 (t
|
|
2275 default-coding-system)))))
|
|
2276
|
|
2277 (defun read-non-nil-coding-system (prompt)
|
|
2278 "Read a non-nil coding-system from the minibuffer.
|
|
2279 Prompt with string PROMPT."
|
|
2280 (let ((retval (intern "")))
|
|
2281 (while (= 0 (length (symbol-name retval)))
|
|
2282 (setq retval (intern (completing-read prompt obarray
|
|
2283 'find-coding-system
|
|
2284 t))))
|
|
2285 retval))
|
|
2286
|
|
2287
|
|
2288
|
|
2289 (defcustom force-dialog-box-use nil
|
|
2290 "*If non-nil, always use a dialog box for asking questions, if possible.
|
|
2291 You should *bind* this, not set it. This is useful if you're doing
|
|
2292 something mousy but which wasn't actually invoked using the mouse."
|
|
2293 :type 'boolean
|
|
2294 :group 'minibuffer)
|
|
2295
|
|
2296 ;; We include this here rather than dialog.el so it is defined
|
|
2297 ;; even when dialog boxes are not present.
|
|
2298 (defun should-use-dialog-box-p ()
|
|
2299 "If non-nil, questions should be asked with a dialog box instead of the
|
|
2300 minibuffer. This looks at `last-command-event' to see if it was a mouse
|
|
2301 event, and checks whether dialog-support exists and the current device
|
|
2302 supports dialog boxes.
|
|
2303
|
|
2304 The dialog box is totally disabled if the variable `use-dialog-box'
|
|
2305 is set to nil."
|
|
2306 (and (featurep 'dialog)
|
|
2307 (device-on-window-system-p)
|
|
2308 use-dialog-box
|
|
2309 (or force-dialog-box-use
|
|
2310 (button-press-event-p last-command-event)
|
|
2311 (button-release-event-p last-command-event)
|
|
2312 (misc-user-event-p last-command-event))))
|
|
2313
|
|
2314 ;;; minibuf.el ends here
|