annotate lisp/list-mode.el @ 398:74fd4e045ea6 r21-2-29

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