(PC-try-completion): New function.
[emacs.git] / lisp / complete.el
bloba5f3eea955de2d447958088b38fbcc22524c4cb4
1 ;;; complete.el --- partial completion mechanism plus other goodies
3 ;; Copyright (C) 1990, 1991, 1992, 1993, 1999, 2000, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
6 ;; Author: Dave Gillespie <daveg@synaptics.com>
7 ;; Keywords: abbrev convenience
8 ;; Special thanks to Hallvard Furuseth for his many ideas and contributions.
10 ;; This file is part of GNU Emacs.
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.
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.
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.
27 ;;; Commentary:
29 ;; Extended completion for the Emacs minibuffer.
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.
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.
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.
50 ;; Usage: M-x partial-completion-mode. During completable minibuffer entry,
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.
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,
61 ;; (setq PC-meta-flag nil)
63 ;; in your .emacs file. To load partial completion automatically, put
65 ;; (partial-completion-mode t)
67 ;; in your .emacs file, too. Things will be faster if you byte-compile
68 ;; this file when you install it.
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.)
78 ;; The regular M-TAB (lisp-complete-symbol) command also supports
79 ;; partial completion in this package.
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.
88 ;;; Code:
90 (defgroup partial-completion nil
91 "Partial Completion of items."
92 :prefix "pc-"
93 :group 'minibuffer
94 :group 'convenience)
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)
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)
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)
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)
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)
137 (defvar PC-default-bindings t
138 "If non-nil, default partial completion key bindings are suppressed.")
140 (defvar PC-env-vars-alist nil
141 "A list of the environment variable names and values.")
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)
152 (define-key completion-map "\t" 'minibuffer-complete)
153 (define-key completion-map " " 'minibuffer-complete-word)
154 (define-key completion-map "?" 'minibuffer-completion-help)
156 (define-key must-match-map "\t" 'minibuffer-complete)
157 (define-key must-match-map " " 'minibuffer-complete-word)
158 (define-key must-match-map "\r" 'minibuffer-complete-and-exit)
159 (define-key must-match-map "\n" 'minibuffer-complete-and-exit)
160 (define-key must-match-map "?" 'minibuffer-completion-help)
162 (define-key global-map [remap lisp-complete-symbol] nil))
163 (PC-default-bindings
164 (define-key read-expression-map "\e\t" 'PC-lisp-complete-symbol)
166 (define-key completion-map "\t" 'PC-complete)
167 (define-key completion-map " " 'PC-complete-word)
168 (define-key completion-map "?" 'PC-completion-help)
170 (define-key completion-map "\e\t" 'PC-complete)
171 (define-key completion-map "\e " 'PC-complete-word)
172 (define-key completion-map "\e\r" 'PC-force-complete-and-exit)
173 (define-key completion-map "\e\n" 'PC-force-complete-and-exit)
174 (define-key completion-map "\e?" 'PC-completion-help)
176 (define-key must-match-map "\t" 'PC-complete)
177 (define-key must-match-map " " 'PC-complete-word)
178 (define-key must-match-map "\r" 'PC-complete-and-exit)
179 (define-key must-match-map "\n" 'PC-complete-and-exit)
180 (define-key must-match-map "?" 'PC-completion-help)
182 (define-key must-match-map "\e\t" 'PC-complete)
183 (define-key must-match-map "\e " 'PC-complete-word)
184 (define-key must-match-map "\e\r" 'PC-complete-and-exit)
185 (define-key must-match-map "\e\n" 'PC-complete-and-exit)
186 (define-key must-match-map "\e?" 'PC-completion-help)
188 (define-key global-map [remap lisp-complete-symbol] 'PC-lisp-complete-symbol)))))
190 ;;;###autoload
191 (define-minor-mode partial-completion-mode
192 "Toggle Partial Completion mode.
193 With prefix ARG, turn Partial Completion mode on if ARG is positive.
195 When Partial Completion mode is enabled, TAB (or M-TAB if `PC-meta-flag' is
196 nil) is enhanced so that if some string is divided into words and each word is
197 delimited by a character in `PC-word-delimiters', partial words are completed
198 as much as possible and `*' characters are treated likewise in file names.
200 For example, M-x p-c-m expands to M-x partial-completion-mode since no other
201 command begins with that sequence of characters, and
202 \\[find-file] f_b.c TAB might complete to foo_bar.c if that file existed and no
203 other file in that directory begins with that sequence of characters.
205 Unless `PC-disable-includes' is non-nil, the `<...>' sequence is interpreted
206 specially in \\[find-file]. For example,
207 \\[find-file] <sys/time.h> RET finds the file `/usr/include/sys/time.h'.
208 See also the variable `PC-include-file-path'.
210 Partial Completion mode extends the meaning of `completion-auto-help' (which
211 see), so that if it is neither nil nor t, Emacs shows the `*Completions*'
212 buffer only on the second attempt to complete. That is, if TAB finds nothing
213 to complete, the first TAB just says \"Next char not unique\" and the
214 second TAB brings up the `*Completions*' buffer."
215 :global t :group 'partial-completion
216 ;; Deal with key bindings...
217 (PC-bindings partial-completion-mode)
218 ;; Deal with include file feature...
219 (cond ((not partial-completion-mode)
220 (remove-hook 'find-file-not-found-functions 'PC-look-for-include-file))
221 ((not PC-disable-includes)
222 (add-hook 'find-file-not-found-functions 'PC-look-for-include-file)))
223 ;; ... with some underhand redefining.
224 (cond ((not partial-completion-mode)
225 (ad-disable-advice 'read-file-name-internal 'around 'PC-include-file)
226 (ad-activate 'read-file-name-internal))
227 ((not PC-disable-includes)
228 (ad-enable-advice 'read-file-name-internal 'around 'PC-include-file)
229 (ad-activate 'read-file-name-internal)))
230 ;; Adjust the completion selection in *Completion* buffers to the way
231 ;; we work. The default minibuffer completion code only completes the
232 ;; text before point and leaves the text after point alone (new in
233 ;; Emacs-22). In contrast we use the whole text and we even sometimes
234 ;; move point to a place before EOB, to indicate the first position where
235 ;; there's a difference, so when the user uses choose-completion, we have
236 ;; to trick choose-completion into replacing the whole minibuffer text
237 ;; rather than only the text before point. --Stef
238 (funcall
239 (if partial-completion-mode 'add-hook 'remove-hook)
240 'choose-completion-string-functions
241 (lambda (choice buffer mini-p base-size)
242 (if mini-p (goto-char (point-max)))
243 nil))
244 ;; Build the env-completion and mapping table.
245 (when (and partial-completion-mode (null PC-env-vars-alist))
246 (setq PC-env-vars-alist
247 (mapcar (lambda (string)
248 (let ((d (string-match "=" string)))
249 (cons (concat "$" (substring string 0 d))
250 (and d (substring string (1+ d))))))
251 process-environment))))
254 (defun PC-complete ()
255 "Like minibuffer-complete, but allows \"b--di\"-style abbreviations.
256 For example, \"M-x b--di\" would match `byte-recompile-directory', or any
257 name which consists of three or more words, the first beginning with \"b\"
258 and the third beginning with \"di\".
260 The pattern \"b--d\" is ambiguous for `byte-recompile-directory' and
261 `beginning-of-defun', so this would produce a list of completions
262 just like when normal Emacs completions are ambiguous.
264 Word-delimiters for the purposes of Partial Completion are \"-\", \"_\",
265 \".\", and SPC."
266 (interactive)
267 (if (PC-was-meta-key)
268 (minibuffer-complete)
269 ;; If the previous command was not this one,
270 ;; never scroll, always retry completion.
271 (or (eq last-command this-command)
272 (setq minibuffer-scroll-window nil))
273 (let ((window minibuffer-scroll-window))
274 ;; If there's a fresh completion window with a live buffer,
275 ;; and this command is repeated, scroll that window.
276 (if (and window (window-buffer window)
277 (buffer-name (window-buffer window)))
278 (with-current-buffer (window-buffer window)
279 (if (pos-visible-in-window-p (point-max) window)
280 (set-window-start window (point-min) nil)
281 (scroll-other-window)))
282 (PC-do-completion nil)))))
285 (defun PC-complete-word ()
286 "Like `minibuffer-complete-word', but allows \"b--di\"-style abbreviations.
287 See `PC-complete' for details.
288 This can be bound to other keys, like `-' and `.', if you wish."
289 (interactive)
290 (if (eq (PC-was-meta-key) PC-meta-flag)
291 (if (eq last-command-char ? )
292 (minibuffer-complete-word)
293 (self-insert-command 1))
294 (self-insert-command 1)
295 (if (eobp)
296 (PC-do-completion 'word))))
299 (defun PC-complete-space ()
300 "Like `minibuffer-complete-word', but allows \"b--di\"-style abbreviations.
301 See `PC-complete' for details.
302 This is suitable for binding to other keys which should act just like SPC."
303 (interactive)
304 (if (eq (PC-was-meta-key) PC-meta-flag)
305 (minibuffer-complete-word)
306 (insert " ")
307 (if (eobp)
308 (PC-do-completion 'word))))
311 (defun PC-complete-and-exit ()
312 "Like `minibuffer-complete-and-exit', but allows \"b--di\"-style abbreviations.
313 See `PC-complete' for details."
314 (interactive)
315 (if (eq (PC-was-meta-key) PC-meta-flag)
316 (minibuffer-complete-and-exit)
317 (PC-do-complete-and-exit)))
319 (defun PC-force-complete-and-exit ()
320 "Like `minibuffer-complete-and-exit', but allows \"b--di\"-style abbreviations.
321 See `PC-complete' for details."
322 (interactive)
323 (let ((minibuffer-completion-confirm nil))
324 (PC-do-complete-and-exit)))
326 (defun PC-do-complete-and-exit ()
327 (if (= (point-max) (minibuffer-prompt-end)) ; Duplicate the "bug" that Info-menu relies on...
328 (exit-minibuffer)
329 (let ((flag (PC-do-completion 'exit)))
330 (and flag
331 (if (or (eq flag 'complete)
332 (not minibuffer-completion-confirm))
333 (exit-minibuffer)
334 (PC-temp-minibuffer-message " [Confirm]"))))))
337 (defun PC-completion-help ()
338 "Like `minibuffer-completion-help', but allows \"b--di\"-style abbreviations.
339 See `PC-complete' for details."
340 (interactive)
341 (if (eq (PC-was-meta-key) PC-meta-flag)
342 (minibuffer-completion-help)
343 (PC-do-completion 'help)))
345 (defun PC-was-meta-key ()
346 (or (/= (length (this-command-keys)) 1)
347 (let ((key (aref (this-command-keys) 0)))
348 (if (integerp key)
349 (>= key 128)
350 (not (null (memq 'meta (event-modifiers key))))))))
353 (defvar PC-ignored-extensions 'empty-cache)
354 (defvar PC-delims 'empty-cache)
355 (defvar PC-ignored-regexp nil)
356 (defvar PC-word-failed-flag nil)
357 (defvar PC-delim-regex nil)
358 (defvar PC-ndelims-regex nil)
359 (defvar PC-delims-list nil)
361 (defvar PC-completion-as-file-name-predicate
362 (lambda () minibuffer-completing-file-name)
363 "A function testing whether a minibuffer completion now will work filename-style.
364 The function takes no arguments, and typically looks at the value
365 of `minibuffer-completion-table' and the minibuffer contents.")
367 ;; Returns the sequence of non-delimiter characters that follow regexp in string.
368 (defun PC-chunk-after (string regexp)
369 (if (not (string-match regexp string))
370 (let ((message (format "String %s didn't match regexp %s" string regexp)))
371 (message message)
372 (error message)))
373 (let ((result (substring string (match-end 0))))
374 ;; result may contain multiple chunks
375 (if (string-match PC-delim-regex result)
376 (setq result (substring result 0 (match-beginning 0))))
377 result))
379 (defun test-completion-ignore-case (str table pred)
380 "Like `test-completion', but ignores case when possible."
381 ;; Binding completion-ignore-case to nil ensures, for compatibility with
382 ;; standard completion, that the return value is exactly one of the
383 ;; possibilities. Do this binding only if pred is nil, out of paranoia;
384 ;; perhaps it is safe even if pred is non-nil.
385 (if pred
386 (test-completion str table pred)
387 (let ((completion-ignore-case nil))
388 (test-completion str table pred))))
390 ;; The following function is an attempt to work around two problems:
392 ;; (1) When complete.el was written, (try-completion "" '(("") (""))) used to
393 ;; return the value "". With a change from 2002-07-07 it returns t which caused
394 ;; `PC-lisp-complete-symbol' to fail with a "Wrong type argument: sequencep, t"
395 ;; error. `PC-try-completion' returns STRING in this case.
397 ;; (2) (try-completion "" '((""))) returned t before the above-mentioned change.
398 ;; Since `PC-chop-word' operates on the return value of `try-completion' this
399 ;; case might have provoked a similar error as in (1). `PC-try-completion'
400 ;; returns "" instead. I don't know whether this is a real problem though.
402 ;; Since `PC-try-completion' is not a guaranteed to fix these bugs reliably, you
403 ;; should try to look at the following discussions when you encounter problems:
404 ;; - emacs-pretest-bug ("Partial Completion" starting 2007-02-23),
405 ;; - emacs-devel ("[address-of-OP: Partial completion]" starting 2007-02-24),
406 ;; - emacs-devel ("[address-of-OP: EVAL and mouse selection in *Completions*]"
407 ;; starting 2007-03-05).
408 (defun PC-try-completion (string alist &optional predicate)
409 "Like `try-completion' but return STRING instead of t."
410 (let ((result (try-completion string alist predicate)))
411 (if (eq result t) string result)))
413 (defun PC-do-completion (&optional mode beg end)
414 (or beg (setq beg (minibuffer-prompt-end)))
415 (or end (setq end (point-max)))
416 (let* ((table minibuffer-completion-table)
417 (pred minibuffer-completion-predicate)
418 (filename (funcall PC-completion-as-file-name-predicate))
419 (dirname nil) ; non-nil only if a filename is being completed
420 (dirlength 0)
421 (str (buffer-substring beg end))
422 (incname (and filename (string-match "<\\([^\"<>]*\\)>?$" str)))
423 (ambig nil)
424 basestr origstr
425 env-on
426 regex
427 p offset
428 (poss nil)
429 helpposs
430 (case-fold-search completion-ignore-case))
432 ;; Check if buffer contents can already be considered complete
433 (if (and (eq mode 'exit)
434 (test-completion str table pred))
435 (progn
436 ;; If completion-ignore-case is non-nil, insert the
437 ;; completion string since that may have a different case.
438 (when completion-ignore-case
439 (setq str (try-completion str table pred))
440 (delete-region beg end)
441 (insert str))
442 'complete)
444 ;; Do substitutions in directory names
445 (and filename
446 (setq basestr (or (file-name-directory str) ""))
447 (setq dirlength (length basestr))
448 ;; Do substitutions in directory names
449 (setq p (substitute-in-file-name basestr))
450 (not (string-equal basestr p))
451 (setq str (concat p (file-name-nondirectory str)))
452 (progn
453 (delete-region beg end)
454 (insert str)
455 (setq end (+ beg (length str)))))
457 ;; Prepare various delimiter strings
458 (or (equal PC-word-delimiters PC-delims)
459 (setq PC-delims PC-word-delimiters
460 PC-delim-regex (concat "[" PC-delims "]")
461 PC-ndelims-regex (concat "[^" PC-delims "]*")
462 PC-delims-list (append PC-delims nil)))
464 ;; Add wildcards if necessary
465 (and filename
466 (let ((dir (file-name-directory str))
467 (file (file-name-nondirectory str))
468 ;; The base dir for file-completion is passed in `predicate'.
469 (default-directory (expand-file-name pred)))
470 (while (and (stringp dir) (not (file-directory-p dir)))
471 (setq dir (directory-file-name dir))
472 (setq file (concat (replace-regexp-in-string
473 PC-delim-regex "*\\&"
474 (file-name-nondirectory dir))
475 "*/" file))
476 (setq dir (file-name-directory dir)))
477 (setq origstr str str (concat dir file))))
479 ;; Look for wildcard expansions in directory name
480 (and filename
481 (string-match "\\*.*/" str)
482 (let ((pat str)
483 ;; The base dir for file-completion is passed in `predicate'.
484 (default-directory (expand-file-name pred))
485 files)
486 (setq p (1+ (string-match "/[^/]*\\'" pat)))
487 (while (setq p (string-match PC-delim-regex pat p))
488 (setq pat (concat (substring pat 0 p)
490 (substring pat p))
491 p (+ p 2)))
492 (setq files (PC-expand-many-files (concat pat "*")))
493 (if files
494 (let ((dir (file-name-directory (car files)))
495 (p files))
496 (while (and (setq p (cdr p))
497 (equal dir (file-name-directory (car p)))))
498 (if p
499 (setq filename nil table nil pred nil
500 ambig t)
501 (delete-region beg end)
502 (setq str (concat dir (file-name-nondirectory str)))
503 (insert str)
504 (setq end (+ beg (length str)))))
505 (if origstr
506 ;; If the wildcards were introduced by us, it's possible
507 ;; that read-file-name-internal (especially our
508 ;; PC-include-file advice) can still find matches for the
509 ;; original string even if we couldn't, so remove the
510 ;; added wildcards.
511 (setq str origstr)
512 (setq filename nil table nil pred nil)))))
514 ;; Strip directory name if appropriate
515 (if filename
516 (if incname
517 (setq basestr (substring str incname)
518 dirname (substring str 0 incname))
519 (setq basestr (file-name-nondirectory str)
520 dirname (file-name-directory str))
521 ;; Make sure str is consistent with its directory and basename
522 ;; parts. This is important on DOZe'NT systems when str only
523 ;; includes a drive letter, like in "d:".
524 (setq str (concat dirname basestr)))
525 (setq basestr str))
527 ;; Convert search pattern to a standard regular expression
528 (setq regex (regexp-quote basestr)
529 offset (if (and (> (length regex) 0)
530 (not (eq (aref basestr 0) ?\*))
531 (or (eq PC-first-char t)
532 (and PC-first-char filename))) 1 0)
533 p offset)
534 (while (setq p (string-match PC-delim-regex regex p))
535 (if (eq (aref regex p) ? )
536 (setq regex (concat (substring regex 0 p)
537 PC-ndelims-regex
538 PC-delim-regex
539 (substring regex (1+ p)))
540 p (+ p (length PC-ndelims-regex) (length PC-delim-regex)))
541 (let ((bump (if (memq (aref regex p)
542 '(?$ ?^ ?\. ?* ?+ ?? ?[ ?] ?\\))
543 -1 0)))
544 (setq regex (concat (substring regex 0 (+ p bump))
545 PC-ndelims-regex
546 (substring regex (+ p bump)))
547 p (+ p (length PC-ndelims-regex) 1)))))
548 (setq p 0)
549 (if filename
550 (while (setq p (string-match "\\\\\\*" regex p))
551 (setq regex (concat (substring regex 0 p)
552 "[^/]*"
553 (substring regex (+ p 2))))))
554 ;;(setq the-regex regex)
555 (setq regex (concat "\\`" regex))
557 (and (> (length basestr) 0)
558 (= (aref basestr 0) ?$)
559 (setq env-on t
560 table PC-env-vars-alist
561 pred nil))
563 ;; Find an initial list of possible completions
564 (if (not (setq p (string-match (concat PC-delim-regex
565 (if filename "\\|\\*" ""))
567 (+ (length dirname) offset))))
569 ;; Minibuffer contains no hyphens -- simple case!
570 (setq poss (all-completions (if env-on
571 basestr str)
572 table
573 pred))
575 ;; Use all-completions to do an initial cull. This is a big win,
576 ;; since all-completions is written in C!
577 (let ((compl (all-completions (if env-on
578 (file-name-nondirectory (substring str 0 p))
579 (substring str 0 p))
580 table
581 pred)))
582 (setq p compl)
583 (while p
584 (and (string-match regex (car p))
585 (progn
586 (set-text-properties 0 (length (car p)) '() (car p))
587 (setq poss (cons (car p) poss))))
588 (setq p (cdr p)))))
590 ;; If table had duplicates, they can be here.
591 (delete-dups poss)
593 ;; Handle completion-ignored-extensions
594 (and filename
595 (not (eq mode 'help))
596 (let ((p2 poss))
598 ;; Build a regular expression representing the extensions list
599 (or (equal completion-ignored-extensions PC-ignored-extensions)
600 (setq PC-ignored-regexp
601 (concat "\\("
602 (mapconcat
603 'regexp-quote
604 (setq PC-ignored-extensions
605 completion-ignored-extensions)
606 "\\|")
607 "\\)\\'")))
609 ;; Check if there are any without an ignored extension.
610 ;; Also ignore `.' and `..'.
611 (setq p nil)
612 (while p2
613 (or (string-match PC-ignored-regexp (car p2))
614 (string-match "\\(\\`\\|/\\)[.][.]?/?\\'" (car p2))
615 (setq p (cons (car p2) p)))
616 (setq p2 (cdr p2)))
618 ;; If there are "good" names, use them
619 (and p (setq poss p))))
621 ;; Now we have a list of possible completions
622 (cond
624 ;; No valid completions found
625 ((null poss)
626 (if (and (eq mode 'word)
627 (not PC-word-failed-flag))
628 (let ((PC-word-failed-flag t))
629 (delete-backward-char 1)
630 (PC-do-completion 'word))
631 (beep)
632 (PC-temp-minibuffer-message (if ambig
633 " [Ambiguous dir name]"
634 (if (eq mode 'help)
635 " [No completions]"
636 " [No match]")))
637 nil))
639 ;; More than one valid completion found
640 ((or (cdr (setq helpposs poss))
641 (memq mode '(help word)))
643 ;; Is the actual string one of the possible completions?
644 (setq p (and (not (eq mode 'help)) poss))
645 (while (and p
646 (not (string-equal (car p) basestr)))
647 (setq p (cdr p)))
648 (and p (null mode)
649 (PC-temp-minibuffer-message " [Complete, but not unique]"))
650 (if (and p
651 (not (and (null mode)
652 (eq this-command last-command))))
655 ;; If ambiguous, try for a partial completion
656 (let ((improved nil)
657 prefix
658 (pt nil)
659 (skip "\\`"))
661 ;; Check if next few letters are the same in all cases
662 (if (and (not (eq mode 'help))
663 (setq prefix (PC-try-completion
664 (PC-chunk-after basestr skip) poss)))
665 (let ((first t) i)
666 ;; Retain capitalization of user input even if
667 ;; completion-ignore-case is set.
668 (if (eq mode 'word)
669 (setq prefix (PC-chop-word prefix basestr)))
670 (goto-char (+ beg (length dirname)))
671 (while (and (progn
672 (setq i 0) ; index into prefix string
673 (while (< i (length prefix))
674 (if (and (< (point) end)
675 (eq (downcase (aref prefix i))
676 (downcase (following-char))))
677 ;; same char (modulo case); no action
678 (forward-char 1)
679 (if (and (< (point) end)
680 (and (looking-at " ")
681 (memq (aref prefix i)
682 PC-delims-list)))
683 ;; replace " " by the actual delimiter
684 (progn
685 (delete-char 1)
686 (insert (substring prefix i (1+ i))))
687 ;; insert a new character
688 (progn
689 (and filename (looking-at "\\*")
690 (progn
691 (delete-char 1)
692 (setq end (1- end))))
693 (setq improved t)
694 (insert (substring prefix i (1+ i)))
695 (setq end (1+ end)))))
696 (setq i (1+ i)))
697 (or pt (setq pt (point)))
698 (looking-at PC-delim-regex))
699 (setq skip (concat skip
700 (regexp-quote prefix)
701 PC-ndelims-regex)
702 prefix (PC-try-completion
703 (PC-chunk-after
704 ;; not basestr, because that does
705 ;; not reflect insertions
706 (buffer-substring
707 (+ beg (length dirname)) end)
708 skip)
709 (mapcar
710 (lambda (x)
711 (when (string-match skip x)
712 (substring x (match-end 0))))
713 poss)))
714 (or (> i 0) (> (length prefix) 0))
715 (or (not (eq mode 'word))
716 (and first (> (length prefix) 0)
717 (setq first nil
718 prefix (substring prefix 0 1))))))
719 (goto-char (if (eq mode 'word) end
720 (or pt beg)))))
722 (if (and (eq mode 'word)
723 (not PC-word-failed-flag))
725 (if improved
727 ;; We changed it... would it be complete without the space?
728 (if (test-completion (buffer-substring 1 (1- end))
729 table pred)
730 (delete-region (1- end) end)))
732 (if improved
734 ;; We changed it... enough to be complete?
735 (and (eq mode 'exit)
736 (test-completion-ignore-case (field-string) table pred))
738 ;; If totally ambiguous, display a list of completions
739 (if (or (eq completion-auto-help t)
740 (and completion-auto-help
741 (eq last-command this-command))
742 (eq mode 'help))
743 (with-output-to-temp-buffer "*Completions*"
744 (display-completion-list (sort helpposs 'string-lessp))
745 (with-current-buffer standard-output
746 ;; Record which part of the buffer we are completing
747 ;; so that choosing a completion from the list
748 ;; knows how much old text to replace.
749 (setq completion-base-size dirlength)))
750 (PC-temp-minibuffer-message " [Next char not unique]"))
751 nil)))))
753 ;; Only one possible completion
755 (if (and (equal basestr (car poss))
756 (not (and env-on filename)))
757 (if (null mode)
758 (PC-temp-minibuffer-message " [Sole completion]"))
759 (delete-region beg end)
760 (insert (format "%s"
761 (if filename
762 (substitute-in-file-name (concat dirname (car poss)))
763 (car poss)))))
764 t)))))
766 (defun PC-chop-word (new old)
767 (let ((i -1)
768 (j -1))
769 (while (and (setq i (string-match PC-delim-regex old (1+ i)))
770 (setq j (string-match PC-delim-regex new (1+ j)))))
771 (if (and j
772 (or (not PC-word-failed-flag)
773 (setq j (string-match PC-delim-regex new (1+ j)))))
774 (substring new 0 (1+ j))
775 new)))
777 (defvar PC-not-minibuffer nil)
779 (defun PC-temp-minibuffer-message (message)
780 "A Lisp version of `temp_minibuffer_message' from minibuf.c."
781 (cond (PC-not-minibuffer
782 (message message)
783 (sit-for 2)
784 (message ""))
785 ((fboundp 'temp-minibuffer-message)
786 (temp-minibuffer-message message))
788 (let ((point-max (point-max)))
789 (save-excursion
790 (goto-char point-max)
791 (insert message))
792 (let ((inhibit-quit t))
793 (sit-for 2)
794 (delete-region point-max (point-max))
795 (when quit-flag
796 (setq quit-flag nil
797 unread-command-events '(7))))))))
800 (defun PC-lisp-complete-symbol ()
801 "Perform completion on Lisp symbol preceding point.
802 That symbol is compared against the symbols that exist
803 and any additional characters determined by what is there
804 are inserted.
805 If the symbol starts just after an open-parenthesis,
806 only symbols with function definitions are considered.
807 Otherwise, all symbols with function definitions, values
808 or properties are considered."
809 (interactive)
810 (let* ((end (point))
811 (beg (save-excursion
812 (with-syntax-table lisp-mode-syntax-table
813 (backward-sexp 1)
814 (while (= (char-syntax (following-char)) ?\')
815 (forward-char 1))
816 (point))))
817 (minibuffer-completion-table obarray)
818 (minibuffer-completion-predicate
819 (if (eq (char-after (1- beg)) ?\()
820 'fboundp
821 (function (lambda (sym)
822 (or (boundp sym) (fboundp sym)
823 (symbol-plist sym))))))
824 (PC-not-minibuffer t))
825 (PC-do-completion nil beg end)))
827 (defun PC-complete-as-file-name ()
828 "Perform completion on file names preceding point.
829 Environment vars are converted to their values."
830 (interactive)
831 (let* ((end (point))
832 (beg (if (re-search-backward "[^\\][ \t\n\"\`\'][^ \t\n\"\`\']"
833 (point-min) t)
834 (+ (point) 2)
835 (point-min)))
836 (minibuffer-completion-table 'read-file-name-internal)
837 (minibuffer-completion-predicate "")
838 (PC-not-minibuffer t))
839 (goto-char end)
840 (PC-do-completion nil beg end)))
842 ;; Use the shell to do globbing.
843 ;; This could now use file-expand-wildcards instead.
845 (defun PC-expand-many-files (name)
846 (with-current-buffer (generate-new-buffer " *Glob Output*")
847 (erase-buffer)
848 (when (and (file-name-absolute-p name)
849 (not (file-directory-p default-directory)))
850 ;; If the current working directory doesn't exist `shell-command'
851 ;; signals an error. So if the file names we're looking for don't
852 ;; depend on the working directory, switch to a valid directory first.
853 (setq default-directory "/"))
854 (shell-command (concat "echo " name) t)
855 (goto-char (point-min))
856 ;; CSH-style shells were known to output "No match", whereas
857 ;; SH-style shells tend to simply output `name' when no match is found.
858 (if (looking-at (concat ".*No match\\|\\(^\\| \\)\\("
859 (regexp-quote name)
860 "\\|"
861 (regexp-quote (expand-file-name name))
862 "\\)\\( \\|$\\)"))
864 (insert "(\"")
865 (while (search-forward " " nil t)
866 (delete-backward-char 1)
867 (insert "\" \""))
868 (goto-char (point-max))
869 (delete-backward-char 1)
870 (insert "\")")
871 (goto-char (point-min))
872 (let ((files (read (current-buffer))) (p nil))
873 (kill-buffer (current-buffer))
874 (or (equal completion-ignored-extensions PC-ignored-extensions)
875 (setq PC-ignored-regexp
876 (concat "\\("
877 (mapconcat
878 'regexp-quote
879 (setq PC-ignored-extensions
880 completion-ignored-extensions)
881 "\\|")
882 "\\)\\'")))
883 (setq p nil)
884 (while files
885 ;; This whole process of going through to shell, to echo, and
886 ;; finally parsing the output is a hack. It breaks as soon as
887 ;; there are spaces in the file names or when the no-match
888 ;; message changes. To make up for it, we check that what we read
889 ;; indeed exists, so we may miss some files, but we at least won't
890 ;; list non-existent ones.
891 (or (not (file-exists-p (car files)))
892 (string-match PC-ignored-regexp (car files))
893 (setq p (cons (car files) p)))
894 (setq files (cdr files)))
895 p))))
897 ;; Facilities for loading C header files. This is independent from the
898 ;; main completion code. See also the variable `PC-include-file-path'
899 ;; at top of this file.
901 (defun PC-look-for-include-file ()
902 (if (string-match "[\"<]\\([^\"<>]*\\)[\">]?$" (buffer-file-name))
903 (let ((name (substring (buffer-file-name)
904 (match-beginning 1) (match-end 1)))
905 (punc (aref (buffer-file-name) (match-beginning 0)))
906 (path nil)
907 new-buf)
908 (kill-buffer (current-buffer))
909 (if (equal name "")
910 (with-current-buffer (car (buffer-list))
911 (save-excursion
912 (beginning-of-line)
913 (if (looking-at
914 "[ \t]*#[ \t]*include[ \t]+[<\"]\\(.+\\)[>\"][ \t]*[\n/]")
915 (setq name (buffer-substring (match-beginning 1)
916 (match-end 1))
917 punc (char-after (1- (match-beginning 1))))
918 ;; Suggested by Frank Siebenlist:
919 (if (or (looking-at
920 "[ \t]*([ \t]*load[ \t]+\"\\([^\"]+\\)\"")
921 (looking-at
922 "[ \t]*([ \t]*load-library[ \t]+\"\\([^\"]+\\)\"")
923 (looking-at
924 "[ \t]*([ \t]*require[ \t]+'\\([^\t )]+\\)[\t )]"))
925 (progn
926 (setq name (buffer-substring (match-beginning 1)
927 (match-end 1))
928 punc ?\<
929 path load-path)
930 (if (string-match "\\.elc$" name)
931 (setq name (substring name 0 -1))
932 (or (string-match "\\.el$" name)
933 (setq name (concat name ".el")))))
934 (error "Not on an #include line"))))))
935 (or (string-match "\\.[[:alnum:]]+$" name)
936 (setq name (concat name ".h")))
937 (if (eq punc ?\<)
938 (let ((path (or path (PC-include-file-path))))
939 (while (and path
940 (not (file-exists-p
941 (concat (file-name-as-directory (car path))
942 name))))
943 (setq path (cdr path)))
944 (if path
945 (setq name (concat (file-name-as-directory (car path)) name))
946 (error "No such include file: <%s>" name)))
947 (let ((dir (with-current-buffer (car (buffer-list))
948 default-directory)))
949 (if (file-exists-p (concat dir name))
950 (setq name (concat dir name))
951 (error "No such include file: `%s'" name))))
952 (setq new-buf (get-file-buffer name))
953 (if new-buf
954 ;; no need to verify last-modified time for this!
955 (set-buffer new-buf)
956 (set-buffer (create-file-buffer name))
957 (erase-buffer)
958 (insert-file-contents name t))
959 ;; Returning non-nil with the new buffer current
960 ;; is sufficient to tell find-file to use it.
962 nil))
964 (defun PC-include-file-path ()
965 (or PC-include-file-path
966 (let ((env (getenv "INCPATH"))
967 (path nil)
968 pos)
969 (or env (error "No include file path specified"))
970 (while (setq pos (string-match ":[^:]+$" env))
971 (setq path (cons (substring env (1+ pos)) path)
972 env (substring env 0 pos)))
973 path)))
975 ;; This is adapted from lib-complete.el, by Mike Williams.
976 (defun PC-include-file-all-completions (file search-path &optional full)
977 "Return all completions for FILE in any directory on SEARCH-PATH.
978 If optional third argument FULL is non-nil, returned pathnames should be
979 absolute rather than relative to some directory on the SEARCH-PATH."
980 (setq search-path
981 (mapcar (lambda (dir)
982 (if dir (file-name-as-directory dir) default-directory))
983 search-path))
984 (if (file-name-absolute-p file)
985 ;; It's an absolute file name, so don't need search-path
986 (progn
987 (setq file (expand-file-name file))
988 (file-name-all-completions
989 (file-name-nondirectory file) (file-name-directory file)))
990 (let ((subdir (file-name-directory file))
991 (ndfile (file-name-nondirectory file))
992 file-lists)
993 ;; Append subdirectory part to each element of search-path
994 (if subdir
995 (setq search-path
996 (mapcar (lambda (dir) (concat dir subdir))
997 search-path)
998 file ))
999 ;; Make list of completions in each directory on search-path
1000 (while search-path
1001 (let* ((dir (car search-path))
1002 (subdir (if full dir subdir)))
1003 (if (file-directory-p dir)
1004 (progn
1005 (setq file-lists
1006 (cons
1007 (mapcar (lambda (file) (concat subdir file))
1008 (file-name-all-completions ndfile
1009 (car search-path)))
1010 file-lists))))
1011 (setq search-path (cdr search-path))))
1012 ;; Compress out duplicates while building complete list (slloooow!)
1013 (let ((sorted (sort (apply 'nconc file-lists)
1014 (lambda (x y) (not (string-lessp x y)))))
1015 compressed)
1016 (while sorted
1017 (if (equal (car sorted) (car compressed)) nil
1018 (setq compressed (cons (car sorted) compressed)))
1019 (setq sorted (cdr sorted)))
1020 compressed))))
1022 (defadvice read-file-name-internal (around PC-include-file disable)
1023 (if (string-match "<\\([^\"<>]*\\)>?\\'" (ad-get-arg 0))
1024 (let* ((string (ad-get-arg 0))
1025 (action (ad-get-arg 2))
1026 (name (substring string (match-beginning 1) (match-end 1)))
1027 (str2 (substring string (match-beginning 0)))
1028 (completion-table
1029 (mapcar (lambda (x) (format "<%s>" x))
1030 (PC-include-file-all-completions
1031 name (PC-include-file-path)))))
1032 (setq ad-return-value
1033 (cond
1034 ((not completion-table) nil)
1035 ((eq action 'lambda) (test-completion str2 completion-table nil))
1036 ((eq action nil) (PC-try-completion str2 completion-table nil))
1037 ((eq action t) (all-completions str2 completion-table nil)))))
1038 ad-do-it))
1041 (provide 'complete)
1043 ;; arch-tag: fc7e2768-ff44-4e22-b579-4d825b968458
1044 ;;; complete.el ends here