* lisp/pcomplete.el (pcomplete-completions-at-point): Return nil if there
[bpt/emacs.git] / lisp / pcomplete.el
1 ;;; pcomplete.el --- programmable completion
2
3 ;; Copyright (C) 1999-2011 Free Software Foundation, Inc.
4
5 ;; Author: John Wiegley <johnw@gnu.org>
6 ;; Keywords: processes abbrev
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24
25 ;; This module provides a programmable completion facility using
26 ;; "completion functions". Each completion function is responsible
27 ;; for producing a list of possible completions relevant to the current
28 ;; argument position.
29 ;;
30 ;; To use pcomplete with shell-mode, for example, you will need the
31 ;; following in your .emacs file:
32 ;;
33 ;; (add-hook 'shell-mode-hook 'pcomplete-shell-setup)
34 ;;
35 ;; Most of the code below simply provides support mechanisms for
36 ;; writing completion functions. Completion functions themselves are
37 ;; very easy to write. They have few requirements beyond those of
38 ;; regular Lisp functions.
39 ;;
40 ;; Consider the following example, which will complete against
41 ;; filenames for the first two arguments, and directories for all
42 ;; remaining arguments:
43 ;;
44 ;; (defun pcomplete/my-command ()
45 ;; (pcomplete-here (pcomplete-entries))
46 ;; (pcomplete-here (pcomplete-entries))
47 ;; (while (pcomplete-here (pcomplete-dirs))))
48 ;;
49 ;; Here are the requirements for completion functions:
50 ;;
51 ;; @ They must be called "pcomplete/MAJOR-MODE/NAME", or
52 ;; "pcomplete/NAME". This is how they are looked up, using the NAME
53 ;; specified in the command argument (the argument in first
54 ;; position).
55 ;;
56 ;; @ They must be callable with no arguments.
57 ;;
58 ;; @ Their return value is ignored. If they actually return normally,
59 ;; it means no completions were available.
60 ;;
61 ;; @ In order to provide completions, they must throw the tag
62 ;; `pcomplete-completions'. The value must be a completion table
63 ;; (i.e. a table that can be passed to try-completion and friends)
64 ;; for the final argument.
65 ;;
66 ;; @ To simplify completion function logic, the tag `pcompleted' may
67 ;; be thrown with a value of nil in order to abort the function. It
68 ;; means that there were no completions available.
69 ;;
70 ;; When a completion function is called, the variable `pcomplete-args'
71 ;; is in scope, and contains all of the arguments specified on the
72 ;; command line. The variable `pcomplete-last' is the index of the
73 ;; last argument in that list.
74 ;;
75 ;; The variable `pcomplete-index' is used by the completion code to
76 ;; know which argument the completion function is currently examining.
77 ;; It always begins at 1, meaning the first argument after the command
78 ;; name.
79 ;;
80 ;; To facilitate writing completion logic, a special macro,
81 ;; `pcomplete-here', has been provided which does several things:
82 ;;
83 ;; 1. It will throw `pcompleted' (with a value of nil) whenever
84 ;; `pcomplete-index' exceeds `pcomplete-last'.
85 ;;
86 ;; 2. It will increment `pcomplete-index' if the final argument has
87 ;; not been reached yet.
88 ;;
89 ;; 3. It will evaluate the form passed to it, and throw the result
90 ;; using the `pcomplete-completions' tag, if it is called when
91 ;; `pcomplete-index' is pointing to the final argument.
92 ;;
93 ;; Sometimes a completion function will want to vary the possible
94 ;; completions for an argument based on the previous one. To
95 ;; facilitate tests like this, the function `pcomplete-test' and
96 ;; `pcomplete-match' are provided. Called with one argument, they
97 ;; test the value of the previous command argument. Otherwise, a
98 ;; relative index may be given as an optional second argument, where 0
99 ;; refers to the current argument, 1 the previous, 2 the one before
100 ;; that, etc. The symbols `first' and `last' specify absolute
101 ;; offsets.
102 ;;
103 ;; Here is an example which will only complete against directories for
104 ;; the second argument if the first argument is also a directory:
105 ;;
106 ;; (defun pcomplete/example ()
107 ;; (pcomplete-here (pcomplete-entries))
108 ;; (if (pcomplete-test 'file-directory-p)
109 ;; (pcomplete-here (pcomplete-dirs))
110 ;; (pcomplete-here (pcomplete-entries))))
111 ;;
112 ;; For generating completion lists based on directory contents, see
113 ;; the functions `pcomplete-entries', `pcomplete-dirs',
114 ;; `pcomplete-executables' and `pcomplete-all-entries'.
115 ;;
116 ;; Consult the documentation for `pcomplete-here' for information
117 ;; about its other arguments.
118
119 ;;; Code:
120
121 (eval-when-compile (require 'cl))
122
123 (defgroup pcomplete nil
124 "Programmable completion."
125 :version "21.1"
126 :group 'processes)
127
128 ;;; User Variables:
129
130 (defcustom pcomplete-file-ignore nil
131 "A regexp of filenames to be disregarded during file completion."
132 :type '(choice regexp (const :tag "None" nil))
133 :group 'pcomplete)
134
135 (defcustom pcomplete-dir-ignore nil
136 "A regexp of names to be disregarded during directory completion."
137 :type '(choice regexp (const :tag "None" nil))
138 :group 'pcomplete)
139
140 (defcustom pcomplete-ignore-case (memq system-type '(ms-dos windows-nt cygwin))
141 ;; FIXME: the doc mentions file-name completion, but the code
142 ;; seems to apply it to all completions.
143 "If non-nil, ignore case when doing filename completion."
144 :type 'boolean
145 :group 'pcomplete)
146
147 (defcustom pcomplete-autolist nil
148 "If non-nil, automatically list possibilities on partial completion.
149 This mirrors the optional behavior of tcsh."
150 :type 'boolean
151 :group 'pcomplete)
152
153 (defcustom pcomplete-suffix-list (list ?/ ?:)
154 "A list of characters which constitute a proper suffix."
155 :type '(repeat character)
156 :group 'pcomplete)
157
158 (defcustom pcomplete-recexact nil
159 "If non-nil, use shortest completion if characters cannot be added.
160 This mirrors the optional behavior of tcsh.
161
162 A non-nil value is useful if `pcomplete-autolist' is non-nil too."
163 :type 'boolean
164 :group 'pcomplete)
165
166 (defcustom pcomplete-arg-quote-list nil
167 "List of characters to quote when completing an argument."
168 :type '(choice (repeat character)
169 (const :tag "Don't quote" nil))
170 :group 'pcomplete)
171
172 (defcustom pcomplete-quote-arg-hook nil
173 "A hook which is run to quote a character within a filename.
174 Each function is passed both the filename to be quoted, and the index
175 to be considered. If the function wishes to provide an alternate
176 quoted form, it need only return the replacement string. If no
177 function provides a replacement, quoting shall proceed as normal,
178 using a backslash to quote any character which is a member of
179 `pcomplete-arg-quote-list'."
180 :type 'hook
181 :group 'pcomplete)
182
183 (defcustom pcomplete-man-function 'man
184 "A function to that will be called to display a manual page.
185 It will be passed the name of the command to document."
186 :type 'function
187 :group 'pcomplete)
188
189 (defcustom pcomplete-compare-entry-function 'string-lessp
190 "This function is used to order file entries for completion.
191 The behavior of most all shells is to sort alphabetically."
192 :type '(radio (function-item string-lessp)
193 (function-item file-newer-than-file-p)
194 (function :tag "Other"))
195 :group 'pcomplete)
196
197 (defcustom pcomplete-help nil
198 "A string or function (or nil) used for context-sensitive help.
199 If a string, it should name an Info node that will be jumped to.
200 If non-nil, it must a sexp that will be evaluated, and whose
201 result will be shown in the minibuffer.
202 If nil, the function `pcomplete-man-function' will be called with the
203 current command argument."
204 :type '(choice string sexp (const :tag "Use man page" nil))
205 :group 'pcomplete)
206
207 (defcustom pcomplete-expand-before-complete nil
208 "If non-nil, expand the current argument before completing it.
209 This means that typing something such as '$HOME/bi' followed by
210 \\[pcomplete-argument] will cause the variable reference to be
211 resolved first, and the resultant value that will be completed against
212 to be inserted in the buffer. Note that exactly what gets expanded
213 and how is entirely up to the behavior of the
214 `pcomplete-parse-arguments-function'."
215 :type 'boolean
216 :group 'pcomplete)
217
218 (defcustom pcomplete-parse-arguments-function
219 'pcomplete-parse-buffer-arguments
220 "A function to call to parse the current line's arguments.
221 It should be called with no parameters, and with point at the position
222 of the argument that is to be completed.
223
224 It must either return nil, or a cons cell of the form:
225
226 ((ARG...) (BEG-POS...))
227
228 The two lists must be identical in length. The first gives the final
229 value of each command line argument (which need not match the textual
230 representation of that argument), and BEG-POS gives the beginning
231 position of each argument, as it is seen by the user. The establishes
232 a relationship between the fully resolved value of the argument, and
233 the textual representation of the argument."
234 :type 'function
235 :group 'pcomplete)
236
237 (defcustom pcomplete-cycle-completions t
238 "If non-nil, hitting the TAB key cycles through the completion list.
239 Typical Emacs behavior is to complete as much as possible, then pause
240 waiting for further input. Then if TAB is hit again, show a list of
241 possible completions. When `pcomplete-cycle-completions' is non-nil,
242 it acts more like zsh or 4nt, showing the first maximal match first,
243 followed by any further matches on each subsequent pressing of the TAB
244 key. \\[pcomplete-list] is the key to press if the user wants to see
245 the list of possible completions."
246 :type 'boolean
247 :group 'pcomplete)
248
249 (defcustom pcomplete-cycle-cutoff-length 5
250 "If the number of completions is greater than this, don't cycle.
251 This variable is a compromise between the traditional Emacs style of
252 completion, and the \"cycling\" style. Basically, if there are more
253 than this number of completions possible, don't automatically pick the
254 first one and then expect the user to press TAB to cycle through them.
255 Typically, when there are a large number of completion possibilities,
256 the user wants to see them in a list buffer so that they can know what
257 options are available. But if the list is small, it means the user
258 has already entered enough input to disambiguate most of the
259 possibilities, and therefore they are probably most interested in
260 cycling through the candidates. Set this value to nil if you want
261 cycling to always be enabled."
262 :type '(choice integer (const :tag "Always cycle" nil))
263 :group 'pcomplete)
264
265 (defcustom pcomplete-restore-window-delay 1
266 "The number of seconds to wait before restoring completion windows.
267 Once the completion window has been displayed, if the user then goes
268 on to type something else, that completion window will be removed from
269 the display (actually, the original window configuration before it was
270 displayed will be restored), after this many seconds of idle time. If
271 set to nil, completion windows will be left on second until the user
272 removes them manually. If set to 0, they will disappear immediately
273 after the user enters a key other than TAB."
274 :type '(choice integer (const :tag "Never restore" nil))
275 :group 'pcomplete)
276
277 (defcustom pcomplete-try-first-hook nil
278 "A list of functions which are called before completing an argument.
279 This can be used, for example, for completing things which might apply
280 to all arguments, such as variable names after a $."
281 :type 'hook
282 :group 'pcomplete)
283
284 (defsubst pcomplete-executables (&optional regexp)
285 "Complete amongst a list of directories and executables."
286 (pcomplete-entries regexp 'file-executable-p))
287
288 (defcustom pcomplete-command-completion-function
289 (function
290 (lambda ()
291 (pcomplete-here (pcomplete-executables))))
292 "Function called for completing the initial command argument."
293 :type 'function
294 :group 'pcomplete)
295
296 (defcustom pcomplete-command-name-function 'pcomplete-command-name
297 "Function called for determining the current command name."
298 :type 'function
299 :group 'pcomplete)
300
301 (defcustom pcomplete-default-completion-function
302 (function
303 (lambda ()
304 (while (pcomplete-here (pcomplete-entries)))))
305 "Function called when no completion rule can be found.
306 This function is used to generate completions for every argument."
307 :type 'function
308 :group 'pcomplete)
309
310 (defcustom pcomplete-use-paring t
311 "If t, pare alternatives that have already been used.
312 If nil, you will always see the completion set of possible options, no
313 matter which of those options have already been used in previous
314 command arguments."
315 :type 'boolean
316 :group 'pcomplete)
317
318 (defcustom pcomplete-termination-string " "
319 "A string that is inserted after any completion or expansion.
320 This is usually a space character, useful when completing lists of
321 words separated by spaces. However, if your list uses a different
322 separator character, or if the completion occurs in a word that is
323 already terminated by a character, this variable should be locally
324 modified to be an empty string, or the desired separation string."
325 :type 'string
326 :group 'pcomplete)
327
328 ;;; Internal Variables:
329
330 ;; for cycling completion support
331 (defvar pcomplete-current-completions nil)
332 (defvar pcomplete-last-completion-length)
333 (defvar pcomplete-last-completion-stub)
334 (defvar pcomplete-last-completion-raw)
335 (defvar pcomplete-last-window-config nil)
336 (defvar pcomplete-window-restore-timer nil)
337
338 (make-variable-buffer-local 'pcomplete-current-completions)
339 (make-variable-buffer-local 'pcomplete-last-completion-length)
340 (make-variable-buffer-local 'pcomplete-last-completion-stub)
341 (make-variable-buffer-local 'pcomplete-last-completion-raw)
342 (make-variable-buffer-local 'pcomplete-last-window-config)
343 (make-variable-buffer-local 'pcomplete-window-restore-timer)
344
345 ;; used for altering pcomplete's behavior. These global variables
346 ;; should always be nil.
347 (defvar pcomplete-show-help nil)
348 (defvar pcomplete-show-list nil)
349 (defvar pcomplete-expand-only-p nil)
350
351 ;; for the sake of the bye-compiler, when compiling other files that
352 ;; contain completion functions
353 (defvar pcomplete-args nil)
354 (defvar pcomplete-begins nil)
355 (defvar pcomplete-last nil)
356 (defvar pcomplete-index nil)
357 (defvar pcomplete-stub nil)
358 (defvar pcomplete-seen nil)
359 (defvar pcomplete-norm-func nil)
360
361 ;;; User Functions:
362
363 ;;; Alternative front-end using the standard completion facilities.
364
365 ;; The way pcomplete-parse-arguments, pcomplete-stub, and
366 ;; pcomplete-quote-argument work only works because of some deep
367 ;; hypothesis about the way the completion work. Basically, it makes
368 ;; it pretty much impossible to have completion other than
369 ;; prefix-completion.
370 ;;
371 ;; pcomplete--common-quoted-suffix and pcomplete--table-subvert try to
372 ;; work around this difficulty with heuristics, but it's
373 ;; really a hack.
374
375 (defvar pcomplete-unquote-argument-function nil)
376
377 (defun pcomplete-unquote-argument (s)
378 (cond
379 (pcomplete-unquote-argument-function
380 (funcall pcomplete-unquote-argument-function s))
381 ((null pcomplete-arg-quote-list) s)
382 (t
383 (replace-regexp-in-string "\\\\\\(.\\)" "\\1" s t))))
384
385 (defun pcomplete--common-suffix (s1 s2)
386 (assert (not (or (string-match "\n" s1) (string-match "\n" s2))))
387 ;; Since S2 is expected to be the "unquoted/expanded" version of S1,
388 ;; there shouldn't be any case difference, even if the completion is
389 ;; case-insensitive.
390 (let ((case-fold-search nil)) ;; pcomplete-ignore-case
391 (string-match ".*?\\(.*\\)\n.*\\1\\'" (concat s1 "\n" s2))
392 (- (match-end 1) (match-beginning 1))))
393
394 (defun pcomplete--common-quoted-suffix (s1 s2)
395 "Find the common suffix between S1 and S2 where S1 is the expanded S2.
396 S1 is expected to be the unquoted and expanded version of S1.
397 Returns (PS1 . PS2), i.e. the shortest prefixes of S1 and S2, such that
398 S1 = (concat PS1 SS1) and S2 = (concat PS2 SS2) and
399 SS1 = (unquote SS2)."
400 (let* ((cs (pcomplete--common-suffix s1 s2))
401 (ss1 (substring s1 (- (length s1) cs)))
402 (qss1 (pcomplete-quote-argument ss1))
403 qc)
404 (if (and (not (equal ss1 qss1))
405 (setq qc (pcomplete-quote-argument (substring ss1 0 1)))
406 (eq t (compare-strings s2 (- (length s2) cs (length qc) -1)
407 (- (length s2) cs -1)
408 qc nil nil)))
409 ;; The difference found is just that one char is quoted in S2
410 ;; but not in S1, keep looking before this difference.
411 (pcomplete--common-quoted-suffix
412 (substring s1 0 (- (length s1) cs))
413 (substring s2 0 (- (length s2) cs (length qc) -1)))
414 (cons (substring s1 0 (- (length s1) cs))
415 (substring s2 0 (- (length s2) cs))))))
416
417 (defun pcomplete--table-subvert (table s1 s2 string pred action)
418 "Completion table that replaces the prefix S1 with S2 in STRING.
419 When TABLE, S1 and S2 are provided by `apply-partially', the result
420 is a completion table which completes strings of the form (concat S1 S)
421 in the same way as TABLE completes strings of the form (concat S2 S)."
422 (let* ((str (if (eq t (compare-strings string 0 (length s1) s1 nil nil
423 completion-ignore-case))
424 (concat s2 (pcomplete-unquote-argument
425 (substring string (length s1))))))
426 (res (if str (complete-with-action action table str pred))))
427 (when res
428 (cond
429 ((and (eq (car-safe action) 'boundaries))
430 (let ((beg (or (and (eq (car-safe res) 'boundaries) (cadr res)) 0)))
431 (list* 'boundaries
432 (max (length s1)
433 ;; FIXME: Adjust because of quoting/unquoting.
434 (+ beg (- (length s1) (length s2))))
435 (and (eq (car-safe res) 'boundaries) (cddr res)))))
436 ((stringp res)
437 (if (eq t (compare-strings res 0 (length s2) s2 nil nil
438 completion-ignore-case))
439 (concat s1 (pcomplete-quote-argument
440 (substring res (length s2))))))
441 ((eq action t)
442 (let ((bounds (completion-boundaries str table pred "")))
443 (if (>= (car bounds) (length s2))
444 res
445 (let ((re (concat "\\`"
446 (regexp-quote (substring s2 (car bounds))))))
447 (delq nil
448 (mapcar (lambda (c)
449 (if (string-match re c)
450 (substring c (match-end 0))))
451 res))))))))))
452
453 ;; I don't think such commands are usable before first setting up buffer-local
454 ;; variables to parse args, so there's no point autoloading it.
455 ;; ;;;###autoload
456 (defun pcomplete-completions-at-point ()
457 "Provide standard completion using pcomplete's completion tables.
458 Same as `pcomplete' but using the standard completion UI."
459 ;; FIXME: it only completes the text before point, whereas the
460 ;; standard UI may also consider text after point.
461 ;; FIXME: the `pcomplete' UI may be used internally during
462 ;; pcomplete-completions and then throw to `pcompleted', thus
463 ;; imposing the pcomplete UI over the standard UI.
464 (catch 'pcompleted
465 (let* ((pcomplete-stub)
466 pcomplete-seen pcomplete-norm-func
467 pcomplete-args pcomplete-last pcomplete-index
468 (pcomplete-autolist pcomplete-autolist)
469 (pcomplete-suffix-list pcomplete-suffix-list)
470 ;; Apparently the vars above are global vars modified by
471 ;; side-effects, whereas pcomplete-completions is the core
472 ;; function that finds the chunk of text to complete
473 ;; (returned indirectly in pcomplete-stub) and the set of
474 ;; possible completions.
475 (completions (pcomplete-completions))
476 ;; Usually there's some close connection between pcomplete-stub
477 ;; and the text before point. But depending on what
478 ;; pcomplete-parse-arguments-function does, that connection
479 ;; might not be that close. E.g. in eshell,
480 ;; pcomplete-parse-arguments-function expands envvars.
481 ;;
482 ;; Since we use minibuffer-complete, which doesn't know
483 ;; pcomplete-stub and works from the buffer's text instead,
484 ;; we need to trick minibuffer-complete, into using
485 ;; pcomplete-stub without its knowledge. To that end, we
486 ;; use pcomplete--table-subvert to construct a completion
487 ;; table which expects strings using a prefix from the
488 ;; buffer's text but internally uses the corresponding
489 ;; prefix from pcomplete-stub.
490 (beg (max (- (point) (length pcomplete-stub))
491 (pcomplete-begin)))
492 (buftext (buffer-substring beg (point))))
493 (when completions
494 (let ((table
495 (cond
496 ((not (equal pcomplete-stub buftext))
497 ;; This isn't always strictly right (e.g. if
498 ;; FOO="toto/$FOO", then completion of /$FOO/bar may
499 ;; result in something incorrect), but given the lack of
500 ;; any other info, it's about as good as it gets, and in
501 ;; practice it should work just fine (fingers crossed).
502 (let ((prefixes (pcomplete--common-quoted-suffix
503 pcomplete-stub buftext)))
504 (apply-partially
505 'pcomplete--table-subvert
506 completions
507 (cdr prefixes) (car prefixes))))
508 (t
509 (lexical-let ((completions completions))
510 (lambda (string pred action)
511 (let ((res (complete-with-action
512 action completions string pred)))
513 (if (stringp res)
514 (pcomplete-quote-argument res)
515 res)))))))
516 (pred
517 ;; Pare it down, if applicable.
518 (when (and pcomplete-use-paring pcomplete-seen)
519 (setq pcomplete-seen
520 (mapcar (lambda (f)
521 (funcall pcomplete-norm-func
522 (directory-file-name f)))
523 pcomplete-seen))
524 (lambda (f)
525 (not (when pcomplete-seen
526 (member
527 (funcall pcomplete-norm-func
528 (directory-file-name f))
529 pcomplete-seen)))))))
530 (unless (zerop (length pcomplete-termination-string))
531 ;; Add a space at the end of completion. Use a terminator-regexp
532 ;; that never matches since the terminator cannot appear
533 ;; within the completion field anyway.
534 (setq table
535 (apply-partially #'completion-table-with-terminator
536 (cons pcomplete-termination-string
537 "\\`a\\`")
538 table)))
539 (when pcomplete-ignore-case
540 (setq table
541 (apply-partially #'completion-table-case-fold table)))
542 (list beg (point) table :predicate pred))))))
543
544 ;; I don't think such commands are usable before first setting up buffer-local
545 ;; variables to parse args, so there's no point autoloading it.
546 ;; ;;;###autoload
547 (defun pcomplete-std-complete ()
548 (let ((completion-at-point-functions '(pcomplete-completions-at-point)))
549 (completion-at-point)))
550
551 ;;; Pcomplete's native UI.
552
553 ;;;###autoload
554 (defun pcomplete (&optional interactively)
555 "Support extensible programmable completion.
556 To use this function, just bind the TAB key to it, or add it to your
557 completion functions list (it should occur fairly early in the list)."
558 (interactive "p")
559 (if (and interactively
560 pcomplete-cycle-completions
561 pcomplete-current-completions
562 (memq last-command '(pcomplete
563 pcomplete-expand-and-complete
564 pcomplete-reverse)))
565 (progn
566 (delete-char (- pcomplete-last-completion-length))
567 (if (eq this-command 'pcomplete-reverse)
568 (progn
569 (push (car (last pcomplete-current-completions))
570 pcomplete-current-completions)
571 (setcdr (last pcomplete-current-completions 2) nil))
572 (nconc pcomplete-current-completions
573 (list (car pcomplete-current-completions)))
574 (setq pcomplete-current-completions
575 (cdr pcomplete-current-completions)))
576 (pcomplete-insert-entry pcomplete-last-completion-stub
577 (car pcomplete-current-completions)
578 nil pcomplete-last-completion-raw))
579 (setq pcomplete-current-completions nil
580 pcomplete-last-completion-raw nil)
581 (catch 'pcompleted
582 (let* ((pcomplete-stub)
583 pcomplete-seen pcomplete-norm-func
584 pcomplete-args pcomplete-last pcomplete-index
585 (pcomplete-autolist pcomplete-autolist)
586 (pcomplete-suffix-list pcomplete-suffix-list)
587 (completions (pcomplete-completions))
588 (result (pcomplete-do-complete pcomplete-stub completions)))
589 (and result
590 (not (eq (car result) 'listed))
591 (cdr result)
592 (pcomplete-insert-entry pcomplete-stub (cdr result)
593 (memq (car result)
594 '(sole shortest))
595 pcomplete-last-completion-raw))))))
596
597 ;;;###autoload
598 (defun pcomplete-reverse ()
599 "If cycling completion is in use, cycle backwards."
600 (interactive)
601 (call-interactively 'pcomplete))
602
603 ;;;###autoload
604 (defun pcomplete-expand-and-complete ()
605 "Expand the textual value of the current argument.
606 This will modify the current buffer."
607 (interactive)
608 (let ((pcomplete-expand-before-complete t))
609 (pcomplete)))
610
611 ;;;###autoload
612 (defun pcomplete-continue ()
613 "Complete without reference to any cycling completions."
614 (interactive)
615 (setq pcomplete-current-completions nil
616 pcomplete-last-completion-raw nil)
617 (call-interactively 'pcomplete))
618
619 ;;;###autoload
620 (defun pcomplete-expand ()
621 "Expand the textual value of the current argument.
622 This will modify the current buffer."
623 (interactive)
624 (let ((pcomplete-expand-before-complete t)
625 (pcomplete-expand-only-p t))
626 (pcomplete)
627 (when (and pcomplete-current-completions
628 (> (length pcomplete-current-completions) 0)) ;??
629 (delete-char (- pcomplete-last-completion-length))
630 (while pcomplete-current-completions
631 (unless (pcomplete-insert-entry
632 "" (car pcomplete-current-completions) t
633 pcomplete-last-completion-raw)
634 (insert-and-inherit pcomplete-termination-string))
635 (setq pcomplete-current-completions
636 (cdr pcomplete-current-completions))))))
637
638 ;;;###autoload
639 (defun pcomplete-help ()
640 "Display any help information relative to the current argument."
641 (interactive)
642 (let ((pcomplete-show-help t))
643 (pcomplete)))
644
645 ;;;###autoload
646 (defun pcomplete-list ()
647 "Show the list of possible completions for the current argument."
648 (interactive)
649 (when (and pcomplete-cycle-completions
650 pcomplete-current-completions
651 (eq last-command 'pcomplete-argument))
652 (delete-char (- pcomplete-last-completion-length))
653 (setq pcomplete-current-completions nil
654 pcomplete-last-completion-raw nil))
655 (let ((pcomplete-show-list t))
656 (pcomplete)))
657
658 ;;; Internal Functions:
659
660 ;; argument handling
661 (defun pcomplete-arg (&optional index offset)
662 "Return the textual content of the INDEXth argument.
663 INDEX is based from the current processing position. If INDEX is
664 positive, values returned are closer to the command argument; if
665 negative, they are closer to the last argument. If the INDEX is
666 outside of the argument list, nil is returned. The default value for
667 INDEX is 0, meaning the current argument being examined.
668
669 The special indices `first' and `last' may be used to access those
670 parts of the list.
671
672 The OFFSET argument is added to/taken away from the index that will be
673 used. This is really only useful with `first' and `last', for
674 accessing absolute argument positions."
675 (setq index
676 (if (eq index 'first)
677 0
678 (if (eq index 'last)
679 pcomplete-last
680 (- pcomplete-index (or index 0)))))
681 (if offset
682 (setq index (+ index offset)))
683 (nth index pcomplete-args))
684
685 (defun pcomplete-begin (&optional index offset)
686 "Return the beginning position of the INDEXth argument.
687 See the documentation for `pcomplete-arg'."
688 (setq index
689 (if (eq index 'first)
690 0
691 (if (eq index 'last)
692 pcomplete-last
693 (- pcomplete-index (or index 0)))))
694 (if offset
695 (setq index (+ index offset)))
696 (nth index pcomplete-begins))
697
698 (defsubst pcomplete-actual-arg (&optional index offset)
699 "Return the actual text representation of the last argument.
700 This is different from `pcomplete-arg', which returns the textual value
701 that the last argument evaluated to. This function returns what the
702 user actually typed in."
703 (buffer-substring (pcomplete-begin index offset) (point)))
704
705 (defsubst pcomplete-next-arg ()
706 "Move the various pointers to the next argument."
707 (setq pcomplete-index (1+ pcomplete-index)
708 pcomplete-stub (pcomplete-arg))
709 (if (> pcomplete-index pcomplete-last)
710 (progn
711 (message "No completions")
712 (throw 'pcompleted nil))))
713
714 (defun pcomplete-command-name ()
715 "Return the command name of the first argument."
716 (file-name-nondirectory (pcomplete-arg 'first)))
717
718 (defun pcomplete-match (regexp &optional index offset start)
719 "Like `string-match', but on the current completion argument."
720 (let ((arg (pcomplete-arg (or index 1) offset)))
721 (if arg
722 (string-match regexp arg start)
723 (throw 'pcompleted nil))))
724
725 (defun pcomplete-match-string (which &optional index offset)
726 "Like `match-string', but on the current completion argument."
727 (let ((arg (pcomplete-arg (or index 1) offset)))
728 (if arg
729 (match-string which arg)
730 (throw 'pcompleted nil))))
731
732 (defalias 'pcomplete-match-beginning 'match-beginning)
733 (defalias 'pcomplete-match-end 'match-end)
734
735 (defsubst pcomplete--test (pred arg)
736 "Perform a programmable completion predicate match."
737 (and pred
738 (cond ((eq pred t) t)
739 ((functionp pred)
740 (funcall pred arg))
741 ((stringp pred)
742 (string-match (concat "^" pred "$") arg)))
743 pred))
744
745 (defun pcomplete-test (predicates &optional index offset)
746 "Predicates to test the current programmable argument with."
747 (let ((arg (pcomplete-arg (or index 1) offset)))
748 (unless (null predicates)
749 (if (not (listp predicates))
750 (pcomplete--test predicates arg)
751 (let ((pred predicates)
752 found)
753 (while (and pred (not found))
754 (setq found (pcomplete--test (car pred) arg)
755 pred (cdr pred)))
756 found)))))
757
758 (defun pcomplete-parse-buffer-arguments ()
759 "Parse whitespace separated arguments in the current region."
760 (let ((begin (point-min))
761 (end (point-max))
762 begins args)
763 (save-excursion
764 (goto-char begin)
765 (while (< (point) end)
766 (skip-chars-forward " \t\n")
767 (push (point) begins)
768 (skip-chars-forward "^ \t\n")
769 (push (buffer-substring-no-properties
770 (car begins) (point))
771 args))
772 (cons (nreverse args) (nreverse begins)))))
773
774 ;;;###autoload
775 (defun pcomplete-comint-setup (completef-sym)
776 "Setup a comint buffer to use pcomplete.
777 COMPLETEF-SYM should be the symbol where the
778 dynamic-complete-functions are kept. For comint mode itself,
779 this is `comint-dynamic-complete-functions'."
780 (set (make-local-variable 'pcomplete-parse-arguments-function)
781 'pcomplete-parse-comint-arguments)
782 (set (make-local-variable completef-sym)
783 (copy-sequence (symbol-value completef-sym)))
784 (let* ((funs (symbol-value completef-sym))
785 (elem (or (memq 'comint-filename-completion funs)
786 (memq 'shell-filename-completion funs)
787 (memq 'shell-dynamic-complete-filename funs)
788 (memq 'comint-dynamic-complete-filename funs))))
789 (if elem
790 (setcar elem 'pcomplete)
791 (add-to-list completef-sym 'pcomplete))))
792
793 ;;;###autoload
794 (defun pcomplete-shell-setup ()
795 "Setup `shell-mode' to use pcomplete."
796 ;; FIXME: insufficient
797 (pcomplete-comint-setup 'comint-dynamic-complete-functions))
798
799 (declare-function comint-bol "comint" (&optional arg))
800
801 (defun pcomplete-parse-comint-arguments ()
802 "Parse whitespace separated arguments in the current region."
803 (let ((begin (save-excursion (comint-bol nil) (point)))
804 (end (point))
805 begins args)
806 (save-excursion
807 (goto-char begin)
808 (while (< (point) end)
809 (skip-chars-forward " \t\n")
810 (push (point) begins)
811 (let ((skip t))
812 (while skip
813 (skip-chars-forward "^ \t\n")
814 (if (eq (char-before) ?\\)
815 (skip-chars-forward " \t\n")
816 (setq skip nil))))
817 (push (buffer-substring-no-properties (car begins) (point))
818 args))
819 (cons (nreverse args) (nreverse begins)))))
820
821 (defun pcomplete-parse-arguments (&optional expand-p)
822 "Parse the command line arguments. Most completions need this info."
823 (let ((results (funcall pcomplete-parse-arguments-function)))
824 (when results
825 (setq pcomplete-args (or (car results) (list ""))
826 pcomplete-begins (or (cdr results) (list (point)))
827 pcomplete-last (1- (length pcomplete-args))
828 pcomplete-index 0
829 pcomplete-stub (pcomplete-arg 'last))
830 (let ((begin (pcomplete-begin 'last)))
831 (if (and pcomplete-cycle-completions
832 (listp pcomplete-stub) ;??
833 (not pcomplete-expand-only-p))
834 (let* ((completions pcomplete-stub) ;??
835 (common-stub (car completions))
836 (c completions)
837 (len (length common-stub)))
838 (while (and c (> len 0))
839 (while (and (> len 0)
840 (not (string=
841 (substring common-stub 0 len)
842 (substring (car c) 0
843 (min (length (car c))
844 len)))))
845 (setq len (1- len)))
846 (setq c (cdr c)))
847 (setq pcomplete-stub (substring common-stub 0 len)
848 pcomplete-autolist t)
849 (when (and begin (not pcomplete-show-list))
850 (delete-region begin (point))
851 (pcomplete-insert-entry "" pcomplete-stub))
852 (throw 'pcomplete-completions completions))
853 (when expand-p
854 (if (stringp pcomplete-stub)
855 (when begin
856 (delete-region begin (point))
857 (insert-and-inherit pcomplete-stub))
858 (if (and (listp pcomplete-stub)
859 pcomplete-expand-only-p)
860 ;; this is for the benefit of `pcomplete-expand'
861 (setq pcomplete-last-completion-length (- (point) begin)
862 pcomplete-current-completions pcomplete-stub)
863 (error "Cannot expand argument"))))
864 (if pcomplete-expand-only-p
865 (throw 'pcompleted t)
866 pcomplete-args))))))
867
868 (defun pcomplete-quote-argument (filename)
869 "Return FILENAME with magic characters quoted.
870 Magic characters are those in `pcomplete-arg-quote-list'."
871 (if (null pcomplete-arg-quote-list)
872 filename
873 (let ((index 0))
874 (mapconcat (lambda (c)
875 (prog1
876 (or (run-hook-with-args-until-success
877 'pcomplete-quote-arg-hook filename index)
878 (when (memq c pcomplete-arg-quote-list)
879 (string "\\" c))
880 (char-to-string c))
881 (setq index (1+ index))))
882 filename
883 ""))))
884
885 ;; file-system completion lists
886
887 (defsubst pcomplete-dirs-or-entries (&optional regexp predicate)
888 "Return either directories, or qualified entries."
889 ;; FIXME: pcomplete-entries doesn't return a list any more.
890 (pcomplete-entries
891 nil
892 (lexical-let ((re regexp)
893 (pred predicate))
894 (lambda (f)
895 (or (file-directory-p f)
896 (and (if (not re) t (string-match re f))
897 (if (not pred) t (funcall pred f))))))))
898
899 (defun pcomplete-entries (&optional regexp predicate)
900 "Complete against a list of directory candidates.
901 If REGEXP is non-nil, it is a regular expression used to refine the
902 match (files not matching the REGEXP will be excluded).
903 If PREDICATE is non-nil, it will also be used to refine the match
904 \(files for which the PREDICATE returns nil will be excluded).
905 If no directory information can be extracted from the completed
906 component, `default-directory' is used as the basis for completion."
907 (let* ((name (substitute-env-vars pcomplete-stub))
908 (completion-ignore-case pcomplete-ignore-case)
909 (default-directory (expand-file-name
910 (or (file-name-directory name)
911 default-directory)))
912 above-cutoff)
913 (setq name (file-name-nondirectory name)
914 pcomplete-stub name)
915 (let ((completions
916 (file-name-all-completions name default-directory)))
917 (if regexp
918 (setq completions
919 (pcomplete-pare-list
920 completions nil
921 (function
922 (lambda (file)
923 (not (string-match regexp file)))))))
924 (if predicate
925 (setq completions
926 (pcomplete-pare-list
927 completions nil
928 (function
929 (lambda (file)
930 (not (funcall predicate file)))))))
931 (if (or pcomplete-file-ignore pcomplete-dir-ignore)
932 (setq completions
933 (pcomplete-pare-list
934 completions nil
935 (function
936 (lambda (file)
937 (if (eq (aref file (1- (length file)))
938 ?/)
939 (and pcomplete-dir-ignore
940 (string-match pcomplete-dir-ignore file))
941 (and pcomplete-file-ignore
942 (string-match pcomplete-file-ignore file))))))))
943 (setq above-cutoff (and pcomplete-cycle-cutoff-length
944 (> (length completions)
945 pcomplete-cycle-cutoff-length)))
946 (sort completions
947 (function
948 (lambda (l r)
949 ;; for the purposes of comparison, remove the
950 ;; trailing slash from directory names.
951 ;; Otherwise, "foo.old/" will come before "foo/",
952 ;; since . is earlier in the ASCII alphabet than
953 ;; /
954 (let ((left (if (eq (aref l (1- (length l)))
955 ?/)
956 (substring l 0 (1- (length l)))
957 l))
958 (right (if (eq (aref r (1- (length r)))
959 ?/)
960 (substring r 0 (1- (length r)))
961 r)))
962 (if above-cutoff
963 (string-lessp left right)
964 (funcall pcomplete-compare-entry-function
965 left right)))))))))
966
967 (defsubst pcomplete-all-entries (&optional regexp predicate)
968 "Like `pcomplete-entries', but doesn't ignore any entries."
969 (let (pcomplete-file-ignore
970 pcomplete-dir-ignore)
971 (pcomplete-entries regexp predicate)))
972
973 (defsubst pcomplete-dirs (&optional regexp)
974 "Complete amongst a list of directories."
975 (pcomplete-entries regexp 'file-directory-p))
976
977 ;; generation of completion lists
978
979 (defun pcomplete-find-completion-function (command)
980 "Find the completion function to call for the given COMMAND."
981 (let ((sym (intern-soft
982 (concat "pcomplete/" (symbol-name major-mode) "/" command))))
983 (unless sym
984 (setq sym (intern-soft (concat "pcomplete/" command))))
985 (and sym (fboundp sym) sym)))
986
987 (defun pcomplete-completions ()
988 "Return a list of completions for the current argument position."
989 (catch 'pcomplete-completions
990 (when (pcomplete-parse-arguments pcomplete-expand-before-complete)
991 (if (= pcomplete-index pcomplete-last)
992 (funcall pcomplete-command-completion-function)
993 (let ((sym (or (pcomplete-find-completion-function
994 (funcall pcomplete-command-name-function))
995 pcomplete-default-completion-function)))
996 (ignore
997 (pcomplete-next-arg)
998 (funcall sym)))))))
999
1000 (defun pcomplete-opt (options &optional prefix _no-ganging _args-follow)
1001 "Complete a set of OPTIONS, each beginning with PREFIX (?- by default).
1002 PREFIX may be t, in which case no PREFIX character is necessary.
1003 If NO-GANGING is non-nil, each option is separate (-xy is not allowed).
1004 If ARGS-FOLLOW is non-nil, then options which take arguments may have
1005 the argument appear after a ganged set of options. This is how tar
1006 behaves, for example.
1007 Arguments NO-GANGING and ARGS-FOLLOW are currently ignored."
1008 (if (and (= pcomplete-index pcomplete-last)
1009 (string= (pcomplete-arg) "-"))
1010 (let ((len (length options))
1011 (index 0)
1012 char choices)
1013 (while (< index len)
1014 (setq char (aref options index))
1015 (if (eq char ?\()
1016 (let ((result (read-from-string options index)))
1017 (setq index (cdr result)))
1018 (unless (memq char '(?/ ?* ?? ?.))
1019 (push (char-to-string char) choices))
1020 (setq index (1+ index))))
1021 (throw 'pcomplete-completions
1022 (mapcar
1023 (function
1024 (lambda (opt)
1025 (concat "-" opt)))
1026 (pcomplete-uniqify-list choices))))
1027 (let ((arg (pcomplete-arg)))
1028 (when (and (> (length arg) 1)
1029 (stringp arg)
1030 (eq (aref arg 0) (or prefix ?-)))
1031 (pcomplete-next-arg)
1032 (let ((char (aref arg 1))
1033 (len (length options))
1034 (index 0)
1035 opt-char arg-char result)
1036 (while (< (1+ index) len)
1037 (setq opt-char (aref options index)
1038 arg-char (aref options (1+ index)))
1039 (if (eq arg-char ?\()
1040 (setq result
1041 (read-from-string options (1+ index))
1042 index (cdr result)
1043 result (car result))
1044 (setq result nil))
1045 (when (and (eq char opt-char)
1046 (memq arg-char '(?\( ?/ ?* ?? ?.)))
1047 (if (< pcomplete-index pcomplete-last)
1048 (pcomplete-next-arg)
1049 (throw 'pcomplete-completions
1050 (cond ((eq arg-char ?/) (pcomplete-dirs))
1051 ((eq arg-char ?*) (pcomplete-executables))
1052 ((eq arg-char ??) nil)
1053 ((eq arg-char ?.) (pcomplete-entries))
1054 ((eq arg-char ?\() (eval result))))))
1055 (setq index (1+ index))))))))
1056
1057 (defun pcomplete--here (&optional form stub paring form-only)
1058 "Complete against the current argument, if at the end.
1059 See the documentation for `pcomplete-here'."
1060 (if (< pcomplete-index pcomplete-last)
1061 (progn
1062 (if (eq paring 0)
1063 (setq pcomplete-seen nil)
1064 (unless (eq paring t)
1065 (let ((arg (pcomplete-arg)))
1066 (when (stringp arg)
1067 (push (if paring
1068 (funcall paring arg)
1069 (file-truename arg))
1070 pcomplete-seen)))))
1071 (pcomplete-next-arg)
1072 t)
1073 (when pcomplete-show-help
1074 (pcomplete--help)
1075 (throw 'pcompleted t))
1076 (if stub
1077 (setq pcomplete-stub stub))
1078 (if (or (eq paring t) (eq paring 0))
1079 (setq pcomplete-seen nil)
1080 (setq pcomplete-norm-func (or paring 'file-truename)))
1081 (unless form-only
1082 (run-hooks 'pcomplete-try-first-hook))
1083 (throw 'pcomplete-completions
1084 (if (functionp form)
1085 (funcall form)
1086 ;; Old calling convention, might still be used by files
1087 ;; byte-compiled with the older code.
1088 (eval form)))))
1089
1090 (defmacro pcomplete-here (&optional form stub paring form-only)
1091 "Complete against the current argument, if at the end.
1092 If completion is to be done here, evaluate FORM to generate the completion
1093 table which will be used for completion purposes. If STUB is a
1094 string, use it as the completion stub instead of the default (which is
1095 the entire text of the current argument).
1096
1097 For an example of when you might want to use STUB: if the current
1098 argument text is 'long-path-name/', you don't want the completions
1099 list display to be cluttered by 'long-path-name/' appearing at the
1100 beginning of every alternative. Not only does this make things less
1101 intelligible, but it is also inefficient. Yet, if the completion list
1102 does not begin with this string for every entry, the current argument
1103 won't complete correctly.
1104
1105 The solution is to specify a relative stub. It allows you to
1106 substitute a different argument from the current argument, almost
1107 always for the sake of efficiency.
1108
1109 If PARING is nil, this argument will be pared against previous
1110 arguments using the function `file-truename' to normalize them.
1111 PARING may be a function, in which case that function is used for
1112 normalization. If PARING is t, the argument dealt with by this
1113 call will not participate in argument paring. If it is the
1114 integer 0, all previous arguments that have been seen will be
1115 cleared.
1116
1117 If FORM-ONLY is non-nil, only the result of FORM will be used to
1118 generate the completions list. This means that the hook
1119 `pcomplete-try-first-hook' will not be run."
1120 (declare (debug t))
1121 `(pcomplete--here (lambda () ,form) ,stub ,paring ,form-only))
1122
1123
1124 (defmacro pcomplete-here* (&optional form stub form-only)
1125 "An alternate form which does not participate in argument paring."
1126 (declare (debug t))
1127 `(pcomplete-here ,form ,stub t ,form-only))
1128
1129 ;; display support
1130
1131 (defun pcomplete-restore-windows ()
1132 "If the only window change was due to Completions, restore things."
1133 (if pcomplete-last-window-config
1134 (let* ((cbuf (get-buffer "*Completions*"))
1135 (cwin (and cbuf (get-buffer-window cbuf))))
1136 (when (window-live-p cwin)
1137 (bury-buffer cbuf)
1138 (set-window-configuration pcomplete-last-window-config))))
1139 (setq pcomplete-last-window-config nil
1140 pcomplete-window-restore-timer nil))
1141
1142 ;; Abstractions so that the code below will work for both Emacs 20 and
1143 ;; XEmacs 21
1144
1145 (defalias 'pcomplete-event-matches-key-specifier-p
1146 (if (featurep 'xemacs)
1147 'event-matches-key-specifier-p
1148 'eq))
1149
1150 (defun pcomplete-read-event (&optional prompt)
1151 (if (fboundp 'read-event)
1152 (read-event prompt)
1153 (aref (read-key-sequence prompt) 0)))
1154
1155 (defun pcomplete-show-completions (completions)
1156 "List in help buffer sorted COMPLETIONS.
1157 Typing SPC flushes the help buffer."
1158 (when pcomplete-window-restore-timer
1159 (cancel-timer pcomplete-window-restore-timer)
1160 (setq pcomplete-window-restore-timer nil))
1161 (unless pcomplete-last-window-config
1162 (setq pcomplete-last-window-config (current-window-configuration)))
1163 (with-output-to-temp-buffer "*Completions*"
1164 (display-completion-list completions))
1165 (message "Hit space to flush")
1166 (let (event)
1167 (prog1
1168 (catch 'done
1169 (while (with-current-buffer (get-buffer "*Completions*")
1170 (setq event (pcomplete-read-event)))
1171 (cond
1172 ((pcomplete-event-matches-key-specifier-p event ?\s)
1173 (set-window-configuration pcomplete-last-window-config)
1174 (setq pcomplete-last-window-config nil)
1175 (throw 'done nil))
1176 ((or (pcomplete-event-matches-key-specifier-p event 'tab)
1177 ;; Needed on a terminal
1178 (pcomplete-event-matches-key-specifier-p event 9))
1179 (let ((win (or (get-buffer-window "*Completions*" 0)
1180 (display-buffer "*Completions*"
1181 'not-this-window))))
1182 (with-selected-window win
1183 (if (pos-visible-in-window-p (point-max))
1184 (goto-char (point-min))
1185 (scroll-up))))
1186 (message ""))
1187 (t
1188 (setq unread-command-events (list event))
1189 (throw 'done nil)))))
1190 (if (and pcomplete-last-window-config
1191 pcomplete-restore-window-delay)
1192 (setq pcomplete-window-restore-timer
1193 (run-with-timer pcomplete-restore-window-delay nil
1194 'pcomplete-restore-windows))))))
1195
1196 ;; insert completion at point
1197
1198 (defun pcomplete-insert-entry (stub entry &optional addsuffix raw-p)
1199 "Insert a completion entry at point.
1200 Returns non-nil if a space was appended at the end."
1201 (let ((here (point)))
1202 (if (not pcomplete-ignore-case)
1203 (insert-and-inherit (if raw-p
1204 (substring entry (length stub))
1205 (pcomplete-quote-argument
1206 (substring entry (length stub)))))
1207 ;; the stub is not quoted at this time, so to determine the
1208 ;; length of what should be in the buffer, we must quote it
1209 ;; FIXME: Here we presume that quoting `stub' gives us the exact
1210 ;; text in the buffer before point, which is not guaranteed;
1211 ;; e.g. it is not the case in eshell when completing ${FOO}tm[TAB].
1212 (delete-char (- (length (pcomplete-quote-argument stub))))
1213 ;; if there is already a backslash present to handle the first
1214 ;; character, don't bother quoting it
1215 (when (eq (char-before) ?\\)
1216 (insert-and-inherit (substring entry 0 1))
1217 (setq entry (substring entry 1)))
1218 (insert-and-inherit (if raw-p
1219 entry
1220 (pcomplete-quote-argument entry))))
1221 (let (space-added)
1222 (when (and (not (memq (char-before) pcomplete-suffix-list))
1223 addsuffix)
1224 (insert-and-inherit pcomplete-termination-string)
1225 (setq space-added t))
1226 (setq pcomplete-last-completion-length (- (point) here)
1227 pcomplete-last-completion-stub stub)
1228 space-added)))
1229
1230 ;; selection of completions
1231
1232 (defun pcomplete-do-complete (stub completions)
1233 "Dynamically complete at point using STUB and COMPLETIONS.
1234 This is basically just a wrapper for `pcomplete-stub' which does some
1235 extra checking, and munging of the COMPLETIONS list."
1236 (unless (stringp stub)
1237 (message "Cannot complete argument")
1238 (throw 'pcompleted nil))
1239 (if (null completions)
1240 (ignore
1241 (if (and stub (> (length stub) 0))
1242 (message "No completions of %s" stub)
1243 (message "No completions")))
1244 ;; pare it down, if applicable
1245 (when (and pcomplete-use-paring pcomplete-seen)
1246 (setq pcomplete-seen
1247 (mapcar 'directory-file-name pcomplete-seen))
1248 (dolist (p pcomplete-seen)
1249 (add-to-list 'pcomplete-seen
1250 (funcall pcomplete-norm-func p)))
1251 (setq completions
1252 (apply-partially 'completion-table-with-predicate
1253 completions
1254 (when pcomplete-seen
1255 (lambda (f)
1256 (not (member
1257 (funcall pcomplete-norm-func
1258 (directory-file-name f))
1259 pcomplete-seen))))
1260 'strict)))
1261 ;; OK, we've got a list of completions.
1262 (if pcomplete-show-list
1263 ;; FIXME: pay attention to boundaries.
1264 (pcomplete-show-completions (all-completions stub completions))
1265 (pcomplete-stub stub completions))))
1266
1267 (defun pcomplete-stub (stub candidates &optional cycle-p)
1268 "Dynamically complete STUB from CANDIDATES list.
1269 This function inserts completion characters at point by completing
1270 STUB from the strings in CANDIDATES. A completions listing may be
1271 shown in a help buffer if completion is ambiguous.
1272
1273 Returns nil if no completion was inserted.
1274 Returns `sole' if completed with the only completion match.
1275 Returns `shortest' if completed with the shortest of the matches.
1276 Returns `partial' if completed as far as possible with the matches.
1277 Returns `listed' if a completion listing was shown.
1278
1279 See also `pcomplete-filename'."
1280 (let* ((completion-ignore-case pcomplete-ignore-case)
1281 (completions (all-completions stub candidates))
1282 (entry (try-completion stub candidates))
1283 result)
1284 (cond
1285 ((null entry)
1286 (if (and stub (> (length stub) 0))
1287 (message "No completions of %s" stub)
1288 (message "No completions")))
1289 ((eq entry t)
1290 (setq entry stub)
1291 (message "Sole completion")
1292 (setq result 'sole))
1293 ((= 1 (length completions))
1294 (setq result 'sole))
1295 ((and pcomplete-cycle-completions
1296 (or cycle-p
1297 (not pcomplete-cycle-cutoff-length)
1298 (<= (length completions)
1299 pcomplete-cycle-cutoff-length)))
1300 (let ((bound (car (completion-boundaries stub candidates nil ""))))
1301 (unless (zerop bound)
1302 (setq completions (mapcar (lambda (c) (concat (substring stub 0 bound) c))
1303 completions)))
1304 (setq entry (car completions)
1305 pcomplete-current-completions completions)))
1306 ((and pcomplete-recexact
1307 (string-equal stub entry)
1308 (member entry completions))
1309 ;; It's not unique, but user wants shortest match.
1310 (message "Completed shortest")
1311 (setq result 'shortest))
1312 ((or pcomplete-autolist
1313 (string-equal stub entry))
1314 ;; It's not unique, list possible completions.
1315 ;; FIXME: pay attention to boundaries.
1316 (pcomplete-show-completions completions)
1317 (setq result 'listed))
1318 (t
1319 (message "Partially completed")
1320 (setq result 'partial)))
1321 (cons result entry)))
1322
1323 ;; context sensitive help
1324
1325 (defun pcomplete--help ()
1326 "Produce context-sensitive help for the current argument.
1327 If specific documentation can't be given, be generic."
1328 (if (and pcomplete-help
1329 (or (and (stringp pcomplete-help)
1330 (fboundp 'Info-goto-node))
1331 (listp pcomplete-help)))
1332 (if (listp pcomplete-help)
1333 (message "%s" (eval pcomplete-help))
1334 (save-window-excursion (info))
1335 (switch-to-buffer-other-window "*info*")
1336 (funcall (symbol-function 'Info-goto-node) pcomplete-help))
1337 (if pcomplete-man-function
1338 (let ((cmd (funcall pcomplete-command-name-function)))
1339 (if (and cmd (> (length cmd) 0))
1340 (funcall pcomplete-man-function cmd)))
1341 (message "No context-sensitive help available"))))
1342
1343 ;; general utilities
1344
1345 (defun pcomplete-pare-list (l r &optional pred)
1346 "Destructively remove from list L all elements matching any in list R.
1347 Test is done using `equal'.
1348 If PRED is non-nil, it is a function used for further removal.
1349 Returns the resultant list."
1350 (while (and l (or (and r (member (car l) r))
1351 (and pred
1352 (funcall pred (car l)))))
1353 (setq l (cdr l)))
1354 (let ((m l))
1355 (while m
1356 (while (and (cdr m)
1357 (or (and r (member (cadr m) r))
1358 (and pred
1359 (funcall pred (cadr m)))))
1360 (setcdr m (cddr m)))
1361 (setq m (cdr m))))
1362 l)
1363
1364 (defun pcomplete-uniqify-list (l)
1365 "Sort and remove multiples in L."
1366 (setq l (sort l 'string-lessp))
1367 (let ((m l))
1368 (while m
1369 (while (and (cdr m)
1370 (string= (car m)
1371 (cadr m)))
1372 (setcdr m (cddr m)))
1373 (setq m (cdr m))))
1374 l)
1375
1376 (defun pcomplete-process-result (cmd &rest args)
1377 "Call CMD using `call-process' and return the simplest result."
1378 (with-temp-buffer
1379 (apply 'call-process cmd nil t nil args)
1380 (skip-chars-backward "\n")
1381 (buffer-substring (point-min) (point))))
1382
1383 ;; create a set of aliases which allow completion functions to be not
1384 ;; quite so verbose
1385
1386 ;;; jww (1999-10-20): are these a good idea?
1387 ;; (defalias 'pc-here 'pcomplete-here)
1388 ;; (defalias 'pc-test 'pcomplete-test)
1389 ;; (defalias 'pc-opt 'pcomplete-opt)
1390 ;; (defalias 'pc-match 'pcomplete-match)
1391 ;; (defalias 'pc-match-string 'pcomplete-match-string)
1392 ;; (defalias 'pc-match-beginning 'pcomplete-match-beginning)
1393 ;; (defalias 'pc-match-end 'pcomplete-match-end)
1394
1395 (provide 'pcomplete)
1396
1397 ;;; pcomplete.el ends here