Improve responsiveness while in 'replace-buffer-contents'
[emacs.git] / lisp / minibuffer.el
blob7e7856f3a96da683eae9c340fdc0ebf8404df4a8
1 ;;; minibuffer.el --- Minibuffer completion functions -*- lexical-binding: t -*-
3 ;; Copyright (C) 2008-2018 Free Software Foundation, Inc.
5 ;; Author: Stefan Monnier <monnier@iro.umontreal.ca>
6 ;; Package: emacs
8 ;; This file is part of GNU Emacs.
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.
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.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; Names with "--" are for functions and variables that are meant to be for
26 ;; internal use only.
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 ;; - `metadata' in which case it should return (metadata . ALIST) where
35 ;; ALIST is the metadata of this table. See `completion-metadata'.
36 ;; Any other return value should be ignored (so we ignore values returned
37 ;; from completion tables that don't know about this new `action' form).
39 ;;; Bugs:
41 ;; - completion-all-sorted-completions lists all the completions, whereas
42 ;; it should only lists the ones that `try-completion' would consider.
43 ;; E.g. it should honor completion-ignored-extensions.
44 ;; - choose-completion can't automatically figure out the boundaries
45 ;; corresponding to the displayed completions because we only
46 ;; provide the start info but not the end info in
47 ;; completion-base-position.
48 ;; - C-x C-f ~/*/sr ? should not list "~/./src".
49 ;; - minibuffer-force-complete completes ~/src/emacs/t<!>/lisp/minibuffer.el
50 ;; to ~/src/emacs/trunk/ and throws away lisp/minibuffer.el.
52 ;;; Todo:
54 ;; - Make *Completions* readable even if some of the completion
55 ;; entries have LF chars or spaces in them (including at
56 ;; beginning/end) or are very long.
57 ;; - for M-x, cycle-sort commands that have no key binding first.
58 ;; - Make things like icomplete-mode or lightning-completion work with
59 ;; completion-in-region-mode.
60 ;; - extend `metadata':
61 ;; - indicate how to turn all-completion's output into
62 ;; try-completion's output: e.g. completion-ignored-extensions.
63 ;; maybe that could be merged with the "quote" operation.
64 ;; - indicate that `all-completions' doesn't do prefix-completion
65 ;; but just returns some list that relates in some other way to
66 ;; the provided string (as is the case in filecache.el), in which
67 ;; case partial-completion (for example) doesn't make any sense
68 ;; and neither does the completions-first-difference highlight.
69 ;; - indicate how to display the completions in *Completions* (turn
70 ;; \n into something else, add special boundaries between
71 ;; completions). E.g. when completing from the kill-ring.
73 ;; - case-sensitivity currently confuses two issues:
74 ;; - whether or not a particular completion table should be case-sensitive
75 ;; (i.e. whether strings that differ only by case are semantically
76 ;; equivalent)
77 ;; - whether the user wants completion to pay attention to case.
78 ;; e.g. we may want to make it possible for the user to say "first try
79 ;; completion case-sensitively, and if that fails, try to ignore case".
80 ;; Maybe the trick is that we should distinguish completion-ignore-case in
81 ;; try/all-completions (obey user's preference) from its use in
82 ;; test-completion (obey the underlying object's semantics).
84 ;; - add support for ** to pcm.
85 ;; - Add vc-file-name-completion-table to read-file-name-internal.
86 ;; - A feature like completing-help.el.
88 ;;; Code:
90 (eval-when-compile (require 'cl-lib))
92 ;;; Completion table manipulation
94 ;; New completion-table operation.
95 (defun completion-boundaries (string collection pred suffix)
96 "Return the boundaries of text on which COLLECTION will operate.
97 STRING is the string on which completion will be performed.
98 SUFFIX is the string after point.
99 If COLLECTION is a function, it is called with 3 arguments: STRING,
100 PRED, and a cons cell of the form (boundaries . SUFFIX).
102 The result is of the form (START . END) where START is the position
103 in STRING of the beginning of the completion field and END is the position
104 in SUFFIX of the end of the completion field.
105 E.g. for simple completion tables, the result is always (0 . (length SUFFIX))
106 and for file names the result is the positions delimited by
107 the closest directory separators."
108 (let ((boundaries (if (functionp collection)
109 (funcall collection string pred
110 (cons 'boundaries suffix)))))
111 (if (not (eq (car-safe boundaries) 'boundaries))
112 (setq boundaries nil))
113 (cons (or (cadr boundaries) 0)
114 (or (cddr boundaries) (length suffix)))))
116 (defun completion-metadata (string table pred)
117 "Return the metadata of elements to complete at the end of STRING.
118 This metadata is an alist. Currently understood keys are:
119 - `category': the kind of objects returned by `all-completions'.
120 Used by `completion-category-overrides'.
121 - `annotation-function': function to add annotations in *Completions*.
122 Takes one argument (STRING), which is a possible completion and
123 returns a string to append to STRING.
124 - `display-sort-function': function to sort entries in *Completions*.
125 Takes one argument (COMPLETIONS) and should return a new list
126 of completions. Can operate destructively.
127 - `cycle-sort-function': function to sort entries when cycling.
128 Works like `display-sort-function'.
129 The metadata of a completion table should be constant between two boundaries."
130 (let ((metadata (if (functionp table)
131 (funcall table string pred 'metadata))))
132 (if (eq (car-safe metadata) 'metadata)
133 metadata
134 '(metadata))))
136 (defun completion--field-metadata (field-start)
137 (completion-metadata (buffer-substring-no-properties field-start (point))
138 minibuffer-completion-table
139 minibuffer-completion-predicate))
141 (defun completion-metadata-get (metadata prop)
142 (cdr (assq prop metadata)))
144 (defun completion--some (fun xs)
145 "Apply FUN to each element of XS in turn.
146 Return the first non-nil returned value.
147 Like CL's `some'."
148 (let ((firsterror nil)
149 res)
150 (while (and (not res) xs)
151 (condition-case-unless-debug err
152 (setq res (funcall fun (pop xs)))
153 (error (unless firsterror (setq firsterror err)) nil)))
154 (or res
155 (if firsterror (signal (car firsterror) (cdr firsterror))))))
157 (defun complete-with-action (action table string pred)
158 "Perform completion ACTION.
159 STRING is the string to complete.
160 TABLE is the completion table.
161 PRED is a completion predicate.
162 ACTION can be one of nil, t or `lambda'."
163 (cond
164 ((functionp table) (funcall table string pred action))
165 ((eq (car-safe action) 'boundaries) nil)
166 ((eq action 'metadata) nil)
168 (funcall
169 (cond
170 ((null action) 'try-completion)
171 ((eq action t) 'all-completions)
172 (t 'test-completion))
173 string table pred))))
175 (defun completion-table-dynamic (fun &optional switch-buffer)
176 "Use function FUN as a dynamic completion table.
177 FUN is called with one argument, the string for which completion is required,
178 and it should return an alist containing all the intended possible completions.
179 This alist may be a full list of possible completions so that FUN can ignore
180 the value of its argument.
181 If SWITCH-BUFFER is non-nil and completion is performed in the
182 minibuffer, FUN will be called in the buffer from which the minibuffer
183 was entered.
185 The result of the `completion-table-dynamic' form is a function
186 that can be used as the COLLECTION argument to `try-completion' and
187 `all-completions'. See Info node `(elisp)Programmed Completion'.
189 See also the related function `completion-table-with-cache'."
190 (lambda (string pred action)
191 (if (or (eq (car-safe action) 'boundaries) (eq action 'metadata))
192 ;; `fun' is not supposed to return another function but a plain old
193 ;; completion table, whose boundaries are always trivial.
195 (with-current-buffer (if (not switch-buffer) (current-buffer)
196 (let ((win (minibuffer-selected-window)))
197 (if (window-live-p win) (window-buffer win)
198 (current-buffer))))
199 (complete-with-action action (funcall fun string) string pred)))))
201 (defun completion-table-with-cache (fun &optional ignore-case)
202 "Create dynamic completion table from function FUN, with cache.
203 This is a wrapper for `completion-table-dynamic' that saves the last
204 argument-result pair from FUN, so that several lookups with the
205 same argument (or with an argument that starts with the first one)
206 only need to call FUN once. This can be useful when FUN performs a
207 relatively slow operation, such as calling an external process.
209 When IGNORE-CASE is non-nil, FUN is expected to be case-insensitive."
210 ;; See eg bug#11906.
211 (let* (last-arg last-result
212 (new-fun
213 (lambda (arg)
214 (if (and last-arg (string-prefix-p last-arg arg ignore-case))
215 last-result
216 (prog1
217 (setq last-result (funcall fun arg))
218 (setq last-arg arg))))))
219 (completion-table-dynamic new-fun)))
221 (defmacro lazy-completion-table (var fun)
222 "Initialize variable VAR as a lazy completion table.
223 If the completion table VAR is used for the first time (e.g., by passing VAR
224 as an argument to `try-completion'), the function FUN is called with no
225 arguments. FUN must return the completion table that will be stored in VAR.
226 If completion is requested in the minibuffer, FUN will be called in the buffer
227 from which the minibuffer was entered. The return value of
228 `lazy-completion-table' must be used to initialize the value of VAR.
230 You should give VAR a non-nil `risky-local-variable' property."
231 (declare (debug (symbolp lambda-expr)))
232 (let ((str (make-symbol "string")))
233 `(completion-table-dynamic
234 (lambda (,str)
235 (when (functionp ,var)
236 (setq ,var (funcall #',fun)))
237 ,var)
238 'do-switch-buffer)))
240 (defun completion-table-case-fold (table &optional dont-fold)
241 "Return new completion TABLE that is case insensitive.
242 If DONT-FOLD is non-nil, return a completion table that is
243 case sensitive instead."
244 (lambda (string pred action)
245 (let ((completion-ignore-case (not dont-fold)))
246 (complete-with-action action table string pred))))
248 (defun completion-table-subvert (table s1 s2)
249 "Return a completion table from TABLE with S1 replaced by S2.
250 The result is a completion table which completes strings of the
251 form (concat S1 S) in the same way as TABLE completes strings of
252 the form (concat S2 S)."
253 (lambda (string pred action)
254 (let* ((str (if (string-prefix-p s1 string completion-ignore-case)
255 (concat s2 (substring string (length s1)))))
256 (res (if str (complete-with-action action table str pred))))
257 (when res
258 (cond
259 ((eq (car-safe action) 'boundaries)
260 (let ((beg (or (and (eq (car-safe res) 'boundaries) (cadr res)) 0)))
261 `(boundaries
262 ,(max (length s1)
263 (+ beg (- (length s1) (length s2))))
264 . ,(and (eq (car-safe res) 'boundaries) (cddr res)))))
265 ((stringp res)
266 (if (string-prefix-p s2 string completion-ignore-case)
267 (concat s1 (substring res (length s2)))))
268 ((eq action t)
269 (let ((bounds (completion-boundaries str table pred "")))
270 (if (>= (car bounds) (length s2))
272 (let ((re (concat "\\`"
273 (regexp-quote (substring s2 (car bounds))))))
274 (delq nil
275 (mapcar (lambda (c)
276 (if (string-match re c)
277 (substring c (match-end 0))))
278 res))))))
279 ;; E.g. action=nil and it's the only completion.
280 (res))))))
282 (defun completion-table-with-context (prefix table string pred action)
283 ;; TODO: add `suffix' maybe?
284 (let ((pred
285 (if (not (functionp pred))
286 ;; Notice that `pred' may not be a function in some abusive cases.
287 pred
288 ;; Predicates are called differently depending on the nature of
289 ;; the completion table :-(
290 (cond
291 ((vectorp table) ;Obarray.
292 (lambda (sym) (funcall pred (concat prefix (symbol-name sym)))))
293 ((hash-table-p table)
294 (lambda (s _v) (funcall pred (concat prefix s))))
295 ((functionp table)
296 (lambda (s) (funcall pred (concat prefix s))))
297 (t ;Lists and alists.
298 (lambda (s)
299 (funcall pred (concat prefix (if (consp s) (car s) s)))))))))
300 (if (eq (car-safe action) 'boundaries)
301 (let* ((len (length prefix))
302 (bound (completion-boundaries string table pred (cdr action))))
303 `(boundaries ,(+ (car bound) len) . ,(cdr bound)))
304 (let ((comp (complete-with-action action table string pred)))
305 (cond
306 ;; In case of try-completion, add the prefix.
307 ((stringp comp) (concat prefix comp))
308 (t comp))))))
310 (defun completion-table-with-terminator (terminator table string pred action)
311 "Construct a completion table like TABLE but with an extra TERMINATOR.
312 This is meant to be called in a curried way by first passing TERMINATOR
313 and TABLE only (via `apply-partially').
314 TABLE is a completion table, and TERMINATOR is a string appended to TABLE's
315 completion if it is complete. TERMINATOR is also used to determine the
316 completion suffix's boundary.
317 TERMINATOR can also be a cons cell (TERMINATOR . TERMINATOR-REGEXP)
318 in which case TERMINATOR-REGEXP is a regular expression whose submatch
319 number 1 should match TERMINATOR. This is used when there is a need to
320 distinguish occurrences of the TERMINATOR strings which are really terminators
321 from others (e.g. escaped). In this form, the car of TERMINATOR can also be,
322 instead of a string, a function that takes the completion and returns the
323 \"terminated\" string."
324 ;; FIXME: This implementation is not right since it only adds the terminator
325 ;; in try-completion, so any completion-style that builds the completion via
326 ;; all-completions won't get the terminator, and selecting an entry in
327 ;; *Completions* won't get the terminator added either.
328 (cond
329 ((eq (car-safe action) 'boundaries)
330 (let* ((suffix (cdr action))
331 (bounds (completion-boundaries string table pred suffix))
332 (terminator-regexp (if (consp terminator)
333 (cdr terminator) (regexp-quote terminator)))
334 (max (and terminator-regexp
335 (string-match terminator-regexp suffix))))
336 `(boundaries ,(car bounds)
337 . ,(min (cdr bounds) (or max (length suffix))))))
338 ((eq action nil)
339 (let ((comp (try-completion string table pred)))
340 (if (consp terminator) (setq terminator (car terminator)))
341 (if (eq comp t)
342 (if (functionp terminator)
343 (funcall terminator string)
344 (concat string terminator))
345 (if (and (stringp comp) (not (zerop (length comp)))
346 ;; Try to avoid the second call to try-completion, since
347 ;; it may be very inefficient (because `comp' made us
348 ;; jump to a new boundary, so we complete in that
349 ;; boundary with an empty start string).
350 (let ((newbounds (completion-boundaries comp table pred "")))
351 (< (car newbounds) (length comp)))
352 (eq (try-completion comp table pred) t))
353 (if (functionp terminator)
354 (funcall terminator comp)
355 (concat comp terminator))
356 comp))))
357 ;; completion-table-with-terminator is always used for
358 ;; "sub-completions" so it's only called if the terminator is missing,
359 ;; in which case `test-completion' should return nil.
360 ((eq action 'lambda) nil)
362 ;; FIXME: We generally want the `try' and `all' behaviors to be
363 ;; consistent so pcm can merge the `all' output to get the `try' output,
364 ;; but that sometimes clashes with the need for `all' output to look
365 ;; good in *Completions*.
366 ;; (mapcar (lambda (s) (concat s terminator))
367 ;; (all-completions string table pred))))
368 (complete-with-action action table string pred))))
370 (defun completion-table-with-predicate (table pred1 strict string pred2 action)
371 "Make a completion table equivalent to TABLE but filtered through PRED1.
372 PRED1 is a function of one argument which returns non-nil if and
373 only if the argument is an element of TABLE which should be
374 considered for completion. STRING, PRED2, and ACTION are the
375 usual arguments to completion tables, as described in
376 `try-completion', `all-completions', and `test-completion'. If
377 STRICT is non-nil, the predicate always applies; if nil it only
378 applies if it does not reduce the set of possible completions to
379 nothing. Note: TABLE needs to be a proper completion table which
380 obeys predicates."
381 (cond
382 ((and (not strict) (eq action 'lambda))
383 ;; Ignore pred1 since it doesn't really have to apply anyway.
384 (test-completion string table pred2))
386 (or (complete-with-action action table string
387 (if (not (and pred1 pred2))
388 (or pred1 pred2)
389 (lambda (x)
390 ;; Call `pred1' first, so that `pred2'
391 ;; really can't tell that `x' is in table.
392 (and (funcall pred1 x) (funcall pred2 x)))))
393 ;; If completion failed and we're not applying pred1 strictly, try
394 ;; again without pred1.
395 (and (not strict) pred1
396 (complete-with-action action table string pred2))))))
398 (defun completion-table-in-turn (&rest tables)
399 "Create a completion table that tries each table in TABLES in turn."
400 ;; FIXME: the boundaries may come from TABLE1 even when the completion list
401 ;; is returned by TABLE2 (because TABLE1 returned an empty list).
402 ;; Same potential problem if any of the tables use quoting.
403 (lambda (string pred action)
404 (completion--some (lambda (table)
405 (complete-with-action action table string pred))
406 tables)))
408 (defun completion-table-merge (&rest tables)
409 "Create a completion table that collects completions from all TABLES."
410 ;; FIXME: same caveats as in `completion-table-in-turn'.
411 (lambda (string pred action)
412 (cond
413 ((null action)
414 (let ((retvals (mapcar (lambda (table)
415 (try-completion string table pred))
416 tables)))
417 (if (member string retvals)
418 string
419 (try-completion string
420 (mapcar (lambda (value)
421 (if (eq value t) string value))
422 (delq nil retvals))
423 pred))))
424 ((eq action t)
425 (apply #'append (mapcar (lambda (table)
426 (all-completions string table pred))
427 tables)))
429 (completion--some (lambda (table)
430 (complete-with-action action table string pred))
431 tables)))))
433 (defun completion-table-with-quoting (table unquote requote)
434 ;; A difficult part of completion-with-quoting is to map positions in the
435 ;; quoted string to equivalent positions in the unquoted string and
436 ;; vice-versa. There is no efficient and reliable algorithm that works for
437 ;; arbitrary quote and unquote functions.
438 ;; So to map from quoted positions to unquoted positions, we simply assume
439 ;; that `concat' and `unquote' commute (which tends to be the case).
440 ;; And we ask `requote' to do the work of mapping from unquoted positions
441 ;; back to quoted positions.
442 ;; FIXME: For some forms of "quoting" such as the truncation behavior of
443 ;; substitute-in-file-name, it would be desirable not to requote completely.
444 "Return a new completion table operating on quoted text.
445 TABLE operates on the unquoted text.
446 UNQUOTE is a function that takes a string and returns a new unquoted string.
447 REQUOTE is a function of 2 args (UPOS QSTR) where
448 QSTR is a string entered by the user (and hence indicating
449 the user's preferred form of quoting); and
450 UPOS is a position within the unquoted form of QSTR.
451 REQUOTE should return a pair (QPOS . QFUN) such that QPOS is the
452 position corresponding to UPOS but in QSTR, and QFUN is a function
453 of one argument (a string) which returns that argument appropriately quoted
454 for use at QPOS."
455 ;; FIXME: One problem with the current setup is that `qfun' doesn't know if
456 ;; its argument is "the end of the completion", so if the quoting used double
457 ;; quotes (for example), we end up completing "fo" to "foobar and throwing
458 ;; away the closing double quote.
459 (lambda (string pred action)
460 (cond
461 ((eq action 'metadata)
462 (append (completion-metadata string table pred)
463 '((completion--unquote-requote . t))))
465 ((eq action 'lambda) ;;test-completion
466 (let ((ustring (funcall unquote string)))
467 (test-completion ustring table pred)))
469 ((eq (car-safe action) 'boundaries)
470 (let* ((ustring (funcall unquote string))
471 (qsuffix (cdr action))
472 (ufull (if (zerop (length qsuffix)) ustring
473 (funcall unquote (concat string qsuffix))))
474 (_ (cl-assert (string-prefix-p ustring ufull)))
475 (usuffix (substring ufull (length ustring)))
476 (boundaries (completion-boundaries ustring table pred usuffix))
477 (qlboundary (car (funcall requote (car boundaries) string)))
478 (qrboundary (if (zerop (cdr boundaries)) 0 ;Common case.
479 (let* ((urfullboundary
480 (+ (cdr boundaries) (length ustring))))
481 (- (car (funcall requote urfullboundary
482 (concat string qsuffix)))
483 (length string))))))
484 `(boundaries ,qlboundary . ,qrboundary)))
486 ;; In "normal" use a c-t-with-quoting completion table should never be
487 ;; called with action in (t nil) because `completion--unquote' should have
488 ;; been called before and would have returned a different completion table
489 ;; to apply to the unquoted text. But there's still a lot of code around
490 ;; that likes to use all/try-completions directly, so we do our best to
491 ;; handle those calls as well as we can.
493 ((eq action nil) ;;try-completion
494 (let* ((ustring (funcall unquote string))
495 (completion (try-completion ustring table pred)))
496 ;; Most forms of quoting allow several ways to quote the same string.
497 ;; So here we could simply requote `completion' in a kind of
498 ;; "canonical" quoted form without paying attention to the way
499 ;; `string' was quoted. But since we have to solve the more complex
500 ;; problems of "pay attention to the original quoting" for
501 ;; all-completions, we may as well use it here, since it provides
502 ;; a nicer behavior.
503 (if (not (stringp completion)) completion
504 (car (completion--twq-try
505 string ustring completion 0 unquote requote)))))
507 ((eq action t) ;;all-completions
508 ;; When all-completions is used for completion-try/all-completions
509 ;; (e.g. for `pcm' style), we can't do the job properly here because
510 ;; the caller will match our output against some pattern derived from
511 ;; the user's (quoted) input, and we don't have access to that
512 ;; pattern, so we can't know how to requote our output so that it
513 ;; matches the quoting used in the pattern. It is to fix this
514 ;; fundamental problem that we have to introduce the new
515 ;; unquote-requote method so that completion-try/all-completions can
516 ;; pass the unquoted string to the style functions.
517 (pcase-let*
518 ((ustring (funcall unquote string))
519 (completions (all-completions ustring table pred))
520 (boundary (car (completion-boundaries ustring table pred "")))
521 (completions
522 (completion--twq-all
523 string ustring completions boundary unquote requote))
524 (last (last completions)))
525 (when (consp last) (setcdr last nil))
526 completions))
528 ((eq action 'completion--unquote)
529 ;; PRED is really a POINT in STRING.
530 ;; We should return a new set (STRING TABLE POINT REQUOTE)
531 ;; where STRING is a new (unquoted) STRING to match against the new TABLE
532 ;; using a new POINT inside it, and REQUOTE is a requoting function which
533 ;; should reverse the unquoting, (i.e. it receives the completion result
534 ;; of using the new TABLE and should turn it into the corresponding
535 ;; quoted result).
536 (let* ((qpos pred)
537 (ustring (funcall unquote string))
538 (uprefix (funcall unquote (substring string 0 qpos)))
539 ;; FIXME: we really should pass `qpos' to `unquote' and have that
540 ;; function give us the corresponding `uqpos'. But for now we
541 ;; presume (more or less) that `concat' and `unquote' commute.
542 (uqpos (if (string-prefix-p uprefix ustring)
543 ;; Yay!! They do seem to commute!
544 (length uprefix)
545 ;; They don't commute this time! :-(
546 ;; Maybe qpos is in some text that disappears in the
547 ;; ustring (bug#17239). Let's try a second chance guess.
548 (let ((usuffix (funcall unquote (substring string qpos))))
549 (if (string-suffix-p usuffix ustring)
550 ;; Yay!! They still "commute" in a sense!
551 (- (length ustring) (length usuffix))
552 ;; Still no luck! Let's just choose *some* position
553 ;; within ustring.
554 (/ (+ (min (length uprefix) (length ustring))
555 (max (- (length ustring) (length usuffix)) 0))
556 2))))))
557 (list ustring table uqpos
558 (lambda (unquoted-result op)
559 (pcase op
560 (1 ;;try
561 (if (not (stringp (car-safe unquoted-result)))
562 unquoted-result
563 (completion--twq-try
564 string ustring
565 (car unquoted-result) (cdr unquoted-result)
566 unquote requote)))
567 (2 ;;all
568 (let* ((last (last unquoted-result))
569 (base (or (cdr last) 0)))
570 (when last
571 (setcdr last nil)
572 (completion--twq-all string ustring
573 unquoted-result base
574 unquote requote))))))))))))
576 (defun completion--twq-try (string ustring completion point
577 unquote requote)
578 ;; Basically two cases: either the new result is
579 ;; - commonprefix1 <point> morecommonprefix <qpos> suffix
580 ;; - commonprefix <qpos> newprefix <point> suffix
581 (pcase-let*
582 ((prefix (fill-common-string-prefix ustring completion))
583 (suffix (substring completion (max point (length prefix))))
584 (`(,qpos . ,qfun) (funcall requote (length prefix) string))
585 (qstr1 (if (> point (length prefix))
586 (funcall qfun (substring completion (length prefix) point))))
587 (qsuffix (funcall qfun suffix))
588 (qstring (concat (substring string 0 qpos) qstr1 qsuffix))
589 (qpoint
590 (cond
591 ((zerop point) 0)
592 ((> point (length prefix)) (+ qpos (length qstr1)))
593 (t (car (funcall requote point string))))))
594 ;; Make sure `requote' worked.
595 (if (equal (funcall unquote qstring) completion)
596 (cons qstring qpoint)
597 ;; If requote failed (e.g. because sifn-requote did not handle
598 ;; Tramp's "/foo:/bar//baz -> /foo:/baz" truncation), then at least
599 ;; try requote properly.
600 (let ((qstr (funcall qfun completion)))
601 (cons qstr (length qstr))))))
603 (defun completion--string-equal-p (s1 s2)
604 (eq t (compare-strings s1 nil nil s2 nil nil 'ignore-case)))
606 (defun completion--twq-all (string ustring completions boundary
607 _unquote requote)
608 (when completions
609 (pcase-let*
610 ((prefix
611 (let ((completion-regexp-list nil))
612 (try-completion "" (cons (substring ustring boundary)
613 completions))))
614 (`(,qfullpos . ,qfun)
615 (funcall requote (+ boundary (length prefix)) string))
616 (qfullprefix (substring string 0 qfullpos))
617 ;; FIXME: This assertion can be wrong, e.g. in Cygwin, where
618 ;; (unquote "c:\bin") => "/usr/bin" but (unquote "c:\") => "/".
619 ;;(cl-assert (completion--string-equal-p
620 ;; (funcall unquote qfullprefix)
621 ;; (concat (substring ustring 0 boundary) prefix))
622 ;; t))
623 (qboundary (car (funcall requote boundary string)))
624 (_ (cl-assert (<= qboundary qfullpos)))
625 ;; FIXME: this split/quote/concat business messes up the carefully
626 ;; placed completions-common-part and completions-first-difference
627 ;; faces. We could try within the mapcar loop to search for the
628 ;; boundaries of those faces, pass them to `requote' to find their
629 ;; equivalent positions in the quoted output and re-add the faces:
630 ;; this might actually lead to correct results but would be
631 ;; pretty expensive.
632 ;; The better solution is to not quote the *Completions* display,
633 ;; which nicely circumvents the problem. The solution I used here
634 ;; instead is to hope that `qfun' preserves the text-properties and
635 ;; presume that the `first-difference' is not within the `prefix';
636 ;; this presumption is not always true, but at least in practice it is
637 ;; true in most cases.
638 (qprefix (propertize (substring qfullprefix qboundary)
639 'face 'completions-common-part)))
641 ;; Here we choose to quote all elements returned, but a better option
642 ;; would be to return unquoted elements together with a function to
643 ;; requote them, so that *Completions* can show nicer unquoted values
644 ;; which only get quoted when needed by choose-completion.
645 (nconc
646 (mapcar (lambda (completion)
647 (cl-assert (string-prefix-p prefix completion 'ignore-case) t)
648 (let* ((new (substring completion (length prefix)))
649 (qnew (funcall qfun new))
650 (qprefix
651 (if (not completion-ignore-case)
652 qprefix
653 ;; Make qprefix inherit the case from `completion'.
654 (let* ((rest (substring completion
655 0 (length prefix)))
656 (qrest (funcall qfun rest)))
657 (if (completion--string-equal-p qprefix qrest)
658 (propertize qrest 'face
659 'completions-common-part)
660 qprefix))))
661 (qcompletion (concat qprefix qnew)))
662 ;; FIXME: Similarly here, Cygwin's mapping trips this
663 ;; assertion.
664 ;;(cl-assert
665 ;; (completion--string-equal-p
666 ;; (funcall unquote
667 ;; (concat (substring string 0 qboundary)
668 ;; qcompletion))
669 ;; (concat (substring ustring 0 boundary)
670 ;; completion))
671 ;; t)
672 qcompletion))
673 completions)
674 qboundary))))
676 ;; (defmacro complete-in-turn (a b) `(completion-table-in-turn ,a ,b))
677 ;; (defmacro dynamic-completion-table (fun) `(completion-table-dynamic ,fun))
678 (define-obsolete-function-alias
679 'complete-in-turn 'completion-table-in-turn "23.1")
680 (define-obsolete-function-alias
681 'dynamic-completion-table 'completion-table-dynamic "23.1")
683 ;;; Minibuffer completion
685 (defgroup minibuffer nil
686 "Controlling the behavior of the minibuffer."
687 :link '(custom-manual "(emacs)Minibuffer")
688 :group 'environment)
690 (defun minibuffer-message (message &rest args)
691 "Temporarily display MESSAGE at the end of the minibuffer.
692 The text is displayed for `minibuffer-message-timeout' seconds,
693 or until the next input event arrives, whichever comes first.
694 Enclose MESSAGE in [...] if this is not yet the case.
695 If ARGS are provided, then pass MESSAGE through `format-message'."
696 (if (not (minibufferp (current-buffer)))
697 (progn
698 (if args
699 (apply 'message message args)
700 (message "%s" message))
701 (prog1 (sit-for (or minibuffer-message-timeout 1000000))
702 (message nil)))
703 ;; Clear out any old echo-area message to make way for our new thing.
704 (message nil)
705 (setq message (if (and (null args)
706 (string-match-p "\\` *\\[.+\\]\\'" message))
707 ;; Make sure we can put-text-property.
708 (copy-sequence message)
709 (concat " [" message "]")))
710 (when args (setq message (apply #'format-message message args)))
711 (let ((ol (make-overlay (point-max) (point-max) nil t t))
712 ;; A quit during sit-for normally only interrupts the sit-for,
713 ;; but since minibuffer-message is used at the end of a command,
714 ;; at a time when the command has virtually finished already, a C-g
715 ;; should really cause an abort-recursive-edit instead (i.e. as if
716 ;; the C-g had been typed at top-level). Binding inhibit-quit here
717 ;; is an attempt to get that behavior.
718 (inhibit-quit t))
719 (unwind-protect
720 (progn
721 (unless (zerop (length message))
722 ;; The current C cursor code doesn't know to use the overlay's
723 ;; marker's stickiness to figure out whether to place the cursor
724 ;; before or after the string, so let's spoon-feed it the pos.
725 (put-text-property 0 1 'cursor t message))
726 (overlay-put ol 'after-string message)
727 (sit-for (or minibuffer-message-timeout 1000000)))
728 (delete-overlay ol)))))
730 (defun minibuffer-completion-contents ()
731 "Return the user input in a minibuffer before point as a string.
732 In Emacs-22, that was what completion commands operated on."
733 (declare (obsolete nil "24.4"))
734 (buffer-substring (minibuffer-prompt-end) (point)))
736 (defun delete-minibuffer-contents ()
737 "Delete all user input in a minibuffer.
738 If the current buffer is not a minibuffer, erase its entire contents."
739 (interactive)
740 ;; We used to do `delete-field' here, but when file name shadowing
741 ;; is on, the field doesn't cover the entire minibuffer contents.
742 (delete-region (minibuffer-prompt-end) (point-max)))
744 (defvar completion-show-inline-help t
745 "If non-nil, print helpful inline messages during completion.")
747 (defcustom completion-auto-help t
748 "Non-nil means automatically provide help for invalid completion input.
749 If the value is t the *Completions* buffer is displayed whenever completion
750 is requested but cannot be done.
751 If the value is `lazy', the *Completions* buffer is only displayed after
752 the second failed attempt to complete."
753 :type '(choice (const nil) (const t) (const lazy)))
755 (defconst completion-styles-alist
756 '((emacs21
757 completion-emacs21-try-completion completion-emacs21-all-completions
758 "Simple prefix-based completion.
759 I.e. when completing \"foo_bar\" (where _ is the position of point),
760 it will consider all completions candidates matching the glob
761 pattern \"foobar*\".")
762 (emacs22
763 completion-emacs22-try-completion completion-emacs22-all-completions
764 "Prefix completion that only operates on the text before point.
765 I.e. when completing \"foo_bar\" (where _ is the position of point),
766 it will consider all completions candidates matching the glob
767 pattern \"foo*\" and will add back \"bar\" to the end of it.")
768 (basic
769 completion-basic-try-completion completion-basic-all-completions
770 "Completion of the prefix before point and the suffix after point.
771 I.e. when completing \"foo_bar\" (where _ is the position of point),
772 it will consider all completions candidates matching the glob
773 pattern \"foo*bar*\".")
774 (partial-completion
775 completion-pcm-try-completion completion-pcm-all-completions
776 "Completion of multiple words, each one taken as a prefix.
777 I.e. when completing \"l-co_h\" (where _ is the position of point),
778 it will consider all completions candidates matching the glob
779 pattern \"l*-co*h*\".
780 Furthermore, for completions that are done step by step in subfields,
781 the method is applied to all the preceding fields that do not yet match.
782 E.g. C-x C-f /u/mo/s TAB could complete to /usr/monnier/src.
783 Additionally the user can use the char \"*\" as a glob pattern.")
784 (substring
785 completion-substring-try-completion completion-substring-all-completions
786 "Completion of the string taken as a substring.
787 I.e. when completing \"foo_bar\" (where _ is the position of point),
788 it will consider all completions candidates matching the glob
789 pattern \"*foo*bar*\".")
790 (initials
791 completion-initials-try-completion completion-initials-all-completions
792 "Completion of acronyms and initialisms.
793 E.g. can complete M-x lch to list-command-history
794 and C-x C-f ~/sew to ~/src/emacs/work."))
795 "List of available completion styles.
796 Each element has the form (NAME TRY-COMPLETION ALL-COMPLETIONS DOC):
797 where NAME is the name that should be used in `completion-styles',
798 TRY-COMPLETION is the function that does the completion (it should
799 follow the same calling convention as `completion-try-completion'),
800 ALL-COMPLETIONS is the function that lists the completions (it should
801 follow the calling convention of `completion-all-completions'),
802 and DOC describes the way this style of completion works.")
804 (defconst completion--styles-type
805 `(repeat :tag "insert a new menu to add more styles"
806 (choice ,@(mapcar (lambda (x) (list 'const (car x)))
807 completion-styles-alist))))
808 (defconst completion--cycling-threshold-type
809 '(choice (const :tag "No cycling" nil)
810 (const :tag "Always cycle" t)
811 (integer :tag "Threshold")))
813 (defcustom completion-styles
814 ;; First, use `basic' because prefix completion has been the standard
815 ;; for "ever" and works well in most cases, so using it first
816 ;; ensures that we obey previous behavior in most cases.
817 '(basic
818 ;; Then use `partial-completion' because it has proven to
819 ;; be a very convenient extension.
820 partial-completion
821 ;; Finally use `emacs22' so as to maintain (in many/most cases)
822 ;; the previous behavior that when completing "foobar" with point
823 ;; between "foo" and "bar" the completion try to complete "foo"
824 ;; and simply add "bar" to the end of the result.
825 emacs22)
826 "List of completion styles to use.
827 The available styles are listed in `completion-styles-alist'.
829 Note that `completion-category-overrides' may override these
830 styles for specific categories, such as files, buffers, etc."
831 :type completion--styles-type
832 :version "23.1")
834 (defvar completion-category-defaults
835 '((buffer (styles . (basic substring)))
836 (unicode-name (styles . (basic substring)))
837 (project-file (styles . (basic substring)))
838 (info-menu (styles . (basic substring))))
839 "Default settings for specific completion categories.
840 Each entry has the shape (CATEGORY . ALIST) where ALIST is
841 an association list that can specify properties such as:
842 - `styles': the list of `completion-styles' to use for that category.
843 - `cycle': the `completion-cycle-threshold' to use for that category.
844 Categories are symbols such as `buffer' and `file', used when
845 completing buffer and file names, respectively.")
847 (defcustom completion-category-overrides nil
848 "List of category-specific user overrides for completion styles.
849 Each override has the shape (CATEGORY . ALIST) where ALIST is
850 an association list that can specify properties such as:
851 - `styles': the list of `completion-styles' to use for that category.
852 - `cycle': the `completion-cycle-threshold' to use for that category.
853 Categories are symbols such as `buffer' and `file', used when
854 completing buffer and file names, respectively.
855 This overrides the defaults specified in `completion-category-defaults'."
856 :version "25.1"
857 :type `(alist :key-type (choice :tag "Category"
858 (const buffer)
859 (const file)
860 (const unicode-name)
861 (const bookmark)
862 symbol)
863 :value-type
864 (set :tag "Properties to override"
865 (cons :tag "Completion Styles"
866 (const :tag "Select a style from the menu;" styles)
867 ,completion--styles-type)
868 (cons :tag "Completion Cycling"
869 (const :tag "Select one value from the menu." cycle)
870 ,completion--cycling-threshold-type))))
872 (defun completion--category-override (category tag)
873 (or (assq tag (cdr (assq category completion-category-overrides)))
874 (assq tag (cdr (assq category completion-category-defaults)))))
876 (defun completion--styles (metadata)
877 (let* ((cat (completion-metadata-get metadata 'category))
878 (over (completion--category-override cat 'styles)))
879 (if over
880 (delete-dups (append (cdr over) (copy-sequence completion-styles)))
881 completion-styles)))
883 (defun completion--nth-completion (n string table pred point metadata)
884 "Call the Nth method of completion styles."
885 (unless metadata
886 (setq metadata
887 (completion-metadata (substring string 0 point) table pred)))
888 ;; We provide special support for quoting/unquoting here because it cannot
889 ;; reliably be done within the normal completion-table routines: Completion
890 ;; styles such as `substring' or `partial-completion' need to match the
891 ;; output of all-completions with the user's input, and since most/all
892 ;; quoting mechanisms allow several equivalent quoted forms, the
893 ;; completion-style can't do this matching (e.g. `substring' doesn't know
894 ;; that "\a\b\e" is a valid (quoted) substring of "label").
895 ;; The quote/unquote function needs to come from the completion table (rather
896 ;; than from completion-extra-properties) because it may apply only to some
897 ;; part of the string (e.g. substitute-in-file-name).
898 (let ((requote
899 (when (and
900 (completion-metadata-get metadata 'completion--unquote-requote)
901 ;; Sometimes a table's metadata is used on another
902 ;; table (typically that other table is just a list taken
903 ;; from the output of `all-completions' or something equivalent,
904 ;; for progressive refinement). See bug#28898 and bug#16274.
905 ;; FIXME: Rather than do nothing, we should somehow call
906 ;; the original table, in that case!
907 (functionp table))
908 (let ((new (funcall table string point 'completion--unquote)))
909 (setq string (pop new))
910 (setq table (pop new))
911 (setq point (pop new))
912 (cl-assert (<= point (length string)))
913 (pop new))))
914 (result
915 (completion--some (lambda (style)
916 (funcall (nth n (assq style
917 completion-styles-alist))
918 string table pred point))
919 (completion--styles metadata))))
920 (if requote
921 (funcall requote result n)
922 result)))
924 (defun completion-try-completion (string table pred point &optional metadata)
925 "Try to complete STRING using completion table TABLE.
926 Only the elements of table that satisfy predicate PRED are considered.
927 POINT is the position of point within STRING.
928 The return value can be either nil to indicate that there is no completion,
929 t to indicate that STRING is the only possible completion,
930 or a pair (NEWSTRING . NEWPOINT) of the completed result string together with
931 a new position for point."
932 (completion--nth-completion 1 string table pred point metadata))
934 (defun completion-all-completions (string table pred point &optional metadata)
935 "List the possible completions of STRING in completion table TABLE.
936 Only the elements of table that satisfy predicate PRED are considered.
937 POINT is the position of point within STRING.
938 The return value is a list of completions and may contain the base-size
939 in the last `cdr'."
940 ;; FIXME: We need to additionally return the info needed for the
941 ;; second part of completion-base-position.
942 (completion--nth-completion 2 string table pred point metadata))
944 (defun minibuffer--bitset (modified completions exact)
945 (logior (if modified 4 0)
946 (if completions 2 0)
947 (if exact 1 0)))
949 (defun completion--replace (beg end newtext)
950 "Replace the buffer text between BEG and END with NEWTEXT.
951 Moves point to the end of the new text."
952 ;; The properties on `newtext' include things like
953 ;; completions-first-difference, which we don't want to include
954 ;; upon insertion.
955 (set-text-properties 0 (length newtext) nil newtext)
956 ;; Maybe this should be in subr.el.
957 ;; You'd think this is trivial to do, but details matter if you want
958 ;; to keep markers "at the right place" and be robust in the face of
959 ;; after-change-functions that may themselves modify the buffer.
960 (let ((prefix-len 0))
961 ;; Don't touch markers in the shared prefix (if any).
962 (while (and (< prefix-len (length newtext))
963 (< (+ beg prefix-len) end)
964 (eq (char-after (+ beg prefix-len))
965 (aref newtext prefix-len)))
966 (setq prefix-len (1+ prefix-len)))
967 (unless (zerop prefix-len)
968 (setq beg (+ beg prefix-len))
969 (setq newtext (substring newtext prefix-len))))
970 (let ((suffix-len 0))
971 ;; Don't touch markers in the shared suffix (if any).
972 (while (and (< suffix-len (length newtext))
973 (< beg (- end suffix-len))
974 (eq (char-before (- end suffix-len))
975 (aref newtext (- (length newtext) suffix-len 1))))
976 (setq suffix-len (1+ suffix-len)))
977 (unless (zerop suffix-len)
978 (setq end (- end suffix-len))
979 (setq newtext (substring newtext 0 (- suffix-len))))
980 (goto-char beg)
981 (let ((length (- end beg))) ;Read `end' before we insert the text.
982 (insert-and-inherit newtext)
983 (delete-region (point) (+ (point) length)))
984 (forward-char suffix-len)))
986 (defcustom completion-cycle-threshold nil
987 "Number of completion candidates below which cycling is used.
988 Depending on this setting `completion-in-region' may use cycling,
989 whereby invoking a completion command several times in a row
990 completes to each of the candidates in turn, in a cyclic manner.
991 If nil, cycling is never used.
992 If t, cycling is always used.
993 If an integer, cycling is used so long as there are not more
994 completion candidates than this number."
995 :version "24.1"
996 :type completion--cycling-threshold-type)
998 (defun completion--cycle-threshold (metadata)
999 (let* ((cat (completion-metadata-get metadata 'category))
1000 (over (completion--category-override cat 'cycle)))
1001 (if over (cdr over) completion-cycle-threshold)))
1003 (defvar-local completion-all-sorted-completions nil)
1004 (defvar-local completion--all-sorted-completions-location nil)
1005 (defvar completion-cycling nil)
1007 (defvar completion-fail-discreetly nil
1008 "If non-nil, stay quiet when there is no match.")
1010 (defun completion--message (msg)
1011 (if completion-show-inline-help
1012 (minibuffer-message msg)))
1014 (defun completion--do-completion (beg end &optional
1015 try-completion-function expect-exact)
1016 "Do the completion and return a summary of what happened.
1017 M = completion was performed, the text was Modified.
1018 C = there were available Completions.
1019 E = after completion we now have an Exact match.
1022 000 0 no possible completion
1023 001 1 was already an exact and unique completion
1024 010 2 no completion happened
1025 011 3 was already an exact completion
1026 100 4 ??? impossible
1027 101 5 ??? impossible
1028 110 6 some completion happened
1029 111 7 completed to an exact completion
1031 TRY-COMPLETION-FUNCTION is a function to use in place of `try-completion'.
1032 EXPECT-EXACT, if non-nil, means that there is no need to tell the user
1033 when the buffer's text is already an exact match."
1034 (let* ((string (buffer-substring beg end))
1035 (md (completion--field-metadata beg))
1036 (comp (funcall (or try-completion-function
1037 'completion-try-completion)
1038 string
1039 minibuffer-completion-table
1040 minibuffer-completion-predicate
1041 (- (point) beg)
1042 md)))
1043 (cond
1044 ((null comp)
1045 (minibuffer-hide-completions)
1046 (unless completion-fail-discreetly
1047 (ding)
1048 (completion--message "No match"))
1049 (minibuffer--bitset nil nil nil))
1050 ((eq t comp)
1051 (minibuffer-hide-completions)
1052 (goto-char end)
1053 (completion--done string 'finished
1054 (unless expect-exact "Sole completion"))
1055 (minibuffer--bitset nil nil t)) ;Exact and unique match.
1057 ;; `completed' should be t if some completion was done, which doesn't
1058 ;; include simply changing the case of the entered string. However,
1059 ;; for appearance, the string is rewritten if the case changes.
1060 (let* ((comp-pos (cdr comp))
1061 (completion (car comp))
1062 (completed (not (eq t (compare-strings completion nil nil
1063 string nil nil t))))
1064 (unchanged (eq t (compare-strings completion nil nil
1065 string nil nil nil))))
1066 (if unchanged
1067 (goto-char end)
1068 ;; Insert in minibuffer the chars we got.
1069 (completion--replace beg end completion)
1070 (setq end (+ beg (length completion))))
1071 ;; Move point to its completion-mandated destination.
1072 (forward-char (- comp-pos (length completion)))
1074 (if (not (or unchanged completed))
1075 ;; The case of the string changed, but that's all. We're not sure
1076 ;; whether this is a unique completion or not, so try again using
1077 ;; the real case (this shouldn't recurse again, because the next
1078 ;; time try-completion will return either t or the exact string).
1079 (completion--do-completion beg end
1080 try-completion-function expect-exact)
1082 ;; It did find a match. Do we match some possibility exactly now?
1083 (let* ((exact (test-completion completion
1084 minibuffer-completion-table
1085 minibuffer-completion-predicate))
1086 (threshold (completion--cycle-threshold md))
1087 (comps
1088 ;; Check to see if we want to do cycling. We do it
1089 ;; here, after having performed the normal completion,
1090 ;; so as to take advantage of the difference between
1091 ;; try-completion and all-completions, for things
1092 ;; like completion-ignored-extensions.
1093 (when (and threshold
1094 ;; Check that the completion didn't make
1095 ;; us jump to a different boundary.
1096 (or (not completed)
1097 (< (car (completion-boundaries
1098 (substring completion 0 comp-pos)
1099 minibuffer-completion-table
1100 minibuffer-completion-predicate
1101 ""))
1102 comp-pos)))
1103 (completion-all-sorted-completions beg end))))
1104 (completion--flush-all-sorted-completions)
1105 (cond
1106 ((and (consp (cdr comps)) ;; There's something to cycle.
1107 (not (ignore-errors
1108 ;; This signal an (intended) error if comps is too
1109 ;; short or if completion-cycle-threshold is t.
1110 (consp (nthcdr threshold comps)))))
1111 ;; Not more than completion-cycle-threshold remaining
1112 ;; completions: let's cycle.
1113 (setq completed t exact t)
1114 (completion--cache-all-sorted-completions beg end comps)
1115 (minibuffer-force-complete beg end))
1116 (completed
1117 ;; We could also decide to refresh the completions,
1118 ;; if they're displayed (and assuming there are
1119 ;; completions left).
1120 (minibuffer-hide-completions)
1121 (if exact
1122 ;; If completion did not put point at end of field,
1123 ;; it's a sign that completion is not finished.
1124 (completion--done completion
1125 (if (< comp-pos (length completion))
1126 'exact 'unknown))))
1127 ;; Show the completion table, if requested.
1128 ((not exact)
1129 (if (pcase completion-auto-help
1130 (`lazy (eq this-command last-command))
1131 (_ completion-auto-help))
1132 (minibuffer-completion-help beg end)
1133 (completion--message "Next char not unique")))
1134 ;; If the last exact completion and this one were the same, it
1135 ;; means we've already given a "Complete, but not unique" message
1136 ;; and the user's hit TAB again, so now we give him help.
1138 (if (and (eq this-command last-command) completion-auto-help)
1139 (minibuffer-completion-help beg end))
1140 (completion--done completion 'exact
1141 (unless expect-exact
1142 "Complete, but not unique"))))
1144 (minibuffer--bitset completed t exact))))))))
1146 (defun minibuffer-complete ()
1147 "Complete the minibuffer contents as far as possible.
1148 Return nil if there is no valid completion, else t.
1149 If no characters can be completed, display a list of possible completions.
1150 If you repeat this command after it displayed such a list,
1151 scroll the window of possible completions."
1152 (interactive)
1153 (when (<= (minibuffer-prompt-end) (point))
1154 (completion-in-region (minibuffer-prompt-end) (point-max)
1155 minibuffer-completion-table
1156 minibuffer-completion-predicate)))
1158 (defun completion--in-region-1 (beg end)
1159 ;; If the previous command was not this,
1160 ;; mark the completion buffer obsolete.
1161 (setq this-command 'completion-at-point)
1162 (unless (eq 'completion-at-point last-command)
1163 (completion--flush-all-sorted-completions)
1164 (setq minibuffer-scroll-window nil))
1166 (cond
1167 ;; If there's a fresh completion window with a live buffer,
1168 ;; and this command is repeated, scroll that window.
1169 ((and (window-live-p minibuffer-scroll-window)
1170 (eq t (frame-visible-p (window-frame minibuffer-scroll-window))))
1171 (let ((window minibuffer-scroll-window))
1172 (with-current-buffer (window-buffer window)
1173 (if (pos-visible-in-window-p (point-max) window)
1174 ;; If end is in view, scroll up to the beginning.
1175 (set-window-start window (point-min) nil)
1176 ;; Else scroll down one screen.
1177 (with-selected-window window
1178 (scroll-up)))
1179 nil)))
1180 ;; If we're cycling, keep on cycling.
1181 ((and completion-cycling completion-all-sorted-completions)
1182 (minibuffer-force-complete beg end)
1184 (t (pcase (completion--do-completion beg end)
1185 (#b000 nil)
1186 (_ t)))))
1188 (defun completion--cache-all-sorted-completions (beg end comps)
1189 (add-hook 'after-change-functions
1190 'completion--flush-all-sorted-completions nil t)
1191 (setq completion--all-sorted-completions-location
1192 (cons (copy-marker beg) (copy-marker end)))
1193 (setq completion-all-sorted-completions comps))
1195 (defun completion--flush-all-sorted-completions (&optional start end _len)
1196 (unless (and start end
1197 (or (> start (cdr completion--all-sorted-completions-location))
1198 (< end (car completion--all-sorted-completions-location))))
1199 (remove-hook 'after-change-functions
1200 'completion--flush-all-sorted-completions t)
1201 (setq completion-cycling nil)
1202 (setq completion-all-sorted-completions nil)))
1204 (defun completion--metadata (string base md-at-point table pred)
1205 ;; Like completion-metadata, but for the specific case of getting the
1206 ;; metadata at `base', which tends to trigger pathological behavior for old
1207 ;; completion tables which don't understand `metadata'.
1208 (let ((bounds (completion-boundaries string table pred "")))
1209 (if (eq (car bounds) base) md-at-point
1210 (completion-metadata (substring string 0 base) table pred))))
1212 (defun completion-all-sorted-completions (&optional start end)
1213 (or completion-all-sorted-completions
1214 (let* ((start (or start (minibuffer-prompt-end)))
1215 (end (or end (point-max)))
1216 (string (buffer-substring start end))
1217 (md (completion--field-metadata start))
1218 (all (completion-all-completions
1219 string
1220 minibuffer-completion-table
1221 minibuffer-completion-predicate
1222 (- (point) start)
1223 md))
1224 (last (last all))
1225 (base-size (or (cdr last) 0))
1226 (all-md (completion--metadata (buffer-substring-no-properties
1227 start (point))
1228 base-size md
1229 minibuffer-completion-table
1230 minibuffer-completion-predicate))
1231 (sort-fun (completion-metadata-get all-md 'cycle-sort-function)))
1232 (when last
1233 (setcdr last nil)
1235 ;; Delete duplicates: do it after setting last's cdr to nil (so
1236 ;; it's a proper list), and be careful to reset `last' since it
1237 ;; may be a different cons-cell.
1238 (setq all (delete-dups all))
1239 (setq last (last all))
1241 (setq all (if sort-fun (funcall sort-fun all)
1242 ;; Prefer shorter completions, by default.
1243 (sort all (lambda (c1 c2) (< (length c1) (length c2))))))
1244 ;; Prefer recently used completions.
1245 (when (minibufferp)
1246 (let ((hist (symbol-value minibuffer-history-variable)))
1247 (setq all (sort all (lambda (c1 c2)
1248 (> (length (member c1 hist))
1249 (length (member c2 hist))))))))
1250 ;; Cache the result. This is not just for speed, but also so that
1251 ;; repeated calls to minibuffer-force-complete can cycle through
1252 ;; all possibilities.
1253 (completion--cache-all-sorted-completions
1254 start end (nconc all base-size))))))
1256 (defun minibuffer-force-complete-and-exit ()
1257 "Complete the minibuffer with first of the matches and exit."
1258 (interactive)
1259 (minibuffer-force-complete)
1260 (completion--complete-and-exit
1261 (minibuffer-prompt-end) (point-max) #'exit-minibuffer
1262 ;; If the previous completion completed to an element which fails
1263 ;; test-completion, then we shouldn't exit, but that should be rare.
1264 (lambda () (minibuffer-message "Incomplete"))))
1266 (defun minibuffer-force-complete (&optional start end)
1267 "Complete the minibuffer to an exact match.
1268 Repeated uses step through the possible completions."
1269 (interactive)
1270 (setq minibuffer-scroll-window nil)
1271 ;; FIXME: Need to deal with the extra-size issue here as well.
1272 ;; FIXME: ~/src/emacs/t<M-TAB>/lisp/minibuffer.el completes to
1273 ;; ~/src/emacs/trunk/ and throws away lisp/minibuffer.el.
1274 (let* ((start (copy-marker (or start (minibuffer-prompt-end))))
1275 (end (or end (point-max)))
1276 ;; (md (completion--field-metadata start))
1277 (all (completion-all-sorted-completions start end))
1278 (base (+ start (or (cdr (last all)) 0))))
1279 (cond
1280 ((not (consp all))
1281 (completion--message
1282 (if all "No more completions" "No completions")))
1283 ((not (consp (cdr all)))
1284 (let ((done (equal (car all) (buffer-substring-no-properties base end))))
1285 (unless done (completion--replace base end (car all)))
1286 (completion--done (buffer-substring-no-properties start (point))
1287 'finished (when done "Sole completion"))))
1289 (completion--replace base end (car all))
1290 (setq end (+ base (length (car all))))
1291 (completion--done (buffer-substring-no-properties start (point)) 'sole)
1292 ;; Set cycling after modifying the buffer since the flush hook resets it.
1293 (setq completion-cycling t)
1294 (setq this-command 'completion-at-point) ;For completion-in-region.
1295 ;; If completing file names, (car all) may be a directory, so we'd now
1296 ;; have a new set of possible completions and might want to reset
1297 ;; completion-all-sorted-completions to nil, but we prefer not to,
1298 ;; so that repeated calls minibuffer-force-complete still cycle
1299 ;; through the previous possible completions.
1300 (let ((last (last all)))
1301 (setcdr last (cons (car all) (cdr last)))
1302 (completion--cache-all-sorted-completions start end (cdr all)))
1303 ;; Make sure repeated uses cycle, even though completion--done might
1304 ;; have added a space or something that moved us outside of the field.
1305 ;; (bug#12221).
1306 (let* ((table minibuffer-completion-table)
1307 (pred minibuffer-completion-predicate)
1308 (extra-prop completion-extra-properties)
1309 (cmd
1310 (lambda () "Cycle through the possible completions."
1311 (interactive)
1312 (let ((completion-extra-properties extra-prop))
1313 (completion-in-region start (point) table pred)))))
1314 (set-transient-map
1315 (let ((map (make-sparse-keymap)))
1316 (define-key map [remap completion-at-point] cmd)
1317 (define-key map (vector last-command-event) cmd)
1318 map)))))))
1320 (defvar minibuffer-confirm-exit-commands
1321 '(completion-at-point minibuffer-complete
1322 minibuffer-complete-word PC-complete PC-complete-word)
1323 "A list of commands which cause an immediately following
1324 `minibuffer-complete-and-exit' to ask for extra confirmation.")
1326 (defun minibuffer-complete-and-exit ()
1327 "Exit if the minibuffer contains a valid completion.
1328 Otherwise, try to complete the minibuffer contents. If
1329 completion leads to a valid completion, a repetition of this
1330 command will exit.
1332 If `minibuffer-completion-confirm' is `confirm', do not try to
1333 complete; instead, ask for confirmation and accept any input if
1334 confirmed.
1335 If `minibuffer-completion-confirm' is `confirm-after-completion',
1336 do not try to complete; instead, ask for confirmation if the
1337 preceding minibuffer command was a member of
1338 `minibuffer-confirm-exit-commands', and accept the input
1339 otherwise."
1340 (interactive)
1341 (completion-complete-and-exit (minibuffer-prompt-end) (point-max)
1342 #'exit-minibuffer))
1344 (defun completion-complete-and-exit (beg end exit-function)
1345 (completion--complete-and-exit
1346 beg end exit-function
1347 (lambda ()
1348 (pcase (condition-case nil
1349 (completion--do-completion beg end
1350 nil 'expect-exact)
1351 (error 1))
1352 ((or #b001 #b011) (funcall exit-function))
1353 (#b111 (if (not minibuffer-completion-confirm)
1354 (funcall exit-function)
1355 (minibuffer-message "Confirm")
1356 nil))
1357 (_ nil)))))
1359 (defun completion--complete-and-exit (beg end
1360 exit-function completion-function)
1361 "Exit from `require-match' minibuffer.
1362 COMPLETION-FUNCTION is called if the current buffer's content does not
1363 appear to be a match."
1364 (cond
1365 ;; Allow user to specify null string
1366 ((= beg end) (funcall exit-function))
1367 ((test-completion (buffer-substring beg end)
1368 minibuffer-completion-table
1369 minibuffer-completion-predicate)
1370 ;; FIXME: completion-ignore-case has various slightly
1371 ;; incompatible meanings. E.g. it can reflect whether the user
1372 ;; wants completion to pay attention to case, or whether the
1373 ;; string will be used in a context where case is significant.
1374 ;; E.g. usually try-completion should obey the first, whereas
1375 ;; test-completion should obey the second.
1376 (when completion-ignore-case
1377 ;; Fixup case of the field, if necessary.
1378 (let* ((string (buffer-substring beg end))
1379 (compl (try-completion
1380 string
1381 minibuffer-completion-table
1382 minibuffer-completion-predicate)))
1383 (when (and (stringp compl) (not (equal string compl))
1384 ;; If it weren't for this piece of paranoia, I'd replace
1385 ;; the whole thing with a call to do-completion.
1386 ;; This is important, e.g. when the current minibuffer's
1387 ;; content is a directory which only contains a single
1388 ;; file, so `try-completion' actually completes to
1389 ;; that file.
1390 (= (length string) (length compl)))
1391 (completion--replace beg end compl))))
1392 (funcall exit-function))
1394 ((memq minibuffer-completion-confirm '(confirm confirm-after-completion))
1395 ;; The user is permitted to exit with an input that's rejected
1396 ;; by test-completion, after confirming her choice.
1397 (if (or (eq last-command this-command)
1398 ;; For `confirm-after-completion' we only ask for confirmation
1399 ;; if trying to exit immediately after typing TAB (this
1400 ;; catches most minibuffer typos).
1401 (and (eq minibuffer-completion-confirm 'confirm-after-completion)
1402 (not (memq last-command minibuffer-confirm-exit-commands))))
1403 (funcall exit-function)
1404 (minibuffer-message "Confirm")
1405 nil))
1408 ;; Call do-completion, but ignore errors.
1409 (funcall completion-function))))
1411 (defun completion--try-word-completion (string table predicate point md)
1412 (let ((comp (completion-try-completion string table predicate point md)))
1413 (if (not (consp comp))
1414 comp
1416 ;; If completion finds next char not unique,
1417 ;; consider adding a space or a hyphen.
1418 (when (= (length string) (length (car comp)))
1419 ;; Mark the added char with the `completion-word' property, so it
1420 ;; can be handled specially by completion styles such as
1421 ;; partial-completion.
1422 ;; We used to remove `partial-completion' from completion-styles
1423 ;; instead, but it was too blunt, leading to situations where SPC
1424 ;; was the only insertable char at point but minibuffer-complete-word
1425 ;; refused inserting it.
1426 (let ((exts (mapcar (lambda (str) (propertize str 'completion-try-word t))
1427 '(" " "-")))
1428 (before (substring string 0 point))
1429 (after (substring string point))
1430 tem)
1431 ;; If both " " and "-" lead to completions, prefer " " so SPC behaves
1432 ;; a bit more like a self-inserting key (bug#17375).
1433 (while (and exts (not (consp tem)))
1434 (setq tem (completion-try-completion
1435 (concat before (pop exts) after)
1436 table predicate (1+ point) md)))
1437 (if (consp tem) (setq comp tem))))
1439 ;; Completing a single word is actually more difficult than completing
1440 ;; as much as possible, because we first have to find the "current
1441 ;; position" in `completion' in order to find the end of the word
1442 ;; we're completing. Normally, `string' is a prefix of `completion',
1443 ;; which makes it trivial to find the position, but with fancier
1444 ;; completion (plus env-var expansion, ...) `completion' might not
1445 ;; look anything like `string' at all.
1446 (let* ((comppoint (cdr comp))
1447 (completion (car comp))
1448 (before (substring string 0 point))
1449 (combined (concat before "\n" completion)))
1450 ;; Find in completion the longest text that was right before point.
1451 (when (string-match "\\(.+\\)\n.*?\\1" combined)
1452 (let* ((prefix (match-string 1 before))
1453 ;; We used non-greedy match to make `rem' as long as possible.
1454 (rem (substring combined (match-end 0)))
1455 ;; Find in the remainder of completion the longest text
1456 ;; that was right after point.
1457 (after (substring string point))
1458 (suffix (if (string-match "\\`\\(.+\\).*\n.*\\1"
1459 (concat after "\n" rem))
1460 (match-string 1 after))))
1461 ;; The general idea is to try and guess what text was inserted
1462 ;; at point by the completion. Problem is: if we guess wrong,
1463 ;; we may end up treating as "added by completion" text that was
1464 ;; actually painfully typed by the user. So if we then cut
1465 ;; after the first word, we may throw away things the
1466 ;; user wrote. So let's try to be as conservative as possible:
1467 ;; only cut after the first word, if we're reasonably sure that
1468 ;; our guess is correct.
1469 ;; Note: a quick survey on emacs-devel seemed to indicate that
1470 ;; nobody actually cares about the "word-at-a-time" feature of
1471 ;; minibuffer-complete-word, whose real raison-d'être is that it
1472 ;; tries to add "-" or " ". One more reason to only cut after
1473 ;; the first word, if we're really sure we're right.
1474 (when (and (or suffix (zerop (length after)))
1475 (string-match (concat
1476 ;; Make submatch 1 as small as possible
1477 ;; to reduce the risk of cutting
1478 ;; valuable text.
1479 ".*" (regexp-quote prefix) "\\(.*?\\)"
1480 (if suffix (regexp-quote suffix) "\\'"))
1481 completion)
1482 ;; The new point in `completion' should also be just
1483 ;; before the suffix, otherwise something more complex
1484 ;; is going on, and we're not sure where we are.
1485 (eq (match-end 1) comppoint)
1486 ;; (match-beginning 1)..comppoint is now the stretch
1487 ;; of text in `completion' that was completed at point.
1488 (string-match "\\W" completion (match-beginning 1))
1489 ;; Is there really something to cut?
1490 (> comppoint (match-end 0)))
1491 ;; Cut after the first word.
1492 (let ((cutpos (match-end 0)))
1493 (setq completion (concat (substring completion 0 cutpos)
1494 (substring completion comppoint)))
1495 (setq comppoint cutpos)))))
1497 (cons completion comppoint)))))
1500 (defun minibuffer-complete-word ()
1501 "Complete the minibuffer contents at most a single word.
1502 After one word is completed as much as possible, a space or hyphen
1503 is added, provided that matches some possible completion.
1504 Return nil if there is no valid completion, else t."
1505 (interactive)
1506 (completion-in-region--single-word
1507 (minibuffer-prompt-end) (point-max)
1508 minibuffer-completion-table minibuffer-completion-predicate))
1510 (defun completion-in-region--single-word (beg end collection
1511 &optional predicate)
1512 (let ((minibuffer-completion-table collection)
1513 (minibuffer-completion-predicate predicate))
1514 (pcase (completion--do-completion beg end
1515 #'completion--try-word-completion)
1516 (#b000 nil)
1517 (_ t))))
1519 (defface completions-annotations '((t :inherit italic))
1520 "Face to use for annotations in the *Completions* buffer.")
1522 (defcustom completions-format 'horizontal
1523 "Define the appearance and sorting of completions.
1524 If the value is `vertical', display completions sorted vertically
1525 in columns in the *Completions* buffer.
1526 If the value is `horizontal', display completions sorted
1527 horizontally in alphabetical order, rather than down the screen."
1528 :type '(choice (const horizontal) (const vertical))
1529 :version "23.2")
1531 (defun completion--insert-strings (strings)
1532 "Insert a list of STRINGS into the current buffer.
1533 Uses columns to keep the listing readable but compact.
1534 It also eliminates runs of equal strings."
1535 (when (consp strings)
1536 (let* ((length (apply 'max
1537 (mapcar (lambda (s)
1538 (if (consp s)
1539 (+ (string-width (car s))
1540 (string-width (cadr s)))
1541 (string-width s)))
1542 strings)))
1543 (window (get-buffer-window (current-buffer) 0))
1544 (wwidth (if window (1- (window-width window)) 79))
1545 (columns (min
1546 ;; At least 2 columns; at least 2 spaces between columns.
1547 (max 2 (/ wwidth (+ 2 length)))
1548 ;; Don't allocate more columns than we can fill.
1549 ;; Windows can't show less than 3 lines anyway.
1550 (max 1 (/ (length strings) 2))))
1551 (colwidth (/ wwidth columns))
1552 (column 0)
1553 (rows (/ (length strings) columns))
1554 (row 0)
1555 (first t)
1556 (laststring nil))
1557 ;; The insertion should be "sensible" no matter what choices were made
1558 ;; for the parameters above.
1559 (dolist (str strings)
1560 (unless (equal laststring str) ; Remove (consecutive) duplicates.
1561 (setq laststring str)
1562 ;; FIXME: `string-width' doesn't pay attention to
1563 ;; `display' properties.
1564 (let ((length (if (consp str)
1565 (+ (string-width (car str))
1566 (string-width (cadr str)))
1567 (string-width str))))
1568 (cond
1569 ((eq completions-format 'vertical)
1570 ;; Vertical format
1571 (when (> row rows)
1572 (forward-line (- -1 rows))
1573 (setq row 0 column (+ column colwidth)))
1574 (when (> column 0)
1575 (end-of-line)
1576 (while (> (current-column) column)
1577 (if (eobp)
1578 (insert "\n")
1579 (forward-line 1)
1580 (end-of-line)))
1581 (insert " \t")
1582 (set-text-properties (1- (point)) (point)
1583 `(display (space :align-to ,column)))))
1585 ;; Horizontal format
1586 (unless first
1587 (if (< wwidth (+ (max colwidth length) column))
1588 ;; No space for `str' at point, move to next line.
1589 (progn (insert "\n") (setq column 0))
1590 (insert " \t")
1591 ;; Leave the space unpropertized so that in the case we're
1592 ;; already past the goal column, there is still
1593 ;; a space displayed.
1594 (set-text-properties (1- (point)) (point)
1595 ;; We can't just set tab-width, because
1596 ;; completion-setup-function will kill
1597 ;; all local variables :-(
1598 `(display (space :align-to ,column)))
1599 nil))))
1600 (setq first nil)
1601 (if (not (consp str))
1602 (put-text-property (point) (progn (insert str) (point))
1603 'mouse-face 'highlight)
1604 (put-text-property (point) (progn (insert (car str)) (point))
1605 'mouse-face 'highlight)
1606 (let ((beg (point))
1607 (end (progn (insert (cadr str)) (point))))
1608 (put-text-property beg end 'mouse-face nil)
1609 (font-lock-prepend-text-property beg end 'face
1610 'completions-annotations)))
1611 (cond
1612 ((eq completions-format 'vertical)
1613 ;; Vertical format
1614 (if (> column 0)
1615 (forward-line)
1616 (insert "\n"))
1617 (setq row (1+ row)))
1619 ;; Horizontal format
1620 ;; Next column to align to.
1621 (setq column (+ column
1622 ;; Round up to a whole number of columns.
1623 (* colwidth (ceiling length colwidth))))))))))))
1625 (defvar completion-common-substring nil)
1626 (make-obsolete-variable 'completion-common-substring nil "23.1")
1628 (defvar completion-setup-hook nil
1629 "Normal hook run at the end of setting up a completion list buffer.
1630 When this hook is run, the current buffer is the one in which the
1631 command to display the completion list buffer was run.
1632 The completion list buffer is available as the value of `standard-output'.
1633 See also `display-completion-list'.")
1635 (defface completions-first-difference
1636 '((t (:inherit bold)))
1637 "Face for the first uncommon character in completions.
1638 See also the face `completions-common-part'.")
1640 (defface completions-common-part '((t nil))
1641 "Face for the common prefix substring in completions.
1642 The idea of this face is that you can use it to make the common parts
1643 less visible than normal, so that the differing parts are emphasized
1644 by contrast.
1645 See also the face `completions-first-difference'.")
1647 (defun completion-hilit-commonality (completions prefix-len &optional base-size)
1648 "Apply font-lock highlighting to a list of completions, COMPLETIONS.
1649 PREFIX-LEN is an integer. BASE-SIZE is an integer or nil (meaning zero).
1651 This adds the face `completions-common-part' to the first
1652 \(PREFIX-LEN - BASE-SIZE) characters of each completion, and the face
1653 `completions-first-difference' to the first character after that.
1655 It returns a list with font-lock properties applied to each element,
1656 and with BASE-SIZE appended as the last element."
1657 (when completions
1658 (let ((com-str-len (- prefix-len (or base-size 0))))
1659 (nconc
1660 (mapcar
1661 (lambda (elem)
1662 (let ((str
1663 ;; Don't modify the string itself, but a copy, since the
1664 ;; the string may be read-only or used for other purposes.
1665 ;; Furthermore, since `completions' may come from
1666 ;; display-completion-list, `elem' may be a list.
1667 (if (consp elem)
1668 (car (setq elem (cons (copy-sequence (car elem))
1669 (cdr elem))))
1670 (setq elem (copy-sequence elem)))))
1671 (font-lock-prepend-text-property
1673 ;; If completion-boundaries returns incorrect
1674 ;; values, all-completions may return strings
1675 ;; that don't contain the prefix.
1676 (min com-str-len (length str))
1677 'face 'completions-common-part str)
1678 (if (> (length str) com-str-len)
1679 (font-lock-prepend-text-property com-str-len (1+ com-str-len)
1680 'face
1681 'completions-first-difference
1682 str)))
1683 elem)
1684 completions)
1685 base-size))))
1687 (defun display-completion-list (completions &optional common-substring)
1688 "Display the list of completions, COMPLETIONS, using `standard-output'.
1689 Each element may be just a symbol or string
1690 or may be a list of two strings to be printed as if concatenated.
1691 If it is a list of two strings, the first is the actual completion
1692 alternative, the second serves as annotation.
1693 `standard-output' must be a buffer.
1694 The actual completion alternatives, as inserted, are given `mouse-face'
1695 properties of `highlight'.
1696 At the end, this runs the normal hook `completion-setup-hook'.
1697 It can find the completion buffer in `standard-output'."
1698 (declare (advertised-calling-convention (completions) "24.4"))
1699 (if common-substring
1700 (setq completions (completion-hilit-commonality
1701 completions (length common-substring)
1702 ;; We don't know the base-size.
1703 nil)))
1704 (if (not (bufferp standard-output))
1705 ;; This *never* (ever) happens, so there's no point trying to be clever.
1706 (with-temp-buffer
1707 (let ((standard-output (current-buffer))
1708 (completion-setup-hook nil))
1709 (display-completion-list completions common-substring))
1710 (princ (buffer-string)))
1712 (with-current-buffer standard-output
1713 (goto-char (point-max))
1714 (if (null completions)
1715 (insert "There are no possible completions of what you have typed.")
1716 (insert "Possible completions are:\n")
1717 (completion--insert-strings completions))))
1719 ;; The hilit used to be applied via completion-setup-hook, so there
1720 ;; may still be some code that uses completion-common-substring.
1721 (with-no-warnings
1722 (let ((completion-common-substring common-substring))
1723 (run-hooks 'completion-setup-hook)))
1724 nil)
1726 (defvar completion-extra-properties nil
1727 "Property list of extra properties of the current completion job.
1728 These include:
1730 `:annotation-function': Function to annotate the completions buffer.
1731 The function must accept one argument, a completion string,
1732 and return either nil or a string which is to be displayed
1733 next to the completion (but which is not part of the
1734 completion). The function can access the completion data via
1735 `minibuffer-completion-table' and related variables.
1737 `:exit-function': Function to run after completion is performed.
1739 The function must accept two arguments, STRING and STATUS.
1740 STRING is the text to which the field was completed, and
1741 STATUS indicates what kind of operation happened:
1742 `finished' - text is now complete
1743 `sole' - text cannot be further completed but
1744 completion is not finished
1745 `exact' - text is a valid completion but may be further
1746 completed.")
1748 (defvar completion-annotate-function
1750 ;; Note: there's a lot of scope as for when to add annotations and
1751 ;; what annotations to add. E.g. completing-help.el allowed adding
1752 ;; the first line of docstrings to M-x completion. But there's
1753 ;; a tension, since such annotations, while useful at times, can
1754 ;; actually drown the useful information.
1755 ;; So completion-annotate-function should be used parsimoniously, or
1756 ;; else only used upon a user's request (e.g. we could add a command
1757 ;; to completion-list-mode to add annotations to the current
1758 ;; completions).
1759 "Function to add annotations in the *Completions* buffer.
1760 The function takes a completion and should either return nil, or a string that
1761 will be displayed next to the completion. The function can access the
1762 completion table and predicates via `minibuffer-completion-table' and related
1763 variables.")
1764 (make-obsolete-variable 'completion-annotate-function
1765 'completion-extra-properties "24.1")
1767 (defun completion--done (string &optional finished message)
1768 (let* ((exit-fun (plist-get completion-extra-properties :exit-function))
1769 (pre-msg (and exit-fun (current-message))))
1770 (cl-assert (memq finished '(exact sole finished unknown)))
1771 (when exit-fun
1772 (when (eq finished 'unknown)
1773 (setq finished
1774 (if (eq (try-completion string
1775 minibuffer-completion-table
1776 minibuffer-completion-predicate)
1778 'finished 'exact)))
1779 (funcall exit-fun string finished))
1780 (when (and message
1781 ;; Don't output any message if the exit-fun already did so.
1782 (equal pre-msg (and exit-fun (current-message))))
1783 (completion--message message))))
1785 (defun minibuffer-completion-help (&optional start end)
1786 "Display a list of possible completions of the current minibuffer contents."
1787 (interactive)
1788 (message "Making completion list...")
1789 (let* ((start (or start (minibuffer-prompt-end)))
1790 (end (or end (point-max)))
1791 (string (buffer-substring start end))
1792 (md (completion--field-metadata start))
1793 (completions (completion-all-completions
1794 string
1795 minibuffer-completion-table
1796 minibuffer-completion-predicate
1797 (- (point) start)
1798 md)))
1799 (message nil)
1800 (if (or (null completions)
1801 (and (not (consp (cdr completions)))
1802 (equal (car completions) string)))
1803 (progn
1804 ;; If there are no completions, or if the current input is already
1805 ;; the sole completion, then hide (previous&stale) completions.
1806 (minibuffer-hide-completions)
1807 (ding)
1808 (minibuffer-message
1809 (if completions "Sole completion" "No completions")))
1811 (let* ((last (last completions))
1812 (base-size (or (cdr last) 0))
1813 (prefix (unless (zerop base-size) (substring string 0 base-size)))
1814 (all-md (completion--metadata (buffer-substring-no-properties
1815 start (point))
1816 base-size md
1817 minibuffer-completion-table
1818 minibuffer-completion-predicate))
1819 (afun (or (completion-metadata-get all-md 'annotation-function)
1820 (plist-get completion-extra-properties
1821 :annotation-function)
1822 completion-annotate-function))
1823 ;; If the *Completions* buffer is shown in a new
1824 ;; window, mark it as softly-dedicated, so bury-buffer in
1825 ;; minibuffer-hide-completions will know whether to
1826 ;; delete the window or not.
1827 (display-buffer-mark-dedicated 'soft)
1828 ;; Disable `pop-up-windows' temporarily to allow
1829 ;; `display-buffer--maybe-pop-up-frame-or-window'
1830 ;; in the display actions below to pop up a frame
1831 ;; if `pop-up-frames' is non-nil, but not to pop up a window.
1832 (pop-up-windows nil))
1833 (with-displayed-buffer-window
1834 "*Completions*"
1835 ;; This is a copy of `display-buffer-fallback-action'
1836 ;; where `display-buffer-use-some-window' is replaced
1837 ;; with `display-buffer-at-bottom'.
1838 `((display-buffer--maybe-same-window
1839 display-buffer-reuse-window
1840 display-buffer--maybe-pop-up-frame-or-window
1841 ;; Use `display-buffer-below-selected' for inline completions,
1842 ;; but not in the minibuffer (e.g. in `eval-expression')
1843 ;; for which `display-buffer-at-bottom' is used.
1844 ,(if (eq (selected-window) (minibuffer-window))
1845 'display-buffer-at-bottom
1846 'display-buffer-below-selected))
1847 ,(if temp-buffer-resize-mode
1848 '(window-height . resize-temp-buffer-window)
1849 '(window-height . fit-window-to-buffer))
1850 ,(when temp-buffer-resize-mode
1851 '(preserve-size . (nil . t))))
1853 ;; Remove the base-size tail because `sort' requires a properly
1854 ;; nil-terminated list.
1855 (when last (setcdr last nil))
1856 (setq completions
1857 ;; FIXME: This function is for the output of all-completions,
1858 ;; not completion-all-completions. Often it's the same, but
1859 ;; not always.
1860 (let ((sort-fun (completion-metadata-get
1861 all-md 'display-sort-function)))
1862 (if sort-fun
1863 (funcall sort-fun completions)
1864 (sort completions 'string-lessp))))
1865 (when afun
1866 (setq completions
1867 (mapcar (lambda (s)
1868 (let ((ann (funcall afun s)))
1869 (if ann (list s ann) s)))
1870 completions)))
1872 (with-current-buffer standard-output
1873 (set (make-local-variable 'completion-base-position)
1874 (list (+ start base-size)
1875 ;; FIXME: We should pay attention to completion
1876 ;; boundaries here, but currently
1877 ;; completion-all-completions does not give us the
1878 ;; necessary information.
1879 end))
1880 (set (make-local-variable 'completion-list-insert-choice-function)
1881 (let ((ctable minibuffer-completion-table)
1882 (cpred minibuffer-completion-predicate)
1883 (cprops completion-extra-properties))
1884 (lambda (start end choice)
1885 (unless (or (zerop (length prefix))
1886 (equal prefix
1887 (buffer-substring-no-properties
1888 (max (point-min)
1889 (- start (length prefix)))
1890 start)))
1891 (message "*Completions* out of date"))
1892 ;; FIXME: Use `md' to do quoting&terminator here.
1893 (completion--replace start end choice)
1894 (let* ((minibuffer-completion-table ctable)
1895 (minibuffer-completion-predicate cpred)
1896 (completion-extra-properties cprops)
1897 (result (concat prefix choice))
1898 (bounds (completion-boundaries
1899 result ctable cpred "")))
1900 ;; If the completion introduces a new field, then
1901 ;; completion is not finished.
1902 (completion--done result
1903 (if (eq (car bounds) (length result))
1904 'exact 'finished)))))))
1906 (display-completion-list completions))))
1907 nil))
1909 (defun minibuffer-hide-completions ()
1910 "Get rid of an out-of-date *Completions* buffer."
1911 ;; FIXME: We could/should use minibuffer-scroll-window here, but it
1912 ;; can also point to the minibuffer-parent-window, so it's a bit tricky.
1913 (let ((win (get-buffer-window "*Completions*" 0)))
1914 (if win (with-selected-window win (bury-buffer)))))
1916 (defun exit-minibuffer ()
1917 "Terminate this minibuffer argument."
1918 (interactive)
1919 ;; If the command that uses this has made modifications in the minibuffer,
1920 ;; we don't want them to cause deactivation of the mark in the original
1921 ;; buffer.
1922 ;; A better solution would be to make deactivate-mark buffer-local
1923 ;; (or to turn it into a list of buffers, ...), but in the mean time,
1924 ;; this should do the trick in most cases.
1925 (setq deactivate-mark nil)
1926 (throw 'exit nil))
1928 (defun self-insert-and-exit ()
1929 "Terminate minibuffer input."
1930 (interactive)
1931 (if (characterp last-command-event)
1932 (call-interactively 'self-insert-command)
1933 (ding))
1934 (exit-minibuffer))
1936 (defvar completion-in-region-functions nil
1937 "Wrapper hook around `completion--in-region'.
1938 \(See `with-wrapper-hook' for details about wrapper hooks.)")
1939 (make-obsolete-variable 'completion-in-region-functions
1940 'completion-in-region-function "24.4")
1942 (defvar completion-in-region-function #'completion--in-region
1943 "Function to perform the job of `completion-in-region'.
1944 The function is called with 4 arguments: START END COLLECTION PREDICATE.
1945 The arguments and expected return value are as specified for
1946 `completion-in-region'.")
1948 (defvar completion-in-region--data nil)
1950 (defvar completion-in-region-mode-predicate nil
1951 "Predicate to tell `completion-in-region-mode' when to exit.
1952 It is called with no argument and should return nil when
1953 `completion-in-region-mode' should exit (and hence pop down
1954 the *Completions* buffer).")
1956 (defvar completion-in-region-mode--predicate nil
1957 "Copy of the value of `completion-in-region-mode-predicate'.
1958 This holds the value `completion-in-region-mode-predicate' had when
1959 we entered `completion-in-region-mode'.")
1961 (defun completion-in-region (start end collection &optional predicate)
1962 "Complete the text between START and END using COLLECTION.
1963 Point needs to be somewhere between START and END.
1964 PREDICATE (a function called with no arguments) says when to exit.
1965 This calls the function that `completion-in-region-function' specifies
1966 \(passing the same four arguments that it received) to do the work,
1967 and returns whatever it does. The return value should be nil
1968 if there was no valid completion, else t."
1969 (cl-assert (<= start (point)) (<= (point) end))
1970 (funcall completion-in-region-function start end collection predicate))
1972 (defcustom read-file-name-completion-ignore-case
1973 (if (memq system-type '(ms-dos windows-nt darwin cygwin))
1974 t nil)
1975 "Non-nil means when reading a file name completion ignores case."
1976 :type 'boolean
1977 :version "22.1")
1979 (defun completion--in-region (start end collection &optional predicate)
1980 "Default function to use for `completion-in-region-function'.
1981 Its arguments and return value are as specified for `completion-in-region'.
1982 Also respects the obsolete wrapper hook `completion-in-region-functions'.
1983 \(See `with-wrapper-hook' for details about wrapper hooks.)"
1984 (subr--with-wrapper-hook-no-warnings
1985 ;; FIXME: Maybe we should use this hook to provide a "display
1986 ;; completions" operation as well.
1987 completion-in-region-functions (start end collection predicate)
1988 (let ((minibuffer-completion-table collection)
1989 (minibuffer-completion-predicate predicate))
1990 ;; HACK: if the text we are completing is already in a field, we
1991 ;; want the completion field to take priority (e.g. Bug#6830).
1992 (when completion-in-region-mode-predicate
1993 (setq completion-in-region--data
1994 `(,(if (markerp start) start (copy-marker start))
1995 ,(copy-marker end t) ,collection ,predicate))
1996 (completion-in-region-mode 1))
1997 (completion--in-region-1 start end))))
1999 (defvar completion-in-region-mode-map
2000 (let ((map (make-sparse-keymap)))
2001 ;; FIXME: Only works if completion-in-region-mode was activated via
2002 ;; completion-at-point called directly.
2003 (define-key map "\M-?" 'completion-help-at-point)
2004 (define-key map "\t" 'completion-at-point)
2005 map)
2006 "Keymap activated during `completion-in-region'.")
2008 ;; It is difficult to know when to exit completion-in-region-mode (i.e. hide
2009 ;; the *Completions*). Here's how previous packages did it:
2010 ;; - lisp-mode: never.
2011 ;; - comint: only do it if you hit SPC at the right time.
2012 ;; - pcomplete: pop it down on SPC or after some time-delay.
2013 ;; - semantic: use a post-command-hook check similar to this one.
2014 (defun completion-in-region--postch ()
2015 (or unread-command-events ;Don't pop down the completions in the middle of
2016 ;mouse-drag-region/mouse-set-point.
2017 (and completion-in-region--data
2018 (and (eq (marker-buffer (nth 0 completion-in-region--data))
2019 (current-buffer))
2020 (>= (point) (nth 0 completion-in-region--data))
2021 (<= (point)
2022 (save-excursion
2023 (goto-char (nth 1 completion-in-region--data))
2024 (line-end-position)))
2025 (funcall completion-in-region-mode--predicate)))
2026 (completion-in-region-mode -1)))
2028 ;; (defalias 'completion-in-region--prech 'completion-in-region--postch)
2030 (defvar completion-in-region-mode nil) ;Explicit defvar, i.s.o defcustom.
2032 (define-minor-mode completion-in-region-mode
2033 "Transient minor mode used during `completion-in-region'."
2034 :global t
2035 :group 'minibuffer
2036 ;; Prevent definition of a custom-variable since it makes no sense to
2037 ;; customize this variable.
2038 :variable completion-in-region-mode
2039 ;; (remove-hook 'pre-command-hook #'completion-in-region--prech)
2040 (remove-hook 'post-command-hook #'completion-in-region--postch)
2041 (setq minor-mode-overriding-map-alist
2042 (delq (assq 'completion-in-region-mode minor-mode-overriding-map-alist)
2043 minor-mode-overriding-map-alist))
2044 (if (null completion-in-region-mode)
2045 (progn
2046 (setq completion-in-region--data nil)
2047 (unless (equal "*Completions*" (buffer-name (window-buffer)))
2048 (minibuffer-hide-completions)))
2049 ;; (add-hook 'pre-command-hook #'completion-in-region--prech)
2050 (cl-assert completion-in-region-mode-predicate)
2051 (setq completion-in-region-mode--predicate
2052 completion-in-region-mode-predicate)
2053 (add-hook 'post-command-hook #'completion-in-region--postch)
2054 (push `(completion-in-region-mode . ,completion-in-region-mode-map)
2055 minor-mode-overriding-map-alist)))
2057 ;; Define-minor-mode added our keymap to minor-mode-map-alist, but we want it
2058 ;; on minor-mode-overriding-map-alist instead.
2059 (setq minor-mode-map-alist
2060 (delq (assq 'completion-in-region-mode minor-mode-map-alist)
2061 minor-mode-map-alist))
2063 (defvar completion-at-point-functions '(tags-completion-at-point-function)
2064 "Special hook to find the completion table for the entity at point.
2065 Each function on this hook is called in turn without any argument and
2066 should return either nil, meaning it is not applicable at point,
2067 or a function of no arguments to perform completion (discouraged),
2068 or a list of the form (START END COLLECTION . PROPS), where:
2069 START and END delimit the entity to complete and should include point,
2070 COLLECTION is the completion table to use to complete the entity, and
2071 PROPS is a property list for additional information.
2072 Currently supported properties are all the properties that can appear in
2073 `completion-extra-properties' plus:
2074 `:predicate' a predicate that completion candidates need to satisfy.
2075 `:exclusive' value of `no' means that if the completion table fails to
2076 match the text at point, then instead of reporting a completion
2077 failure, the completion should try the next completion function.
2078 As is the case with most hooks, the functions are responsible for
2079 preserving things like point and current buffer.
2081 NOTE: These functions should be cheap to run since they're sometimes
2082 run from `post-command-hook'; and they should ideally only choose
2083 which kind of completion table to use, and not pre-filter it based
2084 on the current text between START and END (e.g., they should not
2085 obey `completion-styles').")
2087 (defvar completion--capf-misbehave-funs nil
2088 "List of functions found on `completion-at-point-functions' that misbehave.
2089 These are functions that neither return completion data nor a completion
2090 function but instead perform completion right away.")
2091 (defvar completion--capf-safe-funs nil
2092 "List of well-behaved functions found on `completion-at-point-functions'.
2093 These are functions which return proper completion data rather than
2094 a completion function or god knows what else.")
2096 (defun completion--capf-wrapper (fun which)
2097 ;; FIXME: The safe/misbehave handling assumes that a given function will
2098 ;; always return the same kind of data, but this breaks down with functions
2099 ;; like comint-completion-at-point or mh-letter-completion-at-point, which
2100 ;; could be sometimes safe and sometimes misbehaving (and sometimes neither).
2101 (if (pcase which
2102 (`all t)
2103 (`safe (member fun completion--capf-safe-funs))
2104 (`optimist (not (member fun completion--capf-misbehave-funs))))
2105 (let ((res (funcall fun)))
2106 (cond
2107 ((and (consp res) (not (functionp res)))
2108 (unless (member fun completion--capf-safe-funs)
2109 (push fun completion--capf-safe-funs))
2110 (and (eq 'no (plist-get (nthcdr 3 res) :exclusive))
2111 ;; FIXME: Here we'd need to decide whether there are
2112 ;; valid completions against the current text. But this depends
2113 ;; on the actual completion UI (e.g. with the default completion
2114 ;; it depends on completion-style) ;-(
2115 ;; We approximate this result by checking whether prefix
2116 ;; completion might work, which means that non-prefix completion
2117 ;; will not work (or not right) for completion functions that
2118 ;; are non-exclusive.
2119 (null (try-completion (buffer-substring-no-properties
2120 (car res) (point))
2121 (nth 2 res)
2122 (plist-get (nthcdr 3 res) :predicate)))
2123 (setq res nil)))
2124 ((not (or (listp res) (functionp res)))
2125 (unless (member fun completion--capf-misbehave-funs)
2126 (message
2127 "Completion function %S uses a deprecated calling convention" fun)
2128 (push fun completion--capf-misbehave-funs))))
2129 (if res (cons fun res)))))
2131 (defun completion-at-point ()
2132 "Perform completion on the text around point.
2133 The completion method is determined by `completion-at-point-functions'."
2134 (interactive)
2135 (let ((res (run-hook-wrapped 'completion-at-point-functions
2136 #'completion--capf-wrapper 'all)))
2137 (pcase res
2138 (`(,_ . ,(and (pred functionp) f)) (funcall f))
2139 (`(,hookfun . (,start ,end ,collection . ,plist))
2140 (unless (markerp start) (setq start (copy-marker start)))
2141 (let* ((completion-extra-properties plist)
2142 (completion-in-region-mode-predicate
2143 (lambda ()
2144 ;; We're still in the same completion field.
2145 (let ((newstart (car-safe (funcall hookfun))))
2146 (and newstart (= newstart start))))))
2147 (completion-in-region start end collection
2148 (plist-get plist :predicate))))
2149 ;; Maybe completion already happened and the function returned t.
2151 (when (cdr res)
2152 (message "Warning: %S failed to return valid completion data!"
2153 (car res)))
2154 (cdr res)))))
2156 (defun completion-help-at-point ()
2157 "Display the completions on the text around point.
2158 The completion method is determined by `completion-at-point-functions'."
2159 (interactive)
2160 (let ((res (run-hook-wrapped 'completion-at-point-functions
2161 ;; Ignore misbehaving functions.
2162 #'completion--capf-wrapper 'optimist)))
2163 (pcase res
2164 (`(,_ . ,(and (pred functionp) f))
2165 (message "Don't know how to show completions for %S" f))
2166 (`(,hookfun . (,start ,end ,collection . ,plist))
2167 (unless (markerp start) (setq start (copy-marker start)))
2168 (let* ((minibuffer-completion-table collection)
2169 (minibuffer-completion-predicate (plist-get plist :predicate))
2170 (completion-extra-properties plist)
2171 (completion-in-region-mode-predicate
2172 (lambda ()
2173 ;; We're still in the same completion field.
2174 (let ((newstart (car-safe (funcall hookfun))))
2175 (and newstart (= newstart start))))))
2176 ;; FIXME: We should somehow (ab)use completion-in-region-function or
2177 ;; introduce a corresponding hook (plus another for word-completion,
2178 ;; and another for force-completion, maybe?).
2179 (setq completion-in-region--data
2180 `(,start ,(copy-marker end t) ,collection
2181 ,(plist-get plist :predicate)))
2182 (completion-in-region-mode 1)
2183 (minibuffer-completion-help start end)))
2184 (`(,hookfun . ,_)
2185 ;; The hook function already performed completion :-(
2186 ;; Not much we can do at this point.
2187 (message "%s already performed completion!" hookfun)
2188 nil)
2189 (_ (message "Nothing to complete at point")))))
2191 ;;; Key bindings.
2193 (let ((map minibuffer-local-map))
2194 (define-key map "\C-g" 'abort-recursive-edit)
2195 (define-key map "\r" 'exit-minibuffer)
2196 (define-key map "\n" 'exit-minibuffer))
2198 (defvar minibuffer-local-completion-map
2199 (let ((map (make-sparse-keymap)))
2200 (set-keymap-parent map minibuffer-local-map)
2201 (define-key map "\t" 'minibuffer-complete)
2202 ;; M-TAB is already abused for many other purposes, so we should find
2203 ;; another binding for it.
2204 ;; (define-key map "\e\t" 'minibuffer-force-complete)
2205 (define-key map " " 'minibuffer-complete-word)
2206 (define-key map "?" 'minibuffer-completion-help)
2207 map)
2208 "Local keymap for minibuffer input with completion.")
2210 (defvar minibuffer-local-must-match-map
2211 (let ((map (make-sparse-keymap)))
2212 (set-keymap-parent map minibuffer-local-completion-map)
2213 (define-key map "\r" 'minibuffer-complete-and-exit)
2214 (define-key map "\n" 'minibuffer-complete-and-exit)
2215 map)
2216 "Local keymap for minibuffer input with completion, for exact match.")
2218 (defvar minibuffer-local-filename-completion-map
2219 (let ((map (make-sparse-keymap)))
2220 (define-key map " " nil)
2221 map)
2222 "Local keymap for minibuffer input with completion for filenames.
2223 Gets combined either with `minibuffer-local-completion-map' or
2224 with `minibuffer-local-must-match-map'.")
2226 (define-obsolete-variable-alias 'minibuffer-local-must-match-filename-map
2227 'minibuffer-local-filename-must-match-map "23.1")
2228 (defvar minibuffer-local-filename-must-match-map (make-sparse-keymap))
2229 (make-obsolete-variable 'minibuffer-local-filename-must-match-map nil "24.1")
2231 (let ((map minibuffer-local-ns-map))
2232 (define-key map " " 'exit-minibuffer)
2233 (define-key map "\t" 'exit-minibuffer)
2234 (define-key map "?" 'self-insert-and-exit))
2236 (defvar minibuffer-inactive-mode-map
2237 (let ((map (make-keymap)))
2238 (suppress-keymap map)
2239 (define-key map "e" 'find-file-other-frame)
2240 (define-key map "f" 'find-file-other-frame)
2241 (define-key map "b" 'switch-to-buffer-other-frame)
2242 (define-key map "i" 'info)
2243 (define-key map "m" 'mail)
2244 (define-key map "n" 'make-frame)
2245 (define-key map [mouse-1] 'view-echo-area-messages)
2246 ;; So the global down-mouse-1 binding doesn't clutter the execution of the
2247 ;; above mouse-1 binding.
2248 (define-key map [down-mouse-1] #'ignore)
2249 map)
2250 "Keymap for use in the minibuffer when it is not active.
2251 The non-mouse bindings in this keymap can only be used in minibuffer-only
2252 frames, since the minibuffer can normally not be selected when it is
2253 not active.")
2255 (define-derived-mode minibuffer-inactive-mode nil "InactiveMinibuffer"
2256 :abbrev-table nil ;abbrev.el is not loaded yet during dump.
2257 ;; Note: this major mode is called from minibuf.c.
2258 "Major mode to use in the minibuffer when it is not active.
2259 This is only used when the minibuffer area has no active minibuffer.")
2261 ;;; Completion tables.
2263 (defun minibuffer--double-dollars (str)
2264 ;; Reuse the actual "$" from the string to preserve any text-property it
2265 ;; might have, such as `face'.
2266 (replace-regexp-in-string "\\$" (lambda (dollar) (concat dollar dollar))
2267 str))
2269 (defun minibuffer-maybe-quote-filename (filename)
2270 "Protect FILENAME from `substitute-in-file-name', as needed.
2271 Useful to give the user default values that won't be substituted."
2272 (if (and (not (file-name-quoted-p filename))
2273 (file-name-absolute-p filename)
2274 (string-match-p (if (memq system-type '(windows-nt ms-dos))
2275 "[/\\\\]~" "/~")
2276 (file-local-name filename)))
2277 (file-name-quote filename)
2278 (minibuffer--double-dollars filename)))
2280 (defun completion--make-envvar-table ()
2281 (mapcar (lambda (enventry)
2282 (substring enventry 0 (string-match-p "=" enventry)))
2283 process-environment))
2285 (defconst completion--embedded-envvar-re
2286 ;; We can't reuse env--substitute-vars-regexp because we need to match only
2287 ;; potentially-unfinished envvars at end of string.
2288 (concat "\\(?:^\\|[^$]\\(?:\\$\\$\\)*\\)"
2289 "$\\([[:alnum:]_]*\\|{\\([^}]*\\)\\)\\'"))
2291 (defun completion--embedded-envvar-table (string _pred action)
2292 "Completion table for envvars embedded in a string.
2293 The envvar syntax (and escaping) rules followed by this table are the
2294 same as `substitute-in-file-name'."
2295 ;; We ignore `pred', because the predicates passed to us via
2296 ;; read-file-name-internal are not 100% correct and fail here:
2297 ;; e.g. we get predicates like file-directory-p there, whereas the filename
2298 ;; completed needs to be passed through substitute-in-file-name before it
2299 ;; can be passed to file-directory-p.
2300 (when (string-match completion--embedded-envvar-re string)
2301 (let* ((beg (or (match-beginning 2) (match-beginning 1)))
2302 (table (completion--make-envvar-table))
2303 (prefix (substring string 0 beg)))
2304 (cond
2305 ((eq action 'lambda)
2306 ;; This table is expected to be used in conjunction with some
2307 ;; other table that provides the "main" completion. Let the
2308 ;; other table handle the test-completion case.
2309 nil)
2310 ((or (eq (car-safe action) 'boundaries) (eq action 'metadata))
2311 ;; Only return boundaries/metadata if there's something to complete,
2312 ;; since otherwise when we're used in
2313 ;; completion-table-in-turn, we could return boundaries and
2314 ;; let some subsequent table return a list of completions.
2315 ;; FIXME: Maybe it should rather be fixed in
2316 ;; completion-table-in-turn instead, but it's difficult to
2317 ;; do it efficiently there.
2318 (when (try-completion (substring string beg) table nil)
2319 ;; Compute the boundaries of the subfield to which this
2320 ;; completion applies.
2321 (if (eq action 'metadata)
2322 '(metadata (category . environment-variable))
2323 (let ((suffix (cdr action)))
2324 `(boundaries
2325 ,(or (match-beginning 2) (match-beginning 1))
2326 . ,(when (string-match "[^[:alnum:]_]" suffix)
2327 (match-beginning 0)))))))
2329 (if (eq (aref string (1- beg)) ?{)
2330 (setq table (apply-partially 'completion-table-with-terminator
2331 "}" table)))
2332 ;; Even if file-name completion is case-insensitive, we want
2333 ;; envvar completion to be case-sensitive.
2334 (let ((completion-ignore-case nil))
2335 (completion-table-with-context
2336 prefix table (substring string beg) nil action)))))))
2338 (defun completion-file-name-table (string pred action)
2339 "Completion table for file names."
2340 (condition-case nil
2341 (cond
2342 ((eq action 'metadata) '(metadata (category . file)))
2343 ((string-match-p "\\`~[^/\\]*\\'" string)
2344 (completion-table-with-context "~"
2345 (mapcar (lambda (u) (concat u "/"))
2346 (system-users))
2347 (substring string 1)
2348 pred action))
2349 ((eq (car-safe action) 'boundaries)
2350 (let ((start (length (file-name-directory string)))
2351 (end (string-match-p "/" (cdr action))))
2352 `(boundaries
2353 ;; if `string' is "C:" in w32, (file-name-directory string)
2354 ;; returns "C:/", so `start' is 3 rather than 2.
2355 ;; Not quite sure what is The Right Fix, but clipping it
2356 ;; back to 2 will work for this particular case. We'll
2357 ;; see if we can come up with a better fix when we bump
2358 ;; into more such problematic cases.
2359 ,(min start (length string)) . ,end)))
2361 ((eq action 'lambda)
2362 (if (zerop (length string))
2363 nil ;Not sure why it's here, but it probably doesn't harm.
2364 (funcall (or pred 'file-exists-p) string)))
2367 (let* ((name (file-name-nondirectory string))
2368 (specdir (file-name-directory string))
2369 (realdir (or specdir default-directory)))
2371 (cond
2372 ((null action)
2373 (let ((comp (file-name-completion name realdir pred)))
2374 (if (stringp comp)
2375 (concat specdir comp)
2376 comp)))
2378 ((eq action t)
2379 (let ((all (file-name-all-completions name realdir)))
2381 ;; Check the predicate, if necessary.
2382 (unless (memq pred '(nil file-exists-p))
2383 (let ((comp ())
2384 (pred
2385 (if (eq pred 'file-directory-p)
2386 ;; Brute-force speed up for directory checking:
2387 ;; Discard strings which don't end in a slash.
2388 (lambda (s)
2389 (let ((len (length s)))
2390 (and (> len 0) (eq (aref s (1- len)) ?/))))
2391 ;; Must do it the hard (and slow) way.
2392 pred)))
2393 (let ((default-directory (expand-file-name realdir)))
2394 (dolist (tem all)
2395 (if (funcall pred tem) (push tem comp))))
2396 (setq all (nreverse comp))))
2398 all))))))
2399 (file-error nil))) ;PCM often calls with invalid directories.
2401 (defvar read-file-name-predicate nil
2402 "Current predicate used by `read-file-name-internal'.")
2403 (make-obsolete-variable 'read-file-name-predicate
2404 "use the regular PRED argument" "23.2")
2406 (defun completion--sifn-requote (upos qstr)
2407 ;; We're looking for `qpos' such that:
2408 ;; (equal (substring (substitute-in-file-name qstr) 0 upos)
2409 ;; (substitute-in-file-name (substring qstr 0 qpos)))
2410 ;; Big problem here: we have to reverse engineer substitute-in-file-name to
2411 ;; find the position corresponding to UPOS in QSTR, but
2412 ;; substitute-in-file-name can do anything, depending on file-name-handlers.
2413 ;; substitute-in-file-name does the following kind of things:
2414 ;; - expand env-var references.
2415 ;; - turn backslashes into slashes.
2416 ;; - truncate some prefix of the input.
2417 ;; - rewrite some prefix.
2418 ;; Some of these operations are written in external libraries and we'd rather
2419 ;; not hard code any assumptions here about what they actually do. IOW, we
2420 ;; want to treat substitute-in-file-name as a black box, as much as possible.
2421 ;; Kind of like in rfn-eshadow-update-overlay, only worse.
2422 ;; Example of things we need to handle:
2423 ;; - Tramp (substitute-in-file-name "/foo:~/bar//baz") => "/scpc:foo:/baz".
2424 ;; - Cygwin (substitute-in-file-name "C:\bin") => "/usr/bin"
2425 ;; (substitute-in-file-name "C:\") => "/"
2426 ;; (substitute-in-file-name "C:\bi") => "/bi"
2427 (let* ((ustr (substitute-in-file-name qstr))
2428 (uprefix (substring ustr 0 upos))
2429 qprefix)
2430 ;; Main assumption: nothing after qpos should affect the text before upos,
2431 ;; so we can work our way backward from the end of qstr, one character
2432 ;; at a time.
2433 ;; Second assumptions: If qpos is far from the end this can be a bit slow,
2434 ;; so we speed it up by doing a first loop that skips a word at a time.
2435 ;; This word-sized loop is careful not to cut in the middle of env-vars.
2436 (while (let ((boundary (string-match "\\(\\$+{?\\)?\\w+\\W*\\'" qstr)))
2437 (and boundary
2438 (progn
2439 (setq qprefix (substring qstr 0 boundary))
2440 (string-prefix-p uprefix
2441 (substitute-in-file-name qprefix)))))
2442 (setq qstr qprefix))
2443 (let ((qpos (length qstr)))
2444 (while (and (> qpos 0)
2445 (string-prefix-p uprefix
2446 (substitute-in-file-name
2447 (substring qstr 0 (1- qpos)))))
2448 (setq qpos (1- qpos)))
2449 (cons qpos #'minibuffer-maybe-quote-filename))))
2451 (defalias 'completion--file-name-table
2452 (completion-table-with-quoting #'completion-file-name-table
2453 #'substitute-in-file-name
2454 #'completion--sifn-requote)
2455 "Internal subroutine for `read-file-name'. Do not call this.
2456 This is a completion table for file names, like `completion-file-name-table'
2457 except that it passes the file name through `substitute-in-file-name'.")
2459 (defalias 'read-file-name-internal
2460 (completion-table-in-turn #'completion--embedded-envvar-table
2461 #'completion--file-name-table)
2462 "Internal subroutine for `read-file-name'. Do not call this.")
2464 (defvar read-file-name-function 'read-file-name-default
2465 "The function called by `read-file-name' to do its work.
2466 It should accept the same arguments as `read-file-name'.")
2468 (defcustom insert-default-directory t
2469 "Non-nil means when reading a filename start with default dir in minibuffer.
2471 When the initial minibuffer contents show a name of a file or a directory,
2472 typing RETURN without editing the initial contents is equivalent to typing
2473 the default file name.
2475 If this variable is non-nil, the minibuffer contents are always
2476 initially non-empty, and typing RETURN without editing will fetch the
2477 default name, if one is provided. Note however that this default name
2478 is not necessarily the same as initial contents inserted in the minibuffer,
2479 if the initial contents is just the default directory.
2481 If this variable is nil, the minibuffer often starts out empty. In
2482 that case you may have to explicitly fetch the next history element to
2483 request the default name; typing RETURN without editing will leave
2484 the minibuffer empty.
2486 For some commands, exiting with an empty minibuffer has a special meaning,
2487 such as making the current buffer visit no file in the case of
2488 `set-visited-file-name'."
2489 :type 'boolean)
2491 ;; Not always defined, but only called if next-read-file-uses-dialog-p says so.
2492 (declare-function x-file-dialog "xfns.c"
2493 (prompt dir &optional default-filename mustmatch only-dir-p))
2495 (defun read-file-name--defaults (&optional dir initial)
2496 (let ((default
2497 (cond
2498 ;; With non-nil `initial', use `dir' as the first default.
2499 ;; Essentially, this mean reversing the normal order of the
2500 ;; current directory name and the current file name, i.e.
2501 ;; 1. with normal file reading:
2502 ;; 1.1. initial input is the current directory
2503 ;; 1.2. the first default is the current file name
2504 ;; 2. with non-nil `initial' (e.g. for `find-alternate-file'):
2505 ;; 2.2. initial input is the current file name
2506 ;; 2.1. the first default is the current directory
2507 (initial (abbreviate-file-name dir))
2508 ;; In file buffers, try to get the current file name
2509 (buffer-file-name
2510 (abbreviate-file-name buffer-file-name))))
2511 (file-name-at-point
2512 (run-hook-with-args-until-success 'file-name-at-point-functions)))
2513 (when file-name-at-point
2514 (setq default (delete-dups
2515 (delete "" (delq nil (list file-name-at-point default))))))
2516 ;; Append new defaults to the end of existing `minibuffer-default'.
2517 (append
2518 (if (listp minibuffer-default) minibuffer-default (list minibuffer-default))
2519 (if (listp default) default (list default)))))
2521 (defun read-file-name (prompt &optional dir default-filename mustmatch initial predicate)
2522 "Read file name, prompting with PROMPT and completing in directory DIR.
2523 The return value is not expanded---you must call `expand-file-name' yourself.
2525 DIR is the directory to use for completing relative file names.
2526 It should be an absolute directory name, or nil (which means the
2527 current buffer's value of `default-directory').
2529 DEFAULT-FILENAME specifies the default file name to return if the
2530 user exits the minibuffer with the same non-empty string inserted
2531 by this function. If DEFAULT-FILENAME is a string, that serves
2532 as the default. If DEFAULT-FILENAME is a list of strings, the
2533 first string is the default. If DEFAULT-FILENAME is omitted or
2534 nil, then if INITIAL is non-nil, the default is DIR combined with
2535 INITIAL; otherwise, if the current buffer is visiting a file,
2536 that file serves as the default; otherwise, the default is simply
2537 the string inserted into the minibuffer.
2539 If the user exits with an empty minibuffer, return an empty
2540 string. (This happens only if the user erases the pre-inserted
2541 contents, or if `insert-default-directory' is nil.)
2543 Fourth arg MUSTMATCH can take the following values:
2544 - nil means that the user can exit with any input.
2545 - t means that the user is not allowed to exit unless
2546 the input is (or completes to) an existing file.
2547 - `confirm' means that the user can exit with any input, but she needs
2548 to confirm her choice if the input is not an existing file.
2549 - `confirm-after-completion' means that the user can exit with any
2550 input, but she needs to confirm her choice if she called
2551 `minibuffer-complete' right before `minibuffer-complete-and-exit'
2552 and the input is not an existing file.
2553 - anything else behaves like t except that typing RET does not exit if it
2554 does non-null completion.
2556 Fifth arg INITIAL specifies text to start with.
2558 Sixth arg PREDICATE, if non-nil, should be a function of one
2559 argument; then a file name is considered an acceptable completion
2560 alternative only if PREDICATE returns non-nil with the file name
2561 as its argument.
2563 If this command was invoked with the mouse, use a graphical file
2564 dialog if `use-dialog-box' is non-nil, and the window system or X
2565 toolkit in use provides a file dialog box, and DIR is not a
2566 remote file. For graphical file dialogs, any of the special values
2567 of MUSTMATCH `confirm' and `confirm-after-completion' are
2568 treated as equivalent to nil. Some graphical file dialogs respect
2569 a MUSTMATCH value of t, and some do not (or it only has a cosmetic
2570 effect, and does not actually prevent the user from entering a
2571 non-existent file).
2573 See also `read-file-name-completion-ignore-case'
2574 and `read-file-name-function'."
2575 ;; If x-gtk-use-old-file-dialog = t (xg_get_file_with_selection),
2576 ;; then MUSTMATCH is enforced. But with newer Gtk
2577 ;; (xg_get_file_with_chooser), it only has a cosmetic effect.
2578 ;; The user can still type a non-existent file name.
2579 (funcall (or read-file-name-function #'read-file-name-default)
2580 prompt dir default-filename mustmatch initial predicate))
2582 (defvar minibuffer-local-filename-syntax
2583 (let ((table (make-syntax-table))
2584 (punctuation (car (string-to-syntax "."))))
2585 ;; Convert all punctuation entries to symbol.
2586 (map-char-table (lambda (c syntax)
2587 (when (eq (car syntax) punctuation)
2588 (modify-syntax-entry c "_" table)))
2589 table)
2590 (mapc
2591 (lambda (c)
2592 (modify-syntax-entry c "." table))
2593 '(?/ ?: ?\\))
2594 table)
2595 "Syntax table used when reading a file name in the minibuffer.")
2597 ;; minibuffer-completing-file-name is a variable used internally in minibuf.c
2598 ;; to determine whether to use minibuffer-local-filename-completion-map or
2599 ;; minibuffer-local-completion-map. It shouldn't be exported to Elisp.
2600 ;; FIXME: Actually, it is also used in rfn-eshadow.el we'd otherwise have to
2601 ;; use (eq minibuffer-completion-table #'read-file-name-internal), which is
2602 ;; probably even worse. Maybe We should add some read-file-name-setup-hook
2603 ;; instead, but for now, let's keep this non-obsolete.
2604 ;;(make-obsolete-variable 'minibuffer-completing-file-name nil "future" 'get)
2606 (defun read-file-name-default (prompt &optional dir default-filename mustmatch initial predicate)
2607 "Default method for reading file names.
2608 See `read-file-name' for the meaning of the arguments."
2609 (unless dir (setq dir (or default-directory "~/")))
2610 (unless (file-name-absolute-p dir) (setq dir (expand-file-name dir)))
2611 (unless default-filename
2612 (setq default-filename (if initial (expand-file-name initial dir)
2613 buffer-file-name)))
2614 ;; If dir starts with user's homedir, change that to ~.
2615 (setq dir (abbreviate-file-name dir))
2616 ;; Likewise for default-filename.
2617 (if default-filename
2618 (setq default-filename
2619 (if (consp default-filename)
2620 (mapcar 'abbreviate-file-name default-filename)
2621 (abbreviate-file-name default-filename))))
2622 (let ((insdef (cond
2623 ((and insert-default-directory (stringp dir))
2624 (if initial
2625 (cons (minibuffer-maybe-quote-filename (concat dir initial))
2626 (length (minibuffer-maybe-quote-filename dir)))
2627 (minibuffer-maybe-quote-filename dir)))
2628 (initial (cons (minibuffer-maybe-quote-filename initial) 0)))))
2630 (let ((completion-ignore-case read-file-name-completion-ignore-case)
2631 (minibuffer-completing-file-name t)
2632 (pred (or predicate 'file-exists-p))
2633 (add-to-history nil))
2635 (let* ((val
2636 (if (or (not (next-read-file-uses-dialog-p))
2637 ;; Graphical file dialogs can't handle remote
2638 ;; files (Bug#99).
2639 (file-remote-p dir))
2640 ;; We used to pass `dir' to `read-file-name-internal' by
2641 ;; abusing the `predicate' argument. It's better to
2642 ;; just use `default-directory', but in order to avoid
2643 ;; changing `default-directory' in the current buffer,
2644 ;; we don't let-bind it.
2645 (let ((dir (file-name-as-directory
2646 (expand-file-name dir))))
2647 (minibuffer-with-setup-hook
2648 (lambda ()
2649 (setq default-directory dir)
2650 ;; When the first default in `minibuffer-default'
2651 ;; duplicates initial input `insdef',
2652 ;; reset `minibuffer-default' to nil.
2653 (when (equal (or (car-safe insdef) insdef)
2654 (or (car-safe minibuffer-default)
2655 minibuffer-default))
2656 (setq minibuffer-default
2657 (cdr-safe minibuffer-default)))
2658 ;; On the first request on `M-n' fill
2659 ;; `minibuffer-default' with a list of defaults
2660 ;; relevant for file-name reading.
2661 (set (make-local-variable 'minibuffer-default-add-function)
2662 (lambda ()
2663 (with-current-buffer
2664 (window-buffer (minibuffer-selected-window))
2665 (read-file-name--defaults dir initial))))
2666 (set-syntax-table minibuffer-local-filename-syntax))
2667 (completing-read prompt 'read-file-name-internal
2668 pred mustmatch insdef
2669 'file-name-history default-filename)))
2670 ;; If DEFAULT-FILENAME not supplied and DIR contains
2671 ;; a file name, split it.
2672 (let ((file (file-name-nondirectory dir))
2673 ;; When using a dialog, revert to nil and non-nil
2674 ;; interpretation of mustmatch. confirm options
2675 ;; need to be interpreted as nil, otherwise
2676 ;; it is impossible to create new files using
2677 ;; dialogs with the default settings.
2678 (dialog-mustmatch
2679 (not (memq mustmatch
2680 '(nil confirm confirm-after-completion)))))
2681 (when (and (not default-filename)
2682 (not (zerop (length file))))
2683 (setq default-filename file)
2684 (setq dir (file-name-directory dir)))
2685 (when default-filename
2686 (setq default-filename
2687 (expand-file-name (if (consp default-filename)
2688 (car default-filename)
2689 default-filename)
2690 dir)))
2691 (setq add-to-history t)
2692 (x-file-dialog prompt dir default-filename
2693 dialog-mustmatch
2694 (eq predicate 'file-directory-p)))))
2696 (replace-in-history (eq (car-safe file-name-history) val)))
2697 ;; If completing-read returned the inserted default string itself
2698 ;; (rather than a new string with the same contents),
2699 ;; it has to mean that the user typed RET with the minibuffer empty.
2700 ;; In that case, we really want to return ""
2701 ;; so that commands such as set-visited-file-name can distinguish.
2702 (when (consp default-filename)
2703 (setq default-filename (car default-filename)))
2704 (when (eq val default-filename)
2705 ;; In this case, completing-read has not added an element
2706 ;; to the history. Maybe we should.
2707 (if (not replace-in-history)
2708 (setq add-to-history t))
2709 (setq val ""))
2710 (unless val (error "No file name specified"))
2712 (if (and default-filename
2713 (string-equal val (if (consp insdef) (car insdef) insdef)))
2714 (setq val default-filename))
2715 (setq val (substitute-in-file-name val))
2717 (if replace-in-history
2718 ;; Replace what Fcompleting_read added to the history
2719 ;; with what we will actually return. As an exception,
2720 ;; if that's the same as the second item in
2721 ;; file-name-history, it's really a repeat (Bug#4657).
2722 (let ((val1 (minibuffer-maybe-quote-filename val)))
2723 (if history-delete-duplicates
2724 (setcdr file-name-history
2725 (delete val1 (cdr file-name-history))))
2726 (if (string= val1 (cadr file-name-history))
2727 (pop file-name-history)
2728 (setcar file-name-history val1)))
2729 (if add-to-history
2730 ;; Add the value to the history--but not if it matches
2731 ;; the last value already there.
2732 (let ((val1 (minibuffer-maybe-quote-filename val)))
2733 (unless (and (consp file-name-history)
2734 (equal (car file-name-history) val1))
2735 (setq file-name-history
2736 (cons val1
2737 (if history-delete-duplicates
2738 (delete val1 file-name-history)
2739 file-name-history)))))))
2740 val))))
2742 (defun internal-complete-buffer-except (&optional buffer)
2743 "Perform completion on all buffers excluding BUFFER.
2744 BUFFER nil or omitted means use the current buffer.
2745 Like `internal-complete-buffer', but removes BUFFER from the completion list."
2746 (let ((except (if (stringp buffer) buffer (buffer-name buffer))))
2747 (apply-partially 'completion-table-with-predicate
2748 'internal-complete-buffer
2749 (lambda (name)
2750 (not (equal (if (consp name) (car name) name) except)))
2751 nil)))
2753 ;;; Old-style completion, used in Emacs-21 and Emacs-22.
2755 (defun completion-emacs21-try-completion (string table pred _point)
2756 (let ((completion (try-completion string table pred)))
2757 (if (stringp completion)
2758 (cons completion (length completion))
2759 completion)))
2761 (defun completion-emacs21-all-completions (string table pred _point)
2762 (completion-hilit-commonality
2763 (all-completions string table pred)
2764 (length string)
2765 (car (completion-boundaries string table pred ""))))
2767 (defun completion-emacs22-try-completion (string table pred point)
2768 (let ((suffix (substring string point))
2769 (completion (try-completion (substring string 0 point) table pred)))
2770 (if (not (stringp completion))
2771 completion
2772 ;; Merge a trailing / in completion with a / after point.
2773 ;; We used to only do it for word completion, but it seems to make
2774 ;; sense for all completions.
2775 ;; Actually, claiming this feature was part of Emacs-22 completion
2776 ;; is pushing it a bit: it was only done in minibuffer-completion-word,
2777 ;; which was (by default) not bound during file completion, where such
2778 ;; slashes are most likely to occur.
2779 (if (and (not (zerop (length completion)))
2780 (eq ?/ (aref completion (1- (length completion))))
2781 (not (zerop (length suffix)))
2782 (eq ?/ (aref suffix 0)))
2783 ;; This leaves point after the / .
2784 (setq suffix (substring suffix 1)))
2785 (cons (concat completion suffix) (length completion)))))
2787 (defun completion-emacs22-all-completions (string table pred point)
2788 (let ((beforepoint (substring string 0 point)))
2789 (completion-hilit-commonality
2790 (all-completions beforepoint table pred)
2791 point
2792 (car (completion-boundaries beforepoint table pred "")))))
2794 ;;; Basic completion.
2796 (defun completion--merge-suffix (completion point suffix)
2797 "Merge end of COMPLETION with beginning of SUFFIX.
2798 Simple generalization of the \"merge trailing /\" done in Emacs-22.
2799 Return the new suffix."
2800 (if (and (not (zerop (length suffix)))
2801 (string-match "\\(.+\\)\n\\1" (concat completion "\n" suffix)
2802 ;; Make sure we don't compress things to less
2803 ;; than we started with.
2804 point)
2805 ;; Just make sure we didn't match some other \n.
2806 (eq (match-end 1) (length completion)))
2807 (substring suffix (- (match-end 1) (match-beginning 1)))
2808 ;; Nothing to merge.
2809 suffix))
2811 (defun completion-basic--pattern (beforepoint afterpoint bounds)
2812 (delete
2813 "" (list (substring beforepoint (car bounds))
2814 'point
2815 (substring afterpoint 0 (cdr bounds)))))
2817 (defun completion-basic-try-completion (string table pred point)
2818 (let* ((beforepoint (substring string 0 point))
2819 (afterpoint (substring string point))
2820 (bounds (completion-boundaries beforepoint table pred afterpoint)))
2821 (if (zerop (cdr bounds))
2822 ;; `try-completion' may return a subtly different result
2823 ;; than `all+merge', so try to use it whenever possible.
2824 (let ((completion (try-completion beforepoint table pred)))
2825 (if (not (stringp completion))
2826 completion
2827 (cons
2828 (concat completion
2829 (completion--merge-suffix completion point afterpoint))
2830 (length completion))))
2831 (let* ((suffix (substring afterpoint (cdr bounds)))
2832 (prefix (substring beforepoint 0 (car bounds)))
2833 (pattern (delete
2834 "" (list (substring beforepoint (car bounds))
2835 'point
2836 (substring afterpoint 0 (cdr bounds)))))
2837 (all (completion-pcm--all-completions prefix pattern table pred)))
2838 (if minibuffer-completing-file-name
2839 (setq all (completion-pcm--filename-try-filter all)))
2840 (completion-pcm--merge-try pattern all prefix suffix)))))
2842 (defun completion-basic-all-completions (string table pred point)
2843 (let* ((beforepoint (substring string 0 point))
2844 (afterpoint (substring string point))
2845 (bounds (completion-boundaries beforepoint table pred afterpoint))
2846 ;; (suffix (substring afterpoint (cdr bounds)))
2847 (prefix (substring beforepoint 0 (car bounds)))
2848 (pattern (delete
2849 "" (list (substring beforepoint (car bounds))
2850 'point
2851 (substring afterpoint 0 (cdr bounds)))))
2852 (all (completion-pcm--all-completions prefix pattern table pred)))
2853 (completion-hilit-commonality all point (car bounds))))
2855 ;;; Partial-completion-mode style completion.
2857 (defvar completion-pcm--delim-wild-regex nil
2858 "Regular expression matching delimiters controlling the partial-completion.
2859 Typically, this regular expression simply matches a delimiter, meaning
2860 that completion can add something at (match-beginning 0), but if it has
2861 a submatch 1, then completion can add something at (match-end 1).
2862 This is used when the delimiter needs to be of size zero (e.g. the transition
2863 from lowercase to uppercase characters).")
2865 (defun completion-pcm--prepare-delim-re (delims)
2866 (setq completion-pcm--delim-wild-regex (concat "[" delims "*]")))
2868 (defcustom completion-pcm-word-delimiters "-_./:| "
2869 "A string of characters treated as word delimiters for completion.
2870 Some arcane rules:
2871 If `]' is in this string, it must come first.
2872 If `^' is in this string, it must not come first.
2873 If `-' is in this string, it must come first or right after `]'.
2874 In other words, if S is this string, then `[S]' must be a valid Emacs regular
2875 expression (not containing character ranges like `a-z')."
2876 :set (lambda (symbol value)
2877 (set-default symbol value)
2878 ;; Refresh other vars.
2879 (completion-pcm--prepare-delim-re value))
2880 :initialize 'custom-initialize-reset
2881 :type 'string)
2883 (defcustom completion-pcm-complete-word-inserts-delimiters nil
2884 "Treat the SPC or - inserted by `minibuffer-complete-word' as delimiters.
2885 Those chars are treated as delimiters if this variable is non-nil.
2886 I.e. if non-nil, M-x SPC will just insert a \"-\" in the minibuffer, whereas
2887 if nil, it will list all possible commands in *Completions* because none of
2888 the commands start with a \"-\" or a SPC."
2889 :version "24.1"
2890 :type 'boolean)
2892 (defun completion-pcm--pattern-trivial-p (pattern)
2893 (and (stringp (car pattern))
2894 ;; It can be followed by `point' and "" and still be trivial.
2895 (let ((trivial t))
2896 (dolist (elem (cdr pattern))
2897 (unless (member elem '(point ""))
2898 (setq trivial nil)))
2899 trivial)))
2901 (defun completion-pcm--string->pattern (string &optional point)
2902 "Split STRING into a pattern.
2903 A pattern is a list where each element is either a string
2904 or a symbol, see `completion-pcm--merge-completions'."
2905 (if (and point (< point (length string)))
2906 (let ((prefix (substring string 0 point))
2907 (suffix (substring string point)))
2908 (append (completion-pcm--string->pattern prefix)
2909 '(point)
2910 (completion-pcm--string->pattern suffix)))
2911 (let* ((pattern nil)
2912 (p 0)
2913 (p0 p)
2914 (pending nil))
2916 (while (and (setq p (string-match completion-pcm--delim-wild-regex
2917 string p))
2918 (or completion-pcm-complete-word-inserts-delimiters
2919 ;; If the char was added by minibuffer-complete-word,
2920 ;; then don't treat it as a delimiter, otherwise
2921 ;; "M-x SPC" ends up inserting a "-" rather than listing
2922 ;; all completions.
2923 (not (get-text-property p 'completion-try-word string))))
2924 ;; Usually, completion-pcm--delim-wild-regex matches a delimiter,
2925 ;; meaning that something can be added *before* it, but it can also
2926 ;; match a prefix and postfix, in which case something can be added
2927 ;; in-between (e.g. match [[:lower:]][[:upper:]]).
2928 ;; This is determined by the presence of a submatch-1 which delimits
2929 ;; the prefix.
2930 (if (match-end 1) (setq p (match-end 1)))
2931 (unless (= p0 p)
2932 (if pending (push pending pattern))
2933 (push (substring string p0 p) pattern))
2934 (setq pending nil)
2935 (if (eq (aref string p) ?*)
2936 (progn
2937 (push 'star pattern)
2938 (setq p0 (1+ p)))
2939 (push 'any pattern)
2940 (if (match-end 1)
2941 (setq p0 p)
2942 (push (substring string p (match-end 0)) pattern)
2943 ;; `any-delim' is used so that "a-b" also finds "array->beginning".
2944 (setq pending 'any-delim)
2945 (setq p0 (match-end 0))))
2946 (setq p p0))
2948 (when (> (length string) p0)
2949 (if pending (push pending pattern))
2950 (push (substring string p0) pattern))
2951 ;; An empty string might be erroneously added at the beginning.
2952 ;; It should be avoided properly, but it's so easy to remove it here.
2953 (delete "" (nreverse pattern)))))
2955 (defun completion-pcm--optimize-pattern (p)
2956 ;; Remove empty strings in a separate phase since otherwise a ""
2957 ;; might prevent some other optimization, as in '(any "" any).
2958 (setq p (delete "" p))
2959 (let ((n '()))
2960 (while p
2961 (pcase p
2962 (`(,(and s1 (pred stringp)) ,(and s2 (pred stringp)) . ,rest)
2963 (setq p (cons (concat s1 s2) rest)))
2964 (`(,(and p1 (pred symbolp)) ,(and p2 (guard (eq p1 p2))) . ,_)
2965 (setq p (cdr p)))
2966 (`(star ,(pred symbolp) . ,rest) (setq p `(star . ,rest)))
2967 (`(,(pred symbolp) star . ,rest) (setq p `(star . ,rest)))
2968 (`(point ,(or `any `any-delim) . ,rest) (setq p `(point . ,rest)))
2969 (`(,(or `any `any-delim) point . ,rest) (setq p `(point . ,rest)))
2970 (`(any ,(or `any `any-delim) . ,rest) (setq p `(any . ,rest)))
2971 (`(,(pred symbolp)) (setq p nil)) ;Implicit terminating `any'.
2972 (_ (push (pop p) n))))
2973 (nreverse n)))
2975 (defun completion-pcm--pattern->regex (pattern &optional group)
2976 (let ((re
2977 (concat "\\`"
2978 (mapconcat
2979 (lambda (x)
2980 (cond
2981 ((stringp x) (regexp-quote x))
2983 (let ((re (if (eq x 'any-delim)
2984 (concat completion-pcm--delim-wild-regex "*?")
2985 ".*?")))
2986 (if (if (consp group) (memq x group) group)
2987 (concat "\\(" re "\\)")
2988 re)))))
2989 pattern
2990 ""))))
2991 ;; Avoid pathological backtracking.
2992 (while (string-match "\\.\\*\\?\\(?:\\\\[()]\\)*\\(\\.\\*\\?\\)" re)
2993 (setq re (replace-match "" t t re 1)))
2994 re))
2996 (defun completion-pcm--all-completions (prefix pattern table pred)
2997 "Find all completions for PATTERN in TABLE obeying PRED.
2998 PATTERN is as returned by `completion-pcm--string->pattern'."
2999 ;; (cl-assert (= (car (completion-boundaries prefix table pred ""))
3000 ;; (length prefix)))
3001 ;; Find an initial list of possible completions.
3002 (if (completion-pcm--pattern-trivial-p pattern)
3004 ;; Minibuffer contains no delimiters -- simple case!
3005 (all-completions (concat prefix (car pattern)) table pred)
3007 ;; Use all-completions to do an initial cull. This is a big win,
3008 ;; since all-completions is written in C!
3009 (let* (;; Convert search pattern to a standard regular expression.
3010 (regex (completion-pcm--pattern->regex pattern))
3011 (case-fold-search completion-ignore-case)
3012 (completion-regexp-list (cons regex completion-regexp-list))
3013 (compl (all-completions
3014 (concat prefix
3015 (if (stringp (car pattern)) (car pattern) ""))
3016 table pred)))
3017 (if (not (functionp table))
3018 ;; The internal functions already obeyed completion-regexp-list.
3019 compl
3020 (let ((poss ()))
3021 (dolist (c compl)
3022 (when (string-match-p regex c) (push c poss)))
3023 (nreverse poss))))))
3025 (defun completion-pcm--hilit-commonality (pattern completions)
3026 (when completions
3027 (let* ((re (completion-pcm--pattern->regex pattern '(point)))
3028 (case-fold-search completion-ignore-case))
3029 (mapcar
3030 (lambda (str)
3031 ;; Don't modify the string itself.
3032 (setq str (copy-sequence str))
3033 (unless (string-match re str)
3034 (error "Internal error: %s does not match %s" re str))
3035 (let ((pos (or (match-beginning 1) (match-end 0))))
3036 (put-text-property 0 pos
3037 'font-lock-face 'completions-common-part
3038 str)
3039 (if (> (length str) pos)
3040 (put-text-property pos (1+ pos)
3041 'font-lock-face 'completions-first-difference
3042 str)))
3043 str)
3044 completions))))
3046 (defun completion-pcm--find-all-completions (string table pred point
3047 &optional filter)
3048 "Find all completions for STRING at POINT in TABLE, satisfying PRED.
3049 POINT is a position inside STRING.
3050 FILTER is a function applied to the return value, that can be used, e.g. to
3051 filter out additional entries (because TABLE might not obey PRED)."
3052 (unless filter (setq filter 'identity))
3053 (let* ((beforepoint (substring string 0 point))
3054 (afterpoint (substring string point))
3055 (bounds (completion-boundaries beforepoint table pred afterpoint))
3056 (prefix (substring beforepoint 0 (car bounds)))
3057 (suffix (substring afterpoint (cdr bounds)))
3058 firsterror)
3059 (setq string (substring string (car bounds) (+ point (cdr bounds))))
3060 (let* ((relpoint (- point (car bounds)))
3061 (pattern (completion-pcm--string->pattern string relpoint))
3062 (all (condition-case-unless-debug err
3063 (funcall filter
3064 (completion-pcm--all-completions
3065 prefix pattern table pred))
3066 (error (setq firsterror err) nil))))
3067 (when (and (null all)
3068 (> (car bounds) 0)
3069 (null (ignore-errors (try-completion prefix table pred))))
3070 ;; The prefix has no completions at all, so we should try and fix
3071 ;; that first.
3072 (let ((substring (substring prefix 0 -1)))
3073 (pcase-let ((`(,subpat ,suball ,subprefix ,_subsuffix)
3074 (completion-pcm--find-all-completions
3075 substring table pred (length substring) filter)))
3076 (let ((sep (aref prefix (1- (length prefix))))
3077 ;; Text that goes between the new submatches and the
3078 ;; completion substring.
3079 (between nil))
3080 ;; Eliminate submatches that don't end with the separator.
3081 (dolist (submatch (prog1 suball (setq suball ())))
3082 (when (eq sep (aref submatch (1- (length submatch))))
3083 (push submatch suball)))
3084 (when suball
3085 ;; Update the boundaries and corresponding pattern.
3086 ;; We assume that all submatches result in the same boundaries
3087 ;; since we wouldn't know how to merge them otherwise anyway.
3088 ;; FIXME: COMPLETE REWRITE!!!
3089 (let* ((newbeforepoint
3090 (concat subprefix (car suball)
3091 (substring string 0 relpoint)))
3092 (leftbound (+ (length subprefix) (length (car suball))))
3093 (newbounds (completion-boundaries
3094 newbeforepoint table pred afterpoint)))
3095 (unless (or (and (eq (cdr bounds) (cdr newbounds))
3096 (eq (car newbounds) leftbound))
3097 ;; Refuse new boundaries if they step over
3098 ;; the submatch.
3099 (< (car newbounds) leftbound))
3100 ;; The new completed prefix does change the boundaries
3101 ;; of the completed substring.
3102 (setq suffix (substring afterpoint (cdr newbounds)))
3103 (setq string
3104 (concat (substring newbeforepoint (car newbounds))
3105 (substring afterpoint 0 (cdr newbounds))))
3106 (setq between (substring newbeforepoint leftbound
3107 (car newbounds)))
3108 (setq pattern (completion-pcm--string->pattern
3109 string
3110 (- (length newbeforepoint)
3111 (car newbounds)))))
3112 (dolist (submatch suball)
3113 (setq all (nconc
3114 (mapcar
3115 (lambda (s) (concat submatch between s))
3116 (funcall filter
3117 (completion-pcm--all-completions
3118 (concat subprefix submatch between)
3119 pattern table pred)))
3120 all)))
3121 ;; FIXME: This can come in handy for try-completion,
3122 ;; but isn't right for all-completions, since it lists
3123 ;; invalid completions.
3124 ;; (unless all
3125 ;; ;; Even though we found expansions in the prefix, none
3126 ;; ;; leads to a valid completion.
3127 ;; ;; Let's keep the expansions, tho.
3128 ;; (dolist (submatch suball)
3129 ;; (push (concat submatch between newsubstring) all)))
3131 (setq pattern (append subpat (list 'any (string sep))
3132 (if between (list between)) pattern))
3133 (setq prefix subprefix)))))
3134 (if (and (null all) firsterror)
3135 (signal (car firsterror) (cdr firsterror))
3136 (list pattern all prefix suffix)))))
3138 (defun completion-pcm-all-completions (string table pred point)
3139 (pcase-let ((`(,pattern ,all ,prefix ,_suffix)
3140 (completion-pcm--find-all-completions string table pred point)))
3141 (when all
3142 (nconc (completion-pcm--hilit-commonality pattern all)
3143 (length prefix)))))
3145 (defun completion--common-suffix (strs)
3146 "Return the common suffix of the strings STRS."
3147 (nreverse (try-completion "" (mapcar #'reverse strs))))
3149 (defun completion-pcm--merge-completions (strs pattern)
3150 "Extract the commonality in STRS, with the help of PATTERN.
3151 PATTERN can contain strings and symbols chosen among `star', `any', `point',
3152 and `prefix'. They all match anything (aka \".*\") but are merged differently:
3153 `any' only grows from the left (when matching \"a1b\" and \"a2b\" it gets
3154 completed to just \"a\").
3155 `prefix' only grows from the right (when matching \"a1b\" and \"a2b\" it gets
3156 completed to just \"b\").
3157 `star' grows from both ends and is reified into a \"*\" (when matching \"a1b\"
3158 and \"a2b\" it gets completed to \"a*b\").
3159 `point' is like `star' except that it gets reified as the position of point
3160 instead of being reified as a \"*\" character.
3161 The underlying idea is that we should return a string which still matches
3162 the same set of elements."
3163 ;; When completing while ignoring case, we want to try and avoid
3164 ;; completing "fo" to "foO" when completing against "FOO" (bug#4219).
3165 ;; So we try and make sure that the string we return is all made up
3166 ;; of text from the completions rather than part from the
3167 ;; completions and part from the input.
3168 ;; FIXME: This reduces the problems of inconsistent capitalization
3169 ;; but it doesn't fully fix it: we may still end up completing
3170 ;; "fo-ba" to "foo-BAR" or "FOO-bar" when completing against
3171 ;; '("foo-barr" "FOO-BARD").
3172 (cond
3173 ((null (cdr strs)) (list (car strs)))
3175 (let ((re (completion-pcm--pattern->regex pattern 'group))
3176 (ccs ())) ;Chopped completions.
3178 ;; First chop each string into the parts corresponding to each
3179 ;; non-constant element of `pattern', using regexp-matching.
3180 (let ((case-fold-search completion-ignore-case))
3181 (dolist (str strs)
3182 (unless (string-match re str)
3183 (error "Internal error: %s doesn't match %s" str re))
3184 (let ((chopped ())
3185 (last 0)
3186 (i 1)
3187 next)
3188 (while (setq next (match-end i))
3189 (push (substring str last next) chopped)
3190 (setq last next)
3191 (setq i (1+ i)))
3192 ;; Add the text corresponding to the implicit trailing `any'.
3193 (push (substring str last) chopped)
3194 (push (nreverse chopped) ccs))))
3196 ;; Then for each of those non-constant elements, extract the
3197 ;; commonality between them.
3198 (let ((res ())
3199 (fixed ""))
3200 ;; Make the implicit trailing `any' explicit.
3201 (dolist (elem (append pattern '(any)))
3202 (if (stringp elem)
3203 (setq fixed (concat fixed elem))
3204 (let ((comps ()))
3205 (dolist (cc (prog1 ccs (setq ccs nil)))
3206 (push (car cc) comps)
3207 (push (cdr cc) ccs))
3208 ;; Might improve the likelihood to avoid choosing
3209 ;; different capitalizations in different parts.
3210 ;; In practice, it doesn't seem to make any difference.
3211 (setq ccs (nreverse ccs))
3212 (let* ((prefix (try-completion fixed comps))
3213 (unique (or (and (eq prefix t) (setq prefix fixed))
3214 (eq t (try-completion prefix comps)))))
3215 (unless (or (eq elem 'prefix)
3216 (equal prefix ""))
3217 (push prefix res))
3218 ;; If there's only one completion, `elem' is not useful
3219 ;; any more: it can only match the empty string.
3220 ;; FIXME: in some cases, it may be necessary to turn an
3221 ;; `any' into a `star' because the surrounding context has
3222 ;; changed such that string->pattern wouldn't add an `any'
3223 ;; here any more.
3224 (unless unique
3225 (push elem res)
3226 ;; Extract common suffix additionally to common prefix.
3227 ;; Don't do it for `any' since it could lead to a merged
3228 ;; completion that doesn't itself match the candidates.
3229 (when (and (memq elem '(star point prefix))
3230 ;; If prefix is one of the completions, there's no
3231 ;; suffix left to find.
3232 (not (assoc-string prefix comps t)))
3233 (let ((suffix
3234 (completion--common-suffix
3235 (if (zerop (length prefix)) comps
3236 ;; Ignore the chars in the common prefix, so we
3237 ;; don't merge '("abc" "abbc") as "ab*bc".
3238 (let ((skip (length prefix)))
3239 (mapcar (lambda (str) (substring str skip))
3240 comps))))))
3241 (cl-assert (stringp suffix))
3242 (unless (equal suffix "")
3243 (push suffix res)))))
3244 (setq fixed "")))))
3245 ;; We return it in reverse order.
3246 res)))))
3248 (defun completion-pcm--pattern->string (pattern)
3249 (mapconcat (lambda (x) (cond
3250 ((stringp x) x)
3251 ((eq x 'star) "*")
3252 (t ""))) ;any, point, prefix.
3253 pattern
3254 ""))
3256 ;; We want to provide the functionality of `try', but we use `all'
3257 ;; and then merge it. In most cases, this works perfectly, but
3258 ;; if the completion table doesn't consider the same completions in
3259 ;; `try' as in `all', then we have a problem. The most common such
3260 ;; case is for filename completion where completion-ignored-extensions
3261 ;; is only obeyed by the `try' code. We paper over the difference
3262 ;; here. Note that it is not quite right either: if the completion
3263 ;; table uses completion-table-in-turn, this filtering may take place
3264 ;; too late to correctly fallback from the first to the
3265 ;; second alternative.
3266 (defun completion-pcm--filename-try-filter (all)
3267 "Filter to adjust `all' file completion to the behavior of `try'."
3268 (when all
3269 (let ((try ())
3270 (re (concat "\\(?:\\`\\.\\.?/\\|"
3271 (regexp-opt completion-ignored-extensions)
3272 "\\)\\'")))
3273 (dolist (f all)
3274 (unless (string-match-p re f) (push f try)))
3275 (or (nreverse try) all))))
3278 (defun completion-pcm--merge-try (pattern all prefix suffix)
3279 (cond
3280 ((not (consp all)) all)
3281 ((and (not (consp (cdr all))) ;Only one completion.
3282 ;; Ignore completion-ignore-case here.
3283 (equal (completion-pcm--pattern->string pattern) (car all)))
3286 (let* ((mergedpat (completion-pcm--merge-completions all pattern))
3287 ;; `mergedpat' is in reverse order. Place new point (by
3288 ;; order of preference) either at the old point, or at
3289 ;; the last place where there's something to choose, or
3290 ;; at the very end.
3291 (pointpat (or (memq 'point mergedpat)
3292 (memq 'any mergedpat)
3293 (memq 'star mergedpat)
3294 ;; Not `prefix'.
3295 mergedpat))
3296 ;; New pos from the start.
3297 (newpos (length (completion-pcm--pattern->string pointpat)))
3298 ;; Do it afterwards because it changes `pointpat' by side effect.
3299 (merged (completion-pcm--pattern->string (nreverse mergedpat))))
3301 (setq suffix (completion--merge-suffix
3302 ;; The second arg should ideally be "the position right
3303 ;; after the last char of `merged' that comes from the text
3304 ;; to be completed". But completion-pcm--merge-completions
3305 ;; currently doesn't give us that info. So instead we just
3306 ;; use the "last but one" position, which tends to work
3307 ;; well in practice since `suffix' always starts
3308 ;; with a boundary and we hence mostly/only care about
3309 ;; merging this boundary (bug#15419).
3310 merged (max 0 (1- (length merged))) suffix))
3311 (cons (concat prefix merged suffix) (+ newpos (length prefix)))))))
3313 (defun completion-pcm-try-completion (string table pred point)
3314 (pcase-let ((`(,pattern ,all ,prefix ,suffix)
3315 (completion-pcm--find-all-completions
3316 string table pred point
3317 (if minibuffer-completing-file-name
3318 'completion-pcm--filename-try-filter))))
3319 (completion-pcm--merge-try pattern all prefix suffix)))
3321 ;;; Substring completion
3322 ;; Mostly derived from the code of `basic' completion.
3324 (defun completion-substring--all-completions (string table pred point)
3325 (let* ((beforepoint (substring string 0 point))
3326 (afterpoint (substring string point))
3327 (bounds (completion-boundaries beforepoint table pred afterpoint))
3328 (suffix (substring afterpoint (cdr bounds)))
3329 (prefix (substring beforepoint 0 (car bounds)))
3330 (basic-pattern (completion-basic--pattern
3331 beforepoint afterpoint bounds))
3332 (pattern (if (not (stringp (car basic-pattern)))
3333 basic-pattern
3334 (cons 'prefix basic-pattern)))
3335 (all (completion-pcm--all-completions prefix pattern table pred)))
3336 (list all pattern prefix suffix (car bounds))))
3338 (defun completion-substring-try-completion (string table pred point)
3339 (pcase-let ((`(,all ,pattern ,prefix ,suffix ,_carbounds)
3340 (completion-substring--all-completions
3341 string table pred point)))
3342 (if minibuffer-completing-file-name
3343 (setq all (completion-pcm--filename-try-filter all)))
3344 (completion-pcm--merge-try pattern all prefix suffix)))
3346 (defun completion-substring-all-completions (string table pred point)
3347 (pcase-let ((`(,all ,pattern ,prefix ,_suffix ,_carbounds)
3348 (completion-substring--all-completions
3349 string table pred point)))
3350 (when all
3351 (nconc (completion-pcm--hilit-commonality pattern all)
3352 (length prefix)))))
3354 ;; Initials completion
3355 ;; Complete /ums to /usr/monnier/src or lch to list-command-history.
3357 (defun completion-initials-expand (str table pred)
3358 (let ((bounds (completion-boundaries str table pred "")))
3359 (unless (or (zerop (length str))
3360 ;; Only check within the boundaries, since the
3361 ;; boundary char (e.g. /) might be in delim-regexp.
3362 (string-match completion-pcm--delim-wild-regex str
3363 (car bounds)))
3364 (if (zerop (car bounds))
3365 ;; FIXME: Don't hardcode "-" (bug#17559).
3366 (mapconcat 'string str "-")
3367 ;; If there's a boundary, it's trickier. The main use-case
3368 ;; we consider here is file-name completion. We'd like
3369 ;; to expand ~/eee to ~/e/e/e and /eee to /e/e/e.
3370 ;; But at the same time, we don't want /usr/share/ae to expand
3371 ;; to /usr/share/a/e just because we mistyped "ae" for "ar",
3372 ;; so we probably don't want initials to touch anything that
3373 ;; looks like /usr/share/foo. As a heuristic, we just check that
3374 ;; the text before the boundary char is at most 1 char.
3375 ;; This allows both ~/eee and /eee and not much more.
3376 ;; FIXME: It sadly also disallows the use of ~/eee when that's
3377 ;; embedded within something else (e.g. "(~/eee" in Info node
3378 ;; completion or "ancestor:/eee" in bzr-revision completion).
3379 (when (< (car bounds) 3)
3380 (let ((sep (substring str (1- (car bounds)) (car bounds))))
3381 ;; FIXME: the above string-match checks the whole string, whereas
3382 ;; we end up only caring about the after-boundary part.
3383 (concat (substring str 0 (car bounds))
3384 (mapconcat 'string (substring str (car bounds)) sep))))))))
3386 (defun completion-initials-all-completions (string table pred _point)
3387 (let ((newstr (completion-initials-expand string table pred)))
3388 (when newstr
3389 (completion-pcm-all-completions newstr table pred (length newstr)))))
3391 (defun completion-initials-try-completion (string table pred _point)
3392 (let ((newstr (completion-initials-expand string table pred)))
3393 (when newstr
3394 (completion-pcm-try-completion newstr table pred (length newstr)))))
3396 (defvar completing-read-function 'completing-read-default
3397 "The function called by `completing-read' to do its work.
3398 It should accept the same arguments as `completing-read'.")
3400 (defun completing-read-default (prompt collection &optional predicate
3401 require-match initial-input
3402 hist def inherit-input-method)
3403 "Default method for reading from the minibuffer with completion.
3404 See `completing-read' for the meaning of the arguments."
3406 (when (consp initial-input)
3407 (setq initial-input
3408 (cons (car initial-input)
3409 ;; `completing-read' uses 0-based index while
3410 ;; `read-from-minibuffer' uses 1-based index.
3411 (1+ (cdr initial-input)))))
3413 (let* ((minibuffer-completion-table collection)
3414 (minibuffer-completion-predicate predicate)
3415 (minibuffer-completion-confirm (unless (eq require-match t)
3416 require-match))
3417 (base-keymap (if require-match
3418 minibuffer-local-must-match-map
3419 minibuffer-local-completion-map))
3420 (keymap (if (memq minibuffer-completing-file-name '(nil lambda))
3421 base-keymap
3422 ;; Layer minibuffer-local-filename-completion-map
3423 ;; on top of the base map.
3424 (make-composed-keymap
3425 minibuffer-local-filename-completion-map
3426 ;; Set base-keymap as the parent, so that nil bindings
3427 ;; in minibuffer-local-filename-completion-map can
3428 ;; override bindings in base-keymap.
3429 base-keymap)))
3430 (result (read-from-minibuffer prompt initial-input keymap
3431 nil hist def inherit-input-method)))
3432 (when (and (equal result "") def)
3433 (setq result (if (consp def) (car def) def)))
3434 result))
3436 ;; Miscellaneous
3438 (defun minibuffer-insert-file-name-at-point ()
3439 "Get a file name at point in original buffer and insert it to minibuffer."
3440 (interactive)
3441 (let ((file-name-at-point
3442 (with-current-buffer (window-buffer (minibuffer-selected-window))
3443 (run-hook-with-args-until-success 'file-name-at-point-functions))))
3444 (when file-name-at-point
3445 (insert file-name-at-point))))
3447 (provide 'minibuffer)
3449 ;;; minibuffer.el ends here