Merge from trunk.
[bpt/emacs.git] / lisp / pcomplete.el
1 ;;; pcomplete.el --- programmable completion -*- lexical-binding: t -*-
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 (make-obsolete-variable 'pcomplete-suffix-list nil "24.1")
158
159 (defcustom pcomplete-recexact nil
160 "If non-nil, use shortest completion if characters cannot be added.
161 This mirrors the optional behavior of tcsh.
162
163 A non-nil value is useful if `pcomplete-autolist' is non-nil too."
164 :type 'boolean
165 :group 'pcomplete)
166
167 (defcustom pcomplete-arg-quote-list nil
168 "List of characters to quote when completing an argument."
169 :type '(choice (repeat character)
170 (const :tag "Don't quote" nil))
171 :group 'pcomplete)
172
173 (defcustom pcomplete-quote-arg-hook nil
174 "A hook which is run to quote a character within a filename.
175 Each function is passed both the filename to be quoted, and the index
176 to be considered. If the function wishes to provide an alternate
177 quoted form, it need only return the replacement string. If no
178 function provides a replacement, quoting shall proceed as normal,
179 using a backslash to quote any character which is a member of
180 `pcomplete-arg-quote-list'."
181 :type 'hook
182 :group 'pcomplete)
183
184 (defcustom pcomplete-man-function 'man
185 "A function to that will be called to display a manual page.
186 It will be passed the name of the command to document."
187 :type 'function
188 :group 'pcomplete)
189
190 (defcustom pcomplete-compare-entry-function 'string-lessp
191 "This function is used to order file entries for completion.
192 The behavior of most all shells is to sort alphabetically."
193 :type '(radio (function-item string-lessp)
194 (function-item file-newer-than-file-p)
195 (function :tag "Other"))
196 :group 'pcomplete)
197
198 (defcustom pcomplete-help nil
199 "A string or function (or nil) used for context-sensitive help.
200 If a string, it should name an Info node that will be jumped to.
201 If non-nil, it must a sexp that will be evaluated, and whose
202 result will be shown in the minibuffer.
203 If nil, the function `pcomplete-man-function' will be called with the
204 current command argument."
205 :type '(choice string sexp (const :tag "Use man page" nil))
206 :group 'pcomplete)
207
208 (defcustom pcomplete-expand-before-complete nil
209 "If non-nil, expand the current argument before completing it.
210 This means that typing something such as '$HOME/bi' followed by
211 \\[pcomplete-argument] will cause the variable reference to be
212 resolved first, and the resultant value that will be completed against
213 to be inserted in the buffer. Note that exactly what gets expanded
214 and how is entirely up to the behavior of the
215 `pcomplete-parse-arguments-function'."
216 :type 'boolean
217 :group 'pcomplete)
218
219 (defcustom pcomplete-parse-arguments-function
220 'pcomplete-parse-buffer-arguments
221 "A function to call to parse the current line's arguments.
222 It should be called with no parameters, and with point at the position
223 of the argument that is to be completed.
224
225 It must either return nil, or a cons cell of the form:
226
227 ((ARG...) (BEG-POS...))
228
229 The two lists must be identical in length. The first gives the final
230 value of each command line argument (which need not match the textual
231 representation of that argument), and BEG-POS gives the beginning
232 position of each argument, as it is seen by the user. The establishes
233 a relationship between the fully resolved value of the argument, and
234 the textual representation of the argument."
235 :type 'function
236 :group 'pcomplete)
237
238 (defcustom pcomplete-cycle-completions t
239 "If non-nil, hitting the TAB key cycles through the completion list.
240 Typical Emacs behavior is to complete as much as possible, then pause
241 waiting for further input. Then if TAB is hit again, show a list of
242 possible completions. When `pcomplete-cycle-completions' is non-nil,
243 it acts more like zsh or 4nt, showing the first maximal match first,
244 followed by any further matches on each subsequent pressing of the TAB
245 key. \\[pcomplete-list] is the key to press if the user wants to see
246 the list of possible completions."
247 :type 'boolean
248 :group 'pcomplete)
249
250 (defcustom pcomplete-cycle-cutoff-length 5
251 "If the number of completions is greater than this, don't cycle.
252 This variable is a compromise between the traditional Emacs style of
253 completion, and the \"cycling\" style. Basically, if there are more
254 than this number of completions possible, don't automatically pick the
255 first one and then expect the user to press TAB to cycle through them.
256 Typically, when there are a large number of completion possibilities,
257 the user wants to see them in a list buffer so that they can know what
258 options are available. But if the list is small, it means the user
259 has already entered enough input to disambiguate most of the
260 possibilities, and therefore they are probably most interested in
261 cycling through the candidates. Set this value to nil if you want
262 cycling to always be enabled."
263 :type '(choice integer (const :tag "Always cycle" nil))
264 :group 'pcomplete)
265
266 (defcustom pcomplete-restore-window-delay 1
267 "The number of seconds to wait before restoring completion windows.
268 Once the completion window has been displayed, if the user then goes
269 on to type something else, that completion window will be removed from
270 the display (actually, the original window configuration before it was
271 displayed will be restored), after this many seconds of idle time. If
272 set to nil, completion windows will be left on second until the user
273 removes them manually. If set to 0, they will disappear immediately
274 after the user enters a key other than TAB."
275 :type '(choice integer (const :tag "Never restore" nil))
276 :group 'pcomplete)
277
278 (defcustom pcomplete-try-first-hook nil
279 "A list of functions which are called before completing an argument.
280 This can be used, for example, for completing things which might apply
281 to all arguments, such as variable names after a $."
282 :type 'hook
283 :group 'pcomplete)
284
285 (defsubst pcomplete-executables (&optional regexp)
286 "Complete amongst a list of directories and executables."
287 (pcomplete-entries regexp 'file-executable-p))
288
289 (defcustom pcomplete-command-completion-function
290 (function
291 (lambda ()
292 (pcomplete-here (pcomplete-executables))))
293 "Function called for completing the initial command argument."
294 :type 'function
295 :group 'pcomplete)
296
297 (defcustom pcomplete-command-name-function 'pcomplete-command-name
298 "Function called for determining the current command name."
299 :type 'function
300 :group 'pcomplete)
301
302 (defcustom pcomplete-default-completion-function
303 (function
304 (lambda ()
305 (while (pcomplete-here (pcomplete-entries)))))
306 "Function called when no completion rule can be found.
307 This function is used to generate completions for every argument."
308 :type 'function
309 :group 'pcomplete)
310
311 (defcustom pcomplete-use-paring t
312 "If t, pare alternatives that have already been used.
313 If nil, you will always see the completion set of possible options, no
314 matter which of those options have already been used in previous
315 command arguments."
316 :type 'boolean
317 :group 'pcomplete)
318
319 (defcustom pcomplete-termination-string " "
320 "A string that is inserted after any completion or expansion.
321 This is usually a space character, useful when completing lists of
322 words separated by spaces. However, if your list uses a different
323 separator character, or if the completion occurs in a word that is
324 already terminated by a character, this variable should be locally
325 modified to be an empty string, or the desired separation string."
326 :type 'string
327 :group 'pcomplete)
328
329 ;;; Internal Variables:
330
331 ;; for cycling completion support
332 (defvar pcomplete-current-completions nil)
333 (defvar pcomplete-last-completion-length)
334 (defvar pcomplete-last-completion-stub)
335 (defvar pcomplete-last-completion-raw)
336 (defvar pcomplete-last-window-config nil)
337 (defvar pcomplete-window-restore-timer nil)
338
339 (make-variable-buffer-local 'pcomplete-current-completions)
340 (make-variable-buffer-local 'pcomplete-last-completion-length)
341 (make-variable-buffer-local 'pcomplete-last-completion-stub)
342 (make-variable-buffer-local 'pcomplete-last-completion-raw)
343 (make-variable-buffer-local 'pcomplete-last-window-config)
344 (make-variable-buffer-local 'pcomplete-window-restore-timer)
345
346 ;; used for altering pcomplete's behavior. These global variables
347 ;; should always be nil.
348 (defvar pcomplete-show-help nil)
349 (defvar pcomplete-show-list nil)
350 (defvar pcomplete-expand-only-p nil)
351
352 ;; for the sake of the bye-compiler, when compiling other files that
353 ;; contain completion functions
354 (defvar pcomplete-args nil)
355 (defvar pcomplete-begins nil)
356 (defvar pcomplete-last nil)
357 (defvar pcomplete-index nil)
358 (defvar pcomplete-stub nil)
359 (defvar pcomplete-seen nil)
360 (defvar pcomplete-norm-func nil)
361
362 ;;; User Functions:
363
364 ;;; Alternative front-end using the standard completion facilities.
365
366 ;; The way pcomplete-parse-arguments, pcomplete-stub, and
367 ;; pcomplete-quote-argument work only works because of some deep
368 ;; hypothesis about the way the completion work. Basically, it makes
369 ;; it pretty much impossible to have completion other than
370 ;; prefix-completion.
371 ;;
372 ;; pcomplete--common-quoted-suffix and pcomplete--table-subvert try to
373 ;; work around this difficulty with heuristics, but it's
374 ;; really a hack.
375
376 (defvar pcomplete-unquote-argument-function nil)
377
378 (defun pcomplete-unquote-argument (s)
379 (cond
380 (pcomplete-unquote-argument-function
381 (funcall pcomplete-unquote-argument-function s))
382 ((null pcomplete-arg-quote-list) s)
383 (t
384 (replace-regexp-in-string "\\\\\\(.\\)" "\\1" s t))))
385
386 (defun pcomplete--common-suffix (s1 s2)
387 (assert (not (or (string-match "\n" s1) (string-match "\n" s2))))
388 ;; Since S2 is expected to be the "unquoted/expanded" version of S1,
389 ;; there shouldn't be any case difference, even if the completion is
390 ;; case-insensitive.
391 (let ((case-fold-search nil)) ;; pcomplete-ignore-case
392 (string-match ".*?\\(.*\\)\n.*\\1\\'" (concat s1 "\n" s2))
393 (- (match-end 1) (match-beginning 1))))
394
395 (defun pcomplete--common-quoted-suffix (s1 s2)
396 "Find the common suffix between S1 and S2 where S1 is the expanded S2.
397 S1 is expected to be the unquoted and expanded version of S1.
398 Returns (PS1 . PS2), i.e. the shortest prefixes of S1 and S2, such that
399 S1 = (concat PS1 SS1) and S2 = (concat PS2 SS2) and
400 SS1 = (unquote SS2)."
401 (let* ((cs (pcomplete--common-suffix s1 s2))
402 (ss1 (substring s1 (- (length s1) cs)))
403 (qss1 (pcomplete-quote-argument ss1))
404 qc)
405 (if (and (not (equal ss1 qss1))
406 (setq qc (pcomplete-quote-argument (substring ss1 0 1)))
407 (eq t (compare-strings s2 (- (length s2) cs (length qc) -1)
408 (- (length s2) cs -1)
409 qc nil nil)))
410 ;; The difference found is just that one char is quoted in S2
411 ;; but not in S1, keep looking before this difference.
412 (pcomplete--common-quoted-suffix
413 (substring s1 0 (- (length s1) cs))
414 (substring s2 0 (- (length s2) cs (length qc) -1)))
415 (cons (substring s1 0 (- (length s1) cs))
416 (substring s2 0 (- (length s2) cs))))))
417
418 (defun pcomplete--table-subvert (table s1 s2 string pred action)
419 "Completion table that replaces the prefix S1 with S2 in STRING.
420 When TABLE, S1 and S2 are provided by `apply-partially', the result
421 is a completion table which completes strings of the form (concat S1 S)
422 in the same way as TABLE completes strings of the form (concat S2 S)."
423 (let* ((str (if (eq t (compare-strings string 0 (length s1) s1 nil nil
424 completion-ignore-case))
425 (concat s2 (pcomplete-unquote-argument
426 (substring string (length s1))))))
427 (res (if str (complete-with-action action table str pred))))
428 (when res
429 (cond
430 ((and (eq (car-safe action) 'boundaries))
431 (let ((beg (or (and (eq (car-safe res) 'boundaries) (cadr res)) 0)))
432 (list* 'boundaries
433 (max (length s1)
434 ;; FIXME: Adjust because of quoting/unquoting.
435 (+ beg (- (length s1) (length s2))))
436 (and (eq (car-safe res) 'boundaries) (cddr res)))))
437 ((stringp res)
438 (if (eq t (compare-strings res 0 (length s2) s2 nil nil
439 completion-ignore-case))
440 (concat s1 (pcomplete-quote-argument
441 (substring res (length s2))))))
442 ((eq action t)
443 (let ((bounds (completion-boundaries str table pred "")))
444 (if (>= (car bounds) (length s2))
445 res
446 (let ((re (concat "\\`"
447 (regexp-quote (substring s2 (car bounds))))))
448 (delq nil
449 (mapcar (lambda (c)
450 (if (string-match re c)
451 (substring c (match-end 0))))
452 res))))))))))
453
454 ;; I don't think such commands are usable before first setting up buffer-local
455 ;; variables to parse args, so there's no point autoloading it.
456 ;; ;;;###autoload
457 (defun pcomplete-completions-at-point ()
458 "Provide standard completion using pcomplete's completion tables.
459 Same as `pcomplete' but using the standard completion UI."
460 ;; FIXME: it only completes the text before point, whereas the
461 ;; standard UI may also consider text after point.
462 ;; FIXME: the `pcomplete' UI may be used internally during
463 ;; pcomplete-completions and then throw to `pcompleted', thus
464 ;; imposing the pcomplete UI over the standard UI.
465 (catch 'pcompleted
466 (let* ((pcomplete-stub)
467 pcomplete-seen pcomplete-norm-func
468 pcomplete-args pcomplete-last pcomplete-index
469 (pcomplete-autolist pcomplete-autolist)
470 (pcomplete-suffix-list pcomplete-suffix-list)
471 ;; Apparently the vars above are global vars modified by
472 ;; side-effects, whereas pcomplete-completions is the core
473 ;; function that finds the chunk of text to complete
474 ;; (returned indirectly in pcomplete-stub) and the set of
475 ;; possible completions.
476 (completions (pcomplete-completions))
477 ;; Usually there's some close connection between pcomplete-stub
478 ;; and the text before point. But depending on what
479 ;; pcomplete-parse-arguments-function does, that connection
480 ;; might not be that close. E.g. in eshell,
481 ;; pcomplete-parse-arguments-function expands envvars.
482 ;;
483 ;; Since we use minibuffer-complete, which doesn't know
484 ;; pcomplete-stub and works from the buffer's text instead,
485 ;; we need to trick minibuffer-complete, into using
486 ;; pcomplete-stub without its knowledge. To that end, we
487 ;; use pcomplete--table-subvert to construct a completion
488 ;; table which expects strings using a prefix from the
489 ;; buffer's text but internally uses the corresponding
490 ;; prefix from pcomplete-stub.
491 (beg (max (- (point) (length pcomplete-stub))
492 (pcomplete-begin)))
493 (buftext (buffer-substring beg (point))))
494 (when completions
495 (let ((table
496 (cond
497 ((not (equal pcomplete-stub buftext))
498 ;; This isn't always strictly right (e.g. if
499 ;; FOO="toto/$FOO", then completion of /$FOO/bar may
500 ;; result in something incorrect), but given the lack of
501 ;; any other info, it's about as good as it gets, and in
502 ;; practice it should work just fine (fingers crossed).
503 (let ((prefixes (pcomplete--common-quoted-suffix
504 pcomplete-stub buftext)))
505 (apply-partially #'pcomplete--table-subvert
506 completions
507 (cdr prefixes) (car prefixes))))
508 (t
509 (lambda (string pred action)
510 (let ((res (complete-with-action
511 action completions string pred)))
512 (if (stringp res)
513 (pcomplete-quote-argument res)
514 res))))))
515 (pred
516 ;; Pare it down, if applicable.
517 (when (and pcomplete-use-paring pcomplete-seen)
518 ;; Capture the dynbound values for later use.
519 (let ((norm-func pcomplete-norm-func)
520 (seen
521 (mapcar (lambda (f)
522 (funcall pcomplete-norm-func
523 (directory-file-name f)))
524 pcomplete-seen)))
525 (lambda (f)
526 (not (member
527 (funcall norm-func (directory-file-name f))
528 seen)))))))
529 (when pcomplete-ignore-case
530 (setq table
531 (apply-partially #'completion-table-case-fold table)))
532 (list beg (point) table
533 :predicate pred
534 :exit-function
535 (unless (zerop (length pcomplete-termination-string))
536 (lambda (_s finished)
537 (when (memq finished '(sole finished))
538 (if (looking-at
539 (regexp-quote pcomplete-termination-string))
540 (goto-char (match-end 0))
541 (insert pcomplete-termination-string)))))))))))
542
543 ;; I don't think such commands are usable before first setting up buffer-local
544 ;; variables to parse args, so there's no point autoloading it.
545 ;; ;;;###autoload
546 (defun pcomplete-std-complete ()
547 (let ((data (pcomplete-completions-at-point)))
548 (completion-in-region (nth 0 data) (nth 1 data) (nth 2 data)
549 (plist-get :predicate (nthcdr 3 data)))))
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 (add-hook 'completion-at-point-functions
783 'pcomplete-completions-at-point nil 'local)
784 (set (make-local-variable completef-sym)
785 (copy-sequence (symbol-value completef-sym)))
786 (let* ((funs (symbol-value completef-sym))
787 (elem (or (memq 'comint-filename-completion funs)
788 (memq 'shell-filename-completion funs)
789 (memq 'shell-dynamic-complete-filename funs)
790 (memq 'comint-dynamic-complete-filename funs))))
791 (if elem
792 (setcar elem 'pcomplete)
793 (add-to-list completef-sym 'pcomplete))))
794
795 ;;;###autoload
796 (defun pcomplete-shell-setup ()
797 "Setup `shell-mode' to use pcomplete."
798 ;; FIXME: insufficient
799 (pcomplete-comint-setup 'comint-dynamic-complete-functions))
800
801 (declare-function comint-bol "comint" (&optional arg))
802
803 (defun pcomplete-parse-comint-arguments ()
804 "Parse whitespace separated arguments in the current region."
805 (let ((begin (save-excursion (comint-bol nil) (point)))
806 (end (point))
807 begins args)
808 (save-excursion
809 (goto-char begin)
810 (while (< (point) end)
811 (skip-chars-forward " \t\n")
812 (push (point) begins)
813 (while
814 (progn
815 (skip-chars-forward "^ \t\n\\")
816 (when (eq (char-after) ?\\)
817 (forward-char 1)
818 (unless (eolp)
819 (forward-char 1)
820 t))))
821 (push (buffer-substring-no-properties (car begins) (point))
822 args))
823 (cons (nreverse args) (nreverse begins)))))
824 (make-obsolete 'pcomplete-parse-comint-arguments
825 'comint-parse-pcomplete-arguments "24.1")
826
827 (defun pcomplete-parse-arguments (&optional expand-p)
828 "Parse the command line arguments. Most completions need this info."
829 (let ((results (funcall pcomplete-parse-arguments-function)))
830 (when results
831 (setq pcomplete-args (or (car results) (list ""))
832 pcomplete-begins (or (cdr results) (list (point)))
833 pcomplete-last (1- (length pcomplete-args))
834 pcomplete-index 0
835 pcomplete-stub (pcomplete-arg 'last))
836 (let ((begin (pcomplete-begin 'last)))
837 (if (and pcomplete-cycle-completions
838 (listp pcomplete-stub) ;??
839 (not pcomplete-expand-only-p))
840 (let* ((completions pcomplete-stub) ;??
841 (common-stub (car completions))
842 (c completions)
843 (len (length common-stub)))
844 (while (and c (> len 0))
845 (while (and (> len 0)
846 (not (string=
847 (substring common-stub 0 len)
848 (substring (car c) 0
849 (min (length (car c))
850 len)))))
851 (setq len (1- len)))
852 (setq c (cdr c)))
853 (setq pcomplete-stub (substring common-stub 0 len)
854 pcomplete-autolist t)
855 (when (and begin (not pcomplete-show-list))
856 (delete-region begin (point))
857 (pcomplete-insert-entry "" pcomplete-stub))
858 (throw 'pcomplete-completions completions))
859 (when expand-p
860 (if (stringp pcomplete-stub)
861 (when begin
862 (delete-region begin (point))
863 (insert-and-inherit pcomplete-stub))
864 (if (and (listp pcomplete-stub)
865 pcomplete-expand-only-p)
866 ;; this is for the benefit of `pcomplete-expand'
867 (setq pcomplete-last-completion-length (- (point) begin)
868 pcomplete-current-completions pcomplete-stub)
869 (error "Cannot expand argument"))))
870 (if pcomplete-expand-only-p
871 (throw 'pcompleted t)
872 pcomplete-args))))))
873
874 (defun pcomplete-quote-argument (filename)
875 "Return FILENAME with magic characters quoted.
876 Magic characters are those in `pcomplete-arg-quote-list'."
877 (if (null pcomplete-arg-quote-list)
878 filename
879 (let ((index 0))
880 (mapconcat (lambda (c)
881 (prog1
882 (or (run-hook-with-args-until-success
883 'pcomplete-quote-arg-hook filename index)
884 (when (memq c pcomplete-arg-quote-list)
885 (string ?\\ c))
886 (char-to-string c))
887 (setq index (1+ index))))
888 filename
889 ""))))
890
891 ;; file-system completion lists
892
893 (defsubst pcomplete-dirs-or-entries (&optional regexp predicate)
894 "Return either directories, or qualified entries."
895 (pcomplete-entries
896 nil
897 (lambda (f)
898 (or (file-directory-p f)
899 (and (or (null regexp) (string-match regexp f))
900 (or (null predicate) (funcall predicate f)))))))
901
902 (defun pcomplete--entries (&optional regexp predicate)
903 "Like `pcomplete-entries' but without env-var handling."
904 (let* ((ign-pred
905 (when (or pcomplete-file-ignore pcomplete-dir-ignore)
906 ;; Capture the dynbound value for later use.
907 (let ((file-ignore pcomplete-file-ignore)
908 (dir-ignore pcomplete-dir-ignore))
909 (lambda (file)
910 (not
911 (if (eq (aref file (1- (length file))) ?/)
912 (and dir-ignore (string-match dir-ignore file))
913 (and file-ignore (string-match file-ignore file))))))))
914 (reg-pred (if regexp (lambda (file) (string-match regexp file))))
915 (pred (cond
916 ((null (or ign-pred reg-pred)) predicate)
917 ((null (or ign-pred predicate)) reg-pred)
918 ((null (or reg-pred predicate)) ign-pred)
919 (t (lambda (f)
920 (and (or (null reg-pred) (funcall reg-pred f))
921 (or (null ign-pred) (funcall ign-pred f))
922 (or (null predicate) (funcall predicate f))))))))
923 (lambda (s p a)
924 (if (and (eq a 'metadata) pcomplete-compare-entry-function)
925 `(metadata (cycle-sort-function
926 . ,(lambda (comps)
927 (sort comps pcomplete-compare-entry-function)))
928 ,@(cdr (completion-file-name-table s p a)))
929 (let ((completion-ignored-extensions nil))
930 (completion-table-with-predicate
931 'completion-file-name-table pred 'strict s p a))))))
932
933 (defconst pcomplete--env-regexp
934 "\\(?:\\`\\|[^\\]\\)\\(?:\\\\\\\\\\)*\\(\\$\\(?:{\\([^}]+\\)}\\|\\(?2:[[:alnum:]_]+\\)\\)\\)")
935
936 (defun pcomplete-entries (&optional regexp predicate)
937 "Complete against a list of directory candidates.
938 If REGEXP is non-nil, it is a regular expression used to refine the
939 match (files not matching the REGEXP will be excluded).
940 If PREDICATE is non-nil, it will also be used to refine the match
941 \(files for which the PREDICATE returns nil will be excluded).
942 If no directory information can be extracted from the completed
943 component, `default-directory' is used as the basis for completion."
944 ;; FIXME: The old code did env-var expansion here, so we reproduce this
945 ;; behavior for now, but really env-var handling should be performed globally
946 ;; rather than here since it also applies to non-file arguments.
947 (let ((table (pcomplete--entries regexp predicate)))
948 (lambda (string pred action)
949 (let ((strings nil)
950 (orig-length (length string)))
951 ;; Perform env-var expansion.
952 (while (string-match pcomplete--env-regexp string)
953 (push (substring string 0 (match-beginning 1)) strings)
954 (push (getenv (match-string 2 string)) strings)
955 (setq string (substring string (match-end 1))))
956 (if (not (and strings
957 (or (eq action t)
958 (eq (car-safe action) 'boundaries))))
959 (let ((newstring
960 (mapconcat 'identity (nreverse (cons string strings)) "")))
961 ;; FIXME: We could also try to return unexpanded envvars.
962 (complete-with-action action table newstring pred))
963 (let* ((envpos (apply #'+ (mapcar #' length strings)))
964 (newstring
965 (mapconcat 'identity (nreverse (cons string strings)) ""))
966 (bounds (completion-boundaries newstring table pred
967 (or (cdr-safe action) ""))))
968 (if (>= (car bounds) envpos)
969 ;; The env-var is "out of bounds".
970 (if (eq action t)
971 (complete-with-action action table newstring pred)
972 (list* 'boundaries
973 (+ (car bounds) (- orig-length (length newstring)))
974 (cdr bounds)))
975 ;; The env-var is in the file bounds.
976 (if (eq action t)
977 (let ((comps (complete-with-action
978 action table newstring pred))
979 (len (- envpos (car bounds))))
980 ;; Strip the part of each completion that's actually
981 ;; coming from the env-var.
982 (mapcar (lambda (s) (substring s len)) comps))
983 (list* 'boundaries
984 (+ envpos (- orig-length (length newstring)))
985 (cdr bounds))))))))))
986
987 (defsubst pcomplete-all-entries (&optional regexp predicate)
988 "Like `pcomplete-entries', but doesn't ignore any entries."
989 (let (pcomplete-file-ignore
990 pcomplete-dir-ignore)
991 (pcomplete-entries regexp predicate)))
992
993 (defsubst pcomplete-dirs (&optional regexp)
994 "Complete amongst a list of directories."
995 (pcomplete-entries regexp 'file-directory-p))
996
997 ;; generation of completion lists
998
999 (defun pcomplete-find-completion-function (command)
1000 "Find the completion function to call for the given COMMAND."
1001 (let ((sym (intern-soft
1002 (concat "pcomplete/" (symbol-name major-mode) "/" command))))
1003 (unless sym
1004 (setq sym (intern-soft (concat "pcomplete/" command))))
1005 (and sym (fboundp sym) sym)))
1006
1007 (defun pcomplete-completions ()
1008 "Return a list of completions for the current argument position."
1009 (catch 'pcomplete-completions
1010 (when (pcomplete-parse-arguments pcomplete-expand-before-complete)
1011 (if (= pcomplete-index pcomplete-last)
1012 (funcall pcomplete-command-completion-function)
1013 (let ((sym (or (pcomplete-find-completion-function
1014 (funcall pcomplete-command-name-function))
1015 pcomplete-default-completion-function)))
1016 (ignore
1017 (pcomplete-next-arg)
1018 (funcall sym)))))))
1019
1020 (defun pcomplete-opt (options &optional prefix _no-ganging _args-follow)
1021 "Complete a set of OPTIONS, each beginning with PREFIX (?- by default).
1022 PREFIX may be t, in which case no PREFIX character is necessary.
1023 If NO-GANGING is non-nil, each option is separate (-xy is not allowed).
1024 If ARGS-FOLLOW is non-nil, then options which take arguments may have
1025 the argument appear after a ganged set of options. This is how tar
1026 behaves, for example.
1027 Arguments NO-GANGING and ARGS-FOLLOW are currently ignored."
1028 (if (and (= pcomplete-index pcomplete-last)
1029 (string= (pcomplete-arg) "-"))
1030 (let ((len (length options))
1031 (index 0)
1032 char choices)
1033 (while (< index len)
1034 (setq char (aref options index))
1035 (if (eq char ?\()
1036 (let ((result (read-from-string options index)))
1037 (setq index (cdr result)))
1038 (unless (memq char '(?/ ?* ?? ?.))
1039 (push (char-to-string char) choices))
1040 (setq index (1+ index))))
1041 (throw 'pcomplete-completions
1042 (mapcar
1043 (function
1044 (lambda (opt)
1045 (concat "-" opt)))
1046 (pcomplete-uniqify-list choices))))
1047 (let ((arg (pcomplete-arg)))
1048 (when (and (> (length arg) 1)
1049 (stringp arg)
1050 (eq (aref arg 0) (or prefix ?-)))
1051 (pcomplete-next-arg)
1052 (let ((char (aref arg 1))
1053 (len (length options))
1054 (index 0)
1055 opt-char arg-char result)
1056 (while (< (1+ index) len)
1057 (setq opt-char (aref options index)
1058 arg-char (aref options (1+ index)))
1059 (if (eq arg-char ?\()
1060 (setq result
1061 (read-from-string options (1+ index))
1062 index (cdr result)
1063 result (car result))
1064 (setq result nil))
1065 (when (and (eq char opt-char)
1066 (memq arg-char '(?\( ?/ ?* ?? ?.)))
1067 (if (< pcomplete-index pcomplete-last)
1068 (pcomplete-next-arg)
1069 (throw 'pcomplete-completions
1070 (cond ((eq arg-char ?/) (pcomplete-dirs))
1071 ((eq arg-char ?*) (pcomplete-executables))
1072 ((eq arg-char ??) nil)
1073 ((eq arg-char ?.) (pcomplete-entries))
1074 ((eq arg-char ?\() (eval result))))))
1075 (setq index (1+ index))))))))
1076
1077 (defun pcomplete--here (&optional form stub paring form-only)
1078 "Complete against the current argument, if at the end.
1079 See the documentation for `pcomplete-here'."
1080 (if (< pcomplete-index pcomplete-last)
1081 (progn
1082 (if (eq paring 0)
1083 (setq pcomplete-seen nil)
1084 (unless (eq paring t)
1085 (let ((arg (pcomplete-arg)))
1086 (when (stringp arg)
1087 (push (if paring
1088 (funcall paring arg)
1089 (file-truename arg))
1090 pcomplete-seen)))))
1091 (pcomplete-next-arg)
1092 t)
1093 (when pcomplete-show-help
1094 (pcomplete--help)
1095 (throw 'pcompleted t))
1096 (if stub
1097 (setq pcomplete-stub stub))
1098 (if (or (eq paring t) (eq paring 0))
1099 (setq pcomplete-seen nil)
1100 (setq pcomplete-norm-func (or paring 'file-truename)))
1101 (unless form-only
1102 (run-hooks 'pcomplete-try-first-hook))
1103 (throw 'pcomplete-completions
1104 (if (functionp form)
1105 (funcall form)
1106 ;; Old calling convention, might still be used by files
1107 ;; byte-compiled with the older code.
1108 (eval form)))))
1109
1110 (defmacro pcomplete-here (&optional form stub paring form-only)
1111 "Complete against the current argument, if at the end.
1112 If completion is to be done here, evaluate FORM to generate the completion
1113 table which will be used for completion purposes. If STUB is a
1114 string, use it as the completion stub instead of the default (which is
1115 the entire text of the current argument).
1116
1117 For an example of when you might want to use STUB: if the current
1118 argument text is 'long-path-name/', you don't want the completions
1119 list display to be cluttered by 'long-path-name/' appearing at the
1120 beginning of every alternative. Not only does this make things less
1121 intelligible, but it is also inefficient. Yet, if the completion list
1122 does not begin with this string for every entry, the current argument
1123 won't complete correctly.
1124
1125 The solution is to specify a relative stub. It allows you to
1126 substitute a different argument from the current argument, almost
1127 always for the sake of efficiency.
1128
1129 If PARING is nil, this argument will be pared against previous
1130 arguments using the function `file-truename' to normalize them.
1131 PARING may be a function, in which case that function is used for
1132 normalization. If PARING is t, the argument dealt with by this
1133 call will not participate in argument paring. If it is the
1134 integer 0, all previous arguments that have been seen will be
1135 cleared.
1136
1137 If FORM-ONLY is non-nil, only the result of FORM will be used to
1138 generate the completions list. This means that the hook
1139 `pcomplete-try-first-hook' will not be run."
1140 (declare (debug t))
1141 `(pcomplete--here (lambda () ,form) ,stub ,paring ,form-only))
1142
1143
1144 (defmacro pcomplete-here* (&optional form stub form-only)
1145 "An alternate form which does not participate in argument paring."
1146 (declare (debug t))
1147 `(pcomplete-here ,form ,stub t ,form-only))
1148
1149 ;; display support
1150
1151 (defun pcomplete-restore-windows ()
1152 "If the only window change was due to Completions, restore things."
1153 (if pcomplete-last-window-config
1154 (let* ((cbuf (get-buffer "*Completions*"))
1155 (cwin (and cbuf (get-buffer-window cbuf))))
1156 (when (window-live-p cwin)
1157 (bury-buffer cbuf)
1158 (set-window-configuration pcomplete-last-window-config))))
1159 (setq pcomplete-last-window-config nil
1160 pcomplete-window-restore-timer nil))
1161
1162 ;; Abstractions so that the code below will work for both Emacs 20 and
1163 ;; XEmacs 21
1164
1165 (defalias 'pcomplete-event-matches-key-specifier-p
1166 (if (featurep 'xemacs)
1167 'event-matches-key-specifier-p
1168 'eq))
1169
1170 (defun pcomplete-read-event (&optional prompt)
1171 (if (fboundp 'read-event)
1172 (read-event prompt)
1173 (aref (read-key-sequence prompt) 0)))
1174
1175 (defun pcomplete-show-completions (completions)
1176 "List in help buffer sorted COMPLETIONS.
1177 Typing SPC flushes the help buffer."
1178 (when pcomplete-window-restore-timer
1179 (cancel-timer pcomplete-window-restore-timer)
1180 (setq pcomplete-window-restore-timer nil))
1181 (unless pcomplete-last-window-config
1182 (setq pcomplete-last-window-config (current-window-configuration)))
1183 (with-output-to-temp-buffer "*Completions*"
1184 (display-completion-list completions))
1185 (message "Hit space to flush")
1186 (let (event)
1187 (prog1
1188 (catch 'done
1189 (while (with-current-buffer (get-buffer "*Completions*")
1190 (setq event (pcomplete-read-event)))
1191 (cond
1192 ((pcomplete-event-matches-key-specifier-p event ?\s)
1193 (set-window-configuration pcomplete-last-window-config)
1194 (setq pcomplete-last-window-config nil)
1195 (throw 'done nil))
1196 ((or (pcomplete-event-matches-key-specifier-p event 'tab)
1197 ;; Needed on a terminal
1198 (pcomplete-event-matches-key-specifier-p event 9))
1199 (let ((win (or (get-buffer-window "*Completions*" 0)
1200 (display-buffer "*Completions*"
1201 'not-this-window))))
1202 (with-selected-window win
1203 (if (pos-visible-in-window-p (point-max))
1204 (goto-char (point-min))
1205 (scroll-up))))
1206 (message ""))
1207 (t
1208 (setq unread-command-events (list event))
1209 (throw 'done nil)))))
1210 (if (and pcomplete-last-window-config
1211 pcomplete-restore-window-delay)
1212 (setq pcomplete-window-restore-timer
1213 (run-with-timer pcomplete-restore-window-delay nil
1214 'pcomplete-restore-windows))))))
1215
1216 ;; insert completion at point
1217
1218 (defun pcomplete-insert-entry (stub entry &optional addsuffix raw-p)
1219 "Insert a completion entry at point.
1220 Returns non-nil if a space was appended at the end."
1221 (let ((here (point)))
1222 (if (not pcomplete-ignore-case)
1223 (insert-and-inherit (if raw-p
1224 (substring entry (length stub))
1225 (pcomplete-quote-argument
1226 (substring entry (length stub)))))
1227 ;; the stub is not quoted at this time, so to determine the
1228 ;; length of what should be in the buffer, we must quote it
1229 ;; FIXME: Here we presume that quoting `stub' gives us the exact
1230 ;; text in the buffer before point, which is not guaranteed;
1231 ;; e.g. it is not the case in eshell when completing ${FOO}tm[TAB].
1232 (delete-char (- (length (pcomplete-quote-argument stub))))
1233 ;; if there is already a backslash present to handle the first
1234 ;; character, don't bother quoting it
1235 (when (eq (char-before) ?\\)
1236 (insert-and-inherit (substring entry 0 1))
1237 (setq entry (substring entry 1)))
1238 (insert-and-inherit (if raw-p
1239 entry
1240 (pcomplete-quote-argument entry))))
1241 (let (space-added)
1242 (when (and (not (memq (char-before) pcomplete-suffix-list))
1243 addsuffix)
1244 (insert-and-inherit pcomplete-termination-string)
1245 (setq space-added t))
1246 (setq pcomplete-last-completion-length (- (point) here)
1247 pcomplete-last-completion-stub stub)
1248 space-added)))
1249
1250 ;; selection of completions
1251
1252 (defun pcomplete-do-complete (stub completions)
1253 "Dynamically complete at point using STUB and COMPLETIONS.
1254 This is basically just a wrapper for `pcomplete-stub' which does some
1255 extra checking, and munging of the COMPLETIONS list."
1256 (unless (stringp stub)
1257 (message "Cannot complete argument")
1258 (throw 'pcompleted nil))
1259 (if (null completions)
1260 (ignore
1261 (if (and stub (> (length stub) 0))
1262 (message "No completions of %s" stub)
1263 (message "No completions")))
1264 ;; pare it down, if applicable
1265 (when (and pcomplete-use-paring pcomplete-seen)
1266 (setq pcomplete-seen
1267 (mapcar 'directory-file-name pcomplete-seen))
1268 (dolist (p pcomplete-seen)
1269 (add-to-list 'pcomplete-seen
1270 (funcall pcomplete-norm-func p)))
1271 (setq completions
1272 (apply-partially 'completion-table-with-predicate
1273 completions
1274 (when pcomplete-seen
1275 (lambda (f)
1276 (not (member
1277 (funcall pcomplete-norm-func
1278 (directory-file-name f))
1279 pcomplete-seen))))
1280 'strict)))
1281 ;; OK, we've got a list of completions.
1282 (if pcomplete-show-list
1283 ;; FIXME: pay attention to boundaries.
1284 (pcomplete-show-completions (all-completions stub completions))
1285 (pcomplete-stub stub completions))))
1286
1287 (defun pcomplete-stub (stub candidates &optional cycle-p)
1288 "Dynamically complete STUB from CANDIDATES list.
1289 This function inserts completion characters at point by completing
1290 STUB from the strings in CANDIDATES. A completions listing may be
1291 shown in a help buffer if completion is ambiguous.
1292
1293 Returns nil if no completion was inserted.
1294 Returns `sole' if completed with the only completion match.
1295 Returns `shortest' if completed with the shortest of the matches.
1296 Returns `partial' if completed as far as possible with the matches.
1297 Returns `listed' if a completion listing was shown.
1298
1299 See also `pcomplete-filename'."
1300 (let* ((completion-ignore-case pcomplete-ignore-case)
1301 (completions (all-completions stub candidates))
1302 (entry (try-completion stub candidates))
1303 result)
1304 (cond
1305 ((null entry)
1306 (if (and stub (> (length stub) 0))
1307 (message "No completions of %s" stub)
1308 (message "No completions")))
1309 ((eq entry t)
1310 (setq entry stub)
1311 (message "Sole completion")
1312 (setq result 'sole))
1313 ((= 1 (length completions))
1314 (setq result 'sole))
1315 ((and pcomplete-cycle-completions
1316 (or cycle-p
1317 (not pcomplete-cycle-cutoff-length)
1318 (<= (length completions)
1319 pcomplete-cycle-cutoff-length)))
1320 (let ((bound (car (completion-boundaries stub candidates nil ""))))
1321 (unless (zerop bound)
1322 (setq completions (mapcar (lambda (c) (concat (substring stub 0 bound) c))
1323 completions)))
1324 (setq entry (car completions)
1325 pcomplete-current-completions completions)))
1326 ((and pcomplete-recexact
1327 (string-equal stub entry)
1328 (member entry completions))
1329 ;; It's not unique, but user wants shortest match.
1330 (message "Completed shortest")
1331 (setq result 'shortest))
1332 ((or pcomplete-autolist
1333 (string-equal stub entry))
1334 ;; It's not unique, list possible completions.
1335 ;; FIXME: pay attention to boundaries.
1336 (pcomplete-show-completions completions)
1337 (setq result 'listed))
1338 (t
1339 (message "Partially completed")
1340 (setq result 'partial)))
1341 (cons result entry)))
1342
1343 ;; context sensitive help
1344
1345 (defun pcomplete--help ()
1346 "Produce context-sensitive help for the current argument.
1347 If specific documentation can't be given, be generic."
1348 (if (and pcomplete-help
1349 (or (and (stringp pcomplete-help)
1350 (fboundp 'Info-goto-node))
1351 (listp pcomplete-help)))
1352 (if (listp pcomplete-help)
1353 (message "%s" (eval pcomplete-help))
1354 (save-window-excursion (info))
1355 (switch-to-buffer-other-window "*info*")
1356 (funcall (symbol-function 'Info-goto-node) pcomplete-help))
1357 (if pcomplete-man-function
1358 (let ((cmd (funcall pcomplete-command-name-function)))
1359 (if (and cmd (> (length cmd) 0))
1360 (funcall pcomplete-man-function cmd)))
1361 (message "No context-sensitive help available"))))
1362
1363 ;; general utilities
1364
1365 (defun pcomplete-uniqify-list (l)
1366 "Sort and remove multiples in L."
1367 (setq l (sort l 'string-lessp))
1368 (let ((m l))
1369 (while m
1370 (while (and (cdr m)
1371 (string= (car m)
1372 (cadr m)))
1373 (setcdr m (cddr m)))
1374 (setq m (cdr m))))
1375 l)
1376
1377 (defun pcomplete-process-result (cmd &rest args)
1378 "Call CMD using `call-process' and return the simplest result."
1379 (with-temp-buffer
1380 (apply 'call-process cmd nil t nil args)
1381 (skip-chars-backward "\n")
1382 (buffer-substring (point-min) (point))))
1383
1384 ;; create a set of aliases which allow completion functions to be not
1385 ;; quite so verbose
1386
1387 ;;; jww (1999-10-20): are these a good idea?
1388 ;; (defalias 'pc-here 'pcomplete-here)
1389 ;; (defalias 'pc-test 'pcomplete-test)
1390 ;; (defalias 'pc-opt 'pcomplete-opt)
1391 ;; (defalias 'pc-match 'pcomplete-match)
1392 ;; (defalias 'pc-match-string 'pcomplete-match-string)
1393 ;; (defalias 'pc-match-beginning 'pcomplete-match-beginning)
1394 ;; (defalias 'pc-match-end 'pcomplete-match-end)
1395
1396 (provide 'pcomplete)
1397
1398 ;;; pcomplete.el ends here