]> code.delx.au - gnu-emacs/blob - lisp/complete.el
Merge from emacs--rel--22
[gnu-emacs] / lisp / complete.el
1 ;;; complete.el --- partial completion mechanism plus other goodies
2
3 ;; Copyright (C) 1990, 1991, 1992, 1993, 1999, 2000, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5
6 ;; Author: Dave Gillespie <daveg@synaptics.com>
7 ;; Keywords: abbrev convenience
8 ;; Special thanks to Hallvard Furuseth for his many ideas and contributions.
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
26
27 ;;; Commentary:
28
29 ;; Extended completion for the Emacs minibuffer.
30 ;;
31 ;; The basic idea is that the command name or other completable text is
32 ;; divided into words and each word is completed separately, so that
33 ;; "M-x p-b" expands to "M-x print-buffer". If the entry is ambiguous
34 ;; each word is completed as much as possible and then the cursor is
35 ;; left at the first position where typing another letter will resolve
36 ;; the ambiguity.
37 ;;
38 ;; Word separators for this purpose are hyphen, space, and period.
39 ;; These would most likely occur in command names, Info menu items,
40 ;; and file names, respectively. But all word separators are treated
41 ;; alike at all times.
42 ;;
43 ;; This completion package replaces the old-style completer's key
44 ;; bindings for TAB, SPC, RET, and `?'. The old completer is still
45 ;; available on the Meta versions of those keys. If you set
46 ;; PC-meta-flag to nil, the old completion keys will be left alone
47 ;; and the partial completer will use the Meta versions of the keys.
48
49
50 ;; Usage: M-x partial-completion-mode. During completable minibuffer entry,
51 ;;
52 ;; TAB means to do a partial completion;
53 ;; SPC means to do a partial complete-word;
54 ;; RET means to do a partial complete-and-exit;
55 ;; ? means to do a partial completion-help.
56 ;;
57 ;; If you set PC-meta-flag to nil, then TAB, SPC, RET, and ? perform
58 ;; original Emacs completions, and M-TAB etc. do partial completion.
59 ;; To do this, put the command,
60 ;;
61 ;; (setq PC-meta-flag nil)
62 ;;
63 ;; in your .emacs file. To load partial completion automatically, put
64 ;;
65 ;; (partial-completion-mode t)
66 ;;
67 ;; in your .emacs file, too. Things will be faster if you byte-compile
68 ;; this file when you install it.
69 ;;
70 ;; As an extra feature, in cases where RET would not normally
71 ;; complete (such as `C-x b'), the M-RET key will always do a partial
72 ;; complete-and-exit. Thus `C-x b f.c RET' will select or create a
73 ;; buffer called "f.c", but `C-x b f.c M-RET' will select the existing
74 ;; buffer whose name matches that pattern (perhaps "filing.c").
75 ;; (PC-meta-flag does not affect this behavior; M-RET used to be
76 ;; undefined in this situation.)
77 ;;
78 ;; The regular M-TAB (lisp-complete-symbol) command also supports
79 ;; partial completion in this package.
80
81 ;; In addition, this package includes a feature for accessing include
82 ;; files. For example, `C-x C-f <sys/time.h> RET' reads the file
83 ;; /usr/include/sys/time.h. The variable PC-include-file-path is a
84 ;; list of directories in which to search for include files. Completion
85 ;; is supported in include file names.
86
87
88 ;;; Code:
89
90 (defgroup partial-completion nil
91 "Partial Completion of items."
92 :prefix "pc-"
93 :group 'minibuffer
94 :group 'convenience)
95
96 (defcustom PC-first-char 'find-file
97 "Control how the first character of a string is to be interpreted.
98 If nil, the first character of a string is not taken literally if it is a word
99 delimiter, so that \".e\" matches \"*.e*\".
100 If t, the first character of a string is always taken literally even if it is a
101 word delimiter, so that \".e\" matches \".e*\".
102 If non-nil and non-t, the first character is taken literally only for file name
103 completion."
104 :type '(choice (const :tag "delimiter" nil)
105 (const :tag "literal" t)
106 (other :tag "find-file" find-file))
107 :group 'partial-completion)
108
109 (defcustom PC-meta-flag t
110 "If non-nil, TAB means PC completion and M-TAB means normal completion.
111 Otherwise, TAB means normal completion and M-TAB means Partial Completion."
112 :type 'boolean
113 :group 'partial-completion)
114
115 (defcustom PC-word-delimiters "-_. "
116 "A string of characters treated as word delimiters for completion.
117 Some arcane rules:
118 If `]' is in this string, it must come first.
119 If `^' is in this string, it must not come first.
120 If `-' is in this string, it must come first or right after `]'.
121 In other words, if S is this string, then `[S]' must be a valid Emacs regular
122 expression (not containing character ranges like `a-z')."
123 :type 'string
124 :group 'partial-completion)
125
126 (defcustom PC-include-file-path '("/usr/include" "/usr/local/include")
127 "A list of directories in which to look for include files.
128 If nil, means use the colon-separated path in the variable $INCPATH instead."
129 :type '(repeat directory)
130 :group 'partial-completion)
131
132 (defcustom PC-disable-includes nil
133 "If non-nil, include-file support in \\[find-file] is disabled."
134 :type 'boolean
135 :group 'partial-completion)
136
137 (defvar PC-default-bindings t
138 "If non-nil, default partial completion key bindings are suppressed.")
139
140 (defvar PC-env-vars-alist nil
141 "A list of the environment variable names and values.")
142
143 \f
144 (defun PC-bindings (bind)
145 (let ((completion-map minibuffer-local-completion-map)
146 (must-match-map minibuffer-local-must-match-map))
147 (cond ((not bind)
148 ;; These bindings are the default bindings. It would be better to
149 ;; restore the previous bindings.
150 (define-key read-expression-map "\e\t" 'lisp-complete-symbol)
151
152 (define-key completion-map "\t" 'minibuffer-complete)
153 (define-key completion-map " " 'minibuffer-complete-word)
154 (define-key completion-map "?" 'minibuffer-completion-help)
155
156 (define-key must-match-map "\r" 'minibuffer-complete-and-exit)
157 (define-key must-match-map "\n" 'minibuffer-complete-and-exit)
158
159 (define-key global-map [remap lisp-complete-symbol] nil))
160 (PC-default-bindings
161 (define-key read-expression-map "\e\t" 'PC-lisp-complete-symbol)
162
163 (define-key completion-map "\t" 'PC-complete)
164 (define-key completion-map " " 'PC-complete-word)
165 (define-key completion-map "?" 'PC-completion-help)
166
167 (define-key completion-map "\e\t" 'PC-complete)
168 (define-key completion-map "\e " 'PC-complete-word)
169 (define-key completion-map "\e\r" 'PC-force-complete-and-exit)
170 (define-key completion-map "\e\n" 'PC-force-complete-and-exit)
171 (define-key completion-map "\e?" 'PC-completion-help)
172
173 (define-key must-match-map "\r" 'PC-complete-and-exit)
174 (define-key must-match-map "\n" 'PC-complete-and-exit)
175
176 (define-key must-match-map "\e\r" 'PC-complete-and-exit)
177 (define-key must-match-map "\e\n" 'PC-complete-and-exit)
178
179 (define-key global-map [remap lisp-complete-symbol] 'PC-lisp-complete-symbol)))))
180
181 (defvar PC-do-completion-end nil
182 "Internal variable used by `PC-do-completion'.")
183
184 (make-variable-buffer-local 'PC-do-completion-end)
185
186 (defvar PC-goto-end nil
187 "Internal variable set in `PC-do-completion', used in
188 `choose-completion-string-functions'.")
189
190 (make-variable-buffer-local 'PC-goto-end)
191
192 ;;;###autoload
193 (define-minor-mode partial-completion-mode
194 "Toggle Partial Completion mode.
195 With prefix ARG, turn Partial Completion mode on if ARG is positive.
196
197 When Partial Completion mode is enabled, TAB (or M-TAB if `PC-meta-flag' is
198 nil) is enhanced so that if some string is divided into words and each word is
199 delimited by a character in `PC-word-delimiters', partial words are completed
200 as much as possible and `*' characters are treated likewise in file names.
201
202 For example, M-x p-c-m expands to M-x partial-completion-mode since no other
203 command begins with that sequence of characters, and
204 \\[find-file] f_b.c TAB might complete to foo_bar.c if that file existed and no
205 other file in that directory begins with that sequence of characters.
206
207 Unless `PC-disable-includes' is non-nil, the `<...>' sequence is interpreted
208 specially in \\[find-file]. For example,
209 \\[find-file] <sys/time.h> RET finds the file `/usr/include/sys/time.h'.
210 See also the variable `PC-include-file-path'.
211
212 Partial Completion mode extends the meaning of `completion-auto-help' (which
213 see), so that if it is neither nil nor t, Emacs shows the `*Completions*'
214 buffer only on the second attempt to complete. That is, if TAB finds nothing
215 to complete, the first TAB just says \"Next char not unique\" and the
216 second TAB brings up the `*Completions*' buffer."
217 :global t :group 'partial-completion
218 ;; Deal with key bindings...
219 (PC-bindings partial-completion-mode)
220 ;; Deal with include file feature...
221 (cond ((not partial-completion-mode)
222 (remove-hook 'find-file-not-found-functions 'PC-look-for-include-file))
223 ((not PC-disable-includes)
224 (add-hook 'find-file-not-found-functions 'PC-look-for-include-file)))
225 ;; Adjust the completion selection in *Completion* buffers to the way
226 ;; we work. The default minibuffer completion code only completes the
227 ;; text before point and leaves the text after point alone (new in
228 ;; Emacs-22). In contrast we use the whole text and we even sometimes
229 ;; move point to a place before EOB, to indicate the first position where
230 ;; there's a difference, so when the user uses choose-completion, we have
231 ;; to trick choose-completion into replacing the whole minibuffer text
232 ;; rather than only the text before point. --Stef
233 (funcall
234 (if partial-completion-mode 'add-hook 'remove-hook)
235 'choose-completion-string-functions
236 (lambda (choice buffer mini-p base-size)
237 ;; When completing M-: (lisp- ) with point before the ), it is
238 ;; not appropriate to go to point-max (unlike the filename case).
239 (if (and (not PC-goto-end)
240 mini-p)
241 (goto-char (point-max))
242 ;; Need a similar hack for the non-minibuffer-case -- gm.
243 (when PC-do-completion-end
244 (goto-char PC-do-completion-end)
245 (setq PC-do-completion-end nil)))
246 (setq PC-goto-end nil)
247 nil))
248 ;; Build the env-completion and mapping table.
249 (when (and partial-completion-mode (null PC-env-vars-alist))
250 (setq PC-env-vars-alist
251 (mapcar (lambda (string)
252 (let ((d (string-match "=" string)))
253 (cons (concat "$" (substring string 0 d))
254 (and d (substring string (1+ d))))))
255 process-environment))))
256
257 \f
258 (defun PC-complete ()
259 "Like minibuffer-complete, but allows \"b--di\"-style abbreviations.
260 For example, \"M-x b--di\" would match `byte-recompile-directory', or any
261 name which consists of three or more words, the first beginning with \"b\"
262 and the third beginning with \"di\".
263
264 The pattern \"b--d\" is ambiguous for `byte-recompile-directory' and
265 `beginning-of-defun', so this would produce a list of completions
266 just like when normal Emacs completions are ambiguous.
267
268 Word-delimiters for the purposes of Partial Completion are \"-\", \"_\",
269 \".\", and SPC."
270 (interactive)
271 (if (PC-was-meta-key)
272 (minibuffer-complete)
273 ;; If the previous command was not this one,
274 ;; never scroll, always retry completion.
275 (or (eq last-command this-command)
276 (setq minibuffer-scroll-window nil))
277 (let ((window minibuffer-scroll-window))
278 ;; If there's a fresh completion window with a live buffer,
279 ;; and this command is repeated, scroll that window.
280 (if (and window (window-buffer window)
281 (buffer-name (window-buffer window)))
282 (with-current-buffer (window-buffer window)
283 (if (pos-visible-in-window-p (point-max) window)
284 (set-window-start window (point-min) nil)
285 (scroll-other-window)))
286 (PC-do-completion nil)))))
287
288
289 (defun PC-complete-word ()
290 "Like `minibuffer-complete-word', but allows \"b--di\"-style abbreviations.
291 See `PC-complete' for details.
292 This can be bound to other keys, like `-' and `.', if you wish."
293 (interactive)
294 (if (eq (PC-was-meta-key) PC-meta-flag)
295 (if (eq last-command-char ? )
296 (minibuffer-complete-word)
297 (self-insert-command 1))
298 (self-insert-command 1)
299 (if (eobp)
300 (PC-do-completion 'word))))
301
302
303 (defun PC-complete-space ()
304 "Like `minibuffer-complete-word', but allows \"b--di\"-style abbreviations.
305 See `PC-complete' for details.
306 This is suitable for binding to other keys which should act just like SPC."
307 (interactive)
308 (if (eq (PC-was-meta-key) PC-meta-flag)
309 (minibuffer-complete-word)
310 (insert " ")
311 (if (eobp)
312 (PC-do-completion 'word))))
313
314
315 (defun PC-complete-and-exit ()
316 "Like `minibuffer-complete-and-exit', but allows \"b--di\"-style abbreviations.
317 See `PC-complete' for details."
318 (interactive)
319 (if (eq (PC-was-meta-key) PC-meta-flag)
320 (minibuffer-complete-and-exit)
321 (PC-do-complete-and-exit)))
322
323 (defun PC-force-complete-and-exit ()
324 "Like `minibuffer-complete-and-exit', but allows \"b--di\"-style abbreviations.
325 See `PC-complete' for details."
326 (interactive)
327 (let ((minibuffer-completion-confirm nil))
328 (PC-do-complete-and-exit)))
329
330 (defun PC-do-complete-and-exit ()
331 (cond
332 ((= (point-max) (minibuffer-prompt-end))
333 ;; Duplicate the "bug" that Info-menu relies on...
334 (exit-minibuffer))
335 ((eq minibuffer-completion-confirm 'confirm-only)
336 (if (or (eq last-command this-command)
337 (test-completion (field-string)
338 minibuffer-completion-table
339 minibuffer-completion-predicate))
340 (exit-minibuffer)
341 (PC-temp-minibuffer-message " [Confirm]")))
342 (t
343 (let ((flag (PC-do-completion 'exit)))
344 (and flag
345 (if (or (eq flag 'complete)
346 (not minibuffer-completion-confirm))
347 (exit-minibuffer)
348 (PC-temp-minibuffer-message " [Confirm]")))))))
349
350
351 (defun PC-completion-help ()
352 "Like `minibuffer-completion-help', but allows \"b--di\"-style abbreviations.
353 See `PC-complete' for details."
354 (interactive)
355 (if (eq (PC-was-meta-key) PC-meta-flag)
356 (minibuffer-completion-help)
357 (PC-do-completion 'help)))
358
359 (defun PC-was-meta-key ()
360 (or (/= (length (this-command-keys)) 1)
361 (let ((key (aref (this-command-keys) 0)))
362 (if (integerp key)
363 (>= key 128)
364 (not (null (memq 'meta (event-modifiers key))))))))
365
366
367 (defvar PC-ignored-extensions 'empty-cache)
368 (defvar PC-delims 'empty-cache)
369 (defvar PC-ignored-regexp nil)
370 (defvar PC-word-failed-flag nil)
371 (defvar PC-delim-regex nil)
372 (defvar PC-ndelims-regex nil)
373 (defvar PC-delims-list nil)
374
375 (defvar PC-completion-as-file-name-predicate
376 (lambda () minibuffer-completing-file-name)
377 "A function testing whether a minibuffer completion now will work filename-style.
378 The function takes no arguments, and typically looks at the value
379 of `minibuffer-completion-table' and the minibuffer contents.")
380
381 ;; Returns the sequence of non-delimiter characters that follow regexp in string.
382 (defun PC-chunk-after (string regexp)
383 (if (not (string-match regexp string))
384 (let ((message (format "String %s didn't match regexp %s" string regexp)))
385 (message message)
386 (error message)))
387 (let ((result (substring string (match-end 0))))
388 ;; result may contain multiple chunks
389 (if (string-match PC-delim-regex result)
390 (setq result (substring result 0 (match-beginning 0))))
391 result))
392
393 (defun test-completion-ignore-case (str table pred)
394 "Like `test-completion', but ignores case when possible."
395 ;; Binding completion-ignore-case to nil ensures, for compatibility with
396 ;; standard completion, that the return value is exactly one of the
397 ;; possibilities. Do this binding only if pred is nil, out of paranoia;
398 ;; perhaps it is safe even if pred is non-nil.
399 (if pred
400 (test-completion str table pred)
401 (let ((completion-ignore-case nil))
402 (test-completion str table pred))))
403
404 ;; The following function is an attempt to work around two problems:
405
406 ;; (1) When complete.el was written, (try-completion "" '(("") (""))) used to
407 ;; return the value "". With a change from 2002-07-07 it returns t which caused
408 ;; `PC-lisp-complete-symbol' to fail with a "Wrong type argument: sequencep, t"
409 ;; error. `PC-try-completion' returns STRING in this case.
410
411 ;; (2) (try-completion "" '((""))) returned t before the above-mentioned change.
412 ;; Since `PC-chop-word' operates on the return value of `try-completion' this
413 ;; case might have provoked a similar error as in (1). `PC-try-completion'
414 ;; returns "" instead. I don't know whether this is a real problem though.
415
416 ;; Since `PC-try-completion' is not a guaranteed to fix these bugs reliably, you
417 ;; should try to look at the following discussions when you encounter problems:
418 ;; - emacs-pretest-bug ("Partial Completion" starting 2007-02-23),
419 ;; - emacs-devel ("[address-of-OP: Partial completion]" starting 2007-02-24),
420 ;; - emacs-devel ("[address-of-OP: EVAL and mouse selection in *Completions*]"
421 ;; starting 2007-03-05).
422 (defun PC-try-completion (string alist &optional predicate)
423 "Like `try-completion' but return STRING instead of t."
424 (let ((result (try-completion string alist predicate)))
425 (if (eq result t) string result)))
426
427 ;; TODO document MODE magic...
428 (defun PC-do-completion (&optional mode beg end goto-end)
429 "Internal function to do the work of partial completion.
430 Text to be completed lies between BEG and END. Normally when
431 replacing text in the minibuffer, this function replaces up to
432 point-max (as is appropriate for completing a file name). If
433 GOTO-END is non-nil, however, it instead replaces up to END."
434 (or beg (setq beg (minibuffer-prompt-end)))
435 (or end (setq end (point-max)))
436 (let* ((table (if (eq minibuffer-completion-table 'read-file-name-internal)
437 'PC-read-file-name-internal
438 minibuffer-completion-table))
439 (pred minibuffer-completion-predicate)
440 (filename (funcall PC-completion-as-file-name-predicate))
441 (dirname nil) ; non-nil only if a filename is being completed
442 ;; The following used to be "(dirlength 0)" which caused the erasure of
443 ;; the entire buffer text before `point' when inserting a completion
444 ;; into a buffer.
445 dirlength
446 (str (buffer-substring beg end))
447 (incname (and filename (string-match "<\\([^\"<>]*\\)>?$" str)))
448 (ambig nil)
449 basestr origstr
450 env-on
451 regex
452 p offset
453 (poss nil)
454 helpposs
455 (case-fold-search completion-ignore-case))
456
457 ;; Check if buffer contents can already be considered complete
458 (if (and (eq mode 'exit)
459 (test-completion str table pred))
460 (progn
461 ;; If completion-ignore-case is non-nil, insert the
462 ;; completion string since that may have a different case.
463 (when completion-ignore-case
464 (setq str (PC-try-completion str table pred))
465 (delete-region beg end)
466 (insert str))
467 'complete)
468
469 ;; Do substitutions in directory names
470 (and filename
471 (setq basestr (or (file-name-directory str) ""))
472 (setq dirlength (length basestr))
473 ;; Do substitutions in directory names
474 (setq p (substitute-in-file-name basestr))
475 (not (string-equal basestr p))
476 (setq str (concat p (file-name-nondirectory str)))
477 (progn
478 (delete-region beg end)
479 (insert str)
480 (setq end (+ beg (length str)))))
481
482 ;; Prepare various delimiter strings
483 (or (equal PC-word-delimiters PC-delims)
484 (setq PC-delims PC-word-delimiters
485 PC-delim-regex (concat "[" PC-delims "]")
486 PC-ndelims-regex (concat "[^" PC-delims "]*")
487 PC-delims-list (append PC-delims nil)))
488
489 ;; Add wildcards if necessary
490 (and filename
491 (let ((dir (file-name-directory str))
492 (file (file-name-nondirectory str))
493 ;; The base dir for file-completion is passed in `predicate'.
494 (default-directory (expand-file-name pred)))
495 (while (and (stringp dir) (not (file-directory-p dir)))
496 (setq dir (directory-file-name dir))
497 (setq file (concat (replace-regexp-in-string
498 PC-delim-regex "*\\&"
499 (file-name-nondirectory dir))
500 "*/" file))
501 (setq dir (file-name-directory dir)))
502 (setq origstr str str (concat dir file))))
503
504 ;; Look for wildcard expansions in directory name
505 (and filename
506 (string-match "\\*.*/" str)
507 (let ((pat str)
508 ;; The base dir for file-completion is passed in `predicate'.
509 (default-directory (expand-file-name pred))
510 files)
511 (setq p (1+ (string-match "/[^/]*\\'" pat)))
512 (while (setq p (string-match PC-delim-regex pat p))
513 (setq pat (concat (substring pat 0 p)
514 "*"
515 (substring pat p))
516 p (+ p 2)))
517 (setq files (PC-expand-many-files (concat pat "*")))
518 (if files
519 (let ((dir (file-name-directory (car files)))
520 (p files))
521 (while (and (setq p (cdr p))
522 (equal dir (file-name-directory (car p)))))
523 (if p
524 (setq filename nil table nil pred nil
525 ambig t)
526 (delete-region beg end)
527 (setq str (concat dir (file-name-nondirectory str)))
528 (insert str)
529 (setq end (+ beg (length str)))))
530 (if origstr
531 ;; If the wildcards were introduced by us, it's
532 ;; possible that PC-read-file-name-internal can
533 ;; still find matches for the original string
534 ;; even if we couldn't, so remove the added
535 ;; wildcards.
536 (setq str origstr)
537 (setq filename nil table nil pred nil)))))
538
539 ;; Strip directory name if appropriate
540 (if filename
541 (if incname
542 (setq basestr (substring str incname)
543 dirname (substring str 0 incname))
544 (setq basestr (file-name-nondirectory str)
545 dirname (file-name-directory str))
546 ;; Make sure str is consistent with its directory and basename
547 ;; parts. This is important on DOZe'NT systems when str only
548 ;; includes a drive letter, like in "d:".
549 (setq str (concat dirname basestr)))
550 (setq basestr str))
551
552 ;; Convert search pattern to a standard regular expression
553 (setq regex (regexp-quote basestr)
554 offset (if (and (> (length regex) 0)
555 (not (eq (aref basestr 0) ?\*))
556 (or (eq PC-first-char t)
557 (and PC-first-char filename))) 1 0)
558 p offset)
559 (while (setq p (string-match PC-delim-regex regex p))
560 (if (eq (aref regex p) ? )
561 (setq regex (concat (substring regex 0 p)
562 PC-ndelims-regex
563 PC-delim-regex
564 (substring regex (1+ p)))
565 p (+ p (length PC-ndelims-regex) (length PC-delim-regex)))
566 (let ((bump (if (memq (aref regex p)
567 '(?$ ?^ ?\. ?* ?+ ?? ?[ ?] ?\\))
568 -1 0)))
569 (setq regex (concat (substring regex 0 (+ p bump))
570 PC-ndelims-regex
571 (substring regex (+ p bump)))
572 p (+ p (length PC-ndelims-regex) 1)))))
573 (setq p 0)
574 (if filename
575 (while (setq p (string-match "\\\\\\*" regex p))
576 (setq regex (concat (substring regex 0 p)
577 "[^/]*"
578 (substring regex (+ p 2))))))
579 ;;(setq the-regex regex)
580 (setq regex (concat "\\`" regex))
581
582 (and (> (length basestr) 0)
583 (= (aref basestr 0) ?$)
584 (setq env-on t
585 table PC-env-vars-alist
586 pred nil))
587
588 ;; Find an initial list of possible completions
589 (if (not (setq p (string-match (concat PC-delim-regex
590 (if filename "\\|\\*" ""))
591 str
592 (+ (length dirname) offset))))
593
594 ;; Minibuffer contains no hyphens -- simple case!
595 (setq poss (all-completions (if env-on
596 basestr str)
597 table
598 pred))
599
600 ;; Use all-completions to do an initial cull. This is a big win,
601 ;; since all-completions is written in C!
602 (let ((compl (all-completions (if env-on
603 (file-name-nondirectory (substring str 0 p))
604 (substring str 0 p))
605 table
606 pred)))
607 (setq p compl)
608 (while p
609 (and (string-match regex (car p))
610 (progn
611 (set-text-properties 0 (length (car p)) '() (car p))
612 (setq poss (cons (car p) poss))))
613 (setq p (cdr p)))))
614
615 ;; If table had duplicates, they can be here.
616 (delete-dups poss)
617
618 ;; Handle completion-ignored-extensions
619 (and filename
620 (not (eq mode 'help))
621 (let ((p2 poss))
622
623 ;; Build a regular expression representing the extensions list
624 (or (equal completion-ignored-extensions PC-ignored-extensions)
625 (setq PC-ignored-regexp
626 (concat "\\("
627 (mapconcat
628 'regexp-quote
629 (setq PC-ignored-extensions
630 completion-ignored-extensions)
631 "\\|")
632 "\\)\\'")))
633
634 ;; Check if there are any without an ignored extension.
635 ;; Also ignore `.' and `..'.
636 (setq p nil)
637 (while p2
638 (or (string-match PC-ignored-regexp (car p2))
639 (string-match "\\(\\`\\|/\\)[.][.]?/?\\'" (car p2))
640 (setq p (cons (car p2) p)))
641 (setq p2 (cdr p2)))
642
643 ;; If there are "good" names, use them
644 (and p (setq poss p))))
645
646 ;; Now we have a list of possible completions
647 (cond
648
649 ;; No valid completions found
650 ((null poss)
651 (if (and (eq mode 'word)
652 (not PC-word-failed-flag))
653 (let ((PC-word-failed-flag t))
654 (delete-backward-char 1)
655 (PC-do-completion 'word))
656 (beep)
657 (PC-temp-minibuffer-message (if ambig
658 " [Ambiguous dir name]"
659 (if (eq mode 'help)
660 " [No completions]"
661 " [No match]")))
662 nil))
663
664 ;; More than one valid completion found
665 ((or (cdr (setq helpposs poss))
666 (memq mode '(help word)))
667
668 ;; Is the actual string one of the possible completions?
669 (setq p (and (not (eq mode 'help)) poss))
670 (while (and p
671 (not (string-equal (car p) basestr)))
672 (setq p (cdr p)))
673 (and p (null mode)
674 (PC-temp-minibuffer-message " [Complete, but not unique]"))
675 (if (and p
676 (not (and (null mode)
677 (eq this-command last-command))))
678 t
679
680 ;; If ambiguous, try for a partial completion
681 (let ((improved nil)
682 prefix
683 (pt nil)
684 (skip "\\`"))
685
686 ;; Check if next few letters are the same in all cases
687 (if (and (not (eq mode 'help))
688 (setq prefix (PC-try-completion
689 (PC-chunk-after basestr skip) poss)))
690 (let ((first t) i)
691 ;; Retain capitalization of user input even if
692 ;; completion-ignore-case is set.
693 (if (eq mode 'word)
694 (setq prefix (PC-chop-word prefix basestr)))
695 (goto-char (+ beg (length dirname)))
696 (while (and (progn
697 (setq i 0) ; index into prefix string
698 (while (< i (length prefix))
699 (if (and (< (point) end)
700 (eq (downcase (aref prefix i))
701 (downcase (following-char))))
702 ;; same char (modulo case); no action
703 (forward-char 1)
704 (if (and (< (point) end)
705 (and (looking-at " ")
706 (memq (aref prefix i)
707 PC-delims-list)))
708 ;; replace " " by the actual delimiter
709 (progn
710 (delete-char 1)
711 (insert (substring prefix i (1+ i))))
712 ;; insert a new character
713 (progn
714 (and filename (looking-at "\\*")
715 (progn
716 (delete-char 1)
717 (setq end (1- end))))
718 (setq improved t)
719 (insert (substring prefix i (1+ i)))
720 (setq end (1+ end)))))
721 (setq i (1+ i)))
722 (or pt (setq pt (point)))
723 (looking-at PC-delim-regex))
724 (setq skip (concat skip
725 (regexp-quote prefix)
726 PC-ndelims-regex)
727 prefix (PC-try-completion
728 (PC-chunk-after
729 ;; not basestr, because that does
730 ;; not reflect insertions
731 (buffer-substring
732 (+ beg (length dirname)) end)
733 skip)
734 (mapcar
735 (lambda (x)
736 (when (string-match skip x)
737 (substring x (match-end 0))))
738 poss)))
739 (or (> i 0) (> (length prefix) 0))
740 (or (not (eq mode 'word))
741 (and first (> (length prefix) 0)
742 (setq first nil
743 prefix (substring prefix 0 1))))))
744 (goto-char (if (eq mode 'word) end
745 (or pt beg)))))
746
747 (if (and (eq mode 'word)
748 (not PC-word-failed-flag))
749
750 (if improved
751
752 ;; We changed it... would it be complete without the space?
753 (if (test-completion (buffer-substring 1 (1- end))
754 table pred)
755 (delete-region (1- end) end)))
756
757 (if improved
758
759 ;; We changed it... enough to be complete?
760 (and (eq mode 'exit)
761 (test-completion-ignore-case (field-string) table pred))
762
763 ;; If totally ambiguous, display a list of completions
764 (if (or (eq completion-auto-help t)
765 (and completion-auto-help
766 (eq last-command this-command))
767 (eq mode 'help))
768 (let ((prompt-end (minibuffer-prompt-end)))
769 (with-output-to-temp-buffer "*Completions*"
770 (display-completion-list (sort helpposs 'string-lessp))
771 (setq PC-do-completion-end end
772 PC-goto-end goto-end)
773 (with-current-buffer standard-output
774 ;; Record which part of the buffer we are completing
775 ;; so that choosing a completion from the list
776 ;; knows how much old text to replace.
777 ;; This was briefly nil in the non-dirname case.
778 ;; However, if one calls PC-lisp-complete-symbol
779 ;; on "(ne-f" with point on the hyphen, PC offers
780 ;; all completions starting with "(ne", some of
781 ;; which do not match the "-f" part (maybe it
782 ;; should not, but it does). In such cases,
783 ;; completion gets confused trying to figure out
784 ;; how much to replace, so we tell it explicitly
785 ;; (ie, the number of chars in the buffer before beg).
786 ;;
787 ;; Note that choose-completion-string-functions
788 ;; plays around with point.
789 (setq completion-base-size (if dirname
790 dirlength
791 (- beg prompt-end))))))
792 (PC-temp-minibuffer-message " [Next char not unique]"))
793 nil)))))
794
795 ;; Only one possible completion
796 (t
797 (if (and (equal basestr (car poss))
798 (not (and env-on filename)))
799 (if (null mode)
800 (PC-temp-minibuffer-message " [Sole completion]"))
801 (delete-region beg end)
802 (insert (format "%s"
803 (if filename
804 (substitute-in-file-name (concat dirname (car poss)))
805 (car poss)))))
806 t)))))
807
808 (defun PC-chop-word (new old)
809 (let ((i -1)
810 (j -1))
811 (while (and (setq i (string-match PC-delim-regex old (1+ i)))
812 (setq j (string-match PC-delim-regex new (1+ j)))))
813 (if (and j
814 (or (not PC-word-failed-flag)
815 (setq j (string-match PC-delim-regex new (1+ j)))))
816 (substring new 0 (1+ j))
817 new)))
818
819 (defvar PC-not-minibuffer nil)
820
821 (defun PC-temp-minibuffer-message (message)
822 "A Lisp version of `temp_minibuffer_message' from minibuf.c."
823 (cond (PC-not-minibuffer
824 (message message)
825 (sit-for 2)
826 (message ""))
827 ((fboundp 'temp-minibuffer-message)
828 (temp-minibuffer-message message))
829 (t
830 (let ((point-max (point-max)))
831 (save-excursion
832 (goto-char point-max)
833 (insert message))
834 (let ((inhibit-quit t))
835 (sit-for 2)
836 (delete-region point-max (point-max))
837 (when quit-flag
838 (setq quit-flag nil
839 unread-command-events '(7))))))))
840
841 ;; Does not need to be buffer-local (?) because only used when one
842 ;; PC-l-c-s immediately follows another.
843 (defvar PC-lisp-complete-end nil
844 "Internal variable used by `PC-lisp-complete-symbol'.")
845
846 (defun PC-lisp-complete-symbol ()
847 "Perform completion on Lisp symbol preceding point.
848 That symbol is compared against the symbols that exist
849 and any additional characters determined by what is there
850 are inserted.
851 If the symbol starts just after an open-parenthesis,
852 only symbols with function definitions are considered.
853 Otherwise, all symbols with function definitions, values
854 or properties are considered."
855 (interactive)
856 (let* ((end (point))
857 ;; To complete the word under point, rather than just the portion
858 ;; before point, use this:
859 ;;; (save-excursion
860 ;;; (with-syntax-table lisp-mode-syntax-table
861 ;;; (forward-sexp 1)
862 ;;; (point))))
863 (beg (save-excursion
864 (with-syntax-table lisp-mode-syntax-table
865 (backward-sexp 1)
866 (while (= (char-syntax (following-char)) ?\')
867 (forward-char 1))
868 (point))))
869 (minibuffer-completion-table obarray)
870 (minibuffer-completion-predicate
871 (if (eq (char-after (1- beg)) ?\()
872 'fboundp
873 (function (lambda (sym)
874 (or (boundp sym) (fboundp sym)
875 (symbol-plist sym))))))
876 (PC-not-minibuffer t))
877 ;; http://lists.gnu.org/archive/html/emacs-devel/2007-03/msg01211.html
878 ;;
879 ;; This deals with cases like running PC-l-c-s on "M-: (n-f".
880 ;; The first call to PC-l-c-s expands this to "(ne-f", and moves
881 ;; point to the hyphen [1]. If one calls PC-l-c-s immediately after,
882 ;; then without the last-command check, one is offered all
883 ;; completions of "(ne", which is presumably not what one wants.
884 ;;
885 ;; This is arguably (at least, it seems to be the existing intended
886 ;; behaviour) what one _does_ want if point has been explicitly
887 ;; positioned on the hyphen. Note that if PC-do-completion (qv) binds
888 ;; completion-base-size to nil, then completion does not replace the
889 ;; correct amount of text in such cases.
890 ;;
891 ;; Neither of these problems occur when using PC for filenames in the
892 ;; minibuffer, because in that case PC-do-completion is called without
893 ;; an explicit value for END, and so uses (point-max). This is fine for
894 ;; a filename, because the end of the filename must be at the end of
895 ;; the minibuffer. The same is not true for lisp symbols.
896 ;;
897 ;; [1] An alternate fix would be to not move point to the hyphen
898 ;; in such cases, but that would make the behaviour different from
899 ;; that for filenames. It seems PC moves point to the site of the
900 ;; first difference between the possible completions.
901 ;;
902 ;; Alternatively alternatively, maybe end should be computed in
903 ;; the same way as beg. That would change the behaviour though.
904 (if (equal last-command 'PC-lisp-complete-symbol)
905 (PC-do-completion nil beg PC-lisp-complete-end t)
906 (if PC-lisp-complete-end
907 (move-marker PC-lisp-complete-end end)
908 (setq PC-lisp-complete-end (copy-marker end t)))
909 (PC-do-completion nil beg end t))))
910
911 (defun PC-complete-as-file-name ()
912 "Perform completion on file names preceding point.
913 Environment vars are converted to their values."
914 (interactive)
915 (let* ((end (point))
916 (beg (if (re-search-backward "[^\\][ \t\n\"\`\'][^ \t\n\"\`\']"
917 (point-min) t)
918 (+ (point) 2)
919 (point-min)))
920 (minibuffer-completion-table 'PC-read-file-name-internal)
921 (minibuffer-completion-predicate "")
922 (PC-not-minibuffer t))
923 (goto-char end)
924 (PC-do-completion nil beg end)))
925
926 ;; Use the shell to do globbing.
927 ;; This could now use file-expand-wildcards instead.
928
929 (defun PC-expand-many-files (name)
930 (with-current-buffer (generate-new-buffer " *Glob Output*")
931 (erase-buffer)
932 (when (and (file-name-absolute-p name)
933 (not (file-directory-p default-directory)))
934 ;; If the current working directory doesn't exist `shell-command'
935 ;; signals an error. So if the file names we're looking for don't
936 ;; depend on the working directory, switch to a valid directory first.
937 (setq default-directory "/"))
938 (shell-command (concat "echo " name) t)
939 (goto-char (point-min))
940 ;; CSH-style shells were known to output "No match", whereas
941 ;; SH-style shells tend to simply output `name' when no match is found.
942 (if (looking-at (concat ".*No match\\|\\(^\\| \\)\\("
943 (regexp-quote name)
944 "\\|"
945 (regexp-quote (expand-file-name name))
946 "\\)\\( \\|$\\)"))
947 nil
948 (insert "(\"")
949 (while (search-forward " " nil t)
950 (delete-backward-char 1)
951 (insert "\" \""))
952 (goto-char (point-max))
953 (delete-backward-char 1)
954 (insert "\")")
955 (goto-char (point-min))
956 (let ((files (read (current-buffer))) (p nil))
957 (kill-buffer (current-buffer))
958 (or (equal completion-ignored-extensions PC-ignored-extensions)
959 (setq PC-ignored-regexp
960 (concat "\\("
961 (mapconcat
962 'regexp-quote
963 (setq PC-ignored-extensions
964 completion-ignored-extensions)
965 "\\|")
966 "\\)\\'")))
967 (setq p nil)
968 (while files
969 ;; This whole process of going through to shell, to echo, and
970 ;; finally parsing the output is a hack. It breaks as soon as
971 ;; there are spaces in the file names or when the no-match
972 ;; message changes. To make up for it, we check that what we read
973 ;; indeed exists, so we may miss some files, but we at least won't
974 ;; list non-existent ones.
975 (or (not (file-exists-p (car files)))
976 (string-match PC-ignored-regexp (car files))
977 (setq p (cons (car files) p)))
978 (setq files (cdr files)))
979 p))))
980
981 ;; Facilities for loading C header files. This is independent from the
982 ;; main completion code. See also the variable `PC-include-file-path'
983 ;; at top of this file.
984
985 (defun PC-look-for-include-file ()
986 (if (string-match "[\"<]\\([^\"<>]*\\)[\">]?$" (buffer-file-name))
987 (let ((name (substring (buffer-file-name)
988 (match-beginning 1) (match-end 1)))
989 (punc (aref (buffer-file-name) (match-beginning 0)))
990 (path nil)
991 new-buf)
992 (kill-buffer (current-buffer))
993 (if (equal name "")
994 (with-current-buffer (car (buffer-list))
995 (save-excursion
996 (beginning-of-line)
997 (if (looking-at
998 "[ \t]*#[ \t]*include[ \t]+[<\"]\\(.+\\)[>\"][ \t]*[\n/]")
999 (setq name (buffer-substring (match-beginning 1)
1000 (match-end 1))
1001 punc (char-after (1- (match-beginning 1))))
1002 ;; Suggested by Frank Siebenlist:
1003 (if (or (looking-at
1004 "[ \t]*([ \t]*load[ \t]+\"\\([^\"]+\\)\"")
1005 (looking-at
1006 "[ \t]*([ \t]*load-library[ \t]+\"\\([^\"]+\\)\"")
1007 (looking-at
1008 "[ \t]*([ \t]*require[ \t]+'\\([^\t )]+\\)[\t )]"))
1009 (progn
1010 (setq name (buffer-substring (match-beginning 1)
1011 (match-end 1))
1012 punc ?\<
1013 path load-path)
1014 (if (string-match "\\.elc$" name)
1015 (setq name (substring name 0 -1))
1016 (or (string-match "\\.el$" name)
1017 (setq name (concat name ".el")))))
1018 (error "Not on an #include line"))))))
1019 (or (string-match "\\.[[:alnum:]]+$" name)
1020 (setq name (concat name ".h")))
1021 (if (eq punc ?\<)
1022 (let ((path (or path (PC-include-file-path))))
1023 (while (and path
1024 (not (file-exists-p
1025 (concat (file-name-as-directory (car path))
1026 name))))
1027 (setq path (cdr path)))
1028 (if path
1029 (setq name (concat (file-name-as-directory (car path)) name))
1030 (error "No such include file: <%s>" name)))
1031 (let ((dir (with-current-buffer (car (buffer-list))
1032 default-directory)))
1033 (if (file-exists-p (concat dir name))
1034 (setq name (concat dir name))
1035 (error "No such include file: `%s'" name))))
1036 (setq new-buf (get-file-buffer name))
1037 (if new-buf
1038 ;; no need to verify last-modified time for this!
1039 (set-buffer new-buf)
1040 (set-buffer (create-file-buffer name))
1041 (erase-buffer)
1042 (insert-file-contents name t))
1043 ;; Returning non-nil with the new buffer current
1044 ;; is sufficient to tell find-file to use it.
1045 t)
1046 nil))
1047
1048 (defun PC-include-file-path ()
1049 (or PC-include-file-path
1050 (let ((env (getenv "INCPATH"))
1051 (path nil)
1052 pos)
1053 (or env (error "No include file path specified"))
1054 (while (setq pos (string-match ":[^:]+$" env))
1055 (setq path (cons (substring env (1+ pos)) path)
1056 env (substring env 0 pos)))
1057 path)))
1058
1059 ;; This is adapted from lib-complete.el, by Mike Williams.
1060 (defun PC-include-file-all-completions (file search-path &optional full)
1061 "Return all completions for FILE in any directory on SEARCH-PATH.
1062 If optional third argument FULL is non-nil, returned pathnames should be
1063 absolute rather than relative to some directory on the SEARCH-PATH."
1064 (setq search-path
1065 (mapcar (lambda (dir)
1066 (if dir (file-name-as-directory dir) default-directory))
1067 search-path))
1068 (if (file-name-absolute-p file)
1069 ;; It's an absolute file name, so don't need search-path
1070 (progn
1071 (setq file (expand-file-name file))
1072 (file-name-all-completions
1073 (file-name-nondirectory file) (file-name-directory file)))
1074 (let ((subdir (file-name-directory file))
1075 (ndfile (file-name-nondirectory file))
1076 file-lists)
1077 ;; Append subdirectory part to each element of search-path
1078 (if subdir
1079 (setq search-path
1080 (mapcar (lambda (dir) (concat dir subdir))
1081 search-path)
1082 file ))
1083 ;; Make list of completions in each directory on search-path
1084 (while search-path
1085 (let* ((dir (car search-path))
1086 (subdir (if full dir subdir)))
1087 (if (file-directory-p dir)
1088 (progn
1089 (setq file-lists
1090 (cons
1091 (mapcar (lambda (file) (concat subdir file))
1092 (file-name-all-completions ndfile
1093 (car search-path)))
1094 file-lists))))
1095 (setq search-path (cdr search-path))))
1096 ;; Compress out duplicates while building complete list (slloooow!)
1097 (let ((sorted (sort (apply 'nconc file-lists)
1098 (lambda (x y) (not (string-lessp x y)))))
1099 compressed)
1100 (while sorted
1101 (if (equal (car sorted) (car compressed)) nil
1102 (setq compressed (cons (car sorted) compressed)))
1103 (setq sorted (cdr sorted)))
1104 compressed))))
1105
1106 (defun PC-read-file-name-internal (string dir action)
1107 "Extend `read-file-name-internal' to handle include files.
1108 This is only used by "
1109 (if (string-match "<\\([^\"<>]*\\)>?\\'" string)
1110 (let* ((name (match-string 1 string))
1111 (str2 (substring string (match-beginning 0)))
1112 (completion-table
1113 (mapcar (lambda (x)
1114 (format (if (string-match "/\\'" x) "<%s" "<%s>") x))
1115 (PC-include-file-all-completions
1116 name (PC-include-file-path)))))
1117 (cond
1118 ((not completion-table) nil)
1119 ((eq action 'lambda) (test-completion str2 completion-table nil))
1120 ((eq action nil) (PC-try-completion str2 completion-table nil))
1121 ((eq action t) (all-completions str2 completion-table nil))))
1122 (read-file-name-internal string dir action)))
1123 \f
1124
1125 (provide 'complete)
1126
1127 ;; arch-tag: fc7e2768-ff44-4e22-b579-4d825b968458
1128 ;;; complete.el ends here