Mercurial > emacs
annotate lisp/pcomplete.el @ 47820:ac369f2f8f6a
#
author | André Spiegel <spiegel@gnu.org> |
---|---|
date | Thu, 10 Oct 2002 08:49:31 +0000 |
parents | fa3f7092b7c3 |
children | c814bafa1987 |
rev | line source |
---|---|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
35588
diff
changeset
|
1 ;;; pcomplete.el --- programmable completion |
29876 | 2 |
43827
074094fab9d6
(pcomplete-entries): Expand environment variables in filename.
Miles Bader <miles@gnu.org>
parents:
38436
diff
changeset
|
3 ;; Copyright (C) 1999, 2000, 2001, 2002 Free Sofware Foundation |
29876 | 4 |
5 ;; Author: John Wiegley <johnw@gnu.org> | |
32502
de05ca05f4ff
(pcomplete) <defgroup>: Add :version.
Dave Love <fx@gnu.org>
parents:
32451
diff
changeset
|
6 ;; Keywords: processes abbrev |
29876 | 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 2, or (at your option) | |
13 ;; 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; see the file COPYING. If not, write to the | |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
24 | |
25 ;;; Commentary: | |
26 | |
27 ;; This module provides a programmable completion facility using | |
28 ;; "completion functions". Each completion function is responsible | |
29 ;; for producing a list of possible completions relevant to the current | |
30 ;; argument position. | |
31 ;; | |
32 ;; To use pcomplete with shell-mode, for example, you will need the | |
33 ;; following in your .emacs file: | |
34 ;; | |
35 ;; (load "pcmpl-auto") | |
36 ;; (add-hook 'shell-mode-hook 'pcomplete-shell-setup) | |
37 ;; | |
38 ;; Most of the code below simply provides support mechanisms for | |
39 ;; writing completion functions. Completion functions themselves are | |
40 ;; very easy to write. They have few requirements beyond those of | |
41 ;; regular Lisp functions. | |
42 ;; | |
43 ;; Consider the following example, which will complete against | |
44 ;; filenames for the first two arguments, and directories for all | |
45 ;; remaining arguments: | |
46 ;; | |
47 ;; (defun pcomplete/my-command () | |
48 ;; (pcomplete-here (pcomplete-entries)) | |
49 ;; (pcomplete-here (pcomplete-entries)) | |
50 ;; (while (pcomplete-here (pcomplete-dirs)))) | |
51 ;; | |
52 ;; Here are the requirements for completion functions: | |
53 ;; | |
54 ;; @ They must be called "pcomplete/MAJOR-MODE/NAME", or | |
55 ;; "pcomplete/NAME". This is how they are looked up, using the NAME | |
56 ;; specified in the command argument (the argument in first | |
57 ;; position). | |
58 ;; | |
59 ;; @ They must be callable with no arguments. | |
60 ;; | |
61 ;; @ Their return value is ignored. If they actually return normally, | |
62 ;; it means no completions were available. | |
63 ;; | |
64 ;; @ In order to provide completions, they must throw the tag | |
65 ;; `pcomplete-completions'. The value must be the list of possible | |
66 ;; completions for the final argument. | |
67 ;; | |
68 ;; @ To simplify completion function logic, the tag `pcompleted' may | |
69 ;; be thrown with a value of nil in order to abort the function. It | |
70 ;; means that there were no completions available. | |
71 ;; | |
72 ;; When a completion function is called, the variable `pcomplete-args' | |
73 ;; is in scope, and contains all of the arguments specified on the | |
74 ;; command line. The variable `pcomplete-last' is the index of the | |
75 ;; last argument in that list. | |
76 ;; | |
77 ;; The variable `pcomplete-index' is used by the completion code to | |
78 ;; know which argument the completion function is currently examining. | |
79 ;; It always begins at 1, meaning the first argument after the command | |
80 ;; name. | |
81 ;; | |
82 ;; To facilitate writing completion logic, a special macro, | |
83 ;; `pcomplete-here', has been provided which does several things: | |
84 ;; | |
85 ;; 1. It will throw `pcompleted' (with a value of nil) whenever | |
86 ;; `pcomplete-index' exceeds `pcomplete-last'. | |
87 ;; | |
88 ;; 2. It will increment `pcomplete-index' if the final argument has | |
89 ;; not been reached yet. | |
90 ;; | |
91 ;; 3. It will evaluate the form passed to it, and throw the result | |
92 ;; using the `pcomplete-completions' tag, if it is called when | |
93 ;; `pcomplete-index' is pointing to the final argument. | |
94 ;; | |
95 ;; Sometimes a completion function will want to vary the possible | |
96 ;; completions for an argument based on the previous one. To | |
97 ;; facilitate tests like this, the function `pcomplete-test' and | |
98 ;; `pcomplete-match' are provided. Called with one argument, they | |
99 ;; test the value of the previous command argument. Otherwise, a | |
100 ;; relative index may be given as an optional second argument, where 0 | |
101 ;; refers to the current argument, 1 the previous, 2 the one before | |
102 ;; that, etc. The symbols `first' and `last' specify absolute | |
103 ;; offsets. | |
104 ;; | |
105 ;; Here is an example which will only complete against directories for | |
106 ;; the second argument if the first argument is also a directory: | |
107 ;; | |
108 ;; (defun pcomplete/example () | |
109 ;; (pcomplete-here (pcomplete-entries)) | |
110 ;; (if (pcomplete-test 'file-directory-p) | |
111 ;; (pcomplete-here (pcomplete-dirs)) | |
112 ;; (pcomplete-here (pcomplete-entries)))) | |
113 ;; | |
114 ;; For generating completion lists based on directory contents, see | |
115 ;; the functions `pcomplete-entries', `pcomplete-dirs', | |
116 ;; `pcomplete-executables' and `pcomplete-all-entries'. | |
117 ;; | |
118 ;; Consult the documentation for `pcomplete-here' for information | |
119 ;; about its other arguments. | |
120 | |
121 ;;; Code: | |
122 | |
123 (provide 'pcomplete) | |
124 | |
125 (defgroup pcomplete nil | |
126 "Programmable completion." | |
32502
de05ca05f4ff
(pcomplete) <defgroup>: Add :version.
Dave Love <fx@gnu.org>
parents:
32451
diff
changeset
|
127 :version "21.1" |
29876 | 128 :group 'processes) |
129 | |
130 ;;; User Variables: | |
131 | |
132 (defcustom pcomplete-file-ignore nil | |
133 "*A regexp of filenames to be disregarded during file completion." | |
35588 | 134 :type '(choice regexp (const :tag "None" nil)) |
29876 | 135 :group 'pcomplete) |
136 | |
137 (defcustom pcomplete-dir-ignore nil | |
138 "*A regexp of names to be disregarded during directory completion." | |
35588 | 139 :type '(choice regexp (const :tag "None" nil)) |
29876 | 140 :group 'pcomplete) |
141 | |
142 (defcustom pcomplete-ignore-case (memq system-type '(ms-dos windows-nt)) | |
143 "*If non-nil, ignore case when doing filename completion." | |
144 :type 'boolean | |
145 :group 'pcomplete) | |
146 | |
147 (defcustom pcomplete-autolist nil | |
148 "*If non-nil, automatically list possibilities on partial completion. | |
149 This mirrors the optional behavior of tcsh." | |
150 :type 'boolean | |
151 :group 'pcomplete) | |
152 | |
153 (defcustom pcomplete-suffix-list (list directory-sep-char ?:) | |
154 "*A list of characters which constitute a proper suffix." | |
155 :type '(repeat character) | |
156 :group 'pcomplete) | |
157 | |
158 (defcustom pcomplete-recexact nil | |
159 "*If non-nil, use shortest completion if characters cannot be added. | |
160 This mirrors the optional behavior of tcsh. | |
161 | |
162 A non-nil value is useful if `pcomplete-autolist' is non-nil too." | |
163 :type 'boolean | |
164 :group 'pcomplete) | |
165 | |
166 (defcustom pcomplete-arg-quote-list nil | |
167 "*List of characters to quote when completing an argument." | |
168 :type '(choice (repeat character) | |
169 (const :tag "Don't quote" nil)) | |
170 :group 'pcomplete) | |
171 | |
172 (defcustom pcomplete-quote-arg-hook nil | |
173 "*A hook which is run to quote a character within a filename. | |
174 Each function is passed both the filename to be quoted, and the index | |
175 to be considered. If the function wishes to provide an alternate | |
176 quoted form, it need only return the replacement string. If no | |
177 function provides a replacement, quoting shall proceed as normal, | |
178 using a backslash to quote any character which is a member of | |
179 `pcomplete-arg-quote-list'." | |
180 :type 'hook | |
181 :group 'pcomplete) | |
182 | |
183 (defcustom pcomplete-man-function 'man | |
184 "*A function to that will be called to display a manual page. | |
185 It will be passed the name of the command to document." | |
186 :type 'function | |
187 :group 'pcomplete) | |
188 | |
189 (defcustom pcomplete-compare-entry-function 'string-lessp | |
190 "*This function is used to order file entries for completion. | |
191 The behavior of most all shells is to sort alphabetically." | |
192 :type '(radio (function-item string-lessp) | |
193 (function-item file-newer-than-file-p) | |
194 (function :tag "Other")) | |
195 :group 'pcomplete) | |
196 | |
197 (defcustom pcomplete-help nil | |
198 "*A string or function (or nil) used for context-sensitive help. | |
199 If a string, it should name an Info node that will be jumped to. | |
200 If non-nil, it must a sexp that will be evaluated, and whose | |
201 result will be shown in the minibuffer. | |
202 If nil, the function `pcomplete-man-function' will be called with the | |
203 current command argument." | |
204 :type '(choice string sexp (const :tag "Use man page" nil)) | |
205 :group 'pcomplete) | |
206 | |
207 (defcustom pcomplete-expand-before-complete nil | |
208 "*If non-nil, expand the current argument before completing it. | |
209 This means that typing something such as '$HOME/bi' followed by | |
210 \\[pcomplete-argument] will cause the variable reference to be | |
211 resolved first, and the resultant value that will be completed against | |
212 to be inserted in the buffer. Note that exactly what gets expanded | |
213 and how is entirely up to the behavior of the | |
214 `pcomplete-parse-arguments-function'." | |
215 :type 'boolean | |
216 :group 'pcomplete) | |
217 | |
218 (defcustom pcomplete-parse-arguments-function | |
219 'pcomplete-parse-buffer-arguments | |
220 "*A function to call to parse the current line's arguments. | |
221 It should be called with no parameters, and with point at the position | |
222 of the argument that is to be completed. | |
223 | |
224 It must either return nil, or a cons cell of the form: | |
225 | |
226 ((ARG...) (BEG-POS...)) | |
227 | |
228 The two lists must be identical in length. The first gives the final | |
229 value of each command line argument (which need not match the textual | |
230 representation of that argument), and BEG-POS gives the beginning | |
231 position of each argument, as it is seen by the user. The establishes | |
232 a relationship between the fully resolved value of the argument, and | |
233 the textual representation of the argument." | |
234 :type 'function | |
235 :group 'pcomplete) | |
236 | |
237 (defcustom pcomplete-cycle-completions t | |
238 "*If non-nil, hitting the TAB key cycles through the completion list. | |
239 Typical Emacs behavior is to complete as much as possible, then pause | |
240 waiting for further input. Then if TAB is hit again, show a list of | |
241 possible completions. When `pcomplete-cycle-completions' is non-nil, | |
242 it acts more like zsh or 4nt, showing the first maximal match first, | |
243 followed by any further matches on each subsequent pressing of the TAB | |
244 key. \\[pcomplete-list] is the key to press if the user wants to see | |
245 the list of possible completions." | |
246 :type 'boolean | |
247 :group 'pcomplete) | |
248 | |
249 (defcustom pcomplete-cycle-cutoff-length 5 | |
250 "*If the number of completions is greater than this, don't cycle. | |
251 This variable is a compromise between the traditional Emacs style of | |
252 completion, and the \"cycling\" style. Basically, if there are more | |
253 than this number of completions possible, don't automatically pick the | |
254 first one and then expect the user to press TAB to cycle through them. | |
255 Typically, when there are a large number of completion possibilities, | |
256 the user wants to see them in a list buffer so that they can know what | |
257 options are available. But if the list is small, it means the user | |
258 has already entered enough input to disambiguate most of the | |
259 possibilities, and therefore they are probably most interested in | |
260 cycling through the candidates. Set this value to nil if you want | |
261 cycling to always be enabled." | |
262 :type '(choice integer (const :tag "Always cycle" nil)) | |
263 :group 'pcomplete) | |
264 | |
265 (defcustom pcomplete-restore-window-delay 1 | |
266 "*The number of seconds to wait before restoring completion windows. | |
267 Once the completion window has been displayed, if the user then goes | |
268 on to type something else, that completion window will be removed from | |
269 the display (actually, the original window configuration before it was | |
270 displayed will be restored), after this many seconds of idle time. If | |
271 set to nil, completion windows will be left on second until the user | |
272 removes them manually. If set to 0, they will disappear immediately | |
273 after the user enters a key other than TAB." | |
274 :type '(choice integer (const :tag "Never restore" nil)) | |
275 :group 'pcomplete) | |
276 | |
277 (defcustom pcomplete-try-first-hook nil | |
278 "*A list of functions which are called before completing an argument. | |
279 This can be used, for example, for completing things which might apply | |
280 to all arguments, such as variable names after a $." | |
281 :type 'hook | |
282 :group 'pcomplete) | |
283 | |
284 (defcustom pcomplete-command-completion-function | |
285 (function | |
286 (lambda () | |
287 (pcomplete-here (pcomplete-executables)))) | |
288 "*Function called for completing the initial command argument." | |
289 :type 'function | |
290 :group 'pcomplete) | |
291 | |
292 (defcustom pcomplete-command-name-function 'pcomplete-command-name | |
293 "*Function called for determining the current command name." | |
294 :type 'function | |
295 :group 'pcomplete) | |
296 | |
297 (defcustom pcomplete-default-completion-function | |
298 (function | |
299 (lambda () | |
300 (while (pcomplete-here (pcomplete-entries))))) | |
301 "*Function called when no completion rule can be found. | |
302 This function is used to generate completions for every argument." | |
303 :type 'function | |
304 :group 'pcomplete) | |
305 | |
31241 | 306 (defcustom pcomplete-use-paring t |
307 "*If t, pare alternatives that have already been used. | |
308 If nil, you will always see the completion set of possible options, no | |
309 matter which of those options have already been used in previous | |
310 command arguments." | |
311 :type 'boolean | |
312 :group 'pcomplete) | |
313 | |
29876 | 314 ;;; Internal Variables: |
315 | |
316 ;; for cycling completion support | |
317 (defvar pcomplete-current-completions nil) | |
318 (defvar pcomplete-last-completion-length) | |
319 (defvar pcomplete-last-completion-stub) | |
320 (defvar pcomplete-last-completion-raw) | |
321 (defvar pcomplete-last-window-config nil) | |
322 (defvar pcomplete-window-restore-timer nil) | |
323 | |
324 (make-variable-buffer-local 'pcomplete-current-completions) | |
325 (make-variable-buffer-local 'pcomplete-last-completion-length) | |
326 (make-variable-buffer-local 'pcomplete-last-completion-stub) | |
327 (make-variable-buffer-local 'pcomplete-last-completion-raw) | |
328 (make-variable-buffer-local 'pcomplete-last-window-config) | |
329 (make-variable-buffer-local 'pcomplete-window-restore-timer) | |
330 | |
331 ;; used for altering pcomplete's behavior. These global variables | |
332 ;; should always be nil. | |
333 (defvar pcomplete-show-help nil) | |
334 (defvar pcomplete-show-list nil) | |
335 (defvar pcomplete-expand-only-p nil) | |
336 | |
337 ;;; User Functions: | |
338 | |
339 ;;;###autoload | |
340 (defun pcomplete () | |
341 "Support extensible programmable completion. | |
342 To use this function, just bind the TAB key to it, or add it to your | |
343 completion functions list (it should occur fairly early in the list)." | |
344 (interactive) | |
345 (if (and (interactive-p) | |
346 pcomplete-cycle-completions | |
347 pcomplete-current-completions | |
348 (memq last-command '(pcomplete | |
349 pcomplete-expand-and-complete | |
350 pcomplete-reverse))) | |
351 (progn | |
352 (delete-backward-char pcomplete-last-completion-length) | |
353 (if (eq this-command 'pcomplete-reverse) | |
354 (progn | |
355 (setq pcomplete-current-completions | |
356 (cons (car (last pcomplete-current-completions)) | |
357 pcomplete-current-completions)) | |
358 (setcdr (last pcomplete-current-completions 2) nil)) | |
359 (nconc pcomplete-current-completions | |
360 (list (car pcomplete-current-completions))) | |
361 (setq pcomplete-current-completions | |
362 (cdr pcomplete-current-completions))) | |
363 (pcomplete-insert-entry pcomplete-last-completion-stub | |
364 (car pcomplete-current-completions) | |
365 nil pcomplete-last-completion-raw)) | |
366 (setq pcomplete-current-completions nil | |
367 pcomplete-last-completion-raw nil) | |
368 (catch 'pcompleted | |
369 (let* ((pcomplete-stub) | |
370 pcomplete-seen pcomplete-norm-func | |
371 pcomplete-args pcomplete-last pcomplete-index | |
372 (pcomplete-autolist pcomplete-autolist) | |
373 (pcomplete-suffix-list pcomplete-suffix-list) | |
374 (completions (pcomplete-completions)) | |
375 (result (pcomplete-do-complete pcomplete-stub completions))) | |
376 (and result | |
377 (not (eq (car result) 'listed)) | |
378 (cdr result) | |
379 (pcomplete-insert-entry pcomplete-stub (cdr result) | |
380 (memq (car result) | |
381 '(sole shortest)) | |
382 pcomplete-last-completion-raw)))))) | |
383 | |
384 ;;;###autoload | |
385 (defun pcomplete-reverse () | |
386 "If cycling completion is in use, cycle backwards." | |
387 (interactive) | |
388 (call-interactively 'pcomplete)) | |
389 | |
390 ;;;###autoload | |
391 (defun pcomplete-expand-and-complete () | |
392 "Expand the textual value of the current argument. | |
393 This will modify the current buffer." | |
394 (interactive) | |
395 (let ((pcomplete-expand-before-complete t)) | |
396 (pcomplete))) | |
397 | |
398 ;;;###autoload | |
399 (defun pcomplete-continue () | |
400 "Complete without reference to any cycling completions." | |
401 (interactive) | |
402 (setq pcomplete-current-completions nil | |
403 pcomplete-last-completion-raw nil) | |
404 (call-interactively 'pcomplete)) | |
405 | |
406 ;;;###autoload | |
407 (defun pcomplete-expand () | |
408 "Expand the textual value of the current argument. | |
409 This will modify the current buffer." | |
410 (interactive) | |
411 (let ((pcomplete-expand-before-complete t) | |
412 (pcomplete-expand-only-p t)) | |
413 (pcomplete) | |
414 (when (and pcomplete-current-completions | |
415 (> (length pcomplete-current-completions) 0)) | |
416 (delete-backward-char pcomplete-last-completion-length) | |
417 (while pcomplete-current-completions | |
418 (unless (pcomplete-insert-entry | |
419 "" (car pcomplete-current-completions) t | |
420 pcomplete-last-completion-raw) | |
421 (insert-and-inherit " ")) | |
422 (setq pcomplete-current-completions | |
423 (cdr pcomplete-current-completions)))))) | |
424 | |
425 ;;;###autoload | |
426 (defun pcomplete-help () | |
427 "Display any help information relative to the current argument." | |
428 (interactive) | |
429 (let ((pcomplete-show-help t)) | |
430 (pcomplete))) | |
431 | |
432 ;;;###autoload | |
433 (defun pcomplete-list () | |
434 "Show the list of possible completions for the current argument." | |
435 (interactive) | |
436 (when (and pcomplete-cycle-completions | |
437 pcomplete-current-completions | |
438 (eq last-command 'pcomplete-argument)) | |
439 (delete-backward-char pcomplete-last-completion-length) | |
440 (setq pcomplete-current-completions nil | |
441 pcomplete-last-completion-raw nil)) | |
442 (let ((pcomplete-show-list t)) | |
443 (pcomplete))) | |
444 | |
445 ;;; Internal Functions: | |
446 | |
447 ;; argument handling | |
448 | |
449 ;; for the sake of the bye-compiler, when compiling other files that | |
450 ;; contain completion functions | |
451 (defvar pcomplete-args nil) | |
452 (defvar pcomplete-begins nil) | |
453 (defvar pcomplete-last nil) | |
454 (defvar pcomplete-index nil) | |
455 (defvar pcomplete-stub nil) | |
456 (defvar pcomplete-seen nil) | |
457 (defvar pcomplete-norm-func nil) | |
458 | |
459 (defun pcomplete-arg (&optional index offset) | |
460 "Return the textual content of the INDEXth argument. | |
461 INDEX is based from the current processing position. If INDEX is | |
462 positive, values returned are closer to the command argument; if | |
463 negative, they are closer to the last argument. If the INDEX is | |
464 outside of the argument list, nil is returned. The default value for | |
465 INDEX is 0, meaning the current argument being examined. | |
466 | |
467 The special indices `first' and `last' may be used to access those | |
468 parts of the list. | |
469 | |
470 The OFFSET argument is added to/taken away from the index that will be | |
471 used. This is really only useful with `first' and `last', for | |
472 accessing absolute argument positions." | |
473 (setq index | |
474 (if (eq index 'first) | |
475 0 | |
476 (if (eq index 'last) | |
477 pcomplete-last | |
478 (- pcomplete-index (or index 0))))) | |
479 (if offset | |
480 (setq index (+ index offset))) | |
481 (nth index pcomplete-args)) | |
482 | |
483 (defun pcomplete-begin (&optional index offset) | |
484 "Return the beginning position of the INDEXth argument. | |
485 See the documentation for `pcomplete-arg'." | |
486 (setq index | |
487 (if (eq index 'first) | |
488 0 | |
489 (if (eq index 'last) | |
490 pcomplete-last | |
491 (- pcomplete-index (or index 0))))) | |
492 (if offset | |
493 (setq index (+ index offset))) | |
494 (nth index pcomplete-begins)) | |
495 | |
496 (defsubst pcomplete-actual-arg (&optional index offset) | |
497 "Return the actual text representation of the last argument. | |
498 This different from `pcomplete-arg', which returns the textual value | |
499 that the last argument evaluated to. This function returns what the | |
500 user actually typed in." | |
501 (buffer-substring (pcomplete-begin index offset) (point))) | |
502 | |
503 (defsubst pcomplete-next-arg () | |
504 "Move the various pointers to the next argument." | |
505 (setq pcomplete-index (1+ pcomplete-index) | |
506 pcomplete-stub (pcomplete-arg)) | |
507 (if (> pcomplete-index pcomplete-last) | |
508 (progn | |
509 (message "No completions") | |
510 (throw 'pcompleted nil)))) | |
511 | |
512 (defun pcomplete-command-name () | |
513 "Return the command name of the first argument." | |
514 (file-name-nondirectory (pcomplete-arg 'first))) | |
515 | |
516 (defun pcomplete-match (regexp &optional index offset start) | |
517 "Like `string-match', but on the current completion argument." | |
518 (let ((arg (pcomplete-arg (or index 1) offset))) | |
519 (if arg | |
520 (string-match regexp arg start) | |
521 (throw 'pcompleted nil)))) | |
522 | |
523 (defun pcomplete-match-string (which &optional index offset) | |
524 "Like `string-match', but on the current completion argument." | |
525 (let ((arg (pcomplete-arg (or index 1) offset))) | |
526 (if arg | |
527 (match-string which arg) | |
528 (throw 'pcompleted nil)))) | |
529 | |
530 (defalias 'pcomplete-match-beginning 'match-beginning) | |
531 (defalias 'pcomplete-match-end 'match-end) | |
532 | |
533 (defsubst pcomplete--test (pred arg) | |
534 "Perform a programmable completion predicate match." | |
535 (and pred | |
536 (cond ((eq pred t) t) | |
537 ((functionp pred) | |
538 (funcall pred arg)) | |
539 ((stringp pred) | |
540 (string-match (concat "^" pred "$") arg))) | |
541 pred)) | |
542 | |
543 (defun pcomplete-test (predicates &optional index offset) | |
544 "Predicates to test the current programmable argument with." | |
545 (let ((arg (pcomplete-arg (or index 1) offset))) | |
546 (unless (null predicates) | |
547 (if (not (listp predicates)) | |
548 (pcomplete--test predicates arg) | |
549 (let ((pred predicates) | |
550 found) | |
551 (while (and pred (not found)) | |
552 (setq found (pcomplete--test (car pred) arg) | |
553 pred (cdr pred))) | |
554 found))))) | |
555 | |
556 (defun pcomplete-parse-buffer-arguments () | |
557 "Parse whitespace separated arguments in the current region." | |
558 (let ((begin (point-min)) | |
559 (end (point-max)) | |
560 begins args) | |
561 (save-excursion | |
562 (goto-char begin) | |
563 (while (< (point) end) | |
564 (skip-chars-forward " \t\n") | |
565 (setq begins (cons (point) begins)) | |
566 (skip-chars-forward "^ \t\n") | |
567 (setq args (cons (buffer-substring-no-properties | |
568 (car begins) (point)) | |
569 args))) | |
570 (cons (reverse args) (reverse begins))))) | |
571 | |
572 ;;;###autoload | |
573 (defun pcomplete-comint-setup (completef-sym) | |
574 "Setup a comint buffer to use pcomplete. | |
575 COMPLETEF-SYM should be the symbol where the | |
576 dynamic-complete-functions are kept. For comint mode itself, this is | |
577 `comint-dynamic-complete-functions'." | |
578 (set (make-local-variable 'pcomplete-parse-arguments-function) | |
579 'pcomplete-parse-comint-arguments) | |
580 (make-local-variable completef-sym) | |
581 (let ((elem (memq 'comint-dynamic-complete-filename | |
582 (symbol-value completef-sym)))) | |
583 (if elem | |
584 (setcar elem 'pcomplete) | |
46769
8bb6a2e5d6bd
(pcomplete-comint-setup): Use `add-to-list', to prevent adding the
John Wiegley <johnw@newartisans.com>
parents:
46762
diff
changeset
|
585 (add-to-list completef-sym 'pcomplete)))) |
29876 | 586 |
587 ;;;###autoload | |
588 (defun pcomplete-shell-setup () | |
589 "Setup shell-mode to use pcomplete." | |
590 (pcomplete-comint-setup 'shell-dynamic-complete-functions)) | |
591 | |
592 (defun pcomplete-parse-comint-arguments () | |
593 "Parse whitespace separated arguments in the current region." | |
594 (let ((begin (save-excursion (comint-bol nil) (point))) | |
595 (end (point)) | |
596 begins args) | |
597 (save-excursion | |
598 (goto-char begin) | |
599 (while (< (point) end) | |
600 (skip-chars-forward " \t\n") | |
601 (setq begins (cons (point) begins)) | |
602 (let ((skip t)) | |
603 (while skip | |
604 (skip-chars-forward "^ \t\n") | |
605 (if (eq (char-before) ?\\) | |
606 (skip-chars-forward " \t\n") | |
607 (setq skip nil)))) | |
608 (setq args (cons (buffer-substring-no-properties | |
609 (car begins) (point)) | |
610 args))) | |
611 (cons (reverse args) (reverse begins))))) | |
612 | |
613 (defun pcomplete-parse-arguments (&optional expand-p) | |
614 "Parse the command line arguments. Most completions need this info." | |
615 (let ((results (funcall pcomplete-parse-arguments-function))) | |
616 (when results | |
617 (setq pcomplete-args (or (car results) (list "")) | |
618 pcomplete-begins (or (cdr results) (list (point))) | |
619 pcomplete-last (1- (length pcomplete-args)) | |
620 pcomplete-index 0 | |
621 pcomplete-stub (pcomplete-arg 'last)) | |
622 (let ((begin (pcomplete-begin 'last))) | |
623 (if (and pcomplete-cycle-completions | |
624 (listp pcomplete-stub) | |
625 (not pcomplete-expand-only-p)) | |
626 (let* ((completions pcomplete-stub) | |
627 (common-stub (car completions)) | |
628 (c completions) | |
629 (len (length common-stub))) | |
630 (while (and c (> len 0)) | |
631 (while (and (> len 0) | |
632 (not (string= | |
633 (substring common-stub 0 len) | |
634 (substring (car c) 0 | |
635 (min (length (car c)) | |
636 len))))) | |
637 (setq len (1- len))) | |
638 (setq c (cdr c))) | |
639 (setq pcomplete-stub (substring common-stub 0 len) | |
640 pcomplete-autolist t) | |
641 (when (and begin (not pcomplete-show-list)) | |
642 (delete-region begin (point)) | |
643 (pcomplete-insert-entry "" pcomplete-stub)) | |
644 (throw 'pcomplete-completions completions)) | |
645 (when expand-p | |
646 (if (stringp pcomplete-stub) | |
647 (when begin | |
648 (delete-region begin (point)) | |
649 (insert-and-inherit pcomplete-stub)) | |
650 (if (and (listp pcomplete-stub) | |
651 pcomplete-expand-only-p) | |
652 ;; this is for the benefit of `pcomplete-expand' | |
653 (setq pcomplete-last-completion-length (- (point) begin) | |
654 pcomplete-current-completions pcomplete-stub) | |
655 (error "Cannot expand argument")))) | |
656 (if pcomplete-expand-only-p | |
657 (throw 'pcompleted t) | |
658 pcomplete-args)))))) | |
659 | |
660 (defun pcomplete-quote-argument (filename) | |
661 "Return FILENAME with magic characters quoted. | |
662 Magic characters are those in `pcomplete-arg-quote-list'." | |
663 (if (null pcomplete-arg-quote-list) | |
664 filename | |
665 (let ((len (length filename)) | |
666 (index 0) | |
667 (result "") | |
668 replacement char) | |
669 (while (< index len) | |
670 (setq replacement (run-hook-with-args-until-success | |
671 'pcomplete-quote-arg-hook filename index)) | |
672 (cond | |
673 (replacement | |
674 (setq result (concat result replacement))) | |
675 ((and (setq char (aref filename index)) | |
676 (memq char pcomplete-arg-quote-list)) | |
677 (setq result (concat result "\\" (char-to-string char)))) | |
678 (t | |
679 (setq result (concat result (char-to-string char))))) | |
680 (setq index (1+ index))) | |
681 result))) | |
682 | |
683 ;; file-system completion lists | |
684 | |
685 (defsubst pcomplete-dirs-or-entries (&optional regexp predicate) | |
686 "Return either directories, or qualified entries." | |
687 (append (let ((pcomplete-stub pcomplete-stub)) | |
31326 | 688 (pcomplete-entries |
689 regexp (or predicate | |
690 (function | |
691 (lambda (path) | |
692 (not (file-directory-p path))))))) | |
29876 | 693 (pcomplete-entries nil 'file-directory-p))) |
694 | |
695 (defun pcomplete-entries (&optional regexp predicate) | |
696 "Complete against a list of directory candidates. | |
697 If REGEXP is non-nil, it is a regular expression used to refine the | |
698 match (files not matching the REGEXP will be excluded). | |
699 If PREDICATE is non-nil, it will also be used to refine the match | |
700 \(files for which the PREDICATE returns nil will be excluded). | |
46762
85cd02534241
(pcomplete-entries): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
43827
diff
changeset
|
701 If no directory information can be extracted from the completed |
85cd02534241
(pcomplete-entries): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
43827
diff
changeset
|
702 component, DEFAULT-DIRECTORY is used as the basis for completion." |
43827
074094fab9d6
(pcomplete-entries): Expand environment variables in filename.
Miles Bader <miles@gnu.org>
parents:
38436
diff
changeset
|
703 (let* ((name (substitute-env-vars pcomplete-stub)) |
29876 | 704 (default-directory (expand-file-name |
705 (or (file-name-directory name) | |
706 default-directory))) | |
707 above-cutoff) | |
708 (setq name (file-name-nondirectory name) | |
709 pcomplete-stub name) | |
710 (let ((completions | |
711 (file-name-all-completions name default-directory))) | |
712 (if regexp | |
713 (setq completions | |
714 (pcomplete-pare-list | |
715 completions nil | |
716 (function | |
717 (lambda (file) | |
718 (not (string-match regexp file))))))) | |
719 (if predicate | |
720 (setq completions | |
721 (pcomplete-pare-list | |
722 completions nil | |
723 (function | |
724 (lambda (file) | |
725 (not (funcall predicate file))))))) | |
726 (if (or pcomplete-file-ignore pcomplete-dir-ignore) | |
727 (setq completions | |
728 (pcomplete-pare-list | |
729 completions nil | |
730 (function | |
731 (lambda (file) | |
732 (if (eq (aref file (1- (length file))) | |
733 directory-sep-char) | |
734 (and pcomplete-dir-ignore | |
735 (string-match pcomplete-dir-ignore file)) | |
736 (and pcomplete-file-ignore | |
737 (string-match pcomplete-file-ignore file)))))))) | |
46818
fa3f7092b7c3
(pcomplete-entries): Don't set `above-cutoff' to a value unless
John Wiegley <johnw@newartisans.com>
parents:
46769
diff
changeset
|
738 (setq above-cutoff (and pcomplete-cycle-cutoff-length |
fa3f7092b7c3
(pcomplete-entries): Don't set `above-cutoff' to a value unless
John Wiegley <johnw@newartisans.com>
parents:
46769
diff
changeset
|
739 (> (length completions) |
fa3f7092b7c3
(pcomplete-entries): Don't set `above-cutoff' to a value unless
John Wiegley <johnw@newartisans.com>
parents:
46769
diff
changeset
|
740 pcomplete-cycle-cutoff-length))) |
29876 | 741 (sort completions |
742 (function | |
743 (lambda (l r) | |
744 ;; for the purposes of comparison, remove the | |
745 ;; trailing slash from directory names. | |
746 ;; Otherwise, "foo.old/" will come before "foo/", | |
747 ;; since . is earlier in the ASCII alphabet than | |
748 ;; / | |
749 (let ((left (if (eq (aref l (1- (length l))) | |
750 directory-sep-char) | |
751 (substring l 0 (1- (length l))) | |
752 l)) | |
753 (right (if (eq (aref r (1- (length r))) | |
754 directory-sep-char) | |
755 (substring r 0 (1- (length r))) | |
756 r))) | |
757 (if above-cutoff | |
758 (string-lessp left right) | |
759 (funcall pcomplete-compare-entry-function | |
760 left right))))))))) | |
761 | |
762 (defsubst pcomplete-all-entries (&optional regexp predicate) | |
763 "Like `pcomplete-entries', but doesn't ignore any entries." | |
764 (let (pcomplete-file-ignore | |
765 pcomplete-dir-ignore) | |
766 (pcomplete-entries regexp predicate))) | |
767 | |
768 (defsubst pcomplete-dirs (&optional regexp) | |
769 "Complete amongst a list of directories." | |
770 (pcomplete-entries regexp 'file-directory-p)) | |
771 | |
772 (defsubst pcomplete-executables (&optional regexp) | |
773 "Complete amongst a list of directories and executables." | |
774 (pcomplete-entries regexp 'file-executable-p)) | |
775 | |
776 ;; generation of completion lists | |
777 | |
778 (defun pcomplete-find-completion-function (command) | |
779 "Find the completion function to call for the given COMMAND." | |
780 (let ((sym (intern-soft | |
781 (concat "pcomplete/" (symbol-name major-mode) "/" command)))) | |
782 (unless sym | |
783 (setq sym (intern-soft (concat "pcomplete/" command)))) | |
784 (and sym (fboundp sym) sym))) | |
785 | |
786 (defun pcomplete-completions () | |
787 "Return a list of completions for the current argument position." | |
788 (catch 'pcomplete-completions | |
789 (when (pcomplete-parse-arguments pcomplete-expand-before-complete) | |
790 (if (= pcomplete-index pcomplete-last) | |
791 (funcall pcomplete-command-completion-function) | |
792 (let ((sym (or (pcomplete-find-completion-function | |
793 (funcall pcomplete-command-name-function)) | |
794 pcomplete-default-completion-function))) | |
795 (ignore | |
796 (pcomplete-next-arg) | |
797 (funcall sym))))))) | |
798 | |
799 (defun pcomplete-opt (options &optional prefix no-ganging args-follow) | |
800 "Complete a set of OPTIONS, each beginning with PREFIX (?- by default). | |
801 PREFIX may be t, in which case no PREFIX character is necessary. | |
802 If REQUIRED is non-nil, the options must be present. | |
803 If NO-GANGING is non-nil, each option is separate. -xy is not allowed. | |
804 If ARGS-FOLLOW is non-nil, then options which arguments which take may | |
805 have the argument appear after a ganged set of options. This is how | |
806 tar behaves, for example." | |
807 (if (and (= pcomplete-index pcomplete-last) | |
808 (string= (pcomplete-arg) "-")) | |
809 (let ((len (length options)) | |
810 (index 0) | |
811 char choices) | |
812 (while (< index len) | |
813 (setq char (aref options index)) | |
814 (if (eq char ?\() | |
815 (let ((result (read-from-string options index))) | |
816 (setq index (cdr result))) | |
817 (unless (memq char '(?/ ?* ?? ?.)) | |
818 (setq choices (cons (char-to-string char) choices))) | |
819 (setq index (1+ index)))) | |
820 (throw 'pcomplete-completions | |
821 (mapcar | |
822 (function | |
823 (lambda (opt) | |
824 (concat "-" opt))) | |
825 (pcomplete-uniqify-list choices)))) | |
826 (let ((arg (pcomplete-arg))) | |
827 (when (and (> (length arg) 1) | |
828 (stringp arg) | |
829 (eq (aref arg 0) (or prefix ?-))) | |
830 (pcomplete-next-arg) | |
831 (let ((char (aref arg 1)) | |
832 (len (length options)) | |
833 (index 0) | |
834 opt-char arg-char result) | |
835 (while (< (1+ index) len) | |
836 (setq opt-char (aref options index) | |
837 arg-char (aref options (1+ index))) | |
838 (if (eq arg-char ?\() | |
839 (setq result | |
840 (read-from-string options (1+ index)) | |
841 index (cdr result) | |
842 result (car result)) | |
843 (setq result nil)) | |
844 (when (and (eq char opt-char) | |
845 (memq arg-char '(?\( ?/ ?* ?? ?.))) | |
846 (if (< pcomplete-index pcomplete-last) | |
847 (pcomplete-next-arg) | |
848 (throw 'pcomplete-completions | |
849 (cond ((eq arg-char ?/) (pcomplete-dirs)) | |
850 ((eq arg-char ?*) (pcomplete-executables)) | |
851 ((eq arg-char ??) nil) | |
852 ((eq arg-char ?.) (pcomplete-entries)) | |
853 ((eq arg-char ?\() (eval result)))))) | |
854 (setq index (1+ index)))))))) | |
855 | |
856 (defun pcomplete--here (&optional form stub paring form-only) | |
857 "Complete aganst the current argument, if at the end. | |
858 See the documentation for `pcomplete-here'." | |
859 (if (< pcomplete-index pcomplete-last) | |
860 (progn | |
861 (if (eq paring 0) | |
862 (setq pcomplete-seen nil) | |
863 (unless (eq paring t) | |
864 (let ((arg (pcomplete-arg))) | |
865 (unless (not (stringp arg)) | |
866 (setq pcomplete-seen | |
867 (cons (if paring | |
868 (funcall paring arg) | |
869 (file-truename arg)) | |
870 pcomplete-seen)))))) | |
871 (pcomplete-next-arg) | |
872 t) | |
873 (when pcomplete-show-help | |
874 (pcomplete--help) | |
875 (throw 'pcompleted t)) | |
876 (if stub | |
877 (setq pcomplete-stub stub)) | |
878 (if (or (eq paring t) (eq paring 0)) | |
879 (setq pcomplete-seen nil) | |
880 (setq pcomplete-norm-func (or paring 'file-truename))) | |
881 (unless form-only | |
882 (run-hooks 'pcomplete-try-first-hook)) | |
883 (throw 'pcomplete-completions (eval form)))) | |
884 | |
885 (defmacro pcomplete-here (&optional form stub paring form-only) | |
886 "Complete aganst the current argument, if at the end. | |
887 If completion is to be done here, evaluate FORM to generate the list | |
888 of strings which will be used for completion purposes. If STUB is a | |
889 string, use it as the completion stub instead of the default (which is | |
890 the entire text of the current argument). | |
891 | |
892 For an example of when you might want to use STUB: if the current | |
893 argument text is 'long-path-name/', you don't want the completions | |
894 list display to be cluttered by 'long-path-name/' appearing at the | |
895 beginning of every alternative. Not only does this make things less | |
896 intelligle, but it is also inefficient. Yet, if the completion list | |
897 does not begin with this string for every entry, the current argument | |
898 won't complete correctly. | |
899 | |
900 The solution is to specify a relative stub. It allows you to | |
901 substitute a different argument from the current argument, almost | |
902 always for the sake of efficiency. | |
903 | |
904 If PARING is nil, this argument will be pared against previous | |
905 arguments using the function `file-truename' to normalize them. | |
906 PARING may be a function, in which case that function is for | |
907 normalization. If PARING is the value t, the argument dealt with by | |
908 this call will not participate in argument paring. If it the integer | |
909 0, all previous arguments that have been seen will be cleared. | |
910 | |
911 If FORM-ONLY is non-nil, only the result of FORM will be used to | |
912 generate the completions list. This means that the hook | |
913 `pcomplete-try-first-hook' will not be run." | |
914 `(pcomplete--here (quote ,form) ,stub ,paring ,form-only)) | |
915 | |
916 (defmacro pcomplete-here* (&optional form stub form-only) | |
917 "An alternate form which does not participate in argument paring." | |
918 `(pcomplete-here ,form ,stub t ,form-only)) | |
919 | |
920 ;; display support | |
921 | |
922 (defun pcomplete-restore-windows () | |
923 "If the only window change was due to Completions, restore things." | |
924 (if pcomplete-last-window-config | |
925 (let* ((cbuf (get-buffer "*Completions*")) | |
926 (cwin (and cbuf (get-buffer-window cbuf)))) | |
927 (when (and cwin (window-live-p cwin)) | |
928 (bury-buffer cbuf) | |
929 (set-window-configuration pcomplete-last-window-config)))) | |
930 (setq pcomplete-last-window-config nil | |
931 pcomplete-window-restore-timer nil)) | |
932 | |
933 ;; Abstractions so that the code below will work for both Emacs 20 and | |
934 ;; XEmacs 21 | |
935 | |
936 (unless (fboundp 'event-matches-key-specifier-p) | |
937 (defalias 'event-matches-key-specifier-p 'eq)) | |
938 | |
939 (unless (fboundp 'read-event) | |
940 (defsubst read-event (&optional prompt) | |
941 (aref (read-key-sequence prompt) 0))) | |
942 | |
943 (unless (fboundp 'event-basic-type) | |
944 (defalias 'event-basic-type 'event-key)) | |
945 | |
946 (defun pcomplete-show-completions (completions) | |
947 "List in help buffer sorted COMPLETIONS. | |
948 Typing SPC flushes the help buffer." | |
949 (let* ((curbuf (current-buffer))) | |
950 (when pcomplete-window-restore-timer | |
951 (cancel-timer pcomplete-window-restore-timer) | |
952 (setq pcomplete-window-restore-timer nil)) | |
953 (unless pcomplete-last-window-config | |
954 (setq pcomplete-last-window-config (current-window-configuration))) | |
955 (with-output-to-temp-buffer "*Completions*" | |
956 (display-completion-list completions)) | |
957 (message "Hit space to flush") | |
958 (let (event) | |
959 (prog1 | |
960 (catch 'done | |
961 (while (with-current-buffer (get-buffer "*Completions*") | |
962 (setq event (read-event))) | |
963 (cond | |
964 ((event-matches-key-specifier-p event ? ) | |
965 (set-window-configuration pcomplete-last-window-config) | |
966 (setq pcomplete-last-window-config nil) | |
967 (throw 'done nil)) | |
968 ((event-matches-key-specifier-p event 'tab) | |
969 (save-selected-window | |
970 (select-window (get-buffer-window "*Completions*")) | |
971 (if (pos-visible-in-window-p (point-max)) | |
972 (goto-char (point-min)) | |
973 (scroll-up))) | |
974 (message "")) | |
975 (t | |
976 (setq unread-command-events (list event)) | |
977 (throw 'done nil))))) | |
978 (if (and pcomplete-last-window-config | |
979 pcomplete-restore-window-delay) | |
980 (setq pcomplete-window-restore-timer | |
981 (run-with-timer pcomplete-restore-window-delay nil | |
982 'pcomplete-restore-windows))))))) | |
983 | |
984 ;; insert completion at point | |
985 | |
986 (defun pcomplete-insert-entry (stub entry &optional addsuffix raw-p) | |
987 "Insert a completion entry at point. | |
988 Returns non-nil if a space was appended at the end." | |
989 (let ((here (point))) | |
990 (if (not pcomplete-ignore-case) | |
991 (insert-and-inherit (if raw-p | |
992 (substring entry (length stub)) | |
993 (pcomplete-quote-argument | |
994 (substring entry (length stub))))) | |
995 ;; the stub is not quoted at this time, so to determine the | |
996 ;; length of what should be in the buffer, we must quote it | |
997 (delete-backward-char (length (pcomplete-quote-argument stub))) | |
998 ;; if there is already a backslash present to handle the first | |
999 ;; character, don't bother quoting it | |
1000 (when (eq (char-before) ?\\) | |
1001 (insert-and-inherit (substring entry 0 1)) | |
1002 (setq entry (substring entry 1))) | |
1003 (insert-and-inherit (if raw-p | |
1004 entry | |
1005 (pcomplete-quote-argument entry)))) | |
1006 (let (space-added) | |
1007 (when (and (not (memq (char-before) pcomplete-suffix-list)) | |
1008 addsuffix) | |
1009 (insert-and-inherit " ") | |
1010 (setq space-added t)) | |
1011 (setq pcomplete-last-completion-length (- (point) here) | |
1012 pcomplete-last-completion-stub stub) | |
1013 space-added))) | |
1014 | |
1015 ;; selection of completions | |
1016 | |
1017 (defun pcomplete-do-complete (stub completions) | |
1018 "Dynamically complete at point using STUB and COMPLETIONS. | |
1019 This is basically just a wrapper for `pcomplete-stub' which does some | |
1020 extra checking, and munging of the COMPLETIONS list." | |
1021 (unless (stringp stub) | |
1022 (message "Cannot complete argument") | |
1023 (throw 'pcompleted nil)) | |
1024 (if (null completions) | |
1025 (ignore | |
1026 (if (and stub (> (length stub) 0)) | |
1027 (message "No completions of %s" stub) | |
1028 (message "No completions"))) | |
1029 ;; pare it down, if applicable | |
31241 | 1030 (if (and pcomplete-use-paring pcomplete-seen) |
29876 | 1031 (let* ((arg (pcomplete-arg)) |
1032 (prefix | |
1033 (file-name-as-directory | |
1034 (funcall pcomplete-norm-func | |
1035 (substring arg 0 (- (length arg) | |
1036 (length pcomplete-stub))))))) | |
1037 (setq pcomplete-seen | |
1038 (mapcar 'directory-file-name pcomplete-seen)) | |
1039 (let ((p pcomplete-seen)) | |
1040 (while p | |
1041 (add-to-list 'pcomplete-seen | |
1042 (funcall pcomplete-norm-func (car p))) | |
1043 (setq p (cdr p)))) | |
1044 (setq completions | |
1045 (mapcar | |
1046 (function | |
1047 (lambda (elem) | |
1048 (file-relative-name elem prefix))) | |
1049 (pcomplete-pare-list | |
1050 (mapcar | |
1051 (function | |
1052 (lambda (elem) | |
1053 (expand-file-name elem prefix))) | |
1054 completions) | |
1055 pcomplete-seen | |
1056 (function | |
1057 (lambda (elem) | |
1058 (member (directory-file-name | |
1059 (funcall pcomplete-norm-func elem)) | |
1060 pcomplete-seen)))))))) | |
1061 ;; OK, we've got a list of completions. | |
1062 (if pcomplete-show-list | |
1063 (pcomplete-show-completions completions) | |
1064 (pcomplete-stub stub completions)))) | |
1065 | |
1066 (defun pcomplete-stub (stub candidates &optional cycle-p) | |
1067 "Dynamically complete STUB from CANDIDATES list. | |
1068 This function inserts completion characters at point by completing | |
1069 STUB from the strings in CANDIDATES. A completions listing may be | |
1070 shown in a help buffer if completion is ambiguous. | |
1071 | |
1072 Returns nil if no completion was inserted. | |
1073 Returns `sole' if completed with the only completion match. | |
1074 Returns `shortest' if completed with the shortest of the matches. | |
1075 Returns `partial' if completed as far as possible with the matches. | |
1076 Returns `listed' if a completion listing was shown. | |
1077 | |
1078 See also `pcomplete-filename'." | |
1079 (let* ((completion-ignore-case pcomplete-ignore-case) | |
1080 (candidates (mapcar 'list candidates)) | |
1081 (completions (all-completions stub candidates))) | |
1082 (let (result entry) | |
1083 (cond | |
1084 ((null completions) | |
1085 (if (and stub (> (length stub) 0)) | |
1086 (message "No completions of %s" stub) | |
1087 (message "No completions"))) | |
1088 ((= 1 (length completions)) | |
1089 (setq entry (car completions)) | |
1090 (if (string-equal entry stub) | |
1091 (message "Sole completion")) | |
1092 (setq result 'sole)) | |
1093 ((and pcomplete-cycle-completions | |
1094 (or cycle-p | |
1095 (not pcomplete-cycle-cutoff-length) | |
1096 (<= (length completions) | |
1097 pcomplete-cycle-cutoff-length))) | |
1098 (setq entry (car completions) | |
1099 pcomplete-current-completions completions)) | |
1100 (t ; There's no unique completion; use longest substring | |
1101 (setq entry (try-completion stub candidates)) | |
1102 (cond ((and pcomplete-recexact | |
1103 (string-equal stub entry) | |
1104 (member entry completions)) | |
1105 ;; It's not unique, but user wants shortest match. | |
1106 (message "Completed shortest") | |
1107 (setq result 'shortest)) | |
1108 ((or pcomplete-autolist | |
1109 (string-equal stub entry)) | |
1110 ;; It's not unique, list possible completions. | |
1111 (pcomplete-show-completions completions) | |
1112 (setq result 'listed)) | |
1113 (t | |
1114 (message "Partially completed") | |
1115 (setq result 'partial))))) | |
1116 (cons result entry)))) | |
1117 | |
1118 ;; context sensitive help | |
1119 | |
1120 (defun pcomplete--help () | |
1121 "Produce context-sensitive help for the current argument. | |
1122 If specific documentation can't be given, be generic. | |
1123 INFODOC specifies the Info node to goto. DOCUMENTATION is a sexp | |
1124 which will produce documentation for the argument (it is responsible | |
1125 for displaying in its own buffer)." | |
1126 (if (and pcomplete-help | |
1127 (or (and (stringp pcomplete-help) | |
1128 (fboundp 'Info-goto-node)) | |
1129 (listp pcomplete-help))) | |
1130 (if (listp pcomplete-help) | |
1131 (message (eval pcomplete-help)) | |
1132 (save-window-excursion (info)) | |
1133 (switch-to-buffer-other-window "*info*") | |
1134 (funcall (symbol-function 'Info-goto-node) pcomplete-help)) | |
1135 (if pcomplete-man-function | |
1136 (let ((cmd (funcall pcomplete-command-name-function))) | |
1137 (if (and cmd (> (length cmd) 0)) | |
1138 (funcall pcomplete-man-function cmd))) | |
1139 (message "No context-sensitive help available")))) | |
1140 | |
1141 ;; general utilities | |
1142 | |
1143 (defsubst pcomplete-time-less-p (t1 t2) | |
1144 "Say whether time T1 is less than time T2." | |
1145 (or (< (car t1) (car t2)) | |
1146 (and (= (car t1) (car t2)) | |
1147 (< (nth 1 t1) (nth 1 t2))))) | |
1148 | |
1149 (defun pcomplete-pare-list (l r &optional pred) | |
1150 "Destructively remove from list L all elements matching any in list R. | |
1151 Test is done using `equal'. | |
1152 If PRED is non-nil, it is a function used for further removal. | |
1153 Returns the resultant list." | |
1154 (while (and l (or (and r (member (car l) r)) | |
1155 (and pred | |
1156 (funcall pred (car l))))) | |
1157 (setq l (cdr l))) | |
1158 (let ((m l)) | |
1159 (while m | |
1160 (while (and (cdr m) | |
1161 (or (and r (member (cadr m) r)) | |
1162 (and pred | |
1163 (funcall pred (cadr m))))) | |
1164 (setcdr m (cddr m))) | |
1165 (setq m (cdr m)))) | |
1166 l) | |
1167 | |
1168 (defun pcomplete-uniqify-list (l) | |
1169 "Sort and remove multiples in L." | |
1170 (setq l (sort l 'string-lessp)) | |
1171 (let ((m l)) | |
1172 (while m | |
1173 (while (and (cdr m) | |
1174 (string= (car m) | |
1175 (cadr m))) | |
1176 (setcdr m (cddr m))) | |
1177 (setq m (cdr m)))) | |
1178 l) | |
1179 | |
1180 (defun pcomplete-process-result (cmd &rest args) | |
1181 "Call CMD using `call-process' and return the simplest result." | |
1182 (with-temp-buffer | |
1183 (apply 'call-process cmd nil t nil args) | |
1184 (skip-chars-backward "\n") | |
1185 (buffer-substring (point-min) (point)))) | |
1186 | |
1187 ;; create a set of aliases which allow completion functions to be not | |
1188 ;; quite so verbose | |
1189 | |
1190 ;; jww (1999-10-20): are these a good idea? | |
1191 ; (defalias 'pc-here 'pcomplete-here) | |
1192 ; (defalias 'pc-test 'pcomplete-test) | |
1193 ; (defalias 'pc-opt 'pcomplete-opt) | |
1194 ; (defalias 'pc-match 'pcomplete-match) | |
1195 ; (defalias 'pc-match-string 'pcomplete-match-string) | |
1196 ; (defalias 'pc-match-beginning 'pcomplete-match-beginning) | |
1197 ; (defalias 'pc-match-end 'pcomplete-match-end) | |
1198 | |
1199 ;;; pcomplete.el ends here |