Mercurial > hg > xemacs-beta
annotate lisp/list-mode.el @ 5330:fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
lisp/ChangeLog addition:
2011-01-02 Aidan Kehoe <kehoea@parhasard.net>
* dialog.el (make-dialog-box):
* list-mode.el (display-completion-list):
These functions used to use cl-parsing-keywords; change them to
use defun* instead, fixing the build. (Not sure what led to me
not including this change in d1b17a33450b!)
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 02 Jan 2011 17:04:13 +0000 |
parents | ea07b60c097f |
children | 89331fa1c819 |
rev | line source |
---|---|
428 | 1 ;;; list-mode.el --- Major mode for buffers containing lists of items |
2 | |
3 ;; Copyright (C) 1992-4, 1997 Free Software Foundation, Inc. | |
442 | 4 ;; Copyright (C) 1996, 2000 Ben Wing. |
428 | 5 |
6 ;; Maintainer: XEmacs Development Team | |
7 ;; Keywords: extensions, dumped | |
8 | |
9 ;; This file is part of XEmacs. | |
10 | |
11 ;; XEmacs is free software; you can redistribute it and/or modify it | |
12 ;; under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; XEmacs is distributed in the hope that it will be useful, but | |
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
19 ;; General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with XEmacs; see the file COPYING. If not, write to the | |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
25 | |
26 ;;; Synched up with: Not synched | |
27 | |
28 ;;; Commentary: | |
29 | |
30 ;; This file is dumped with XEmacs. | |
31 | |
32 ;; Cleanup, merging with FSF by Ben Wing, January 1996 | |
33 | |
34 ;;; Code: | |
35 | |
36 (defvar list-mode-extent nil) | |
37 (make-variable-buffer-local 'list-mode-extent) | |
38 | |
39 (defvar list-mode-map nil | |
40 "Local map for buffers containing lists of items.") | |
41 (or list-mode-map | |
42 (let ((map (setq list-mode-map (make-sparse-keymap 'list-mode-map)))) | |
43 (suppress-keymap map) | |
44 (define-key map 'button2up 'list-mode-item-mouse-selected) | |
45 (define-key map 'button2 'undefined) | |
46 (define-key map "\C-m" 'list-mode-item-keyboard-selected) | |
47 ;; | |
48 ;; The following calls to `substitute-key-definition' losed because | |
49 ;; they were based on an incorrect assumption that `forward-char' and | |
50 ;; `backward-char' are bound to keys in the global map. This might not | |
51 ;; be the case if a user binds motion keys to different functions, | |
52 ;; and was not actually the case since 20.5 beta 28 or around. | |
53 ;; | |
54 ;; (substitute-key-definition 'forward-char 'next-list-mode-item map | |
55 ;; global-map) | |
56 ;; (substitute-key-definition 'backward-char 'previous-list-mode-item map | |
57 ;; global-map) | |
58 ;; | |
59 ;; We bind standard keys to motion commands instead. | |
60 ;; | |
61 (dolist (key '(kp-right right (control ?f))) | |
62 (define-key map key 'next-list-mode-item)) | |
63 (dolist (key '(kp-left left (control ?b))) | |
64 (define-key map key 'previous-list-mode-item)))) | |
65 | |
442 | 66 ;; #### We make list-mode-hook, as well as completion-setup-hook and |
67 ;; minibuffer-setup-hook, permanent-local so that it's possible to create | |
68 ;; buffers in these modes and then set up some buffer-specific | |
69 ;; customizations without resorting to awful kludges. (The problem here | |
70 ;; is that when you switch a buffer into a mode, reset-buffer is usually | |
71 ;; called, which destroys all buffer-local settings that you carefully | |
72 ;; tried to set up when you created the buffer. Therefore, the only way | |
73 ;; to set these variables is to use the setup hooks -- but if they are | |
74 ;; not declared permanent local, then any local hook functions that you | |
75 ;; put on them (which is exactly what you want to do) also get removed, | |
76 ;; so you would have to resort to putting a global hook function on the | |
77 ;; setup hook, and then making sure it gets removed later. I actually | |
78 ;; added some support for doing this with one-shot hooks, but this is | |
79 ;; clearly not the correct way to do things, and it fails in some cases, | |
80 ;; particularly when the buffer gets put into the mode more than once, | |
81 ;; which typically happens with completion buffers, for example.) In | |
82 ;; fact, all setup hooks should be made permanent local, but I didn't | |
83 ;; feel like making a global change like this quite yet. The proper way | |
84 ;; to do it would be to declare new def-style forms, such as defhook and | |
85 ;; define-local-setup-hook, which are used to initialize hooks in place | |
86 ;; of the current generic defvars. --ben | |
87 | |
88 (put 'list-mode-hook 'permanent-local t) | |
89 (defvar list-mode-hook nil | |
90 "Normal hook run when entering List mode.") | |
91 | |
428 | 92 (defun list-mode () |
93 "Major mode for buffer containing lists of items." | |
94 (interactive) | |
95 (kill-all-local-variables) | |
96 (use-local-map list-mode-map) | |
97 (setq mode-name "List") | |
98 (setq major-mode 'list-mode) | |
442 | 99 (add-local-hook 'post-command-hook 'set-list-mode-extent) |
100 (add-local-hook 'pre-command-hook 'list-mode-extent-pre-hook) | |
101 (set (make-local-variable 'next-line-add-newlines) nil) | |
428 | 102 (setq list-mode-extent nil) |
103 ;; It is visually disconcerting to have the text cursor disappear within list | |
104 ;; buffers, especially when moving from window to window, so leave it | |
105 ;; visible. -- Bob Weiner, 06/20/1999 | |
106 ; (set-specifier text-cursor-visible-p nil (current-buffer)) | |
107 (setq buffer-read-only t) | |
108 (goto-char (point-min)) | |
109 (run-hooks 'list-mode-hook)) | |
110 | |
111 ;; List mode is suitable only for specially formatted data. | |
112 (put 'list-mode 'mode-class 'special) | |
113 | |
114 (defvar list-mode-extent-old-point nil | |
115 "The value of point when pre-command-hook is called. | |
116 Used to determine the direction of motion.") | |
117 (make-variable-buffer-local 'list-mode-extent-old-point) | |
118 | |
119 (defun list-mode-extent-pre-hook () | |
120 (setq list-mode-extent-old-point (point)) | |
121 ;(setq atomic-extent-goto-char-p nil) | |
122 ) | |
123 | |
124 (defun set-list-mode-extent () | |
125 "Move to the closest list item and set up the extent for it. | |
126 This is called from `post-command-hook'." | |
127 (cond ((get-char-property (point) 'list-mode-item)) | |
128 ((and (> (point) (point-min)) | |
129 (get-char-property (1- (point)) 'list-mode-item)) | |
130 (goto-char (1- (point)))) | |
131 (t | |
132 (let ((pos (point)) | |
133 dirflag) | |
134 ;this fucks things up more than it helps. | |
135 ;atomic-extent-goto-char-p as currently defined is all broken, | |
136 ;since it will be triggered if the command *ever* runs goto-char! | |
137 ;(if atomic-extent-goto-char-p | |
138 ; (setq dirflag 1) | |
139 (if (and list-mode-extent-old-point | |
140 (> pos list-mode-extent-old-point)) | |
141 (setq dirflag 1) | |
142 (setq dirflag -1)) | |
143 (next-list-mode-item dirflag) | |
144 (or (get-char-property (point) 'list-mode-item) | |
145 (next-list-mode-item (- dirflag)))))) | |
146 (or (and list-mode-extent | |
147 (eq (current-buffer) (extent-object list-mode-extent))) | |
148 (progn | |
149 (setq list-mode-extent (make-extent nil nil (current-buffer))) | |
150 (set-extent-face list-mode-extent 'list-mode-item-selected))) | |
151 (let ((ex (extent-at (point) nil 'list-mode-item nil 'at))) | |
152 (if ex | |
153 (progn | |
154 (set-extent-endpoints list-mode-extent | |
155 (extent-start-position ex) | |
156 (extent-end-position ex)) | |
157 (auto-show-make-region-visible (extent-start-position ex) | |
158 (extent-end-position ex))) | |
159 (detach-extent list-mode-extent)))) | |
160 | |
161 (defun previous-list-mode-item (n) | |
162 "Move to the previous item in list-mode." | |
163 (interactive "p") | |
164 (next-list-mode-item (- n))) | |
165 | |
166 (defun next-list-mode-item (n) | |
167 "Move to the next item in list-mode. | |
168 With prefix argument N, move N items (negative N means move backward)." | |
169 (interactive "p") | |
170 (while (and (> n 0) (not (eobp))) | |
171 (let ((extent (extent-at (point) (current-buffer) 'list-mode-item)) | |
172 (end (point-max))) | |
173 ;; If in a completion, move to the end of it. | |
174 (if extent (goto-char (extent-end-position extent))) | |
175 ;; Move to start of next one. | |
176 (or (extent-at (point) (current-buffer) 'list-mode-item) | |
4791
ea07b60c097f
Fix issue 546, use next-single-char-property-change in list-mode.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
2098
diff
changeset
|
177 (goto-char (next-single-char-property-change (point) |
ea07b60c097f
Fix issue 546, use next-single-char-property-change in list-mode.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
2098
diff
changeset
|
178 'list-mode-item |
ea07b60c097f
Fix issue 546, use next-single-char-property-change in list-mode.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
2098
diff
changeset
|
179 nil end)))) |
428 | 180 (setq n (1- n))) |
181 (while (and (< n 0) (not (bobp))) | |
182 (let ((extent (extent-at (point) (current-buffer) 'list-mode-item)) | |
183 (end (point-min))) | |
184 ;; If in a completion, move to the start of it. | |
185 (if extent (goto-char (extent-start-position extent))) | |
186 ;; Move to the start of that one. | |
187 (if (setq extent (extent-at (point) (current-buffer) 'list-mode-item | |
188 nil 'before)) | |
189 (goto-char (extent-start-position extent)) | |
4791
ea07b60c097f
Fix issue 546, use next-single-char-property-change in list-mode.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
2098
diff
changeset
|
190 (goto-char (previous-single-char-property-change |
428 | 191 (point) 'list-mode-item nil end)) |
192 (if (setq extent (extent-at (point) (current-buffer) 'list-mode-item | |
193 nil 'before)) | |
194 (goto-char (extent-start-position extent))))) | |
195 (setq n (1+ n)))) | |
196 | |
197 (defun list-mode-item-selected-1 (extent event) | |
198 (let ((func (extent-property extent 'list-mode-item-activate-callback)) | |
199 (user-data (extent-property extent 'list-mode-item-user-data))) | |
200 (if func | |
201 (funcall func event extent user-data)))) | |
202 | |
203 ;; we could make these two be just one function, but we want to be | |
204 ;; able to refer to them in DOC strings. | |
205 | |
206 (defun list-mode-item-keyboard-selected () | |
207 (interactive) | |
208 (list-mode-item-selected-1 (extent-at (point) (current-buffer) | |
209 'list-mode-item nil 'at) | |
210 nil)) | |
211 | |
212 (defun list-mode-item-mouse-selected (event) | |
213 (interactive "e") | |
214 ;; Sometimes event-closest-point returns nil. | |
215 ;; So beep instead of bombing. | |
216 (let ((point (event-closest-point event))) | |
217 (if point | |
218 (list-mode-item-selected-1 (extent-at point | |
219 (event-buffer event) | |
220 'list-mode-item nil 'at) | |
221 event) | |
222 (ding)))) | |
223 | |
224 (defun add-list-mode-item (start end &optional buffer activate-callback | |
225 user-data) | |
226 "Add a new list item in list-mode, from START to END in BUFFER. | |
227 BUFFER defaults to the current buffer. | |
228 This works by creating an extent for the span of text in question. | |
229 If ACTIVATE-CALLBACK is non-nil, it should be a function of three | |
230 arguments (EVENT EXTENT USER-DATA) that will be called when button2 | |
231 is pressed on the extent. USER-DATA comes from the optional | |
232 USER-DATA argument." | |
233 (let ((extent (make-extent start end buffer))) | |
234 (set-extent-property extent 'list-mode-item t) | |
235 (set-extent-property extent 'start-open t) | |
236 (if activate-callback | |
237 (progn | |
238 (set-extent-property extent 'mouse-face 'highlight) | |
239 (set-extent-property extent 'list-mode-item-activate-callback | |
240 activate-callback) | |
241 (set-extent-property extent 'list-mode-item-user-data user-data))) | |
242 extent)) | |
243 | |
244 | |
245 ;; Define the major mode for lists of completions. | |
246 | |
247 | |
248 (defvar completion-highlight-first-word-only nil | |
249 "*Completion will only highlight the first blank delimited word if t. | |
250 If the variable in not t or nil, the string is taken as a regexp to match for end | |
251 of highlight") | |
252 | |
442 | 253 ;; see comment at list-mode-hook. |
254 (put 'completion-setup-hook 'permanent-local t) | |
428 | 255 (defvar completion-setup-hook nil |
442 | 256 "Normal hook run at the end of setting up the text of a completion buffer. |
257 When run, the completion buffer is the current buffer.") | |
428 | 258 |
259 ; Unnecessary FSFmacs crock. We frob the extents directly in | |
260 ; display-completion-list, so no "heuristics" like this are necessary. | |
261 ;(defvar completion-fixup-function nil | |
262 ; "A function to customize how completions are identified in completion lists. | |
263 ;`completion-setup-function' calls this function with no arguments | |
264 ;each time it has found what it thinks is one completion. | |
265 ;Point is at the end of the completion in the completion list buffer. | |
266 ;If this function moves point, it can alter the end of that completion.") | |
267 | |
268 (defvar completion-default-help-string | |
269 '(concat | |
270 (if (device-on-window-system-p) | |
271 (substitute-command-keys | |
272 "Click \\<list-mode-map>\\[list-mode-item-mouse-selected] on a completion to select it.\n") "") | |
273 (substitute-command-keys | |
274 "Type \\<minibuffer-local-completion-map>\\[advertised-switch-to-completions] or \\[switch-to-completions] to move to this buffer, for keyboard selection.\n\n")) | |
275 "Form the evaluate to get a help string for completion lists. | |
276 This string is inserted at the beginning of the buffer. | |
277 See `display-completion-list'.") | |
278 | |
5330
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
279 (defun* display-completion-list (completions &key user-data reference-buffer |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
280 (activate-callback 'default-choose-completion) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
281 (help-string completion-default-help-string) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
282 (completion-string "Possible completions are:") |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
283 window-width window-height) |
428 | 284 "Display the list of completions, COMPLETIONS, using `standard-output'. |
285 Each element may be just a symbol or string or may be a list of two | |
286 strings to be printed as if concatenated. | |
287 Frob a mousable extent onto each completion. This extent has properties | |
288 'mouse-face (so it highlights when the mouse passes over it) and | |
289 'list-mode-item (so it can be located). | |
290 | |
291 Keywords: | |
292 :activate-callback (default is `default-choose-completion') | |
293 See `add-list-mode-item'. | |
294 :user-data | |
295 Value passed to activation callback. | |
296 :window-width | |
297 If non-nil, width to use in displaying the list, instead of the | |
298 actual window's width. | |
442 | 299 :window-height |
300 If non-nil, use no more than this many lines, and extend line width as | |
301 necessary. | |
428 | 302 :help-string (default is the value of `completion-default-help-string') |
303 Form to evaluate to get a string to insert at the beginning of | |
304 the completion list buffer. This is evaluated when that buffer | |
305 is the current buffer and after it has been put into | |
306 completion-list-mode. | |
307 :reference-buffer (default is the current buffer) | |
308 This specifies the value of `completion-reference-buffer' in | |
309 the completion buffer. This specifies the buffer (normally a | |
310 minibuffer) that `default-choose-completion' will insert the | |
311 completion into. | |
312 | |
313 At the end, run the normal hook `completion-setup-hook'. | |
314 It can find the completion buffer in `standard-output'. | |
315 If `completion-highlight-first-word-only' is non-nil, then only the start | |
316 of the string is highlighted." | |
5330
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
317 ;; #### I18N3 should set standard-output to be (temporarily) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
318 ;; output-translating. |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
319 (let ((old-buffer (current-buffer)) (bufferp (bufferp standard-output))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
320 (if bufferp |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
321 (set-buffer standard-output)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
322 (if (null completions) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
323 (princ (gettext |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
324 "There are no possible completions of what you have typed.")) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
325 (let ((win-width |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
326 (or window-width |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
327 (if bufferp |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
328 ;; We have to use last-nonminibuf-frame here |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
329 ;; and not selected-frame because if a |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
330 ;; minibuffer-only frame is being used it will |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
331 ;; be the selected-frame at the point this is |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
332 ;; run. We keep the selected-frame call around |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
333 ;; just in case. |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
334 (window-width (get-lru-window (last-nonminibuf-frame))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
335 80)))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
336 (let ((count 0) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
337 (max-width 0) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
338 old-max-width) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
339 ;; Find longest completion |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
340 (let ((tail completions)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
341 (while tail |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
342 (let* ((elt (car tail)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
343 (len (cond ((stringp elt) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
344 (length elt)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
345 ((and (consp elt) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
346 (stringp (car elt)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
347 (stringp (car (cdr elt)))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
348 (+ (length (car elt)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
349 (length (car (cdr elt))))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
350 (t |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
351 (signal 'wrong-type-argument |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
352 (list 'stringp elt)))))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
353 (if (> len max-width) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
354 (setq max-width len)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
355 (setq count (1+ count) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
356 tail (cdr tail))))) |
428 | 357 |
5330
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
358 (setq max-width (+ 2 max-width)) ; at least two chars between cols |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
359 (setq old-max-width max-width) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
360 (let ((rows (let ((cols (min (/ win-width max-width) count))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
361 (if (<= cols 1) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
362 count |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
363 (progn |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
364 ;; re-space the columns |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
365 (setq max-width (/ win-width cols)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
366 (if (/= (% count cols) 0) ; want ceiling... |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
367 (1+ (/ count cols)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
368 (/ count cols))))))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
369 (when |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
370 (and window-height |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
371 (> rows window-height)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
372 (setq max-width old-max-width) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
373 (setq rows window-height)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
374 (when (and (stringp completion-string) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
375 (> (length completion-string) 0)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
376 (princ (gettext completion-string)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
377 (terpri)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
378 (let ((tail completions) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
379 (r 0) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
380 (regexp-string |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
381 (if (eq t |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
382 completion-highlight-first-word-only) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
383 "[ \t]" |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
384 completion-highlight-first-word-only))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
385 (while (< r rows) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
386 (and (> r 0) (terpri)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
387 (let ((indent 0) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
388 (column 0) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
389 (tail2 tail)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
390 (while tail2 |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
391 (let ((elt (car tail2))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
392 (if (/= indent 0) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
393 (if bufferp |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
394 (indent-to indent 2) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
395 (while (progn (write-char ?\ ) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
396 (setq column (1+ column)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
397 (< column indent))))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
398 (setq indent (+ indent max-width)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
399 (let ((start (point)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
400 end) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
401 ;; Frob some mousable extents in there too! |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
402 (if (consp elt) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
403 (progn |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
404 (princ (car elt)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
405 (princ (car (cdr elt))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
406 (or bufferp |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
407 (setq column |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
408 (+ column |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
409 (length (car elt)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
410 (length (car (cdr elt))))))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
411 (progn |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
412 (princ elt) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
413 (or bufferp |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
414 (setq column (+ column (length |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
415 elt)))))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
416 (add-list-mode-item |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
417 start |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
418 (progn |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
419 (setq end (point)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
420 (or |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
421 (and completion-highlight-first-word-only |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
422 (goto-char start) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
423 (re-search-forward regexp-string end t) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
424 (match-beginning 0)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
425 end)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
426 nil activate-callback user-data) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
427 (goto-char end))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
428 (setq tail2 (nthcdr rows tail2))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
429 (setq tail (cdr tail) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
430 r (1+ r))))))))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
431 (if bufferp |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
432 (set-buffer old-buffer))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
433 (save-excursion |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
434 (let ((mainbuf (or reference-buffer (current-buffer)))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
435 (set-buffer standard-output) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
436 (completion-list-mode) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
437 (make-local-variable 'completion-reference-buffer) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
438 (setq completion-reference-buffer mainbuf) |
428 | 439 ;;; The value 0 is right in most cases, but not for file name completion. |
440 ;;; so this has to be turned off. | |
5330
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
441 ;;; (setq completion-base-size 0) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
442 (goto-char (point-min)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
443 (let ((buffer-read-only nil)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
444 (insert (eval help-string))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
445 ;; unnecessary FSFmacs crock |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
446 ;;(forward-line 1) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
447 ;;(while (re-search-forward "[^ \t\n]+\\( [^ \t\n]+\\)*" nil t) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
448 ;; (let ((beg (match-beginning 0)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
449 ;; (end (point))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
450 ;; (if completion-fixup-function |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
451 ;; (funcall completion-fixup-function)) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
452 ;; (put-text-property beg (point) 'mouse-face 'highlight) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
453 ;; (put-text-property beg (point) 'list-mode-item t) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
454 ;; (goto-char end))))) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
455 )) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
456 (save-excursion |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
457 (set-buffer standard-output) |
fbafdc1bb4d2
Use defun*, not cl-parsing-keywords, #'make-dialog-box, #'display-completion-list
Aidan Kehoe <kehoea@parhasard.net>
parents:
4791
diff
changeset
|
458 (run-hooks 'completion-setup-hook))) |
428 | 459 |
460 (defvar completion-display-completion-list-function 'display-completion-list | |
461 "Function to set up the list of completions in the completion buffer. | |
462 The function is called with one argument, the sorted list of completions. | |
463 Particular minibuffer interface functions (e.g. `read-file-name') may | |
464 want to change this. To do that, set a local value for this variable | |
465 in the minibuffer; that ensures that other minibuffer invocations will | |
466 not be affected.") | |
467 | |
468 (defun minibuffer-completion-help () | |
469 "Display a list of possible completions of the current minibuffer contents. | |
470 The list of completions is determined by calling `all-completions', | |
471 passing it the current minibuffer contents, the value of | |
472 `minibuffer-completion-table', and the value of | |
473 `minibuffer-completion-predicate'. The list is displayed by calling | |
474 the value of `completion-display-completion-list-function' on the sorted | |
475 list of completions, with the standard output set to the completion | |
476 buffer." | |
477 (interactive) | |
478 (message "Making completion list...") | |
479 (let ((completions (all-completions (buffer-string) | |
480 minibuffer-completion-table | |
481 minibuffer-completion-predicate))) | |
482 (message nil) | |
483 (if (null completions) | |
484 (progn | |
485 (ding nil 'no-completion) | |
486 (temp-minibuffer-message " [No completions]")) | |
487 (with-output-to-temp-buffer "*Completions*" | |
488 (funcall completion-display-completion-list-function | |
489 (sort completions #'string-lessp)))))) | |
490 | |
491 (define-derived-mode completion-list-mode list-mode | |
492 "Completion List" | |
493 "Major mode for buffers showing lists of possible completions. | |
494 \\{completion-list-mode-map}" | |
495 (make-local-variable 'completion-base-size) | |
496 (setq completion-base-size nil)) | |
497 | |
498 (let ((map completion-list-mode-map)) | |
499 (define-key map 'button2up 'mouse-choose-completion) | |
500 (define-key map 'button2 'undefined) | |
501 (define-key map "\C-m" 'choose-completion) | |
502 (define-key map "\e\e\e" 'delete-completion-window) | |
503 (define-key map "\C-g" 'minibuffer-keyboard-quit) | |
504 (define-key map "q" 'completion-list-mode-quit) | |
505 (define-key map " " 'completion-switch-to-minibuffer) | |
506 ;; [Tab] used to switch to the minibuffer but since [space] does that and | |
507 ;; since most applications in the world use [Tab] to select the next item | |
508 ;; in a list, do that in the *Completions* buffer too. -- Bob Weiner, | |
509 ;; BeOpen.com, 06/23/1999. | |
510 (define-key map "\t" 'next-list-mode-item)) | |
511 | |
512 (defvar completion-reference-buffer nil | |
513 "Record the buffer that was current when the completion list was requested. | |
514 This is a local variable in the completion list buffer. | |
515 Initial value is nil to avoid some compiler warnings.") | |
516 | |
517 (defvar completion-base-size nil | |
518 "Number of chars at beginning of minibuffer not involved in completion. | |
519 This is a local variable in the completion list buffer | |
520 but it talks about the buffer in `completion-reference-buffer'. | |
521 If this is nil, it means to compare text to determine which part | |
522 of the tail end of the buffer's text is involved in completion.") | |
523 | |
524 ;; These names are referenced in the doc string for `completion-list-mode'. | |
525 (defalias 'choose-completion 'list-mode-item-keyboard-selected) | |
526 (defalias 'mouse-choose-completion 'list-mode-item-mouse-selected) | |
527 | |
528 (defun delete-completion-window () | |
529 "Delete the completion list window. | |
530 Go to the window from which completion was requested." | |
531 (interactive) | |
532 (let ((buf completion-reference-buffer)) | |
533 (delete-window (selected-window)) | |
534 (if (get-buffer-window buf) | |
535 (select-window (get-buffer-window buf))))) | |
536 | |
537 (defun completion-switch-to-minibuffer () | |
538 "Move from a completions buffer to the active minibuffer window." | |
539 (interactive) | |
540 (select-window (minibuffer-window))) | |
541 | |
542 (defun completion-list-mode-quit () | |
543 "Abort any recursive edit and bury the completions buffer." | |
544 (interactive) | |
545 (condition-case () | |
546 (abort-recursive-edit) | |
547 (error nil)) | |
548 ;; If there was no recursive edit to abort, simply bury the completions | |
549 ;; list buffer. | |
550 (if (eq major-mode 'completion-list-mode) (bury-buffer))) | |
551 | |
552 (defun completion-do-in-minibuffer () | |
553 (interactive "_") | |
554 (save-excursion | |
555 (set-buffer (window-buffer (minibuffer-window))) | |
556 (call-interactively (key-binding (this-command-keys))))) | |
557 | |
558 (defun default-choose-completion (event extent buffer) | |
559 "Click on an alternative in the `*Completions*' buffer to choose it." | |
560 (and (button-event-p event) | |
561 ;; Give temporary modes such as isearch a chance to turn off. | |
562 (run-hooks 'mouse-leave-buffer-hook)) | |
563 (or buffer (setq buffer (symbol-value-in-buffer | |
564 'completion-reference-buffer | |
565 (or (and (button-event-p event) | |
566 (event-buffer event)) | |
567 (current-buffer))))) | |
568 (save-selected-window | |
569 (and (button-event-p event) | |
570 (select-window (event-window event))) | |
571 (if (and (one-window-p t 'selected-frame) | |
572 (window-dedicated-p (selected-window))) | |
573 ;; This is a special buffer's frame | |
574 (iconify-frame (selected-frame)) | |
575 (or (window-dedicated-p (selected-window)) | |
576 (bury-buffer)))) | |
577 (choose-completion-string (extent-string extent) | |
578 buffer | |
579 completion-base-size)) | |
580 | |
581 ;; Delete the longest partial match for STRING | |
582 ;; that can be found before POINT. | |
583 (defun choose-completion-delete-max-match (string) | |
584 (let ((len (min (length string) | |
585 (- (point) (point-min))))) | |
586 (goto-char (- (point) (length string))) | |
587 (if completion-ignore-case | |
588 (setq string (downcase string))) | |
589 (while (and (> len 0) | |
590 (let ((tail (buffer-substring (point) | |
591 (+ (point) len)))) | |
592 (if completion-ignore-case | |
593 (setq tail (downcase tail))) | |
594 (not (string= tail (substring string 0 len))))) | |
595 (setq len (1- len)) | |
596 (forward-char 1)) | |
597 (delete-char len))) | |
598 | |
599 ;; Switch to BUFFER and insert the completion choice CHOICE. | |
600 ;; BASE-SIZE, if non-nil, says how many characters of BUFFER's text | |
601 ;; to keep. If it is nil, use choose-completion-delete-max-match instead. | |
602 (defun choose-completion-string (choice &optional buffer base-size) | |
603 (let ((buffer (or buffer completion-reference-buffer))) | |
604 ;; If BUFFER is a minibuffer, barf unless it's the currently | |
605 ;; active minibuffer. | |
606 (if (and (string-match "\\` \\*Minibuf-[0-9]+\\*\\'" (buffer-name buffer)) | |
607 (or (not (active-minibuffer-window)) | |
608 (not (equal buffer | |
609 (window-buffer (active-minibuffer-window)))))) | |
610 (error "Minibuffer is not active for completion") | |
611 ;; Insert the completion into the buffer where completion was requested. | |
612 (set-buffer buffer) | |
613 (if base-size | |
614 (delete-region (+ base-size (point-min)) (point)) | |
615 (choose-completion-delete-max-match choice)) | |
616 (insert choice) | |
617 (remove-text-properties (- (point) (length choice)) (point) | |
618 '(highlight nil)) | |
619 ;; Update point in the window that BUFFER is showing in. | |
620 (let ((window (get-buffer-window buffer t))) | |
621 (set-window-point window (point))) | |
622 ;; If completing for the minibuffer, exit it with this choice. | |
623 (and (equal buffer (window-buffer (minibuffer-window))) | |
624 minibuffer-completion-table | |
625 (exit-minibuffer))))) | |
626 | |
627 (define-key minibuffer-local-completion-map [prior] | |
628 'switch-to-completions) | |
629 (define-key minibuffer-local-must-match-map [prior] | |
630 'switch-to-completions) | |
631 (define-key minibuffer-local-completion-map "\M-v" | |
632 'advertised-switch-to-completions) | |
633 (define-key minibuffer-local-must-match-map "\M-v" | |
634 'advertised-switch-to-completions) | |
635 | |
636 (defalias 'advertised-switch-to-completions 'switch-to-completions) | |
637 (defun switch-to-completions () | |
638 "Select the completion list window." | |
639 (interactive) | |
640 ;; Make sure we have a completions window. | |
641 (or (get-buffer-window "*Completions*") | |
642 (minibuffer-completion-help)) | |
643 (if (not (get-buffer-window "*Completions*")) | |
644 nil | |
645 (select-window (get-buffer-window "*Completions*")) | |
4791
ea07b60c097f
Fix issue 546, use next-single-char-property-change in list-mode.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
2098
diff
changeset
|
646 (goto-char (next-single-char-property-change (point-min) 'list-mode-item |
ea07b60c097f
Fix issue 546, use next-single-char-property-change in list-mode.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
2098
diff
changeset
|
647 nil (point-max))))) |
428 | 648 |
649 ;;; list-mode.el ends here |