29876
|
1 ;;; pcomplete --- programmable completion
|
|
2
|
|
3 ;; Copyright (C) 1999, 2000 Free Sofware Foundation
|
|
4
|
|
5 ;; Author: John Wiegley <johnw@gnu.org>
|
|
6 ;; Keywords: processes
|
|
7 ;; X-URL: http://www.emacs.org/~johnw/emacs.html
|
|
8
|
|
9 ;; This file is part of GNU Emacs.
|
|
10
|
|
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
12 ;; it under the terms of the GNU General Public License as published by
|
|
13 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
14 ;; any later version.
|
|
15
|
|
16 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
19 ;; GNU General Public License for more details.
|
|
20
|
|
21 ;; You should have received a copy of the GNU General Public License
|
|
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
24 ;; Boston, MA 02111-1307, USA.
|
|
25
|
|
26 ;;; Commentary:
|
|
27
|
|
28 ;; This module provides a programmable completion facility using
|
|
29 ;; "completion functions". Each completion function is responsible
|
|
30 ;; for producing a list of possible completions relevant to the current
|
|
31 ;; argument position.
|
|
32 ;;
|
|
33 ;; To use pcomplete with shell-mode, for example, you will need the
|
|
34 ;; following in your .emacs file:
|
|
35 ;;
|
|
36 ;; (load "pcmpl-auto")
|
|
37 ;; (add-hook 'shell-mode-hook 'pcomplete-shell-setup)
|
|
38 ;;
|
|
39 ;; Most of the code below simply provides support mechanisms for
|
|
40 ;; writing completion functions. Completion functions themselves are
|
|
41 ;; very easy to write. They have few requirements beyond those of
|
|
42 ;; regular Lisp functions.
|
|
43 ;;
|
|
44 ;; Consider the following example, which will complete against
|
|
45 ;; filenames for the first two arguments, and directories for all
|
|
46 ;; remaining arguments:
|
|
47 ;;
|
|
48 ;; (defun pcomplete/my-command ()
|
|
49 ;; (pcomplete-here (pcomplete-entries))
|
|
50 ;; (pcomplete-here (pcomplete-entries))
|
|
51 ;; (while (pcomplete-here (pcomplete-dirs))))
|
|
52 ;;
|
|
53 ;; Here are the requirements for completion functions:
|
|
54 ;;
|
|
55 ;; @ They must be called "pcomplete/MAJOR-MODE/NAME", or
|
|
56 ;; "pcomplete/NAME". This is how they are looked up, using the NAME
|
|
57 ;; specified in the command argument (the argument in first
|
|
58 ;; position).
|
|
59 ;;
|
|
60 ;; @ They must be callable with no arguments.
|
|
61 ;;
|
|
62 ;; @ Their return value is ignored. If they actually return normally,
|
|
63 ;; it means no completions were available.
|
|
64 ;;
|
|
65 ;; @ In order to provide completions, they must throw the tag
|
|
66 ;; `pcomplete-completions'. The value must be the list of possible
|
|
67 ;; completions for the final argument.
|
|
68 ;;
|
|
69 ;; @ To simplify completion function logic, the tag `pcompleted' may
|
|
70 ;; be thrown with a value of nil in order to abort the function. It
|
|
71 ;; means that there were no completions available.
|
|
72 ;;
|
|
73 ;; When a completion function is called, the variable `pcomplete-args'
|
|
74 ;; is in scope, and contains all of the arguments specified on the
|
|
75 ;; command line. The variable `pcomplete-last' is the index of the
|
|
76 ;; last argument in that list.
|
|
77 ;;
|
|
78 ;; The variable `pcomplete-index' is used by the completion code to
|
|
79 ;; know which argument the completion function is currently examining.
|
|
80 ;; It always begins at 1, meaning the first argument after the command
|
|
81 ;; name.
|
|
82 ;;
|
|
83 ;; To facilitate writing completion logic, a special macro,
|
|
84 ;; `pcomplete-here', has been provided which does several things:
|
|
85 ;;
|
|
86 ;; 1. It will throw `pcompleted' (with a value of nil) whenever
|
|
87 ;; `pcomplete-index' exceeds `pcomplete-last'.
|
|
88 ;;
|
|
89 ;; 2. It will increment `pcomplete-index' if the final argument has
|
|
90 ;; not been reached yet.
|
|
91 ;;
|
|
92 ;; 3. It will evaluate the form passed to it, and throw the result
|
|
93 ;; using the `pcomplete-completions' tag, if it is called when
|
|
94 ;; `pcomplete-index' is pointing to the final argument.
|
|
95 ;;
|
|
96 ;; Sometimes a completion function will want to vary the possible
|
|
97 ;; completions for an argument based on the previous one. To
|
|
98 ;; facilitate tests like this, the function `pcomplete-test' and
|
|
99 ;; `pcomplete-match' are provided. Called with one argument, they
|
|
100 ;; test the value of the previous command argument. Otherwise, a
|
|
101 ;; relative index may be given as an optional second argument, where 0
|
|
102 ;; refers to the current argument, 1 the previous, 2 the one before
|
|
103 ;; that, etc. The symbols `first' and `last' specify absolute
|
|
104 ;; offsets.
|
|
105 ;;
|
|
106 ;; Here is an example which will only complete against directories for
|
|
107 ;; the second argument if the first argument is also a directory:
|
|
108 ;;
|
|
109 ;; (defun pcomplete/example ()
|
|
110 ;; (pcomplete-here (pcomplete-entries))
|
|
111 ;; (if (pcomplete-test 'file-directory-p)
|
|
112 ;; (pcomplete-here (pcomplete-dirs))
|
|
113 ;; (pcomplete-here (pcomplete-entries))))
|
|
114 ;;
|
|
115 ;; For generating completion lists based on directory contents, see
|
|
116 ;; the functions `pcomplete-entries', `pcomplete-dirs',
|
|
117 ;; `pcomplete-executables' and `pcomplete-all-entries'.
|
|
118 ;;
|
|
119 ;; Consult the documentation for `pcomplete-here' for information
|
|
120 ;; about its other arguments.
|
|
121
|
|
122 ;;; Code:
|
|
123
|
|
124 (provide 'pcomplete)
|
|
125
|
|
126 (defgroup pcomplete nil
|
|
127 "Programmable completion."
|
|
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."
|
|
134 :type 'regexp
|
|
135 :group 'pcomplete)
|
|
136
|
|
137 (defcustom pcomplete-dir-ignore nil
|
|
138 "*A regexp of names to be disregarded during directory completion."
|
|
139 :type 'regexp
|
|
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)
|
|
585 (nconc (symbol-value completef-sym)
|
|
586 (list 'pcomplete)))))
|
|
587
|
|
588 ;;;###autoload
|
|
589 (defun pcomplete-shell-setup ()
|
|
590 "Setup shell-mode to use pcomplete."
|
|
591 (pcomplete-comint-setup 'shell-dynamic-complete-functions))
|
|
592
|
|
593 (defun pcomplete-parse-comint-arguments ()
|
|
594 "Parse whitespace separated arguments in the current region."
|
|
595 (let ((begin (save-excursion (comint-bol nil) (point)))
|
|
596 (end (point))
|
|
597 begins args)
|
|
598 (save-excursion
|
|
599 (goto-char begin)
|
|
600 (while (< (point) end)
|
|
601 (skip-chars-forward " \t\n")
|
|
602 (setq begins (cons (point) begins))
|
|
603 (let ((skip t))
|
|
604 (while skip
|
|
605 (skip-chars-forward "^ \t\n")
|
|
606 (if (eq (char-before) ?\\)
|
|
607 (skip-chars-forward " \t\n")
|
|
608 (setq skip nil))))
|
|
609 (setq args (cons (buffer-substring-no-properties
|
|
610 (car begins) (point))
|
|
611 args)))
|
|
612 (cons (reverse args) (reverse begins)))))
|
|
613
|
|
614 (defun pcomplete-parse-arguments (&optional expand-p)
|
|
615 "Parse the command line arguments. Most completions need this info."
|
|
616 (let ((results (funcall pcomplete-parse-arguments-function)))
|
|
617 (when results
|
|
618 (setq pcomplete-args (or (car results) (list ""))
|
|
619 pcomplete-begins (or (cdr results) (list (point)))
|
|
620 pcomplete-last (1- (length pcomplete-args))
|
|
621 pcomplete-index 0
|
|
622 pcomplete-stub (pcomplete-arg 'last))
|
|
623 (let ((begin (pcomplete-begin 'last)))
|
|
624 (if (and pcomplete-cycle-completions
|
|
625 (listp pcomplete-stub)
|
|
626 (not pcomplete-expand-only-p))
|
|
627 (let* ((completions pcomplete-stub)
|
|
628 (common-stub (car completions))
|
|
629 (c completions)
|
|
630 (len (length common-stub)))
|
|
631 (while (and c (> len 0))
|
|
632 (while (and (> len 0)
|
|
633 (not (string=
|
|
634 (substring common-stub 0 len)
|
|
635 (substring (car c) 0
|
|
636 (min (length (car c))
|
|
637 len)))))
|
|
638 (setq len (1- len)))
|
|
639 (setq c (cdr c)))
|
|
640 (setq pcomplete-stub (substring common-stub 0 len)
|
|
641 pcomplete-autolist t)
|
|
642 (when (and begin (not pcomplete-show-list))
|
|
643 (delete-region begin (point))
|
|
644 (pcomplete-insert-entry "" pcomplete-stub))
|
|
645 (throw 'pcomplete-completions completions))
|
|
646 (when expand-p
|
|
647 (if (stringp pcomplete-stub)
|
|
648 (when begin
|
|
649 (delete-region begin (point))
|
|
650 (insert-and-inherit pcomplete-stub))
|
|
651 (if (and (listp pcomplete-stub)
|
|
652 pcomplete-expand-only-p)
|
|
653 ;; this is for the benefit of `pcomplete-expand'
|
|
654 (setq pcomplete-last-completion-length (- (point) begin)
|
|
655 pcomplete-current-completions pcomplete-stub)
|
|
656 (error "Cannot expand argument"))))
|
|
657 (if pcomplete-expand-only-p
|
|
658 (throw 'pcompleted t)
|
|
659 pcomplete-args))))))
|
|
660
|
|
661 (defun pcomplete-quote-argument (filename)
|
|
662 "Return FILENAME with magic characters quoted.
|
|
663 Magic characters are those in `pcomplete-arg-quote-list'."
|
|
664 (if (null pcomplete-arg-quote-list)
|
|
665 filename
|
|
666 (let ((len (length filename))
|
|
667 (index 0)
|
|
668 (result "")
|
|
669 replacement char)
|
|
670 (while (< index len)
|
|
671 (setq replacement (run-hook-with-args-until-success
|
|
672 'pcomplete-quote-arg-hook filename index))
|
|
673 (cond
|
|
674 (replacement
|
|
675 (setq result (concat result replacement)))
|
|
676 ((and (setq char (aref filename index))
|
|
677 (memq char pcomplete-arg-quote-list))
|
|
678 (setq result (concat result "\\" (char-to-string char))))
|
|
679 (t
|
|
680 (setq result (concat result (char-to-string char)))))
|
|
681 (setq index (1+ index)))
|
|
682 result)))
|
|
683
|
|
684 ;; file-system completion lists
|
|
685
|
|
686 (defsubst pcomplete-dirs-or-entries (&optional regexp predicate)
|
|
687 "Return either directories, or qualified entries."
|
|
688 (append (let ((pcomplete-stub pcomplete-stub))
|
31326
|
689 (pcomplete-entries
|
|
690 regexp (or predicate
|
|
691 (function
|
|
692 (lambda (path)
|
|
693 (not (file-directory-p path)))))))
|
29876
|
694 (pcomplete-entries nil 'file-directory-p)))
|
|
695
|
|
696 (defun pcomplete-entries (&optional regexp predicate)
|
|
697 "Complete against a list of directory candidates.
|
|
698 This function always uses the last argument as the basis for
|
|
699 completion.
|
|
700 If REGEXP is non-nil, it is a regular expression used to refine the
|
|
701 match (files not matching the REGEXP will be excluded).
|
|
702 If PREDICATE is non-nil, it will also be used to refine the match
|
|
703 \(files for which the PREDICATE returns nil will be excluded).
|
|
704 If PATH is non-nil, it will be used for completion instead of
|
|
705 consulting the last argument."
|
|
706 (let* ((name pcomplete-stub)
|
|
707 (default-directory (expand-file-name
|
|
708 (or (file-name-directory name)
|
|
709 default-directory)))
|
|
710 above-cutoff)
|
|
711 (setq name (file-name-nondirectory name)
|
|
712 pcomplete-stub name)
|
|
713 (let ((completions
|
|
714 (file-name-all-completions name default-directory)))
|
|
715 (if regexp
|
|
716 (setq completions
|
|
717 (pcomplete-pare-list
|
|
718 completions nil
|
|
719 (function
|
|
720 (lambda (file)
|
|
721 (not (string-match regexp file)))))))
|
|
722 (if predicate
|
|
723 (setq completions
|
|
724 (pcomplete-pare-list
|
|
725 completions nil
|
|
726 (function
|
|
727 (lambda (file)
|
|
728 (not (funcall predicate file)))))))
|
|
729 (if (or pcomplete-file-ignore pcomplete-dir-ignore)
|
|
730 (setq completions
|
|
731 (pcomplete-pare-list
|
|
732 completions nil
|
|
733 (function
|
|
734 (lambda (file)
|
|
735 (if (eq (aref file (1- (length file)))
|
|
736 directory-sep-char)
|
|
737 (and pcomplete-dir-ignore
|
|
738 (string-match pcomplete-dir-ignore file))
|
|
739 (and pcomplete-file-ignore
|
|
740 (string-match pcomplete-file-ignore file))))))))
|
|
741 (setq above-cutoff (> (length completions)
|
|
742 pcomplete-cycle-cutoff-length))
|
|
743 (sort completions
|
|
744 (function
|
|
745 (lambda (l r)
|
|
746 ;; for the purposes of comparison, remove the
|
|
747 ;; trailing slash from directory names.
|
|
748 ;; Otherwise, "foo.old/" will come before "foo/",
|
|
749 ;; since . is earlier in the ASCII alphabet than
|
|
750 ;; /
|
|
751 (let ((left (if (eq (aref l (1- (length l)))
|
|
752 directory-sep-char)
|
|
753 (substring l 0 (1- (length l)))
|
|
754 l))
|
|
755 (right (if (eq (aref r (1- (length r)))
|
|
756 directory-sep-char)
|
|
757 (substring r 0 (1- (length r)))
|
|
758 r)))
|
|
759 (if above-cutoff
|
|
760 (string-lessp left right)
|
|
761 (funcall pcomplete-compare-entry-function
|
|
762 left right)))))))))
|
|
763
|
|
764 (defsubst pcomplete-all-entries (&optional regexp predicate)
|
|
765 "Like `pcomplete-entries', but doesn't ignore any entries."
|
|
766 (let (pcomplete-file-ignore
|
|
767 pcomplete-dir-ignore)
|
|
768 (pcomplete-entries regexp predicate)))
|
|
769
|
|
770 (defsubst pcomplete-dirs (&optional regexp)
|
|
771 "Complete amongst a list of directories."
|
|
772 (pcomplete-entries regexp 'file-directory-p))
|
|
773
|
|
774 (defsubst pcomplete-executables (&optional regexp)
|
|
775 "Complete amongst a list of directories and executables."
|
|
776 (pcomplete-entries regexp 'file-executable-p))
|
|
777
|
|
778 ;; generation of completion lists
|
|
779
|
|
780 (defun pcomplete-find-completion-function (command)
|
|
781 "Find the completion function to call for the given COMMAND."
|
|
782 (let ((sym (intern-soft
|
|
783 (concat "pcomplete/" (symbol-name major-mode) "/" command))))
|
|
784 (unless sym
|
|
785 (setq sym (intern-soft (concat "pcomplete/" command))))
|
|
786 (and sym (fboundp sym) sym)))
|
|
787
|
|
788 (defun pcomplete-completions ()
|
|
789 "Return a list of completions for the current argument position."
|
|
790 (catch 'pcomplete-completions
|
|
791 (when (pcomplete-parse-arguments pcomplete-expand-before-complete)
|
|
792 (if (= pcomplete-index pcomplete-last)
|
|
793 (funcall pcomplete-command-completion-function)
|
|
794 (let ((sym (or (pcomplete-find-completion-function
|
|
795 (funcall pcomplete-command-name-function))
|
|
796 pcomplete-default-completion-function)))
|
|
797 (ignore
|
|
798 (pcomplete-next-arg)
|
|
799 (funcall sym)))))))
|
|
800
|
|
801 (defun pcomplete-opt (options &optional prefix no-ganging args-follow)
|
|
802 "Complete a set of OPTIONS, each beginning with PREFIX (?- by default).
|
|
803 PREFIX may be t, in which case no PREFIX character is necessary.
|
|
804 If REQUIRED is non-nil, the options must be present.
|
|
805 If NO-GANGING is non-nil, each option is separate. -xy is not allowed.
|
|
806 If ARGS-FOLLOW is non-nil, then options which arguments which take may
|
|
807 have the argument appear after a ganged set of options. This is how
|
|
808 tar behaves, for example."
|
|
809 (if (and (= pcomplete-index pcomplete-last)
|
|
810 (string= (pcomplete-arg) "-"))
|
|
811 (let ((len (length options))
|
|
812 (index 0)
|
|
813 char choices)
|
|
814 (while (< index len)
|
|
815 (setq char (aref options index))
|
|
816 (if (eq char ?\()
|
|
817 (let ((result (read-from-string options index)))
|
|
818 (setq index (cdr result)))
|
|
819 (unless (memq char '(?/ ?* ?? ?.))
|
|
820 (setq choices (cons (char-to-string char) choices)))
|
|
821 (setq index (1+ index))))
|
|
822 (throw 'pcomplete-completions
|
|
823 (mapcar
|
|
824 (function
|
|
825 (lambda (opt)
|
|
826 (concat "-" opt)))
|
|
827 (pcomplete-uniqify-list choices))))
|
|
828 (let ((arg (pcomplete-arg)))
|
|
829 (when (and (> (length arg) 1)
|
|
830 (stringp arg)
|
|
831 (eq (aref arg 0) (or prefix ?-)))
|
|
832 (pcomplete-next-arg)
|
|
833 (let ((char (aref arg 1))
|
|
834 (len (length options))
|
|
835 (index 0)
|
|
836 opt-char arg-char result)
|
|
837 (while (< (1+ index) len)
|
|
838 (setq opt-char (aref options index)
|
|
839 arg-char (aref options (1+ index)))
|
|
840 (if (eq arg-char ?\()
|
|
841 (setq result
|
|
842 (read-from-string options (1+ index))
|
|
843 index (cdr result)
|
|
844 result (car result))
|
|
845 (setq result nil))
|
|
846 (when (and (eq char opt-char)
|
|
847 (memq arg-char '(?\( ?/ ?* ?? ?.)))
|
|
848 (if (< pcomplete-index pcomplete-last)
|
|
849 (pcomplete-next-arg)
|
|
850 (throw 'pcomplete-completions
|
|
851 (cond ((eq arg-char ?/) (pcomplete-dirs))
|
|
852 ((eq arg-char ?*) (pcomplete-executables))
|
|
853 ((eq arg-char ??) nil)
|
|
854 ((eq arg-char ?.) (pcomplete-entries))
|
|
855 ((eq arg-char ?\() (eval result))))))
|
|
856 (setq index (1+ index))))))))
|
|
857
|
|
858 (defun pcomplete--here (&optional form stub paring form-only)
|
|
859 "Complete aganst the current argument, if at the end.
|
|
860 See the documentation for `pcomplete-here'."
|
|
861 (if (< pcomplete-index pcomplete-last)
|
|
862 (progn
|
|
863 (if (eq paring 0)
|
|
864 (setq pcomplete-seen nil)
|
|
865 (unless (eq paring t)
|
|
866 (let ((arg (pcomplete-arg)))
|
|
867 (unless (not (stringp arg))
|
|
868 (setq pcomplete-seen
|
|
869 (cons (if paring
|
|
870 (funcall paring arg)
|
|
871 (file-truename arg))
|
|
872 pcomplete-seen))))))
|
|
873 (pcomplete-next-arg)
|
|
874 t)
|
|
875 (when pcomplete-show-help
|
|
876 (pcomplete--help)
|
|
877 (throw 'pcompleted t))
|
|
878 (if stub
|
|
879 (setq pcomplete-stub stub))
|
|
880 (if (or (eq paring t) (eq paring 0))
|
|
881 (setq pcomplete-seen nil)
|
|
882 (setq pcomplete-norm-func (or paring 'file-truename)))
|
|
883 (unless form-only
|
|
884 (run-hooks 'pcomplete-try-first-hook))
|
|
885 (throw 'pcomplete-completions (eval form))))
|
|
886
|
|
887 (defmacro pcomplete-here (&optional form stub paring form-only)
|
|
888 "Complete aganst the current argument, if at the end.
|
|
889 If completion is to be done here, evaluate FORM to generate the list
|
|
890 of strings which will be used for completion purposes. If STUB is a
|
|
891 string, use it as the completion stub instead of the default (which is
|
|
892 the entire text of the current argument).
|
|
893
|
|
894 For an example of when you might want to use STUB: if the current
|
|
895 argument text is 'long-path-name/', you don't want the completions
|
|
896 list display to be cluttered by 'long-path-name/' appearing at the
|
|
897 beginning of every alternative. Not only does this make things less
|
|
898 intelligle, but it is also inefficient. Yet, if the completion list
|
|
899 does not begin with this string for every entry, the current argument
|
|
900 won't complete correctly.
|
|
901
|
|
902 The solution is to specify a relative stub. It allows you to
|
|
903 substitute a different argument from the current argument, almost
|
|
904 always for the sake of efficiency.
|
|
905
|
|
906 If PARING is nil, this argument will be pared against previous
|
|
907 arguments using the function `file-truename' to normalize them.
|
|
908 PARING may be a function, in which case that function is for
|
|
909 normalization. If PARING is the value t, the argument dealt with by
|
|
910 this call will not participate in argument paring. If it the integer
|
|
911 0, all previous arguments that have been seen will be cleared.
|
|
912
|
|
913 If FORM-ONLY is non-nil, only the result of FORM will be used to
|
|
914 generate the completions list. This means that the hook
|
|
915 `pcomplete-try-first-hook' will not be run."
|
|
916 `(pcomplete--here (quote ,form) ,stub ,paring ,form-only))
|
|
917
|
|
918 (defmacro pcomplete-here* (&optional form stub form-only)
|
|
919 "An alternate form which does not participate in argument paring."
|
|
920 `(pcomplete-here ,form ,stub t ,form-only))
|
|
921
|
|
922 ;; display support
|
|
923
|
|
924 (defun pcomplete-restore-windows ()
|
|
925 "If the only window change was due to Completions, restore things."
|
|
926 (if pcomplete-last-window-config
|
|
927 (let* ((cbuf (get-buffer "*Completions*"))
|
|
928 (cwin (and cbuf (get-buffer-window cbuf))))
|
|
929 (when (and cwin (window-live-p cwin))
|
|
930 (bury-buffer cbuf)
|
|
931 (set-window-configuration pcomplete-last-window-config))))
|
|
932 (setq pcomplete-last-window-config nil
|
|
933 pcomplete-window-restore-timer nil))
|
|
934
|
|
935 ;; Abstractions so that the code below will work for both Emacs 20 and
|
|
936 ;; XEmacs 21
|
|
937
|
|
938 (unless (fboundp 'event-matches-key-specifier-p)
|
|
939 (defalias 'event-matches-key-specifier-p 'eq))
|
|
940
|
|
941 (unless (fboundp 'read-event)
|
|
942 (defsubst read-event (&optional prompt)
|
|
943 (aref (read-key-sequence prompt) 0)))
|
|
944
|
|
945 (unless (fboundp 'event-basic-type)
|
|
946 (defalias 'event-basic-type 'event-key))
|
|
947
|
|
948 (defun pcomplete-show-completions (completions)
|
|
949 "List in help buffer sorted COMPLETIONS.
|
|
950 Typing SPC flushes the help buffer."
|
|
951 (let* ((curbuf (current-buffer)))
|
|
952 (when pcomplete-window-restore-timer
|
|
953 (cancel-timer pcomplete-window-restore-timer)
|
|
954 (setq pcomplete-window-restore-timer nil))
|
|
955 (unless pcomplete-last-window-config
|
|
956 (setq pcomplete-last-window-config (current-window-configuration)))
|
|
957 (with-output-to-temp-buffer "*Completions*"
|
|
958 (display-completion-list completions))
|
|
959 (message "Hit space to flush")
|
|
960 (let (event)
|
|
961 (prog1
|
|
962 (catch 'done
|
|
963 (while (with-current-buffer (get-buffer "*Completions*")
|
|
964 (setq event (read-event)))
|
|
965 (cond
|
|
966 ((event-matches-key-specifier-p event ? )
|
|
967 (set-window-configuration pcomplete-last-window-config)
|
|
968 (setq pcomplete-last-window-config nil)
|
|
969 (throw 'done nil))
|
|
970 ((event-matches-key-specifier-p event 'tab)
|
|
971 (save-selected-window
|
|
972 (select-window (get-buffer-window "*Completions*"))
|
|
973 (if (pos-visible-in-window-p (point-max))
|
|
974 (goto-char (point-min))
|
|
975 (scroll-up)))
|
|
976 (message ""))
|
|
977 (t
|
|
978 (setq unread-command-events (list event))
|
|
979 (throw 'done nil)))))
|
|
980 (if (and pcomplete-last-window-config
|
|
981 pcomplete-restore-window-delay)
|
|
982 (setq pcomplete-window-restore-timer
|
|
983 (run-with-timer pcomplete-restore-window-delay nil
|
|
984 'pcomplete-restore-windows)))))))
|
|
985
|
|
986 ;; insert completion at point
|
|
987
|
|
988 (defun pcomplete-insert-entry (stub entry &optional addsuffix raw-p)
|
|
989 "Insert a completion entry at point.
|
|
990 Returns non-nil if a space was appended at the end."
|
|
991 (let ((here (point)))
|
|
992 (if (not pcomplete-ignore-case)
|
|
993 (insert-and-inherit (if raw-p
|
|
994 (substring entry (length stub))
|
|
995 (pcomplete-quote-argument
|
|
996 (substring entry (length stub)))))
|
|
997 ;; the stub is not quoted at this time, so to determine the
|
|
998 ;; length of what should be in the buffer, we must quote it
|
|
999 (delete-backward-char (length (pcomplete-quote-argument stub)))
|
|
1000 ;; if there is already a backslash present to handle the first
|
|
1001 ;; character, don't bother quoting it
|
|
1002 (when (eq (char-before) ?\\)
|
|
1003 (insert-and-inherit (substring entry 0 1))
|
|
1004 (setq entry (substring entry 1)))
|
|
1005 (insert-and-inherit (if raw-p
|
|
1006 entry
|
|
1007 (pcomplete-quote-argument entry))))
|
|
1008 (let (space-added)
|
|
1009 (when (and (not (memq (char-before) pcomplete-suffix-list))
|
|
1010 addsuffix)
|
|
1011 (insert-and-inherit " ")
|
|
1012 (setq space-added t))
|
|
1013 (setq pcomplete-last-completion-length (- (point) here)
|
|
1014 pcomplete-last-completion-stub stub)
|
|
1015 space-added)))
|
|
1016
|
|
1017 ;; selection of completions
|
|
1018
|
|
1019 (defun pcomplete-do-complete (stub completions)
|
|
1020 "Dynamically complete at point using STUB and COMPLETIONS.
|
|
1021 This is basically just a wrapper for `pcomplete-stub' which does some
|
|
1022 extra checking, and munging of the COMPLETIONS list."
|
|
1023 (unless (stringp stub)
|
|
1024 (message "Cannot complete argument")
|
|
1025 (throw 'pcompleted nil))
|
|
1026 (if (null completions)
|
|
1027 (ignore
|
|
1028 (if (and stub (> (length stub) 0))
|
|
1029 (message "No completions of %s" stub)
|
|
1030 (message "No completions")))
|
|
1031 ;; pare it down, if applicable
|
31241
|
1032 (if (and pcomplete-use-paring pcomplete-seen)
|
29876
|
1033 (let* ((arg (pcomplete-arg))
|
|
1034 (prefix
|
|
1035 (file-name-as-directory
|
|
1036 (funcall pcomplete-norm-func
|
|
1037 (substring arg 0 (- (length arg)
|
|
1038 (length pcomplete-stub)))))))
|
|
1039 (setq pcomplete-seen
|
|
1040 (mapcar 'directory-file-name pcomplete-seen))
|
|
1041 (let ((p pcomplete-seen))
|
|
1042 (while p
|
|
1043 (add-to-list 'pcomplete-seen
|
|
1044 (funcall pcomplete-norm-func (car p)))
|
|
1045 (setq p (cdr p))))
|
|
1046 (setq completions
|
|
1047 (mapcar
|
|
1048 (function
|
|
1049 (lambda (elem)
|
|
1050 (file-relative-name elem prefix)))
|
|
1051 (pcomplete-pare-list
|
|
1052 (mapcar
|
|
1053 (function
|
|
1054 (lambda (elem)
|
|
1055 (expand-file-name elem prefix)))
|
|
1056 completions)
|
|
1057 pcomplete-seen
|
|
1058 (function
|
|
1059 (lambda (elem)
|
|
1060 (member (directory-file-name
|
|
1061 (funcall pcomplete-norm-func elem))
|
|
1062 pcomplete-seen))))))))
|
|
1063 ;; OK, we've got a list of completions.
|
|
1064 (if pcomplete-show-list
|
|
1065 (pcomplete-show-completions completions)
|
|
1066 (pcomplete-stub stub completions))))
|
|
1067
|
|
1068 (defun pcomplete-stub (stub candidates &optional cycle-p)
|
|
1069 "Dynamically complete STUB from CANDIDATES list.
|
|
1070 This function inserts completion characters at point by completing
|
|
1071 STUB from the strings in CANDIDATES. A completions listing may be
|
|
1072 shown in a help buffer if completion is ambiguous.
|
|
1073
|
|
1074 Returns nil if no completion was inserted.
|
|
1075 Returns `sole' if completed with the only completion match.
|
|
1076 Returns `shortest' if completed with the shortest of the matches.
|
|
1077 Returns `partial' if completed as far as possible with the matches.
|
|
1078 Returns `listed' if a completion listing was shown.
|
|
1079
|
|
1080 See also `pcomplete-filename'."
|
|
1081 (let* ((completion-ignore-case pcomplete-ignore-case)
|
|
1082 (candidates (mapcar 'list candidates))
|
|
1083 (completions (all-completions stub candidates)))
|
|
1084 (let (result entry)
|
|
1085 (cond
|
|
1086 ((null completions)
|
|
1087 (if (and stub (> (length stub) 0))
|
|
1088 (message "No completions of %s" stub)
|
|
1089 (message "No completions")))
|
|
1090 ((= 1 (length completions))
|
|
1091 (setq entry (car completions))
|
|
1092 (if (string-equal entry stub)
|
|
1093 (message "Sole completion"))
|
|
1094 (setq result 'sole))
|
|
1095 ((and pcomplete-cycle-completions
|
|
1096 (or cycle-p
|
|
1097 (not pcomplete-cycle-cutoff-length)
|
|
1098 (<= (length completions)
|
|
1099 pcomplete-cycle-cutoff-length)))
|
|
1100 (setq entry (car completions)
|
|
1101 pcomplete-current-completions completions))
|
|
1102 (t ; There's no unique completion; use longest substring
|
|
1103 (setq entry (try-completion stub candidates))
|
|
1104 (cond ((and pcomplete-recexact
|
|
1105 (string-equal stub entry)
|
|
1106 (member entry completions))
|
|
1107 ;; It's not unique, but user wants shortest match.
|
|
1108 (message "Completed shortest")
|
|
1109 (setq result 'shortest))
|
|
1110 ((or pcomplete-autolist
|
|
1111 (string-equal stub entry))
|
|
1112 ;; It's not unique, list possible completions.
|
|
1113 (pcomplete-show-completions completions)
|
|
1114 (setq result 'listed))
|
|
1115 (t
|
|
1116 (message "Partially completed")
|
|
1117 (setq result 'partial)))))
|
|
1118 (cons result entry))))
|
|
1119
|
|
1120 ;; context sensitive help
|
|
1121
|
|
1122 (defun pcomplete--help ()
|
|
1123 "Produce context-sensitive help for the current argument.
|
|
1124 If specific documentation can't be given, be generic.
|
|
1125 INFODOC specifies the Info node to goto. DOCUMENTATION is a sexp
|
|
1126 which will produce documentation for the argument (it is responsible
|
|
1127 for displaying in its own buffer)."
|
|
1128 (if (and pcomplete-help
|
|
1129 (or (and (stringp pcomplete-help)
|
|
1130 (fboundp 'Info-goto-node))
|
|
1131 (listp pcomplete-help)))
|
|
1132 (if (listp pcomplete-help)
|
|
1133 (message (eval pcomplete-help))
|
|
1134 (save-window-excursion (info))
|
|
1135 (switch-to-buffer-other-window "*info*")
|
|
1136 (funcall (symbol-function 'Info-goto-node) pcomplete-help))
|
|
1137 (if pcomplete-man-function
|
|
1138 (let ((cmd (funcall pcomplete-command-name-function)))
|
|
1139 (if (and cmd (> (length cmd) 0))
|
|
1140 (funcall pcomplete-man-function cmd)))
|
|
1141 (message "No context-sensitive help available"))))
|
|
1142
|
|
1143 ;; general utilities
|
|
1144
|
|
1145 (defsubst pcomplete-time-less-p (t1 t2)
|
|
1146 "Say whether time T1 is less than time T2."
|
|
1147 (or (< (car t1) (car t2))
|
|
1148 (and (= (car t1) (car t2))
|
|
1149 (< (nth 1 t1) (nth 1 t2)))))
|
|
1150
|
|
1151 (defun pcomplete-pare-list (l r &optional pred)
|
|
1152 "Destructively remove from list L all elements matching any in list R.
|
|
1153 Test is done using `equal'.
|
|
1154 If PRED is non-nil, it is a function used for further removal.
|
|
1155 Returns the resultant list."
|
|
1156 (while (and l (or (and r (member (car l) r))
|
|
1157 (and pred
|
|
1158 (funcall pred (car l)))))
|
|
1159 (setq l (cdr l)))
|
|
1160 (let ((m l))
|
|
1161 (while m
|
|
1162 (while (and (cdr m)
|
|
1163 (or (and r (member (cadr m) r))
|
|
1164 (and pred
|
|
1165 (funcall pred (cadr m)))))
|
|
1166 (setcdr m (cddr m)))
|
|
1167 (setq m (cdr m))))
|
|
1168 l)
|
|
1169
|
|
1170 (defun pcomplete-uniqify-list (l)
|
|
1171 "Sort and remove multiples in L."
|
|
1172 (setq l (sort l 'string-lessp))
|
|
1173 (let ((m l))
|
|
1174 (while m
|
|
1175 (while (and (cdr m)
|
|
1176 (string= (car m)
|
|
1177 (cadr m)))
|
|
1178 (setcdr m (cddr m)))
|
|
1179 (setq m (cdr m))))
|
|
1180 l)
|
|
1181
|
|
1182 (defun pcomplete-process-result (cmd &rest args)
|
|
1183 "Call CMD using `call-process' and return the simplest result."
|
|
1184 (with-temp-buffer
|
|
1185 (apply 'call-process cmd nil t nil args)
|
|
1186 (skip-chars-backward "\n")
|
|
1187 (buffer-substring (point-min) (point))))
|
|
1188
|
|
1189 ;; create a set of aliases which allow completion functions to be not
|
|
1190 ;; quite so verbose
|
|
1191
|
|
1192 ;; jww (1999-10-20): are these a good idea?
|
|
1193 ; (defalias 'pc-here 'pcomplete-here)
|
|
1194 ; (defalias 'pc-test 'pcomplete-test)
|
|
1195 ; (defalias 'pc-opt 'pcomplete-opt)
|
|
1196 ; (defalias 'pc-match 'pcomplete-match)
|
|
1197 ; (defalias 'pc-match-string 'pcomplete-match-string)
|
|
1198 ; (defalias 'pc-match-beginning 'pcomplete-match-beginning)
|
|
1199 ; (defalias 'pc-match-end 'pcomplete-match-end)
|
|
1200
|
|
1201 ;;; pcomplete.el ends here
|