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