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