]> code.delx.au - gnu-emacs/blob - lisp/minibuffer.el
Merge from emacs-23
[gnu-emacs] / lisp / minibuffer.el
1 ;;; minibuffer.el --- Minibuffer completion functions
2
3 ;; Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
4
5 ;; Author: Stefan Monnier <monnier@iro.umontreal.ca>
6 ;; Package: emacs
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24
25 ;; Names with "--" are for functions and variables that are meant to be for
26 ;; internal use only.
27
28 ;; Functional completion tables have an extended calling conventions:
29 ;; - The `action' can be (additionally to nil, t, and lambda) of the form
30 ;; (boundaries . SUFFIX) in which case it should return
31 ;; (boundaries START . END). See `completion-boundaries'.
32 ;; Any other return value should be ignored (so we ignore values returned
33 ;; from completion tables that don't know about this new `action' form).
34
35 ;;; Bugs:
36
37 ;; - completion-all-sorted-completions list all the completions, whereas
38 ;; it should only lists the ones that `try-completion' would consider.
39 ;; E.g. it should honor completion-ignored-extensions.
40 ;; - choose-completion can't automatically figure out the boundaries
41 ;; corresponding to the displayed completions because we only
42 ;; provide the start info but not the end info in
43 ;; completion-base-position.
44 ;; - quoting is problematic. E.g. the double-dollar quoting used in
45 ;; substitute-in-file-name (and hence read-file-name-internal) bumps
46 ;; into various bugs:
47 ;; - choose-completion doesn't know how to quote the text it inserts.
48 ;; E.g. it fails to double the dollars in file-name completion, or
49 ;; to backslash-escape spaces and other chars in comint completion.
50 ;; - when completing ~/tmp/fo$$o, the highligting in *Completions*
51 ;; is off by one position.
52 ;; - all code like PCM which relies on all-completions to match
53 ;; its argument gets confused because all-completions returns unquoted
54 ;; texts (as desired for *Completions* output).
55 ;; - C-x C-f ~/*/sr ? should not list "~/./src".
56 ;; - minibuffer-force-complete completes ~/src/emacs/t<!>/lisp/minibuffer.el
57 ;; to ~/src/emacs/trunk/ and throws away lisp/minibuffer.el.
58
59 ;;; Todo:
60
61 ;; - extend `boundaries' to provide various other meta-data about the
62 ;; output of `all-completions':
63 ;; - preferred sorting order when displayed in *Completions*.
64 ;; - annotations/text-properties to add when displayed in *Completions*.
65 ;; - quoting/unquoting (so we can complete files names with envvars
66 ;; and backslashes, and all-completion can list names without
67 ;; quoting backslashes and dollars).
68 ;; - indicate how to turn all-completion's output into
69 ;; try-completion's output: e.g. completion-ignored-extensions.
70 ;; maybe that could be merged with the "quote" operation above.
71 ;; - completion hook to run when the completion is
72 ;; selected/inserted (maybe this should be provided some other
73 ;; way, e.g. as text-property, so `try-completion can also return it?)
74 ;; both for when it's inserted via TAB or via choose-completion.
75 ;; - indicate that `all-completions' doesn't do prefix-completion
76 ;; but just returns some list that relates in some other way to
77 ;; the provided string (as is the case in filecache.el), in which
78 ;; case partial-completion (for example) doesn't make any sense
79 ;; and neither does the completions-first-difference highlight.
80 ;; - indicate how to display the completions in *Completions* (turn
81 ;; \n into something else, add special boundaries between
82 ;; completions). E.g. when completing from the kill-ring.
83
84 ;; - make partial-completion-mode obsolete:
85 ;; - (?) <foo.h> style completion for file names.
86 ;; This can't be done identically just by tweaking completion,
87 ;; because partial-completion-mode's behavior is to expand <string.h>
88 ;; to /usr/include/string.h only when exiting the minibuffer, at which
89 ;; point the completion code is actually not involved normally.
90 ;; Partial-completion-mode does it via a find-file-not-found-function.
91 ;; - special code for C-x C-f <> to visit the file ref'd at point
92 ;; via (require 'foo) or #include "foo". ffap seems like a better
93 ;; place for this feature (supplemented with major-mode-provided
94 ;; functions to find the file ref'd at point).
95
96 ;; - case-sensitivity currently confuses two issues:
97 ;; - whether or not a particular completion table should be case-sensitive
98 ;; (i.e. whether strings that differ only by case are semantically
99 ;; equivalent)
100 ;; - whether the user wants completion to pay attention to case.
101 ;; e.g. we may want to make it possible for the user to say "first try
102 ;; completion case-sensitively, and if that fails, try to ignore case".
103
104 ;; - add support for ** to pcm.
105 ;; - Add vc-file-name-completion-table to read-file-name-internal.
106 ;; - A feature like completing-help.el.
107
108 ;;; Code:
109
110 (eval-when-compile (require 'cl))
111
112 ;;; Completion table manipulation
113
114 ;; New completion-table operation.
115 (defun completion-boundaries (string table pred suffix)
116 "Return the boundaries of the completions returned by TABLE for STRING.
117 STRING is the string on which completion will be performed.
118 SUFFIX is the string after point.
119 The result is of the form (START . END) where START is the position
120 in STRING of the beginning of the completion field and END is the position
121 in SUFFIX of the end of the completion field.
122 E.g. for simple completion tables, the result is always (0 . (length SUFFIX))
123 and for file names the result is the positions delimited by
124 the closest directory separators."
125 (let ((boundaries (if (functionp table)
126 (funcall table string pred (cons 'boundaries suffix)))))
127 (if (not (eq (car-safe boundaries) 'boundaries))
128 (setq boundaries nil))
129 (cons (or (cadr boundaries) 0)
130 (or (cddr boundaries) (length suffix)))))
131
132 (defun completion--some (fun xs)
133 "Apply FUN to each element of XS in turn.
134 Return the first non-nil returned value.
135 Like CL's `some'."
136 (lexical-let ((firsterror nil)
137 res)
138 (while (and (not res) xs)
139 (condition-case err
140 (setq res (funcall fun (pop xs)))
141 (error (unless firsterror (setq firsterror err)) nil)))
142 (or res
143 (if firsterror (signal (car firsterror) (cdr firsterror))))))
144
145 (defun complete-with-action (action table string pred)
146 "Perform completion ACTION.
147 STRING is the string to complete.
148 TABLE is the completion table, which should not be a function.
149 PRED is a completion predicate.
150 ACTION can be one of nil, t or `lambda'."
151 (cond
152 ((functionp table) (funcall table string pred action))
153 ((eq (car-safe action) 'boundaries)
154 (cons 'boundaries (completion-boundaries string table pred (cdr action))))
155 (t
156 (funcall
157 (cond
158 ((null action) 'try-completion)
159 ((eq action t) 'all-completions)
160 (t 'test-completion))
161 string table pred))))
162
163 (defun completion-table-dynamic (fun)
164 "Use function FUN as a dynamic completion table.
165 FUN is called with one argument, the string for which completion is required,
166 and it should return an alist containing all the intended possible completions.
167 This alist may be a full list of possible completions so that FUN can ignore
168 the value of its argument. If completion is performed in the minibuffer,
169 FUN will be called in the buffer from which the minibuffer was entered.
170
171 The result of the `completion-table-dynamic' form is a function
172 that can be used as the COLLECTION argument to `try-completion' and
173 `all-completions'. See Info node `(elisp)Programmed Completion'."
174 (lexical-let ((fun fun))
175 (lambda (string pred action)
176 (with-current-buffer (let ((win (minibuffer-selected-window)))
177 (if (window-live-p win) (window-buffer win)
178 (current-buffer)))
179 (complete-with-action action (funcall fun string) string pred)))))
180
181 (defmacro lazy-completion-table (var fun)
182 "Initialize variable VAR as a lazy completion table.
183 If the completion table VAR is used for the first time (e.g., by passing VAR
184 as an argument to `try-completion'), the function FUN is called with no
185 arguments. FUN must return the completion table that will be stored in VAR.
186 If completion is requested in the minibuffer, FUN will be called in the buffer
187 from which the minibuffer was entered. The return value of
188 `lazy-completion-table' must be used to initialize the value of VAR.
189
190 You should give VAR a non-nil `risky-local-variable' property."
191 (declare (debug (symbolp lambda-expr)))
192 (let ((str (make-symbol "string")))
193 `(completion-table-dynamic
194 (lambda (,str)
195 (when (functionp ,var)
196 (setq ,var (,fun)))
197 ,var))))
198
199 (defun completion-table-with-context (prefix table string pred action)
200 ;; TODO: add `suffix' maybe?
201 ;; Notice that `pred' may not be a function in some abusive cases.
202 (when (functionp pred)
203 (setq pred
204 (lexical-let ((pred pred))
205 ;; Predicates are called differently depending on the nature of
206 ;; the completion table :-(
207 (cond
208 ((vectorp table) ;Obarray.
209 (lambda (sym) (funcall pred (concat prefix (symbol-name sym)))))
210 ((hash-table-p table)
211 (lambda (s v) (funcall pred (concat prefix s))))
212 ((functionp table)
213 (lambda (s) (funcall pred (concat prefix s))))
214 (t ;Lists and alists.
215 (lambda (s)
216 (funcall pred (concat prefix (if (consp s) (car s) s)))))))))
217 (if (eq (car-safe action) 'boundaries)
218 (let* ((len (length prefix))
219 (bound (completion-boundaries string table pred (cdr action))))
220 (list* 'boundaries (+ (car bound) len) (cdr bound)))
221 (let ((comp (complete-with-action action table string pred)))
222 (cond
223 ;; In case of try-completion, add the prefix.
224 ((stringp comp) (concat prefix comp))
225 (t comp)))))
226
227 (defun completion-table-with-terminator (terminator table string pred action)
228 "Construct a completion table like TABLE but with an extra TERMINATOR.
229 This is meant to be called in a curried way by first passing TERMINATOR
230 and TABLE only (via `apply-partially').
231 TABLE is a completion table, and TERMINATOR is a string appended to TABLE's
232 completion if it is complete. TERMINATOR is also used to determine the
233 completion suffix's boundary.
234 TERMINATOR can also be a cons cell (TERMINATOR . TERMINATOR-REGEXP)
235 in which case TERMINATOR-REGEXP is a regular expression whose submatch
236 number 1 should match TERMINATOR. This is used when there is a need to
237 distinguish occurrences of the TERMINATOR strings which are really terminators
238 from others (e.g. escaped)."
239 (cond
240 ((eq (car-safe action) 'boundaries)
241 (let* ((suffix (cdr action))
242 (bounds (completion-boundaries string table pred suffix))
243 (terminator-regexp (if (consp terminator)
244 (cdr terminator) (regexp-quote terminator)))
245 (max (string-match terminator-regexp suffix)))
246 (list* 'boundaries (car bounds)
247 (min (cdr bounds) (or max (length suffix))))))
248 ((eq action nil)
249 (let ((comp (try-completion string table pred)))
250 (if (consp terminator) (setq terminator (car terminator)))
251 (if (eq comp t)
252 (concat string terminator)
253 (if (and (stringp comp)
254 ;; FIXME: Try to avoid this second call, especially since
255 ;; it may be very inefficient (because `comp' made us
256 ;; jump to a new boundary, so we complete in that
257 ;; boundary with an empty start string).
258 ;; completion-boundaries might help.
259 (eq (try-completion comp table pred) t))
260 (concat comp terminator)
261 comp))))
262 ((eq action t)
263 ;; FIXME: We generally want the `try' and `all' behaviors to be
264 ;; consistent so pcm can merge the `all' output to get the `try' output,
265 ;; but that sometimes clashes with the need for `all' output to look
266 ;; good in *Completions*.
267 ;; (mapcar (lambda (s) (concat s terminator))
268 ;; (all-completions string table pred))))
269 (all-completions string table pred))
270 ;; completion-table-with-terminator is always used for
271 ;; "sub-completions" so it's only called if the terminator is missing,
272 ;; in which case `test-completion' should return nil.
273 ((eq action 'lambda) nil)))
274
275 (defun completion-table-with-predicate (table pred1 strict string pred2 action)
276 "Make a completion table equivalent to TABLE but filtered through PRED1.
277 PRED1 is a function of one argument which returns non-nil if and only if the
278 argument is an element of TABLE which should be considered for completion.
279 STRING, PRED2, and ACTION are the usual arguments to completion tables,
280 as described in `try-completion', `all-completions', and `test-completion'.
281 If STRICT is t, the predicate always applies; if nil it only applies if
282 it does not reduce the set of possible completions to nothing.
283 Note: TABLE needs to be a proper completion table which obeys predicates."
284 (cond
285 ((and (not strict) (eq action 'lambda))
286 ;; Ignore pred1 since it doesn't really have to apply anyway.
287 (test-completion string table pred2))
288 (t
289 (or (complete-with-action action table string
290 (if (null pred2) pred1
291 (lexical-let ((pred1 pred2) (pred2 pred2))
292 (lambda (x)
293 ;; Call `pred1' first, so that `pred2'
294 ;; really can't tell that `x' is in table.
295 (if (funcall pred1 x) (funcall pred2 x))))))
296 ;; If completion failed and we're not applying pred1 strictly, try
297 ;; again without pred1.
298 (and (not strict)
299 (complete-with-action action table string pred2))))))
300
301 (defun completion-table-in-turn (&rest tables)
302 "Create a completion table that tries each table in TABLES in turn."
303 ;; FIXME: the boundaries may come from TABLE1 even when the completion list
304 ;; is returned by TABLE2 (because TABLE1 returned an empty list).
305 (lexical-let ((tables tables))
306 (lambda (string pred action)
307 (completion--some (lambda (table)
308 (complete-with-action action table string pred))
309 tables))))
310
311 ;; (defmacro complete-in-turn (a b) `(completion-table-in-turn ,a ,b))
312 ;; (defmacro dynamic-completion-table (fun) `(completion-table-dynamic ,fun))
313 (define-obsolete-function-alias
314 'complete-in-turn 'completion-table-in-turn "23.1")
315 (define-obsolete-function-alias
316 'dynamic-completion-table 'completion-table-dynamic "23.1")
317
318 ;;; Minibuffer completion
319
320 (defgroup minibuffer nil
321 "Controlling the behavior of the minibuffer."
322 :link '(custom-manual "(emacs)Minibuffer")
323 :group 'environment)
324
325 (defun minibuffer-message (message &rest args)
326 "Temporarily display MESSAGE at the end of the minibuffer.
327 The text is displayed for `minibuffer-message-timeout' seconds,
328 or until the next input event arrives, whichever comes first.
329 Enclose MESSAGE in [...] if this is not yet the case.
330 If ARGS are provided, then pass MESSAGE through `format'."
331 (if (not (minibufferp (current-buffer)))
332 (progn
333 (if args
334 (apply 'message message args)
335 (message "%s" message))
336 (prog1 (sit-for (or minibuffer-message-timeout 1000000))
337 (message nil)))
338 ;; Clear out any old echo-area message to make way for our new thing.
339 (message nil)
340 (setq message (if (and (null args) (string-match-p "\\` *\\[.+\\]\\'" message))
341 ;; Make sure we can put-text-property.
342 (copy-sequence message)
343 (concat " [" message "]")))
344 (when args (setq message (apply 'format message args)))
345 (let ((ol (make-overlay (point-max) (point-max) nil t t))
346 ;; A quit during sit-for normally only interrupts the sit-for,
347 ;; but since minibuffer-message is used at the end of a command,
348 ;; at a time when the command has virtually finished already, a C-g
349 ;; should really cause an abort-recursive-edit instead (i.e. as if
350 ;; the C-g had been typed at top-level). Binding inhibit-quit here
351 ;; is an attempt to get that behavior.
352 (inhibit-quit t))
353 (unwind-protect
354 (progn
355 (unless (zerop (length message))
356 ;; The current C cursor code doesn't know to use the overlay's
357 ;; marker's stickiness to figure out whether to place the cursor
358 ;; before or after the string, so let's spoon-feed it the pos.
359 (put-text-property 0 1 'cursor t message))
360 (overlay-put ol 'after-string message)
361 (sit-for (or minibuffer-message-timeout 1000000)))
362 (delete-overlay ol)))))
363
364 (defun minibuffer-completion-contents ()
365 "Return the user input in a minibuffer before point as a string.
366 That is what completion commands operate on."
367 (buffer-substring (field-beginning) (point)))
368
369 (defun delete-minibuffer-contents ()
370 "Delete all user input in a minibuffer.
371 If the current buffer is not a minibuffer, erase its entire contents."
372 ;; We used to do `delete-field' here, but when file name shadowing
373 ;; is on, the field doesn't cover the entire minibuffer contents.
374 (delete-region (minibuffer-prompt-end) (point-max)))
375
376 (defcustom completion-auto-help t
377 "Non-nil means automatically provide help for invalid completion input.
378 If the value is t the *Completion* buffer is displayed whenever completion
379 is requested but cannot be done.
380 If the value is `lazy', the *Completions* buffer is only displayed after
381 the second failed attempt to complete."
382 :type '(choice (const nil) (const t) (const lazy))
383 :group 'minibuffer)
384
385 (defconst completion-styles-alist
386 '((emacs21
387 completion-emacs21-try-completion completion-emacs21-all-completions
388 "Simple prefix-based completion.
389 I.e. when completing \"foo_bar\" (where _ is the position of point),
390 it will consider all completions candidates matching the glob
391 pattern \"foobar*\".")
392 (emacs22
393 completion-emacs22-try-completion completion-emacs22-all-completions
394 "Prefix completion that only operates on the text before point.
395 I.e. when completing \"foo_bar\" (where _ is the position of point),
396 it will consider all completions candidates matching the glob
397 pattern \"foo*\" and will add back \"bar\" to the end of it.")
398 (basic
399 completion-basic-try-completion completion-basic-all-completions
400 "Completion of the prefix before point and the suffix after point.
401 I.e. when completing \"foo_bar\" (where _ is the position of point),
402 it will consider all completions candidates matching the glob
403 pattern \"foo*bar*\".")
404 (partial-completion
405 completion-pcm-try-completion completion-pcm-all-completions
406 "Completion of multiple words, each one taken as a prefix.
407 I.e. when completing \"l-co_h\" (where _ is the position of point),
408 it will consider all completions candidates matching the glob
409 pattern \"l*-co*h*\".
410 Furthermore, for completions that are done step by step in subfields,
411 the method is applied to all the preceding fields that do not yet match.
412 E.g. C-x C-f /u/mo/s TAB could complete to /usr/monnier/src.
413 Additionally the user can use the char \"*\" as a glob pattern.")
414 (substring
415 completion-substring-try-completion completion-substring-all-completions
416 "Completion of the string taken as a substring.
417 I.e. when completing \"foo_bar\" (where _ is the position of point),
418 it will consider all completions candidates matching the glob
419 pattern \"*foo*bar*\".")
420 (initials
421 completion-initials-try-completion completion-initials-all-completions
422 "Completion of acronyms and initialisms.
423 E.g. can complete M-x lch to list-command-history
424 and C-x C-f ~/sew to ~/src/emacs/work."))
425 "List of available completion styles.
426 Each element has the form (NAME TRY-COMPLETION ALL-COMPLETIONS DOC):
427 where NAME is the name that should be used in `completion-styles',
428 TRY-COMPLETION is the function that does the completion (it should
429 follow the same calling convention as `completion-try-completion'),
430 ALL-COMPLETIONS is the function that lists the completions (it should
431 follow the calling convention of `completion-all-completions'),
432 and DOC describes the way this style of completion works.")
433
434 (defcustom completion-styles
435 ;; First, use `basic' because prefix completion has been the standard
436 ;; for "ever" and works well in most cases, so using it first
437 ;; ensures that we obey previous behavior in most cases.
438 '(basic
439 ;; Then use `partial-completion' because it has proven to
440 ;; be a very convenient extension.
441 partial-completion
442 ;; Finally use `emacs22' so as to maintain (in many/most cases)
443 ;; the previous behavior that when completing "foobar" with point
444 ;; between "foo" and "bar" the completion try to complete "foo"
445 ;; and simply add "bar" to the end of the result.
446 emacs22)
447 "List of completion styles to use.
448 The available styles are listed in `completion-styles-alist'."
449 :type `(repeat (choice ,@(mapcar (lambda (x) (list 'const (car x)))
450 completion-styles-alist)))
451 :group 'minibuffer
452 :version "23.1")
453
454 (defun completion-try-completion (string table pred point)
455 "Try to complete STRING using completion table TABLE.
456 Only the elements of table that satisfy predicate PRED are considered.
457 POINT is the position of point within STRING.
458 The return value can be either nil to indicate that there is no completion,
459 t to indicate that STRING is the only possible completion,
460 or a pair (STRING . NEWPOINT) of the completed result string together with
461 a new position for point."
462 (completion--some (lambda (style)
463 (funcall (nth 1 (assq style completion-styles-alist))
464 string table pred point))
465 completion-styles))
466
467 (defun completion-all-completions (string table pred point)
468 "List the possible completions of STRING in completion table TABLE.
469 Only the elements of table that satisfy predicate PRED are considered.
470 POINT is the position of point within STRING.
471 The return value is a list of completions and may contain the base-size
472 in the last `cdr'."
473 ;; FIXME: We need to additionally return the info needed for the
474 ;; second part of completion-base-position.
475 (completion--some (lambda (style)
476 (funcall (nth 2 (assq style completion-styles-alist))
477 string table pred point))
478 completion-styles))
479
480 (defun minibuffer--bitset (modified completions exact)
481 (logior (if modified 4 0)
482 (if completions 2 0)
483 (if exact 1 0)))
484
485 (defun completion--replace (beg end newtext)
486 "Replace the buffer text between BEG and END with NEWTEXT.
487 Moves point to the end of the new text."
488 ;; Maybe this should be in subr.el.
489 ;; You'd think this is trivial to do, but details matter if you want
490 ;; to keep markers "at the right place" and be robust in the face of
491 ;; after-change-functions that may themselves modify the buffer.
492 (let ((prefix-len 0))
493 ;; Don't touch markers in the shared prefix (if any).
494 (while (and (< prefix-len (length newtext))
495 (< (+ beg prefix-len) end)
496 (eq (char-after (+ beg prefix-len))
497 (aref newtext prefix-len)))
498 (setq prefix-len (1+ prefix-len)))
499 (unless (zerop prefix-len)
500 (setq beg (+ beg prefix-len))
501 (setq newtext (substring newtext prefix-len))))
502 (let ((suffix-len 0))
503 ;; Don't touch markers in the shared suffix (if any).
504 (while (and (< suffix-len (length newtext))
505 (< beg (- end suffix-len))
506 (eq (char-before (- end suffix-len))
507 (aref newtext (- (length newtext) suffix-len 1))))
508 (setq suffix-len (1+ suffix-len)))
509 (unless (zerop suffix-len)
510 (setq end (- end suffix-len))
511 (setq newtext (substring newtext 0 (- suffix-len))))
512 (goto-char beg)
513 (insert newtext)
514 (delete-region (point) (+ (point) (- end beg)))
515 (forward-char suffix-len)))
516
517 (defcustom completion-cycle-threshold nil
518 "Number of completion candidates below which cycling is used.
519 Depending on this setting `minibuffer-complete' may use cycling,
520 like `minibuffer-force-complete'.
521 If nil, cycling is never used.
522 If t, cycling is always used.
523 If an integer, cycling is used as soon as there are fewer completion
524 candidates than this number."
525 :type '(choice (const :tag "No cycling" nil)
526 (const :tag "Always cycle" t)
527 (integer :tag "Threshold")))
528
529 (defvar completion-all-sorted-completions nil)
530 (make-variable-buffer-local 'completion-all-sorted-completions)
531 (defvar completion-cycling nil)
532
533 (defun completion--do-completion (&optional try-completion-function)
534 "Do the completion and return a summary of what happened.
535 M = completion was performed, the text was Modified.
536 C = there were available Completions.
537 E = after completion we now have an Exact match.
538
539 MCE
540 000 0 no possible completion
541 001 1 was already an exact and unique completion
542 010 2 no completion happened
543 011 3 was already an exact completion
544 100 4 ??? impossible
545 101 5 ??? impossible
546 110 6 some completion happened
547 111 7 completed to an exact completion"
548 (lexical-let*
549 ((beg (field-beginning))
550 (end (field-end))
551 (string (buffer-substring beg end))
552 (comp (funcall (or try-completion-function
553 'completion-try-completion)
554 string
555 minibuffer-completion-table
556 minibuffer-completion-predicate
557 (- (point) beg))))
558 (cond
559 ((null comp)
560 (minibuffer-hide-completions)
561 (ding) (minibuffer-message "No match") (minibuffer--bitset nil nil nil))
562 ((eq t comp)
563 (minibuffer-hide-completions)
564 (goto-char (field-end))
565 (minibuffer--bitset nil nil t)) ;Exact and unique match.
566 (t
567 ;; `completed' should be t if some completion was done, which doesn't
568 ;; include simply changing the case of the entered string. However,
569 ;; for appearance, the string is rewritten if the case changes.
570 (lexical-let*
571 ((comp-pos (cdr comp))
572 (completion (car comp))
573 (completed (not (eq t (compare-strings completion nil nil
574 string nil nil t))))
575 (unchanged (eq t (compare-strings completion nil nil
576 string nil nil nil))))
577 (if unchanged
578 (goto-char end)
579 ;; Insert in minibuffer the chars we got.
580 (completion--replace beg end completion))
581 ;; Move point to its completion-mandated destination.
582 (forward-char (- comp-pos (length completion)))
583
584 (if (not (or unchanged completed))
585 ;; The case of the string changed, but that's all. We're not sure
586 ;; whether this is a unique completion or not, so try again using
587 ;; the real case (this shouldn't recurse again, because the next
588 ;; time try-completion will return either t or the exact string).
589 (completion--do-completion try-completion-function)
590
591 ;; It did find a match. Do we match some possibility exactly now?
592 (let ((exact (test-completion completion
593 minibuffer-completion-table
594 minibuffer-completion-predicate))
595 (comps
596 ;; Check to see if we want to do cycling. We do it
597 ;; here, after having performed the normal completion,
598 ;; so as to take advantage of the difference between
599 ;; try-completion and all-completions, for things
600 ;; like completion-ignored-extensions.
601 (when (and completion-cycle-threshold
602 ;; Check that the completion didn't make
603 ;; us jump to a different boundary.
604 (or (not completed)
605 (< (car (completion-boundaries
606 (substring completion 0 comp-pos)
607 minibuffer-completion-table
608 minibuffer-completion-predicate
609 ""))
610 comp-pos)))
611 (completion-all-sorted-completions))))
612 (completion--flush-all-sorted-completions)
613 (cond
614 ((and (consp (cdr comps)) ;; There's something to cycle.
615 (not (ignore-errors
616 ;; This signal an (intended) error if comps is too
617 ;; short or if completion-cycle-threshold is t.
618 (consp (nthcdr completion-cycle-threshold comps)))))
619 ;; Fewer than completion-cycle-threshold remaining
620 ;; completions: let's cycle.
621 (setq completed t exact t)
622 (setq completion-all-sorted-completions comps)
623 (minibuffer-force-complete))
624 (completed
625 ;; We could also decide to refresh the completions,
626 ;; if they're displayed (and assuming there are
627 ;; completions left).
628 (minibuffer-hide-completions))
629 ;; Show the completion table, if requested.
630 ((not exact)
631 (if (case completion-auto-help
632 (lazy (eq this-command last-command))
633 (t completion-auto-help))
634 (minibuffer-completion-help)
635 (minibuffer-message "Next char not unique")))
636 ;; If the last exact completion and this one were the same, it
637 ;; means we've already given a "Next char not unique" message
638 ;; and the user's hit TAB again, so now we give him help.
639 ((eq this-command last-command)
640 (if completion-auto-help (minibuffer-completion-help))))
641
642 (minibuffer--bitset completed t exact))))))))
643
644 (defun minibuffer-complete ()
645 "Complete the minibuffer contents as far as possible.
646 Return nil if there is no valid completion, else t.
647 If no characters can be completed, display a list of possible completions.
648 If you repeat this command after it displayed such a list,
649 scroll the window of possible completions."
650 (interactive)
651 ;; If the previous command was not this,
652 ;; mark the completion buffer obsolete.
653 (unless (eq this-command last-command)
654 (completion--flush-all-sorted-completions)
655 (setq minibuffer-scroll-window nil))
656
657 (cond
658 ;; If there's a fresh completion window with a live buffer,
659 ;; and this command is repeated, scroll that window.
660 ((window-live-p minibuffer-scroll-window)
661 (let ((window minibuffer-scroll-window))
662 (with-current-buffer (window-buffer window)
663 (if (pos-visible-in-window-p (point-max) window)
664 ;; If end is in view, scroll up to the beginning.
665 (set-window-start window (point-min) nil)
666 ;; Else scroll down one screen.
667 (scroll-other-window))
668 nil)))
669 ;; If we're cycling, keep on cycling.
670 ((and completion-cycling completion-all-sorted-completions)
671 (minibuffer-force-complete)
672 t)
673 (t (case (completion--do-completion)
674 (#b000 nil)
675 (#b001 (minibuffer-message "Sole completion")
676 t)
677 (#b011 (minibuffer-message "Complete, but not unique")
678 t)
679 (t t)))))
680
681 (defun completion--flush-all-sorted-completions (&rest ignore)
682 (setq completion-cycling nil)
683 (setq completion-all-sorted-completions nil))
684
685 (defun completion-all-sorted-completions ()
686 (or completion-all-sorted-completions
687 (let* ((start (field-beginning))
688 (end (field-end))
689 (all (completion-all-completions (buffer-substring start end)
690 minibuffer-completion-table
691 minibuffer-completion-predicate
692 (- (point) start)))
693 (last (last all))
694 (base-size (or (cdr last) 0)))
695 (when last
696 (setcdr last nil)
697 ;; Prefer shorter completions.
698 (setq all (sort all (lambda (c1 c2) (< (length c1) (length c2)))))
699 ;; Prefer recently used completions.
700 (let ((hist (symbol-value minibuffer-history-variable)))
701 (setq all (sort all (lambda (c1 c2)
702 (> (length (member c1 hist))
703 (length (member c2 hist)))))))
704 ;; Cache the result. This is not just for speed, but also so that
705 ;; repeated calls to minibuffer-force-complete can cycle through
706 ;; all possibilities.
707 (add-hook 'after-change-functions
708 'completion--flush-all-sorted-completions nil t)
709 (setq completion-all-sorted-completions
710 (nconc all base-size))))))
711
712 (defun minibuffer-force-complete ()
713 "Complete the minibuffer to an exact match.
714 Repeated uses step through the possible completions."
715 (interactive)
716 ;; FIXME: Need to deal with the extra-size issue here as well.
717 ;; FIXME: ~/src/emacs/t<M-TAB>/lisp/minibuffer.el completes to
718 ;; ~/src/emacs/trunk/ and throws away lisp/minibuffer.el.
719 (let* ((start (field-beginning))
720 (end (field-end))
721 (all (completion-all-sorted-completions)))
722 (if (not (consp all))
723 (minibuffer-message (if all "No more completions" "No completions"))
724 (setq completion-cycling t)
725 (goto-char end)
726 (insert (car all))
727 (delete-region (+ start (cdr (last all))) end)
728 ;; If completing file names, (car all) may be a directory, so we'd now
729 ;; have a new set of possible completions and might want to reset
730 ;; completion-all-sorted-completions to nil, but we prefer not to,
731 ;; so that repeated calls minibuffer-force-complete still cycle
732 ;; through the previous possible completions.
733 (let ((last (last all)))
734 (setcdr last (cons (car all) (cdr last)))
735 (setq completion-all-sorted-completions (cdr all))))))
736
737 (defvar minibuffer-confirm-exit-commands
738 '(minibuffer-complete minibuffer-complete-word PC-complete PC-complete-word)
739 "A list of commands which cause an immediately following
740 `minibuffer-complete-and-exit' to ask for extra confirmation.")
741
742 (defun minibuffer-complete-and-exit ()
743 "Exit if the minibuffer contains a valid completion.
744 Otherwise, try to complete the minibuffer contents. If
745 completion leads to a valid completion, a repetition of this
746 command will exit.
747
748 If `minibuffer-completion-confirm' is `confirm', do not try to
749 complete; instead, ask for confirmation and accept any input if
750 confirmed.
751 If `minibuffer-completion-confirm' is `confirm-after-completion',
752 do not try to complete; instead, ask for confirmation if the
753 preceding minibuffer command was a member of
754 `minibuffer-confirm-exit-commands', and accept the input
755 otherwise."
756 (interactive)
757 (lexical-let ((beg (field-beginning))
758 (end (field-end)))
759 (cond
760 ;; Allow user to specify null string
761 ((= beg end) (exit-minibuffer))
762 ((test-completion (buffer-substring beg end)
763 minibuffer-completion-table
764 minibuffer-completion-predicate)
765 ;; FIXME: completion-ignore-case has various slightly
766 ;; incompatible meanings. E.g. it can reflect whether the user
767 ;; wants completion to pay attention to case, or whether the
768 ;; string will be used in a context where case is significant.
769 ;; E.g. usually try-completion should obey the first, whereas
770 ;; test-completion should obey the second.
771 (when completion-ignore-case
772 ;; Fixup case of the field, if necessary.
773 (let* ((string (buffer-substring beg end))
774 (compl (try-completion
775 string
776 minibuffer-completion-table
777 minibuffer-completion-predicate)))
778 (when (and (stringp compl) (not (equal string compl))
779 ;; If it weren't for this piece of paranoia, I'd replace
780 ;; the whole thing with a call to do-completion.
781 ;; This is important, e.g. when the current minibuffer's
782 ;; content is a directory which only contains a single
783 ;; file, so `try-completion' actually completes to
784 ;; that file.
785 (= (length string) (length compl)))
786 (goto-char end)
787 (insert compl)
788 (delete-region beg end))))
789 (exit-minibuffer))
790
791 ((memq minibuffer-completion-confirm '(confirm confirm-after-completion))
792 ;; The user is permitted to exit with an input that's rejected
793 ;; by test-completion, after confirming her choice.
794 (if (or (eq last-command this-command)
795 ;; For `confirm-after-completion' we only ask for confirmation
796 ;; if trying to exit immediately after typing TAB (this
797 ;; catches most minibuffer typos).
798 (and (eq minibuffer-completion-confirm 'confirm-after-completion)
799 (not (memq last-command minibuffer-confirm-exit-commands))))
800 (exit-minibuffer)
801 (minibuffer-message "Confirm")
802 nil))
803
804 (t
805 ;; Call do-completion, but ignore errors.
806 (case (condition-case nil
807 (completion--do-completion)
808 (error 1))
809 ((#b001 #b011) (exit-minibuffer))
810 (#b111 (if (not minibuffer-completion-confirm)
811 (exit-minibuffer)
812 (minibuffer-message "Confirm")
813 nil))
814 (t nil))))))
815
816 (defun completion--try-word-completion (string table predicate point)
817 (let ((comp (completion-try-completion string table predicate point)))
818 (if (not (consp comp))
819 comp
820
821 ;; If completion finds next char not unique,
822 ;; consider adding a space or a hyphen.
823 (when (= (length string) (length (car comp)))
824 ;; Mark the added char with the `completion-word' property, so it
825 ;; can be handled specially by completion styles such as
826 ;; partial-completion.
827 ;; We used to remove `partial-completion' from completion-styles
828 ;; instead, but it was too blunt, leading to situations where SPC
829 ;; was the only insertable char at point but minibuffer-complete-word
830 ;; refused inserting it.
831 (let ((exts (mapcar (lambda (str) (propertize str 'completion-try-word t))
832 '(" " "-")))
833 (before (substring string 0 point))
834 (after (substring string point))
835 tem)
836 (while (and exts (not (consp tem)))
837 (setq tem (completion-try-completion
838 (concat before (pop exts) after)
839 table predicate (1+ point))))
840 (if (consp tem) (setq comp tem))))
841
842 ;; Completing a single word is actually more difficult than completing
843 ;; as much as possible, because we first have to find the "current
844 ;; position" in `completion' in order to find the end of the word
845 ;; we're completing. Normally, `string' is a prefix of `completion',
846 ;; which makes it trivial to find the position, but with fancier
847 ;; completion (plus env-var expansion, ...) `completion' might not
848 ;; look anything like `string' at all.
849 (let* ((comppoint (cdr comp))
850 (completion (car comp))
851 (before (substring string 0 point))
852 (combined (concat before "\n" completion)))
853 ;; Find in completion the longest text that was right before point.
854 (when (string-match "\\(.+\\)\n.*?\\1" combined)
855 (let* ((prefix (match-string 1 before))
856 ;; We used non-greedy match to make `rem' as long as possible.
857 (rem (substring combined (match-end 0)))
858 ;; Find in the remainder of completion the longest text
859 ;; that was right after point.
860 (after (substring string point))
861 (suffix (if (string-match "\\`\\(.+\\).*\n.*\\1"
862 (concat after "\n" rem))
863 (match-string 1 after))))
864 ;; The general idea is to try and guess what text was inserted
865 ;; at point by the completion. Problem is: if we guess wrong,
866 ;; we may end up treating as "added by completion" text that was
867 ;; actually painfully typed by the user. So if we then cut
868 ;; after the first word, we may throw away things the
869 ;; user wrote. So let's try to be as conservative as possible:
870 ;; only cut after the first word, if we're reasonably sure that
871 ;; our guess is correct.
872 ;; Note: a quick survey on emacs-devel seemed to indicate that
873 ;; nobody actually cares about the "word-at-a-time" feature of
874 ;; minibuffer-complete-word, whose real raison-d'être is that it
875 ;; tries to add "-" or " ". One more reason to only cut after
876 ;; the first word, if we're really sure we're right.
877 (when (and (or suffix (zerop (length after)))
878 (string-match (concat
879 ;; Make submatch 1 as small as possible
880 ;; to reduce the risk of cutting
881 ;; valuable text.
882 ".*" (regexp-quote prefix) "\\(.*?\\)"
883 (if suffix (regexp-quote suffix) "\\'"))
884 completion)
885 ;; The new point in `completion' should also be just
886 ;; before the suffix, otherwise something more complex
887 ;; is going on, and we're not sure where we are.
888 (eq (match-end 1) comppoint)
889 ;; (match-beginning 1)..comppoint is now the stretch
890 ;; of text in `completion' that was completed at point.
891 (string-match "\\W" completion (match-beginning 1))
892 ;; Is there really something to cut?
893 (> comppoint (match-end 0)))
894 ;; Cut after the first word.
895 (let ((cutpos (match-end 0)))
896 (setq completion (concat (substring completion 0 cutpos)
897 (substring completion comppoint)))
898 (setq comppoint cutpos)))))
899
900 (cons completion comppoint)))))
901
902
903 (defun minibuffer-complete-word ()
904 "Complete the minibuffer contents at most a single word.
905 After one word is completed as much as possible, a space or hyphen
906 is added, provided that matches some possible completion.
907 Return nil if there is no valid completion, else t."
908 (interactive)
909 (case (completion--do-completion 'completion--try-word-completion)
910 (#b000 nil)
911 (#b001 (minibuffer-message "Sole completion")
912 t)
913 (#b011 (minibuffer-message "Complete, but not unique")
914 t)
915 (t t)))
916
917 (defface completions-annotations '((t :inherit italic))
918 "Face to use for annotations in the *Completions* buffer.")
919
920 (defcustom completions-format 'horizontal
921 "Define the appearance and sorting of completions.
922 If the value is `vertical', display completions sorted vertically
923 in columns in the *Completions* buffer.
924 If the value is `horizontal', display completions sorted
925 horizontally in alphabetical order, rather than down the screen."
926 :type '(choice (const horizontal) (const vertical))
927 :group 'minibuffer
928 :version "23.2")
929
930 (defun completion--insert-strings (strings)
931 "Insert a list of STRINGS into the current buffer.
932 Uses columns to keep the listing readable but compact.
933 It also eliminates runs of equal strings."
934 (when (consp strings)
935 (let* ((length (apply 'max
936 (mapcar (lambda (s)
937 (if (consp s)
938 (+ (string-width (car s))
939 (string-width (cadr s)))
940 (string-width s)))
941 strings)))
942 (window (get-buffer-window (current-buffer) 0))
943 (wwidth (if window (1- (window-width window)) 79))
944 (columns (min
945 ;; At least 2 columns; at least 2 spaces between columns.
946 (max 2 (/ wwidth (+ 2 length)))
947 ;; Don't allocate more columns than we can fill.
948 ;; Windows can't show less than 3 lines anyway.
949 (max 1 (/ (length strings) 2))))
950 (colwidth (/ wwidth columns))
951 (column 0)
952 (rows (/ (length strings) columns))
953 (row 0)
954 (laststring nil))
955 ;; The insertion should be "sensible" no matter what choices were made
956 ;; for the parameters above.
957 (dolist (str strings)
958 (unless (equal laststring str) ; Remove (consecutive) duplicates.
959 (setq laststring str)
960 (let ((length (if (consp str)
961 (+ (string-width (car str))
962 (string-width (cadr str)))
963 (string-width str))))
964 (cond
965 ((eq completions-format 'vertical)
966 ;; Vertical format
967 (when (> row rows)
968 (forward-line (- -1 rows))
969 (setq row 0 column (+ column colwidth)))
970 (when (> column 0)
971 (end-of-line)
972 (while (> (current-column) column)
973 (if (eobp)
974 (insert "\n")
975 (forward-line 1)
976 (end-of-line)))
977 (insert " \t")
978 (set-text-properties (- (point) 1) (point)
979 `(display (space :align-to ,column)))))
980 (t
981 ;; Horizontal format
982 (unless (bolp)
983 (if (< wwidth (+ (max colwidth length) column))
984 ;; No space for `str' at point, move to next line.
985 (progn (insert "\n") (setq column 0))
986 (insert " \t")
987 ;; Leave the space unpropertized so that in the case we're
988 ;; already past the goal column, there is still
989 ;; a space displayed.
990 (set-text-properties (- (point) 1) (point)
991 ;; We can't just set tab-width, because
992 ;; completion-setup-function will kill all
993 ;; local variables :-(
994 `(display (space :align-to ,column)))
995 nil))))
996 (if (not (consp str))
997 (put-text-property (point) (progn (insert str) (point))
998 'mouse-face 'highlight)
999 (put-text-property (point) (progn (insert (car str)) (point))
1000 'mouse-face 'highlight)
1001 (add-text-properties (point) (progn (insert (cadr str)) (point))
1002 '(mouse-face nil
1003 face completions-annotations)))
1004 (cond
1005 ((eq completions-format 'vertical)
1006 ;; Vertical format
1007 (if (> column 0)
1008 (forward-line)
1009 (insert "\n"))
1010 (setq row (1+ row)))
1011 (t
1012 ;; Horizontal format
1013 ;; Next column to align to.
1014 (setq column (+ column
1015 ;; Round up to a whole number of columns.
1016 (* colwidth (ceiling length colwidth))))))))))))
1017
1018 (defvar completion-common-substring nil)
1019 (make-obsolete-variable 'completion-common-substring nil "23.1")
1020
1021 (defvar completion-setup-hook nil
1022 "Normal hook run at the end of setting up a completion list buffer.
1023 When this hook is run, the current buffer is the one in which the
1024 command to display the completion list buffer was run.
1025 The completion list buffer is available as the value of `standard-output'.
1026 See also `display-completion-list'.")
1027
1028 (defface completions-first-difference
1029 '((t (:inherit bold)))
1030 "Face put on the first uncommon character in completions in *Completions* buffer."
1031 :group 'completion)
1032
1033 (defface completions-common-part
1034 '((t (:inherit default)))
1035 "Face put on the common prefix substring in completions in *Completions* buffer.
1036 The idea of `completions-common-part' is that you can use it to
1037 make the common parts less visible than normal, so that the rest
1038 of the differing parts is, by contrast, slightly highlighted."
1039 :group 'completion)
1040
1041 (defun completion-hilit-commonality (completions prefix-len base-size)
1042 (when completions
1043 (let ((com-str-len (- prefix-len (or base-size 0))))
1044 (nconc
1045 (mapcar
1046 (lambda (elem)
1047 (let ((str
1048 ;; Don't modify the string itself, but a copy, since the
1049 ;; the string may be read-only or used for other purposes.
1050 ;; Furthermore, since `completions' may come from
1051 ;; display-completion-list, `elem' may be a list.
1052 (if (consp elem)
1053 (car (setq elem (cons (copy-sequence (car elem))
1054 (cdr elem))))
1055 (setq elem (copy-sequence elem)))))
1056 (put-text-property 0
1057 ;; If completion-boundaries returns incorrect
1058 ;; values, all-completions may return strings
1059 ;; that don't contain the prefix.
1060 (min com-str-len (length str))
1061 'font-lock-face 'completions-common-part
1062 str)
1063 (if (> (length str) com-str-len)
1064 (put-text-property com-str-len (1+ com-str-len)
1065 'font-lock-face 'completions-first-difference
1066 str)))
1067 elem)
1068 completions)
1069 base-size))))
1070
1071 (defun display-completion-list (completions &optional common-substring)
1072 "Display the list of completions, COMPLETIONS, using `standard-output'.
1073 Each element may be just a symbol or string
1074 or may be a list of two strings to be printed as if concatenated.
1075 If it is a list of two strings, the first is the actual completion
1076 alternative, the second serves as annotation.
1077 `standard-output' must be a buffer.
1078 The actual completion alternatives, as inserted, are given `mouse-face'
1079 properties of `highlight'.
1080 At the end, this runs the normal hook `completion-setup-hook'.
1081 It can find the completion buffer in `standard-output'.
1082
1083 The obsolete optional arg COMMON-SUBSTRING, if non-nil, should be a string
1084 specifying a common substring for adding the faces
1085 `completions-first-difference' and `completions-common-part' to
1086 the completions buffer."
1087 (if common-substring
1088 (setq completions (completion-hilit-commonality
1089 completions (length common-substring)
1090 ;; We don't know the base-size.
1091 nil)))
1092 (if (not (bufferp standard-output))
1093 ;; This *never* (ever) happens, so there's no point trying to be clever.
1094 (with-temp-buffer
1095 (let ((standard-output (current-buffer))
1096 (completion-setup-hook nil))
1097 (display-completion-list completions common-substring))
1098 (princ (buffer-string)))
1099
1100 (with-current-buffer standard-output
1101 (goto-char (point-max))
1102 (if (null completions)
1103 (insert "There are no possible completions of what you have typed.")
1104 (insert "Possible completions are:\n")
1105 (completion--insert-strings completions))))
1106
1107 ;; The hilit used to be applied via completion-setup-hook, so there
1108 ;; may still be some code that uses completion-common-substring.
1109 (with-no-warnings
1110 (let ((completion-common-substring common-substring))
1111 (run-hooks 'completion-setup-hook)))
1112 nil)
1113
1114 (defvar completion-annotate-function
1115 nil
1116 ;; Note: there's a lot of scope as for when to add annotations and
1117 ;; what annotations to add. E.g. completing-help.el allowed adding
1118 ;; the first line of docstrings to M-x completion. But there's
1119 ;; a tension, since such annotations, while useful at times, can
1120 ;; actually drown the useful information.
1121 ;; So completion-annotate-function should be used parsimoniously, or
1122 ;; else only used upon a user's request (e.g. we could add a command
1123 ;; to completion-list-mode to add annotations to the current
1124 ;; completions).
1125 "Function to add annotations in the *Completions* buffer.
1126 The function takes a completion and should either return nil, or a string that
1127 will be displayed next to the completion. The function can access the
1128 completion table and predicates via `minibuffer-completion-table' and related
1129 variables.")
1130
1131 (defun minibuffer-completion-help ()
1132 "Display a list of possible completions of the current minibuffer contents."
1133 (interactive)
1134 (message "Making completion list...")
1135 (lexical-let* ((start (field-beginning))
1136 (end (field-end))
1137 (string (field-string))
1138 (completions (completion-all-completions
1139 string
1140 minibuffer-completion-table
1141 minibuffer-completion-predicate
1142 (- (point) (field-beginning)))))
1143 (message nil)
1144 (if (and completions
1145 (or (consp (cdr completions))
1146 (not (equal (car completions) string))))
1147 (let* ((last (last completions))
1148 (base-size (cdr last))
1149 ;; If the *Completions* buffer is shown in a new
1150 ;; window, mark it as softly-dedicated, so bury-buffer in
1151 ;; minibuffer-hide-completions will know whether to
1152 ;; delete the window or not.
1153 (display-buffer-mark-dedicated 'soft))
1154 (with-output-to-temp-buffer "*Completions*"
1155 ;; Remove the base-size tail because `sort' requires a properly
1156 ;; nil-terminated list.
1157 (when last (setcdr last nil))
1158 (setq completions (sort completions 'string-lessp))
1159 (when completion-annotate-function
1160 (setq completions
1161 (mapcar (lambda (s)
1162 (let ((ann
1163 (funcall completion-annotate-function s)))
1164 (if ann (list s ann) s)))
1165 completions)))
1166 (with-current-buffer standard-output
1167 (set (make-local-variable 'completion-base-position)
1168 (list (+ start base-size)
1169 ;; FIXME: We should pay attention to completion
1170 ;; boundaries here, but currently
1171 ;; completion-all-completions does not give us the
1172 ;; necessary information.
1173 end)))
1174 (display-completion-list completions)))
1175
1176 ;; If there are no completions, or if the current input is already the
1177 ;; only possible completion, then hide (previous&stale) completions.
1178 (minibuffer-hide-completions)
1179 (ding)
1180 (minibuffer-message
1181 (if completions "Sole completion" "No completions")))
1182 nil))
1183
1184 (defun minibuffer-hide-completions ()
1185 "Get rid of an out-of-date *Completions* buffer."
1186 ;; FIXME: We could/should use minibuffer-scroll-window here, but it
1187 ;; can also point to the minibuffer-parent-window, so it's a bit tricky.
1188 (let ((win (get-buffer-window "*Completions*" 0)))
1189 (if win (with-selected-window win (bury-buffer)))))
1190
1191 (defun exit-minibuffer ()
1192 "Terminate this minibuffer argument."
1193 (interactive)
1194 ;; If the command that uses this has made modifications in the minibuffer,
1195 ;; we don't want them to cause deactivation of the mark in the original
1196 ;; buffer.
1197 ;; A better solution would be to make deactivate-mark buffer-local
1198 ;; (or to turn it into a list of buffers, ...), but in the mean time,
1199 ;; this should do the trick in most cases.
1200 (setq deactivate-mark nil)
1201 (throw 'exit nil))
1202
1203 (defun self-insert-and-exit ()
1204 "Terminate minibuffer input."
1205 (interactive)
1206 (if (characterp last-command-event)
1207 (call-interactively 'self-insert-command)
1208 (ding))
1209 (exit-minibuffer))
1210
1211 (defvar completion-in-region-functions nil
1212 "Wrapper hook around `completion-in-region'.
1213 The functions on this special hook are called with 5 arguments:
1214 NEXT-FUN START END COLLECTION PREDICATE.
1215 NEXT-FUN is a function of four arguments (START END COLLECTION PREDICATE)
1216 that performs the default operation. The other four arguments are like
1217 the ones passed to `completion-in-region'. The functions on this hook
1218 are expected to perform completion on START..END using COLLECTION
1219 and PREDICATE, either by calling NEXT-FUN or by doing it themselves.")
1220
1221 (defun completion-in-region (start end collection &optional predicate)
1222 "Complete the text between START and END using COLLECTION.
1223 Return nil if there is no valid completion, else t.
1224 Point needs to be somewhere between START and END."
1225 (assert (<= start (point)) (<= (point) end))
1226 ;; FIXME: undisplay the *Completions* buffer once the completion is done.
1227 (with-wrapper-hook
1228 completion-in-region-functions (start end collection predicate)
1229 (let ((minibuffer-completion-table collection)
1230 (minibuffer-completion-predicate predicate)
1231 (ol (make-overlay start end nil nil t)))
1232 (overlay-put ol 'field 'completion)
1233 (unwind-protect
1234 (call-interactively 'minibuffer-complete)
1235 (delete-overlay ol)))))
1236
1237 (defvar completion-at-point-functions '(tags-completion-at-point-function)
1238 "Special hook to find the completion table for the thing at point.
1239 It is called without any argument and should return either nil,
1240 or a function of no argument to perform completion (discouraged),
1241 or a list of the form (START END COLLECTION &rest PROPS) where
1242 START and END delimit the entity to complete and should include point,
1243 COLLECTION is the completion table to use to complete it, and
1244 PROPS is a property list for additional information.
1245 Currently supported properties are:
1246 `:predicate' a predicate that completion candidates need to satisfy.
1247 `:annotation-function' the value to use for `completion-annotate-function'.")
1248
1249 (defun completion-at-point (&optional arg)
1250 "Perform completion on the text around point.
1251 The completion method is determined by `completion-at-point-functions'.
1252
1253 With a prefix argument, this command does completion within
1254 the collection of symbols listed in the index of the manual for the
1255 language you are using."
1256 (interactive "P")
1257 (if arg
1258 (info-complete-symbol)
1259 (let ((res (run-hook-with-args-until-success
1260 'completion-at-point-functions)))
1261 (cond
1262 ((functionp res) (funcall res))
1263 (res
1264 (let* ((plist (nthcdr 3 res))
1265 (start (nth 0 res))
1266 (end (nth 1 res))
1267 (completion-annotate-function
1268 (or (plist-get plist :annotation-function)
1269 completion-annotate-function)))
1270 (completion-in-region start end (nth 2 res)
1271 (plist-get plist :predicate))))))))
1272
1273 (define-obsolete-function-alias 'complete-symbol 'completion-at-point "24.1")
1274
1275 ;;; Key bindings.
1276
1277 (define-obsolete-variable-alias 'minibuffer-local-must-match-filename-map
1278 'minibuffer-local-filename-must-match-map "23.1")
1279
1280 (let ((map minibuffer-local-map))
1281 (define-key map "\C-g" 'abort-recursive-edit)
1282 (define-key map "\r" 'exit-minibuffer)
1283 (define-key map "\n" 'exit-minibuffer))
1284
1285 (let ((map minibuffer-local-completion-map))
1286 (define-key map "\t" 'minibuffer-complete)
1287 ;; M-TAB is already abused for many other purposes, so we should find
1288 ;; another binding for it.
1289 ;; (define-key map "\e\t" 'minibuffer-force-complete)
1290 (define-key map " " 'minibuffer-complete-word)
1291 (define-key map "?" 'minibuffer-completion-help))
1292
1293 (let ((map minibuffer-local-must-match-map))
1294 (define-key map "\r" 'minibuffer-complete-and-exit)
1295 (define-key map "\n" 'minibuffer-complete-and-exit))
1296
1297 (let ((map minibuffer-local-filename-completion-map))
1298 (define-key map " " nil))
1299 (let ((map minibuffer-local-filename-must-match-map))
1300 (define-key map " " nil))
1301
1302 (let ((map minibuffer-local-ns-map))
1303 (define-key map " " 'exit-minibuffer)
1304 (define-key map "\t" 'exit-minibuffer)
1305 (define-key map "?" 'self-insert-and-exit))
1306
1307 ;;; Completion tables.
1308
1309 (defun minibuffer--double-dollars (str)
1310 (replace-regexp-in-string "\\$" "$$" str))
1311
1312 (defun completion--make-envvar-table ()
1313 (mapcar (lambda (enventry)
1314 (substring enventry 0 (string-match-p "=" enventry)))
1315 process-environment))
1316
1317 (defconst completion--embedded-envvar-re
1318 (concat "\\(?:^\\|[^$]\\(?:\\$\\$\\)*\\)"
1319 "$\\([[:alnum:]_]*\\|{\\([^}]*\\)\\)\\'"))
1320
1321 (defun completion--embedded-envvar-table (string pred action)
1322 "Completion table for envvars embedded in a string.
1323 The envvar syntax (and escaping) rules followed by this table are the
1324 same as `substitute-in-file-name'."
1325 ;; We ignore `pred', because the predicates passed to us via
1326 ;; read-file-name-internal are not 100% correct and fail here:
1327 ;; e.g. we get predicates like file-directory-p there, whereas the filename
1328 ;; completed needs to be passed through substitute-in-file-name before it
1329 ;; can be passed to file-directory-p.
1330 (when (string-match completion--embedded-envvar-re string)
1331 (let* ((beg (or (match-beginning 2) (match-beginning 1)))
1332 (table (completion--make-envvar-table))
1333 (prefix (substring string 0 beg)))
1334 (cond
1335 ((eq action 'lambda)
1336 ;; This table is expected to be used in conjunction with some
1337 ;; other table that provides the "main" completion. Let the
1338 ;; other table handle the test-completion case.
1339 nil)
1340 ((eq (car-safe action) 'boundaries)
1341 ;; Only return boundaries if there's something to complete,
1342 ;; since otherwise when we're used in
1343 ;; completion-table-in-turn, we could return boundaries and
1344 ;; let some subsequent table return a list of completions.
1345 ;; FIXME: Maybe it should rather be fixed in
1346 ;; completion-table-in-turn instead, but it's difficult to
1347 ;; do it efficiently there.
1348 (when (try-completion (substring string beg) table nil)
1349 ;; Compute the boundaries of the subfield to which this
1350 ;; completion applies.
1351 (let ((suffix (cdr action)))
1352 (list* 'boundaries
1353 (or (match-beginning 2) (match-beginning 1))
1354 (when (string-match "[^[:alnum:]_]" suffix)
1355 (match-beginning 0))))))
1356 (t
1357 (if (eq (aref string (1- beg)) ?{)
1358 (setq table (apply-partially 'completion-table-with-terminator
1359 "}" table)))
1360 ;; Even if file-name completion is case-insensitive, we want
1361 ;; envvar completion to be case-sensitive.
1362 (let ((completion-ignore-case nil))
1363 (completion-table-with-context
1364 prefix table (substring string beg) nil action)))))))
1365
1366 (defun completion-file-name-table (string pred action)
1367 "Completion table for file names."
1368 (ignore-errors
1369 (cond
1370 ((eq (car-safe action) 'boundaries)
1371 (let ((start (length (file-name-directory string)))
1372 (end (string-match-p "/" (cdr action))))
1373 (list* 'boundaries
1374 ;; if `string' is "C:" in w32, (file-name-directory string)
1375 ;; returns "C:/", so `start' is 3 rather than 2.
1376 ;; Not quite sure what is The Right Fix, but clipping it
1377 ;; back to 2 will work for this particular case. We'll
1378 ;; see if we can come up with a better fix when we bump
1379 ;; into more such problematic cases.
1380 (min start (length string)) end)))
1381
1382 ((eq action 'lambda)
1383 (if (zerop (length string))
1384 nil ;Not sure why it's here, but it probably doesn't harm.
1385 (funcall (or pred 'file-exists-p) string)))
1386
1387 (t
1388 (let* ((name (file-name-nondirectory string))
1389 (specdir (file-name-directory string))
1390 (realdir (or specdir default-directory)))
1391
1392 (cond
1393 ((null action)
1394 (let ((comp (file-name-completion name realdir pred)))
1395 (if (stringp comp)
1396 (concat specdir comp)
1397 comp)))
1398
1399 ((eq action t)
1400 (let ((all (file-name-all-completions name realdir)))
1401
1402 ;; Check the predicate, if necessary.
1403 (unless (memq pred '(nil file-exists-p))
1404 (let ((comp ())
1405 (pred
1406 (if (eq pred 'file-directory-p)
1407 ;; Brute-force speed up for directory checking:
1408 ;; Discard strings which don't end in a slash.
1409 (lambda (s)
1410 (let ((len (length s)))
1411 (and (> len 0) (eq (aref s (1- len)) ?/))))
1412 ;; Must do it the hard (and slow) way.
1413 pred)))
1414 (let ((default-directory (expand-file-name realdir)))
1415 (dolist (tem all)
1416 (if (funcall pred tem) (push tem comp))))
1417 (setq all (nreverse comp))))
1418
1419 all))))))))
1420
1421 (defvar read-file-name-predicate nil
1422 "Current predicate used by `read-file-name-internal'.")
1423 (make-obsolete-variable 'read-file-name-predicate
1424 "use the regular PRED argument" "23.2")
1425
1426 (defun completion--file-name-table (string pred action)
1427 "Internal subroutine for `read-file-name'. Do not call this.
1428 This is a completion table for file names, like `completion-file-name-table'
1429 except that it passes the file name through `substitute-in-file-name'."
1430 (cond
1431 ((eq (car-safe action) 'boundaries)
1432 ;; For the boundaries, we can't really delegate to
1433 ;; substitute-in-file-name+completion-file-name-table and then fix
1434 ;; them up (as we do for the other actions), because it would
1435 ;; require us to track the relationship between `str' and
1436 ;; `string', which is difficult. And in any case, if
1437 ;; substitute-in-file-name turns "fo-$TO-ba" into "fo-o/b-ba",
1438 ;; there's no way for us to return proper boundaries info, because
1439 ;; the boundary is not (yet) in `string'.
1440 ;;
1441 ;; FIXME: Actually there is a way to return correct boundaries
1442 ;; info, at the condition of modifying the all-completions
1443 ;; return accordingly. But for now, let's not bother.
1444 (completion-file-name-table string pred action))
1445
1446 (t
1447 (let* ((default-directory
1448 (if (stringp pred)
1449 ;; It used to be that `pred' was abused to pass `dir'
1450 ;; as an argument.
1451 (prog1 (file-name-as-directory (expand-file-name pred))
1452 (setq pred nil))
1453 default-directory))
1454 (str (condition-case nil
1455 (substitute-in-file-name string)
1456 (error string)))
1457 (comp (completion-file-name-table
1458 str
1459 (with-no-warnings (or pred read-file-name-predicate))
1460 action)))
1461
1462 (cond
1463 ((stringp comp)
1464 ;; Requote the $s before returning the completion.
1465 (minibuffer--double-dollars comp))
1466 ((and (null action) comp
1467 ;; Requote the $s before checking for changes.
1468 (setq str (minibuffer--double-dollars str))
1469 (not (string-equal string str)))
1470 ;; If there's no real completion, but substitute-in-file-name
1471 ;; changed the string, then return the new string.
1472 str)
1473 (t comp))))))
1474
1475 (defalias 'read-file-name-internal
1476 (completion-table-in-turn 'completion--embedded-envvar-table
1477 'completion--file-name-table)
1478 "Internal subroutine for `read-file-name'. Do not call this.")
1479
1480 (defvar read-file-name-function nil
1481 "If this is non-nil, `read-file-name' does its work by calling this function.")
1482
1483 (defcustom read-file-name-completion-ignore-case
1484 (if (memq system-type '(ms-dos windows-nt darwin cygwin))
1485 t nil)
1486 "Non-nil means when reading a file name completion ignores case."
1487 :group 'minibuffer
1488 :type 'boolean
1489 :version "22.1")
1490
1491 (defcustom insert-default-directory t
1492 "Non-nil means when reading a filename start with default dir in minibuffer.
1493
1494 When the initial minibuffer contents show a name of a file or a directory,
1495 typing RETURN without editing the initial contents is equivalent to typing
1496 the default file name.
1497
1498 If this variable is non-nil, the minibuffer contents are always
1499 initially non-empty, and typing RETURN without editing will fetch the
1500 default name, if one is provided. Note however that this default name
1501 is not necessarily the same as initial contents inserted in the minibuffer,
1502 if the initial contents is just the default directory.
1503
1504 If this variable is nil, the minibuffer often starts out empty. In
1505 that case you may have to explicitly fetch the next history element to
1506 request the default name; typing RETURN without editing will leave
1507 the minibuffer empty.
1508
1509 For some commands, exiting with an empty minibuffer has a special meaning,
1510 such as making the current buffer visit no file in the case of
1511 `set-visited-file-name'."
1512 :group 'minibuffer
1513 :type 'boolean)
1514
1515 ;; Not always defined, but only called if next-read-file-uses-dialog-p says so.
1516 (declare-function x-file-dialog "xfns.c"
1517 (prompt dir &optional default-filename mustmatch only-dir-p))
1518
1519 (defun read-file-name-defaults (&optional dir initial)
1520 (let ((default
1521 (cond
1522 ;; With non-nil `initial', use `dir' as the first default.
1523 ;; Essentially, this mean reversing the normal order of the
1524 ;; current directory name and the current file name, i.e.
1525 ;; 1. with normal file reading:
1526 ;; 1.1. initial input is the current directory
1527 ;; 1.2. the first default is the current file name
1528 ;; 2. with non-nil `initial' (e.g. for `find-alternate-file'):
1529 ;; 2.2. initial input is the current file name
1530 ;; 2.1. the first default is the current directory
1531 (initial (abbreviate-file-name dir))
1532 ;; In file buffers, try to get the current file name
1533 (buffer-file-name
1534 (abbreviate-file-name buffer-file-name))))
1535 (file-name-at-point
1536 (run-hook-with-args-until-success 'file-name-at-point-functions)))
1537 (when file-name-at-point
1538 (setq default (delete-dups
1539 (delete "" (delq nil (list file-name-at-point default))))))
1540 ;; Append new defaults to the end of existing `minibuffer-default'.
1541 (append
1542 (if (listp minibuffer-default) minibuffer-default (list minibuffer-default))
1543 (if (listp default) default (list default)))))
1544
1545 (defun read-file-name (prompt &optional dir default-filename mustmatch initial predicate)
1546 "Read file name, prompting with PROMPT and completing in directory DIR.
1547 Value is not expanded---you must call `expand-file-name' yourself.
1548 Default name to DEFAULT-FILENAME if user exits the minibuffer with
1549 the same non-empty string that was inserted by this function.
1550 (If DEFAULT-FILENAME is omitted, the visited file name is used,
1551 except that if INITIAL is specified, that combined with DIR is used.
1552 If DEFAULT-FILENAME is a list of file names, the first file name is used.)
1553 If the user exits with an empty minibuffer, this function returns
1554 an empty string. (This can only happen if the user erased the
1555 pre-inserted contents or if `insert-default-directory' is nil.)
1556
1557 Fourth arg MUSTMATCH can take the following values:
1558 - nil means that the user can exit with any input.
1559 - t means that the user is not allowed to exit unless
1560 the input is (or completes to) an existing file.
1561 - `confirm' means that the user can exit with any input, but she needs
1562 to confirm her choice if the input is not an existing file.
1563 - `confirm-after-completion' means that the user can exit with any
1564 input, but she needs to confirm her choice if she called
1565 `minibuffer-complete' right before `minibuffer-complete-and-exit'
1566 and the input is not an existing file.
1567 - anything else behaves like t except that typing RET does not exit if it
1568 does non-null completion.
1569
1570 Fifth arg INITIAL specifies text to start with.
1571
1572 If optional sixth arg PREDICATE is non-nil, possible completions and
1573 the resulting file name must satisfy (funcall PREDICATE NAME).
1574 DIR should be an absolute directory name. It defaults to the value of
1575 `default-directory'.
1576
1577 If this command was invoked with the mouse, use a graphical file
1578 dialog if `use-dialog-box' is non-nil, and the window system or X
1579 toolkit in use provides a file dialog box, and DIR is not a
1580 remote file. For graphical file dialogs, any the special values
1581 of MUSTMATCH; `confirm' and `confirm-after-completion' are
1582 treated as equivalent to nil.
1583
1584 See also `read-file-name-completion-ignore-case'
1585 and `read-file-name-function'."
1586 (unless dir (setq dir default-directory))
1587 (unless (file-name-absolute-p dir) (setq dir (expand-file-name dir)))
1588 (unless default-filename
1589 (setq default-filename (if initial (expand-file-name initial dir)
1590 buffer-file-name)))
1591 ;; If dir starts with user's homedir, change that to ~.
1592 (setq dir (abbreviate-file-name dir))
1593 ;; Likewise for default-filename.
1594 (if default-filename
1595 (setq default-filename
1596 (if (consp default-filename)
1597 (mapcar 'abbreviate-file-name default-filename)
1598 (abbreviate-file-name default-filename))))
1599 (let ((insdef (cond
1600 ((and insert-default-directory (stringp dir))
1601 (if initial
1602 (cons (minibuffer--double-dollars (concat dir initial))
1603 (length (minibuffer--double-dollars dir)))
1604 (minibuffer--double-dollars dir)))
1605 (initial (cons (minibuffer--double-dollars initial) 0)))))
1606
1607 (if read-file-name-function
1608 (funcall read-file-name-function
1609 prompt dir default-filename mustmatch initial predicate)
1610 (let ((completion-ignore-case read-file-name-completion-ignore-case)
1611 (minibuffer-completing-file-name t)
1612 (pred (or predicate 'file-exists-p))
1613 (add-to-history nil))
1614
1615 (let* ((val
1616 (if (or (not (next-read-file-uses-dialog-p))
1617 ;; Graphical file dialogs can't handle remote
1618 ;; files (Bug#99).
1619 (file-remote-p dir))
1620 ;; We used to pass `dir' to `read-file-name-internal' by
1621 ;; abusing the `predicate' argument. It's better to
1622 ;; just use `default-directory', but in order to avoid
1623 ;; changing `default-directory' in the current buffer,
1624 ;; we don't let-bind it.
1625 (lexical-let ((dir (file-name-as-directory
1626 (expand-file-name dir))))
1627 (minibuffer-with-setup-hook
1628 (lambda ()
1629 (setq default-directory dir)
1630 ;; When the first default in `minibuffer-default'
1631 ;; duplicates initial input `insdef',
1632 ;; reset `minibuffer-default' to nil.
1633 (when (equal (or (car-safe insdef) insdef)
1634 (or (car-safe minibuffer-default)
1635 minibuffer-default))
1636 (setq minibuffer-default
1637 (cdr-safe minibuffer-default)))
1638 ;; On the first request on `M-n' fill
1639 ;; `minibuffer-default' with a list of defaults
1640 ;; relevant for file-name reading.
1641 (set (make-local-variable 'minibuffer-default-add-function)
1642 (lambda ()
1643 (with-current-buffer
1644 (window-buffer (minibuffer-selected-window))
1645 (read-file-name-defaults dir initial)))))
1646 (completing-read prompt 'read-file-name-internal
1647 pred mustmatch insdef
1648 'file-name-history default-filename)))
1649 ;; If DEFAULT-FILENAME not supplied and DIR contains
1650 ;; a file name, split it.
1651 (let ((file (file-name-nondirectory dir))
1652 ;; When using a dialog, revert to nil and non-nil
1653 ;; interpretation of mustmatch. confirm options
1654 ;; need to be interpreted as nil, otherwise
1655 ;; it is impossible to create new files using
1656 ;; dialogs with the default settings.
1657 (dialog-mustmatch
1658 (not (memq mustmatch
1659 '(nil confirm confirm-after-completion)))))
1660 (when (and (not default-filename)
1661 (not (zerop (length file))))
1662 (setq default-filename file)
1663 (setq dir (file-name-directory dir)))
1664 (when default-filename
1665 (setq default-filename
1666 (expand-file-name (if (consp default-filename)
1667 (car default-filename)
1668 default-filename)
1669 dir)))
1670 (setq add-to-history t)
1671 (x-file-dialog prompt dir default-filename
1672 dialog-mustmatch
1673 (eq predicate 'file-directory-p)))))
1674
1675 (replace-in-history (eq (car-safe file-name-history) val)))
1676 ;; If completing-read returned the inserted default string itself
1677 ;; (rather than a new string with the same contents),
1678 ;; it has to mean that the user typed RET with the minibuffer empty.
1679 ;; In that case, we really want to return ""
1680 ;; so that commands such as set-visited-file-name can distinguish.
1681 (when (consp default-filename)
1682 (setq default-filename (car default-filename)))
1683 (when (eq val default-filename)
1684 ;; In this case, completing-read has not added an element
1685 ;; to the history. Maybe we should.
1686 (if (not replace-in-history)
1687 (setq add-to-history t))
1688 (setq val ""))
1689 (unless val (error "No file name specified"))
1690
1691 (if (and default-filename
1692 (string-equal val (if (consp insdef) (car insdef) insdef)))
1693 (setq val default-filename))
1694 (setq val (substitute-in-file-name val))
1695
1696 (if replace-in-history
1697 ;; Replace what Fcompleting_read added to the history
1698 ;; with what we will actually return. As an exception,
1699 ;; if that's the same as the second item in
1700 ;; file-name-history, it's really a repeat (Bug#4657).
1701 (let ((val1 (minibuffer--double-dollars val)))
1702 (if history-delete-duplicates
1703 (setcdr file-name-history
1704 (delete val1 (cdr file-name-history))))
1705 (if (string= val1 (cadr file-name-history))
1706 (pop file-name-history)
1707 (setcar file-name-history val1)))
1708 (if add-to-history
1709 ;; Add the value to the history--but not if it matches
1710 ;; the last value already there.
1711 (let ((val1 (minibuffer--double-dollars val)))
1712 (unless (and (consp file-name-history)
1713 (equal (car file-name-history) val1))
1714 (setq file-name-history
1715 (cons val1
1716 (if history-delete-duplicates
1717 (delete val1 file-name-history)
1718 file-name-history)))))))
1719 val)))))
1720
1721 (defun internal-complete-buffer-except (&optional buffer)
1722 "Perform completion on all buffers excluding BUFFER.
1723 BUFFER nil or omitted means use the current buffer.
1724 Like `internal-complete-buffer', but removes BUFFER from the completion list."
1725 (lexical-let ((except (if (stringp buffer) buffer (buffer-name buffer))))
1726 (apply-partially 'completion-table-with-predicate
1727 'internal-complete-buffer
1728 (lambda (name)
1729 (not (equal (if (consp name) (car name) name) except)))
1730 nil)))
1731
1732 ;;; Old-style completion, used in Emacs-21 and Emacs-22.
1733
1734 (defun completion-emacs21-try-completion (string table pred point)
1735 (let ((completion (try-completion string table pred)))
1736 (if (stringp completion)
1737 (cons completion (length completion))
1738 completion)))
1739
1740 (defun completion-emacs21-all-completions (string table pred point)
1741 (completion-hilit-commonality
1742 (all-completions string table pred)
1743 (length string)
1744 (car (completion-boundaries string table pred ""))))
1745
1746 (defun completion-emacs22-try-completion (string table pred point)
1747 (let ((suffix (substring string point))
1748 (completion (try-completion (substring string 0 point) table pred)))
1749 (if (not (stringp completion))
1750 completion
1751 ;; Merge a trailing / in completion with a / after point.
1752 ;; We used to only do it for word completion, but it seems to make
1753 ;; sense for all completions.
1754 ;; Actually, claiming this feature was part of Emacs-22 completion
1755 ;; is pushing it a bit: it was only done in minibuffer-completion-word,
1756 ;; which was (by default) not bound during file completion, where such
1757 ;; slashes are most likely to occur.
1758 (if (and (not (zerop (length completion)))
1759 (eq ?/ (aref completion (1- (length completion))))
1760 (not (zerop (length suffix)))
1761 (eq ?/ (aref suffix 0)))
1762 ;; This leaves point after the / .
1763 (setq suffix (substring suffix 1)))
1764 (cons (concat completion suffix) (length completion)))))
1765
1766 (defun completion-emacs22-all-completions (string table pred point)
1767 (let ((beforepoint (substring string 0 point)))
1768 (completion-hilit-commonality
1769 (all-completions beforepoint table pred)
1770 point
1771 (car (completion-boundaries beforepoint table pred "")))))
1772
1773 ;;; Basic completion.
1774
1775 (defun completion--merge-suffix (completion point suffix)
1776 "Merge end of COMPLETION with beginning of SUFFIX.
1777 Simple generalization of the \"merge trailing /\" done in Emacs-22.
1778 Return the new suffix."
1779 (if (and (not (zerop (length suffix)))
1780 (string-match "\\(.+\\)\n\\1" (concat completion "\n" suffix)
1781 ;; Make sure we don't compress things to less
1782 ;; than we started with.
1783 point)
1784 ;; Just make sure we didn't match some other \n.
1785 (eq (match-end 1) (length completion)))
1786 (substring suffix (- (match-end 1) (match-beginning 1)))
1787 ;; Nothing to merge.
1788 suffix))
1789
1790 (defun completion-basic--pattern (beforepoint afterpoint bounds)
1791 (delete
1792 "" (list (substring beforepoint (car bounds))
1793 'point
1794 (substring afterpoint 0 (cdr bounds)))))
1795
1796 (defun completion-basic-try-completion (string table pred point)
1797 (lexical-let*
1798 ((beforepoint (substring string 0 point))
1799 (afterpoint (substring string point))
1800 (bounds (completion-boundaries beforepoint table pred afterpoint)))
1801 (if (zerop (cdr bounds))
1802 ;; `try-completion' may return a subtly different result
1803 ;; than `all+merge', so try to use it whenever possible.
1804 (let ((completion (try-completion beforepoint table pred)))
1805 (if (not (stringp completion))
1806 completion
1807 (cons
1808 (concat completion
1809 (completion--merge-suffix completion point afterpoint))
1810 (length completion))))
1811 (lexical-let*
1812 ((suffix (substring afterpoint (cdr bounds)))
1813 (prefix (substring beforepoint 0 (car bounds)))
1814 (pattern (delete
1815 "" (list (substring beforepoint (car bounds))
1816 'point
1817 (substring afterpoint 0 (cdr bounds)))))
1818 (all (completion-pcm--all-completions prefix pattern table pred)))
1819 (if minibuffer-completing-file-name
1820 (setq all (completion-pcm--filename-try-filter all)))
1821 (completion-pcm--merge-try pattern all prefix suffix)))))
1822
1823 (defun completion-basic-all-completions (string table pred point)
1824 (lexical-let*
1825 ((beforepoint (substring string 0 point))
1826 (afterpoint (substring string point))
1827 (bounds (completion-boundaries beforepoint table pred afterpoint))
1828 (suffix (substring afterpoint (cdr bounds)))
1829 (prefix (substring beforepoint 0 (car bounds)))
1830 (pattern (delete
1831 "" (list (substring beforepoint (car bounds))
1832 'point
1833 (substring afterpoint 0 (cdr bounds)))))
1834 (all (completion-pcm--all-completions prefix pattern table pred)))
1835 (completion-hilit-commonality all point (car bounds))))
1836
1837 ;;; Partial-completion-mode style completion.
1838
1839 (defvar completion-pcm--delim-wild-regex nil
1840 "Regular expression matching delimiters controlling the partial-completion.
1841 Typically, this regular expression simply matches a delimiter, meaning
1842 that completion can add something at (match-beginning 0), but if it has
1843 a submatch 1, then completion can add something at (match-end 1).
1844 This is used when the delimiter needs to be of size zero (e.g. the transition
1845 from lowercase to uppercase characters).")
1846
1847 (defun completion-pcm--prepare-delim-re (delims)
1848 (setq completion-pcm--delim-wild-regex (concat "[" delims "*]")))
1849
1850 (defcustom completion-pcm-word-delimiters "-_./: "
1851 "A string of characters treated as word delimiters for completion.
1852 Some arcane rules:
1853 If `]' is in this string, it must come first.
1854 If `^' is in this string, it must not come first.
1855 If `-' is in this string, it must come first or right after `]'.
1856 In other words, if S is this string, then `[S]' must be a valid Emacs regular
1857 expression (not containing character ranges like `a-z')."
1858 :set (lambda (symbol value)
1859 (set-default symbol value)
1860 ;; Refresh other vars.
1861 (completion-pcm--prepare-delim-re value))
1862 :initialize 'custom-initialize-reset
1863 :group 'minibuffer
1864 :type 'string)
1865
1866 (defcustom completion-pcm-complete-word-inserts-delimiters nil
1867 "Treat the SPC or - inserted by `minibuffer-complete-word' as delimiters.
1868 Those chars are treated as delimiters iff this variable is non-nil.
1869 I.e. if non-nil, M-x SPC will just insert a \"-\" in the minibuffer, whereas
1870 if nil, it will list all possible commands in *Completions* because none of
1871 the commands start with a \"-\" or a SPC."
1872 :type 'boolean)
1873
1874 (defun completion-pcm--pattern-trivial-p (pattern)
1875 (and (stringp (car pattern))
1876 ;; It can be followed by `point' and "" and still be trivial.
1877 (let ((trivial t))
1878 (dolist (elem (cdr pattern))
1879 (unless (member elem '(point ""))
1880 (setq trivial nil)))
1881 trivial)))
1882
1883 (defun completion-pcm--string->pattern (string &optional point)
1884 "Split STRING into a pattern.
1885 A pattern is a list where each element is either a string
1886 or a symbol chosen among `any', `star', `point', `prefix'."
1887 (if (and point (< point (length string)))
1888 (let ((prefix (substring string 0 point))
1889 (suffix (substring string point)))
1890 (append (completion-pcm--string->pattern prefix)
1891 '(point)
1892 (completion-pcm--string->pattern suffix)))
1893 (let ((pattern nil)
1894 (p 0)
1895 (p0 0))
1896
1897 (while (and (setq p (string-match completion-pcm--delim-wild-regex
1898 string p))
1899 (or completion-pcm-complete-word-inserts-delimiters
1900 ;; If the char was added by minibuffer-complete-word,
1901 ;; then don't treat it as a delimiter, otherwise
1902 ;; "M-x SPC" ends up inserting a "-" rather than listing
1903 ;; all completions.
1904 (not (get-text-property p 'completion-try-word string))))
1905 ;; Usually, completion-pcm--delim-wild-regex matches a delimiter,
1906 ;; meaning that something can be added *before* it, but it can also
1907 ;; match a prefix and postfix, in which case something can be added
1908 ;; in-between (e.g. match [[:lower:]][[:upper:]]).
1909 ;; This is determined by the presence of a submatch-1 which delimits
1910 ;; the prefix.
1911 (if (match-end 1) (setq p (match-end 1)))
1912 (push (substring string p0 p) pattern)
1913 (if (eq (aref string p) ?*)
1914 (progn
1915 (push 'star pattern)
1916 (setq p0 (1+ p)))
1917 (push 'any pattern)
1918 (setq p0 p))
1919 (incf p))
1920
1921 ;; An empty string might be erroneously added at the beginning.
1922 ;; It should be avoided properly, but it's so easy to remove it here.
1923 (delete "" (nreverse (cons (substring string p0) pattern))))))
1924
1925 (defun completion-pcm--pattern->regex (pattern &optional group)
1926 (let ((re
1927 (concat "\\`"
1928 (mapconcat
1929 (lambda (x)
1930 (cond
1931 ((stringp x) (regexp-quote x))
1932 ((if (consp group) (memq x group) group) "\\(.*?\\)")
1933 (t ".*?")))
1934 pattern
1935 ""))))
1936 ;; Avoid pathological backtracking.
1937 (while (string-match "\\.\\*\\?\\(?:\\\\[()]\\)*\\(\\.\\*\\?\\)" re)
1938 (setq re (replace-match "" t t re 1)))
1939 re))
1940
1941 (defun completion-pcm--all-completions (prefix pattern table pred)
1942 "Find all completions for PATTERN in TABLE obeying PRED.
1943 PATTERN is as returned by `completion-pcm--string->pattern'."
1944 ;; (assert (= (car (completion-boundaries prefix table pred ""))
1945 ;; (length prefix)))
1946 ;; Find an initial list of possible completions.
1947 (if (completion-pcm--pattern-trivial-p pattern)
1948
1949 ;; Minibuffer contains no delimiters -- simple case!
1950 (all-completions (concat prefix (car pattern)) table pred)
1951
1952 ;; Use all-completions to do an initial cull. This is a big win,
1953 ;; since all-completions is written in C!
1954 (let* (;; Convert search pattern to a standard regular expression.
1955 (regex (completion-pcm--pattern->regex pattern))
1956 (case-fold-search completion-ignore-case)
1957 (completion-regexp-list (cons regex completion-regexp-list))
1958 (compl (all-completions
1959 (concat prefix (if (stringp (car pattern)) (car pattern) ""))
1960 table pred)))
1961 (if (not (functionp table))
1962 ;; The internal functions already obeyed completion-regexp-list.
1963 compl
1964 (let ((poss ()))
1965 (dolist (c compl)
1966 (when (string-match-p regex c) (push c poss)))
1967 poss)))))
1968
1969 (defun completion-pcm--hilit-commonality (pattern completions)
1970 (when completions
1971 (let* ((re (completion-pcm--pattern->regex pattern '(point)))
1972 (case-fold-search completion-ignore-case))
1973 (mapcar
1974 (lambda (str)
1975 ;; Don't modify the string itself.
1976 (setq str (copy-sequence str))
1977 (unless (string-match re str)
1978 (error "Internal error: %s does not match %s" re str))
1979 (let ((pos (or (match-beginning 1) (match-end 0))))
1980 (put-text-property 0 pos
1981 'font-lock-face 'completions-common-part
1982 str)
1983 (if (> (length str) pos)
1984 (put-text-property pos (1+ pos)
1985 'font-lock-face 'completions-first-difference
1986 str)))
1987 str)
1988 completions))))
1989
1990 (defun completion-pcm--find-all-completions (string table pred point
1991 &optional filter)
1992 "Find all completions for STRING at POINT in TABLE, satisfying PRED.
1993 POINT is a position inside STRING.
1994 FILTER is a function applied to the return value, that can be used, e.g. to
1995 filter out additional entries (because TABLE migth not obey PRED)."
1996 (unless filter (setq filter 'identity))
1997 (lexical-let*
1998 ((beforepoint (substring string 0 point))
1999 (afterpoint (substring string point))
2000 (bounds (completion-boundaries beforepoint table pred afterpoint))
2001 (prefix (substring beforepoint 0 (car bounds)))
2002 (suffix (substring afterpoint (cdr bounds)))
2003 firsterror)
2004 (setq string (substring string (car bounds) (+ point (cdr bounds))))
2005 (let* ((relpoint (- point (car bounds)))
2006 (pattern (completion-pcm--string->pattern string relpoint))
2007 (all (condition-case err
2008 (funcall filter
2009 (completion-pcm--all-completions
2010 prefix pattern table pred))
2011 (error (unless firsterror (setq firsterror err)) nil))))
2012 (when (and (null all)
2013 (> (car bounds) 0)
2014 (null (ignore-errors (try-completion prefix table pred))))
2015 ;; The prefix has no completions at all, so we should try and fix
2016 ;; that first.
2017 (let ((substring (substring prefix 0 -1)))
2018 (destructuring-bind (subpat suball subprefix subsuffix)
2019 (completion-pcm--find-all-completions
2020 substring table pred (length substring) filter)
2021 (let ((sep (aref prefix (1- (length prefix))))
2022 ;; Text that goes between the new submatches and the
2023 ;; completion substring.
2024 (between nil))
2025 ;; Eliminate submatches that don't end with the separator.
2026 (dolist (submatch (prog1 suball (setq suball ())))
2027 (when (eq sep (aref submatch (1- (length submatch))))
2028 (push submatch suball)))
2029 (when suball
2030 ;; Update the boundaries and corresponding pattern.
2031 ;; We assume that all submatches result in the same boundaries
2032 ;; since we wouldn't know how to merge them otherwise anyway.
2033 ;; FIXME: COMPLETE REWRITE!!!
2034 (let* ((newbeforepoint
2035 (concat subprefix (car suball)
2036 (substring string 0 relpoint)))
2037 (leftbound (+ (length subprefix) (length (car suball))))
2038 (newbounds (completion-boundaries
2039 newbeforepoint table pred afterpoint)))
2040 (unless (or (and (eq (cdr bounds) (cdr newbounds))
2041 (eq (car newbounds) leftbound))
2042 ;; Refuse new boundaries if they step over
2043 ;; the submatch.
2044 (< (car newbounds) leftbound))
2045 ;; The new completed prefix does change the boundaries
2046 ;; of the completed substring.
2047 (setq suffix (substring afterpoint (cdr newbounds)))
2048 (setq string
2049 (concat (substring newbeforepoint (car newbounds))
2050 (substring afterpoint 0 (cdr newbounds))))
2051 (setq between (substring newbeforepoint leftbound
2052 (car newbounds)))
2053 (setq pattern (completion-pcm--string->pattern
2054 string
2055 (- (length newbeforepoint)
2056 (car newbounds)))))
2057 (dolist (submatch suball)
2058 (setq all (nconc (mapcar
2059 (lambda (s) (concat submatch between s))
2060 (funcall filter
2061 (completion-pcm--all-completions
2062 (concat subprefix submatch between)
2063 pattern table pred)))
2064 all)))
2065 ;; FIXME: This can come in handy for try-completion,
2066 ;; but isn't right for all-completions, since it lists
2067 ;; invalid completions.
2068 ;; (unless all
2069 ;; ;; Even though we found expansions in the prefix, none
2070 ;; ;; leads to a valid completion.
2071 ;; ;; Let's keep the expansions, tho.
2072 ;; (dolist (submatch suball)
2073 ;; (push (concat submatch between newsubstring) all)))
2074 ))
2075 (setq pattern (append subpat (list 'any (string sep))
2076 (if between (list between)) pattern))
2077 (setq prefix subprefix)))))
2078 (if (and (null all) firsterror)
2079 (signal (car firsterror) (cdr firsterror))
2080 (list pattern all prefix suffix)))))
2081
2082 (defun completion-pcm-all-completions (string table pred point)
2083 (destructuring-bind (pattern all &optional prefix suffix)
2084 (completion-pcm--find-all-completions string table pred point)
2085 (when all
2086 (nconc (completion-pcm--hilit-commonality pattern all)
2087 (length prefix)))))
2088
2089 (defun completion--sreverse (str)
2090 "Like `reverse' but for a string STR rather than a list."
2091 (apply 'string (nreverse (mapcar 'identity str))))
2092
2093 (defun completion--common-suffix (strs)
2094 "Return the common suffix of the strings STRS."
2095 (completion--sreverse
2096 (try-completion
2097 ""
2098 (mapcar 'completion--sreverse strs))))
2099
2100 (defun completion-pcm--merge-completions (strs pattern)
2101 "Extract the commonality in STRS, with the help of PATTERN."
2102 ;; When completing while ignoring case, we want to try and avoid
2103 ;; completing "fo" to "foO" when completing against "FOO" (bug#4219).
2104 ;; So we try and make sure that the string we return is all made up
2105 ;; of text from the completions rather than part from the
2106 ;; completions and part from the input.
2107 ;; FIXME: This reduces the problems of inconsistent capitalization
2108 ;; but it doesn't fully fix it: we may still end up completing
2109 ;; "fo-ba" to "foo-BAR" or "FOO-bar" when completing against
2110 ;; '("foo-barr" "FOO-BARD").
2111 (cond
2112 ((null (cdr strs)) (list (car strs)))
2113 (t
2114 (let ((re (completion-pcm--pattern->regex pattern 'group))
2115 (ccs ())) ;Chopped completions.
2116
2117 ;; First chop each string into the parts corresponding to each
2118 ;; non-constant element of `pattern', using regexp-matching.
2119 (let ((case-fold-search completion-ignore-case))
2120 (dolist (str strs)
2121 (unless (string-match re str)
2122 (error "Internal error: %s doesn't match %s" str re))
2123 (let ((chopped ())
2124 (last 0)
2125 (i 1)
2126 next)
2127 (while (setq next (match-end i))
2128 (push (substring str last next) chopped)
2129 (setq last next)
2130 (setq i (1+ i)))
2131 ;; Add the text corresponding to the implicit trailing `any'.
2132 (push (substring str last) chopped)
2133 (push (nreverse chopped) ccs))))
2134
2135 ;; Then for each of those non-constant elements, extract the
2136 ;; commonality between them.
2137 (let ((res ())
2138 (fixed ""))
2139 ;; Make the implicit trailing `any' explicit.
2140 (dolist (elem (append pattern '(any)))
2141 (if (stringp elem)
2142 (setq fixed (concat fixed elem))
2143 (let ((comps ()))
2144 (dolist (cc (prog1 ccs (setq ccs nil)))
2145 (push (car cc) comps)
2146 (push (cdr cc) ccs))
2147 ;; Might improve the likelihood to avoid choosing
2148 ;; different capitalizations in different parts.
2149 ;; In practice, it doesn't seem to make any difference.
2150 (setq ccs (nreverse ccs))
2151 (let* ((prefix (try-completion fixed comps))
2152 (unique (or (and (eq prefix t) (setq prefix fixed))
2153 (eq t (try-completion prefix comps)))))
2154 (unless (equal prefix "") (push prefix res))
2155 ;; If there's only one completion, `elem' is not useful
2156 ;; any more: it can only match the empty string.
2157 ;; FIXME: in some cases, it may be necessary to turn an
2158 ;; `any' into a `star' because the surrounding context has
2159 ;; changed such that string->pattern wouldn't add an `any'
2160 ;; here any more.
2161 (unless unique
2162 (push elem res)
2163 (when (memq elem '(star point prefix))
2164 ;; Extract common suffix additionally to common prefix.
2165 ;; Only do it for `point', `star', and `prefix' since for
2166 ;; `any' it could lead to a merged completion that
2167 ;; doesn't itself match the candidates.
2168 (let ((suffix (completion--common-suffix comps)))
2169 (assert (stringp suffix))
2170 (unless (equal suffix "")
2171 (push suffix res)))))
2172 (setq fixed "")))))
2173 ;; We return it in reverse order.
2174 res)))))
2175
2176 (defun completion-pcm--pattern->string (pattern)
2177 (mapconcat (lambda (x) (cond
2178 ((stringp x) x)
2179 ((eq x 'star) "*")
2180 (t ""))) ;any, point, prefix.
2181 pattern
2182 ""))
2183
2184 ;; We want to provide the functionality of `try', but we use `all'
2185 ;; and then merge it. In most cases, this works perfectly, but
2186 ;; if the completion table doesn't consider the same completions in
2187 ;; `try' as in `all', then we have a problem. The most common such
2188 ;; case is for filename completion where completion-ignored-extensions
2189 ;; is only obeyed by the `try' code. We paper over the difference
2190 ;; here. Note that it is not quite right either: if the completion
2191 ;; table uses completion-table-in-turn, this filtering may take place
2192 ;; too late to correctly fallback from the first to the
2193 ;; second alternative.
2194 (defun completion-pcm--filename-try-filter (all)
2195 "Filter to adjust `all' file completion to the behavior of `try'."
2196 (when all
2197 (let ((try ())
2198 (re (concat "\\(?:\\`\\.\\.?/\\|"
2199 (regexp-opt completion-ignored-extensions)
2200 "\\)\\'")))
2201 (dolist (f all)
2202 (unless (string-match-p re f) (push f try)))
2203 (or try all))))
2204
2205
2206 (defun completion-pcm--merge-try (pattern all prefix suffix)
2207 (cond
2208 ((not (consp all)) all)
2209 ((and (not (consp (cdr all))) ;Only one completion.
2210 ;; Ignore completion-ignore-case here.
2211 (equal (completion-pcm--pattern->string pattern) (car all)))
2212 t)
2213 (t
2214 (let* ((mergedpat (completion-pcm--merge-completions all pattern))
2215 ;; `mergedpat' is in reverse order. Place new point (by
2216 ;; order of preference) either at the old point, or at
2217 ;; the last place where there's something to choose, or
2218 ;; at the very end.
2219 (pointpat (or (memq 'point mergedpat)
2220 (memq 'any mergedpat)
2221 (memq 'star mergedpat)
2222 ;; Not `prefix'.
2223 mergedpat))
2224 ;; New pos from the start.
2225 (newpos (length (completion-pcm--pattern->string pointpat)))
2226 ;; Do it afterwards because it changes `pointpat' by sideeffect.
2227 (merged (completion-pcm--pattern->string (nreverse mergedpat))))
2228
2229 (setq suffix (completion--merge-suffix merged newpos suffix))
2230 (cons (concat prefix merged suffix) (+ newpos (length prefix)))))))
2231
2232 (defun completion-pcm-try-completion (string table pred point)
2233 (destructuring-bind (pattern all prefix suffix)
2234 (completion-pcm--find-all-completions
2235 string table pred point
2236 (if minibuffer-completing-file-name
2237 'completion-pcm--filename-try-filter))
2238 (completion-pcm--merge-try pattern all prefix suffix)))
2239
2240 ;;; Substring completion
2241 ;; Mostly derived from the code of `basic' completion.
2242
2243 (defun completion-substring--all-completions (string table pred point)
2244 (let* ((beforepoint (substring string 0 point))
2245 (afterpoint (substring string point))
2246 (bounds (completion-boundaries beforepoint table pred afterpoint))
2247 (suffix (substring afterpoint (cdr bounds)))
2248 (prefix (substring beforepoint 0 (car bounds)))
2249 (basic-pattern (completion-basic--pattern
2250 beforepoint afterpoint bounds))
2251 (pattern (if (not (stringp (car basic-pattern)))
2252 basic-pattern
2253 (cons 'prefix basic-pattern)))
2254 (all (completion-pcm--all-completions prefix pattern table pred)))
2255 (list all pattern prefix suffix (car bounds))))
2256
2257 (defun completion-substring-try-completion (string table pred point)
2258 (destructuring-bind (all pattern prefix suffix carbounds)
2259 (completion-substring--all-completions string table pred point)
2260 (if minibuffer-completing-file-name
2261 (setq all (completion-pcm--filename-try-filter all)))
2262 (completion-pcm--merge-try pattern all prefix suffix)))
2263
2264 (defun completion-substring-all-completions (string table pred point)
2265 (destructuring-bind (all pattern prefix suffix carbounds)
2266 (completion-substring--all-completions string table pred point)
2267 (when all
2268 (nconc (completion-pcm--hilit-commonality pattern all)
2269 (length prefix)))))
2270
2271 ;; Initials completion
2272 ;; Complete /ums to /usr/monnier/src or lch to list-command-history.
2273
2274 (defun completion-initials-expand (str table pred)
2275 (let ((bounds (completion-boundaries str table pred "")))
2276 (unless (or (zerop (length str))
2277 ;; Only check within the boundaries, since the
2278 ;; boundary char (e.g. /) might be in delim-regexp.
2279 (string-match completion-pcm--delim-wild-regex str
2280 (car bounds)))
2281 (if (zerop (car bounds))
2282 (mapconcat 'string str "-")
2283 ;; If there's a boundary, it's trickier. The main use-case
2284 ;; we consider here is file-name completion. We'd like
2285 ;; to expand ~/eee to ~/e/e/e and /eee to /e/e/e.
2286 ;; But at the same time, we don't want /usr/share/ae to expand
2287 ;; to /usr/share/a/e just because we mistyped "ae" for "ar",
2288 ;; so we probably don't want initials to touch anything that
2289 ;; looks like /usr/share/foo. As a heuristic, we just check that
2290 ;; the text before the boundary char is at most 1 char.
2291 ;; This allows both ~/eee and /eee and not much more.
2292 ;; FIXME: It sadly also disallows the use of ~/eee when that's
2293 ;; embedded within something else (e.g. "(~/eee" in Info node
2294 ;; completion or "ancestor:/eee" in bzr-revision completion).
2295 (when (< (car bounds) 3)
2296 (let ((sep (substring str (1- (car bounds)) (car bounds))))
2297 ;; FIXME: the above string-match checks the whole string, whereas
2298 ;; we end up only caring about the after-boundary part.
2299 (concat (substring str 0 (car bounds))
2300 (mapconcat 'string (substring str (car bounds)) sep))))))))
2301
2302 (defun completion-initials-all-completions (string table pred point)
2303 (let ((newstr (completion-initials-expand string table pred)))
2304 (when newstr
2305 (completion-pcm-all-completions newstr table pred (length newstr)))))
2306
2307 (defun completion-initials-try-completion (string table pred point)
2308 (let ((newstr (completion-initials-expand string table pred)))
2309 (when newstr
2310 (completion-pcm-try-completion newstr table pred (length newstr)))))
2311
2312 \f
2313 ;; Miscellaneous
2314
2315 (defun minibuffer-insert-file-name-at-point ()
2316 "Get a file name at point in original buffer and insert it to minibuffer."
2317 (interactive)
2318 (let ((file-name-at-point
2319 (with-current-buffer (window-buffer (minibuffer-selected-window))
2320 (run-hook-with-args-until-success 'file-name-at-point-functions))))
2321 (when file-name-at-point
2322 (insert file-name-at-point))))
2323
2324 (provide 'minibuffer)
2325
2326 ;; arch-tag: ef8a0a15-1080-4790-a754-04017c02f08f
2327 ;;; minibuffer.el ends here