Merge branch 'master' into comment-cache
[emacs.git] / lisp / minibuffer.el
blob00722ec4b15a078d3d99f1e1dc4cc848b84fd5f4
1 ;;; minibuffer.el --- Minibuffer completion functions -*- lexical-binding: t -*-
3 ;; Copyright (C) 2008-2017 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 <http://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 pred2
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 *Completion* 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 "Default settings for specific completion categories.
839 Each entry has the shape (CATEGORY . ALIST) where ALIST is
840 an association list that can specify properties such as:
841 - `styles': the list of `completion-styles' to use for that category.
842 - `cycle': the `completion-cycle-threshold' to use for that category.
843 Categories are symbols such as `buffer' and `file', used when
844 completing buffer and file names, respectively.")
846 (defcustom completion-category-overrides nil
847 "List of category-specific user overrides for completion styles.
848 Each override has the shape (CATEGORY . ALIST) where ALIST is
849 an association list that can specify properties such as:
850 - `styles': the list of `completion-styles' to use for that category.
851 - `cycle': the `completion-cycle-threshold' to use for that category.
852 Categories are symbols such as `buffer' and `file', used when
853 completing buffer and file names, respectively.
854 This overrides the defaults specified in `completion-category-defaults'."
855 :version "25.1"
856 :type `(alist :key-type (choice :tag "Category"
857 (const buffer)
858 (const file)
859 (const unicode-name)
860 (const bookmark)
861 symbol)
862 :value-type
863 (set :tag "Properties to override"
864 (cons :tag "Completion Styles"
865 (const :tag "Select a style from the menu;" styles)
866 ,completion--styles-type)
867 (cons :tag "Completion Cycling"
868 (const :tag "Select one value from the menu." cycle)
869 ,completion--cycling-threshold-type))))
871 (defun completion--category-override (category tag)
872 (or (assq tag (cdr (assq category completion-category-overrides)))
873 (assq tag (cdr (assq category completion-category-defaults)))))
875 (defun completion--styles (metadata)
876 (let* ((cat (completion-metadata-get metadata 'category))
877 (over (completion--category-override cat 'styles)))
878 (if over
879 (delete-dups (append (cdr over) (copy-sequence completion-styles)))
880 completion-styles)))
882 (defun completion--nth-completion (n string table pred point metadata)
883 "Call the Nth method of completion styles."
884 (unless metadata
885 (setq metadata
886 (completion-metadata (substring string 0 point) table pred)))
887 ;; We provide special support for quoting/unquoting here because it cannot
888 ;; reliably be done within the normal completion-table routines: Completion
889 ;; styles such as `substring' or `partial-completion' need to match the
890 ;; output of all-completions with the user's input, and since most/all
891 ;; quoting mechanisms allow several equivalent quoted forms, the
892 ;; completion-style can't do this matching (e.g. `substring' doesn't know
893 ;; that "\a\b\e" is a valid (quoted) substring of "label").
894 ;; The quote/unquote function needs to come from the completion table (rather
895 ;; than from completion-extra-properties) because it may apply only to some
896 ;; part of the string (e.g. substitute-in-file-name).
897 (let ((requote
898 (when (completion-metadata-get metadata 'completion--unquote-requote)
899 (cl-assert (functionp table))
900 (let ((new (funcall table string point 'completion--unquote)))
901 (setq string (pop new))
902 (setq table (pop new))
903 (setq point (pop new))
904 (cl-assert (<= point (length string)))
905 (pop new))))
906 (result
907 (completion--some (lambda (style)
908 (funcall (nth n (assq style
909 completion-styles-alist))
910 string table pred point))
911 (completion--styles metadata))))
912 (if requote
913 (funcall requote result n)
914 result)))
916 (defun completion-try-completion (string table pred point &optional metadata)
917 "Try to complete STRING using completion table TABLE.
918 Only the elements of table that satisfy predicate PRED are considered.
919 POINT is the position of point within STRING.
920 The return value can be either nil to indicate that there is no completion,
921 t to indicate that STRING is the only possible completion,
922 or a pair (NEWSTRING . NEWPOINT) of the completed result string together with
923 a new position for point."
924 (completion--nth-completion 1 string table pred point metadata))
926 (defun completion-all-completions (string table pred point &optional metadata)
927 "List the possible completions of STRING in completion table TABLE.
928 Only the elements of table that satisfy predicate PRED are considered.
929 POINT is the position of point within STRING.
930 The return value is a list of completions and may contain the base-size
931 in the last `cdr'."
932 ;; FIXME: We need to additionally return the info needed for the
933 ;; second part of completion-base-position.
934 (completion--nth-completion 2 string table pred point metadata))
936 (defun minibuffer--bitset (modified completions exact)
937 (logior (if modified 4 0)
938 (if completions 2 0)
939 (if exact 1 0)))
941 (defun completion--replace (beg end newtext)
942 "Replace the buffer text between BEG and END with NEWTEXT.
943 Moves point to the end of the new text."
944 ;; The properties on `newtext' include things like
945 ;; completions-first-difference, which we don't want to include
946 ;; upon insertion.
947 (set-text-properties 0 (length newtext) nil newtext)
948 ;; Maybe this should be in subr.el.
949 ;; You'd think this is trivial to do, but details matter if you want
950 ;; to keep markers "at the right place" and be robust in the face of
951 ;; after-change-functions that may themselves modify the buffer.
952 (let ((prefix-len 0))
953 ;; Don't touch markers in the shared prefix (if any).
954 (while (and (< prefix-len (length newtext))
955 (< (+ beg prefix-len) end)
956 (eq (char-after (+ beg prefix-len))
957 (aref newtext prefix-len)))
958 (setq prefix-len (1+ prefix-len)))
959 (unless (zerop prefix-len)
960 (setq beg (+ beg prefix-len))
961 (setq newtext (substring newtext prefix-len))))
962 (let ((suffix-len 0))
963 ;; Don't touch markers in the shared suffix (if any).
964 (while (and (< suffix-len (length newtext))
965 (< beg (- end suffix-len))
966 (eq (char-before (- end suffix-len))
967 (aref newtext (- (length newtext) suffix-len 1))))
968 (setq suffix-len (1+ suffix-len)))
969 (unless (zerop suffix-len)
970 (setq end (- end suffix-len))
971 (setq newtext (substring newtext 0 (- suffix-len))))
972 (goto-char beg)
973 (let ((length (- end beg))) ;Read `end' before we insert the text.
974 (insert-and-inherit newtext)
975 (delete-region (point) (+ (point) length)))
976 (forward-char suffix-len)))
978 (defcustom completion-cycle-threshold nil
979 "Number of completion candidates below which cycling is used.
980 Depending on this setting `completion-in-region' may use cycling,
981 like `minibuffer-force-complete'.
982 If nil, cycling is never used.
983 If t, cycling is always used.
984 If an integer, cycling is used so long as there are not more
985 completion candidates than this number."
986 :version "24.1"
987 :type completion--cycling-threshold-type)
989 (defun completion--cycle-threshold (metadata)
990 (let* ((cat (completion-metadata-get metadata 'category))
991 (over (completion--category-override cat 'cycle)))
992 (if over (cdr over) completion-cycle-threshold)))
994 (defvar-local completion-all-sorted-completions nil)
995 (defvar-local completion--all-sorted-completions-location nil)
996 (defvar completion-cycling nil)
998 (defvar completion-fail-discreetly nil
999 "If non-nil, stay quiet when there is no match.")
1001 (defun completion--message (msg)
1002 (if completion-show-inline-help
1003 (minibuffer-message msg)))
1005 (defun completion--do-completion (beg end &optional
1006 try-completion-function expect-exact)
1007 "Do the completion and return a summary of what happened.
1008 M = completion was performed, the text was Modified.
1009 C = there were available Completions.
1010 E = after completion we now have an Exact match.
1013 000 0 no possible completion
1014 001 1 was already an exact and unique completion
1015 010 2 no completion happened
1016 011 3 was already an exact completion
1017 100 4 ??? impossible
1018 101 5 ??? impossible
1019 110 6 some completion happened
1020 111 7 completed to an exact completion
1022 TRY-COMPLETION-FUNCTION is a function to use in place of `try-completion'.
1023 EXPECT-EXACT, if non-nil, means that there is no need to tell the user
1024 when the buffer's text is already an exact match."
1025 (let* ((string (buffer-substring beg end))
1026 (md (completion--field-metadata beg))
1027 (comp (funcall (or try-completion-function
1028 'completion-try-completion)
1029 string
1030 minibuffer-completion-table
1031 minibuffer-completion-predicate
1032 (- (point) beg)
1033 md)))
1034 (cond
1035 ((null comp)
1036 (minibuffer-hide-completions)
1037 (unless completion-fail-discreetly
1038 (ding)
1039 (completion--message "No match"))
1040 (minibuffer--bitset nil nil nil))
1041 ((eq t comp)
1042 (minibuffer-hide-completions)
1043 (goto-char end)
1044 (completion--done string 'finished
1045 (unless expect-exact "Sole completion"))
1046 (minibuffer--bitset nil nil t)) ;Exact and unique match.
1048 ;; `completed' should be t if some completion was done, which doesn't
1049 ;; include simply changing the case of the entered string. However,
1050 ;; for appearance, the string is rewritten if the case changes.
1051 (let* ((comp-pos (cdr comp))
1052 (completion (car comp))
1053 (completed (not (eq t (compare-strings completion nil nil
1054 string nil nil t))))
1055 (unchanged (eq t (compare-strings completion nil nil
1056 string nil nil nil))))
1057 (if unchanged
1058 (goto-char end)
1059 ;; Insert in minibuffer the chars we got.
1060 (completion--replace beg end completion)
1061 (setq end (+ beg (length completion))))
1062 ;; Move point to its completion-mandated destination.
1063 (forward-char (- comp-pos (length completion)))
1065 (if (not (or unchanged completed))
1066 ;; The case of the string changed, but that's all. We're not sure
1067 ;; whether this is a unique completion or not, so try again using
1068 ;; the real case (this shouldn't recurse again, because the next
1069 ;; time try-completion will return either t or the exact string).
1070 (completion--do-completion beg end
1071 try-completion-function expect-exact)
1073 ;; It did find a match. Do we match some possibility exactly now?
1074 (let* ((exact (test-completion completion
1075 minibuffer-completion-table
1076 minibuffer-completion-predicate))
1077 (threshold (completion--cycle-threshold md))
1078 (comps
1079 ;; Check to see if we want to do cycling. We do it
1080 ;; here, after having performed the normal completion,
1081 ;; so as to take advantage of the difference between
1082 ;; try-completion and all-completions, for things
1083 ;; like completion-ignored-extensions.
1084 (when (and threshold
1085 ;; Check that the completion didn't make
1086 ;; us jump to a different boundary.
1087 (or (not completed)
1088 (< (car (completion-boundaries
1089 (substring completion 0 comp-pos)
1090 minibuffer-completion-table
1091 minibuffer-completion-predicate
1092 ""))
1093 comp-pos)))
1094 (completion-all-sorted-completions beg end))))
1095 (completion--flush-all-sorted-completions)
1096 (cond
1097 ((and (consp (cdr comps)) ;; There's something to cycle.
1098 (not (ignore-errors
1099 ;; This signal an (intended) error if comps is too
1100 ;; short or if completion-cycle-threshold is t.
1101 (consp (nthcdr threshold comps)))))
1102 ;; Not more than completion-cycle-threshold remaining
1103 ;; completions: let's cycle.
1104 (setq completed t exact t)
1105 (completion--cache-all-sorted-completions beg end comps)
1106 (minibuffer-force-complete beg end))
1107 (completed
1108 ;; We could also decide to refresh the completions,
1109 ;; if they're displayed (and assuming there are
1110 ;; completions left).
1111 (minibuffer-hide-completions)
1112 (if exact
1113 ;; If completion did not put point at end of field,
1114 ;; it's a sign that completion is not finished.
1115 (completion--done completion
1116 (if (< comp-pos (length completion))
1117 'exact 'unknown))))
1118 ;; Show the completion table, if requested.
1119 ((not exact)
1120 (if (pcase completion-auto-help
1121 (`lazy (eq this-command last-command))
1122 (_ completion-auto-help))
1123 (minibuffer-completion-help beg end)
1124 (completion--message "Next char not unique")))
1125 ;; If the last exact completion and this one were the same, it
1126 ;; means we've already given a "Complete, but not unique" message
1127 ;; and the user's hit TAB again, so now we give him help.
1129 (if (and (eq this-command last-command) completion-auto-help)
1130 (minibuffer-completion-help beg end))
1131 (completion--done completion 'exact
1132 (unless expect-exact
1133 "Complete, but not unique"))))
1135 (minibuffer--bitset completed t exact))))))))
1137 (defun minibuffer-complete ()
1138 "Complete the minibuffer contents as far as possible.
1139 Return nil if there is no valid completion, else t.
1140 If no characters can be completed, display a list of possible completions.
1141 If you repeat this command after it displayed such a list,
1142 scroll the window of possible completions."
1143 (interactive)
1144 (when (<= (minibuffer-prompt-end) (point))
1145 (completion-in-region (minibuffer-prompt-end) (point-max)
1146 minibuffer-completion-table
1147 minibuffer-completion-predicate)))
1149 (defun completion--in-region-1 (beg end)
1150 ;; If the previous command was not this,
1151 ;; mark the completion buffer obsolete.
1152 (setq this-command 'completion-at-point)
1153 (unless (eq 'completion-at-point last-command)
1154 (completion--flush-all-sorted-completions)
1155 (setq minibuffer-scroll-window nil))
1157 (cond
1158 ;; If there's a fresh completion window with a live buffer,
1159 ;; and this command is repeated, scroll that window.
1160 ((and (window-live-p minibuffer-scroll-window)
1161 (eq t (frame-visible-p (window-frame minibuffer-scroll-window))))
1162 (let ((window minibuffer-scroll-window))
1163 (with-current-buffer (window-buffer window)
1164 (if (pos-visible-in-window-p (point-max) window)
1165 ;; If end is in view, scroll up to the beginning.
1166 (set-window-start window (point-min) nil)
1167 ;; Else scroll down one screen.
1168 (with-selected-window window
1169 (scroll-up)))
1170 nil)))
1171 ;; If we're cycling, keep on cycling.
1172 ((and completion-cycling completion-all-sorted-completions)
1173 (minibuffer-force-complete beg end)
1175 (t (pcase (completion--do-completion beg end)
1176 (#b000 nil)
1177 (_ t)))))
1179 (defun completion--cache-all-sorted-completions (beg end comps)
1180 (add-hook 'after-change-functions
1181 'completion--flush-all-sorted-completions nil t)
1182 (setq completion--all-sorted-completions-location
1183 (cons (copy-marker beg) (copy-marker end)))
1184 (setq completion-all-sorted-completions comps))
1186 (defun completion--flush-all-sorted-completions (&optional start end _len)
1187 (unless (and start end
1188 (or (> start (cdr completion--all-sorted-completions-location))
1189 (< end (car completion--all-sorted-completions-location))))
1190 (remove-hook 'after-change-functions
1191 'completion--flush-all-sorted-completions t)
1192 (setq completion-cycling nil)
1193 (setq completion-all-sorted-completions nil)))
1195 (defun completion--metadata (string base md-at-point table pred)
1196 ;; Like completion-metadata, but for the specific case of getting the
1197 ;; metadata at `base', which tends to trigger pathological behavior for old
1198 ;; completion tables which don't understand `metadata'.
1199 (let ((bounds (completion-boundaries string table pred "")))
1200 (if (eq (car bounds) base) md-at-point
1201 (completion-metadata (substring string 0 base) table pred))))
1203 (defun completion-all-sorted-completions (&optional start end)
1204 (or completion-all-sorted-completions
1205 (let* ((start (or start (minibuffer-prompt-end)))
1206 (end (or end (point-max)))
1207 (string (buffer-substring start end))
1208 (md (completion--field-metadata start))
1209 (all (completion-all-completions
1210 string
1211 minibuffer-completion-table
1212 minibuffer-completion-predicate
1213 (- (point) start)
1214 md))
1215 (last (last all))
1216 (base-size (or (cdr last) 0))
1217 (all-md (completion--metadata (buffer-substring-no-properties
1218 start (point))
1219 base-size md
1220 minibuffer-completion-table
1221 minibuffer-completion-predicate))
1222 (sort-fun (completion-metadata-get all-md 'cycle-sort-function)))
1223 (when last
1224 (setcdr last nil)
1226 ;; Delete duplicates: do it after setting last's cdr to nil (so
1227 ;; it's a proper list), and be careful to reset `last' since it
1228 ;; may be a different cons-cell.
1229 (setq all (delete-dups all))
1230 (setq last (last all))
1232 (setq all (if sort-fun (funcall sort-fun all)
1233 ;; Prefer shorter completions, by default.
1234 (sort all (lambda (c1 c2) (< (length c1) (length c2))))))
1235 ;; Prefer recently used completions.
1236 (when (minibufferp)
1237 (let ((hist (symbol-value minibuffer-history-variable)))
1238 (setq all (sort all (lambda (c1 c2)
1239 (> (length (member c1 hist))
1240 (length (member c2 hist))))))))
1241 ;; Cache the result. This is not just for speed, but also so that
1242 ;; repeated calls to minibuffer-force-complete can cycle through
1243 ;; all possibilities.
1244 (completion--cache-all-sorted-completions
1245 start end (nconc all base-size))))))
1247 (defun minibuffer-force-complete-and-exit ()
1248 "Complete the minibuffer with first of the matches and exit."
1249 (interactive)
1250 (minibuffer-force-complete)
1251 (completion--complete-and-exit
1252 (minibuffer-prompt-end) (point-max) #'exit-minibuffer
1253 ;; If the previous completion completed to an element which fails
1254 ;; test-completion, then we shouldn't exit, but that should be rare.
1255 (lambda () (minibuffer-message "Incomplete"))))
1257 (defun minibuffer-force-complete (&optional start end)
1258 "Complete the minibuffer to an exact match.
1259 Repeated uses step through the possible completions."
1260 (interactive)
1261 (setq minibuffer-scroll-window nil)
1262 ;; FIXME: Need to deal with the extra-size issue here as well.
1263 ;; FIXME: ~/src/emacs/t<M-TAB>/lisp/minibuffer.el completes to
1264 ;; ~/src/emacs/trunk/ and throws away lisp/minibuffer.el.
1265 (let* ((start (copy-marker (or start (minibuffer-prompt-end))))
1266 (end (or end (point-max)))
1267 ;; (md (completion--field-metadata start))
1268 (all (completion-all-sorted-completions start end))
1269 (base (+ start (or (cdr (last all)) 0))))
1270 (cond
1271 ((not (consp all))
1272 (completion--message
1273 (if all "No more completions" "No completions")))
1274 ((not (consp (cdr all)))
1275 (let ((done (equal (car all) (buffer-substring-no-properties base end))))
1276 (unless done (completion--replace base end (car all)))
1277 (completion--done (buffer-substring-no-properties start (point))
1278 'finished (when done "Sole completion"))))
1280 (completion--replace base end (car all))
1281 (setq end (+ base (length (car all))))
1282 (completion--done (buffer-substring-no-properties start (point)) 'sole)
1283 ;; Set cycling after modifying the buffer since the flush hook resets it.
1284 (setq completion-cycling t)
1285 (setq this-command 'completion-at-point) ;For completion-in-region.
1286 ;; If completing file names, (car all) may be a directory, so we'd now
1287 ;; have a new set of possible completions and might want to reset
1288 ;; completion-all-sorted-completions to nil, but we prefer not to,
1289 ;; so that repeated calls minibuffer-force-complete still cycle
1290 ;; through the previous possible completions.
1291 (let ((last (last all)))
1292 (setcdr last (cons (car all) (cdr last)))
1293 (completion--cache-all-sorted-completions start end (cdr all)))
1294 ;; Make sure repeated uses cycle, even though completion--done might
1295 ;; have added a space or something that moved us outside of the field.
1296 ;; (bug#12221).
1297 (let* ((table minibuffer-completion-table)
1298 (pred minibuffer-completion-predicate)
1299 (extra-prop completion-extra-properties)
1300 (cmd
1301 (lambda () "Cycle through the possible completions."
1302 (interactive)
1303 (let ((completion-extra-properties extra-prop))
1304 (completion-in-region start (point) table pred)))))
1305 (set-transient-map
1306 (let ((map (make-sparse-keymap)))
1307 (define-key map [remap completion-at-point] cmd)
1308 (define-key map (vector last-command-event) cmd)
1309 map)))))))
1311 (defvar minibuffer-confirm-exit-commands
1312 '(completion-at-point minibuffer-complete
1313 minibuffer-complete-word PC-complete PC-complete-word)
1314 "A list of commands which cause an immediately following
1315 `minibuffer-complete-and-exit' to ask for extra confirmation.")
1317 (defun minibuffer-complete-and-exit ()
1318 "Exit if the minibuffer contains a valid completion.
1319 Otherwise, try to complete the minibuffer contents. If
1320 completion leads to a valid completion, a repetition of this
1321 command will exit.
1323 If `minibuffer-completion-confirm' is `confirm', do not try to
1324 complete; instead, ask for confirmation and accept any input if
1325 confirmed.
1326 If `minibuffer-completion-confirm' is `confirm-after-completion',
1327 do not try to complete; instead, ask for confirmation if the
1328 preceding minibuffer command was a member of
1329 `minibuffer-confirm-exit-commands', and accept the input
1330 otherwise."
1331 (interactive)
1332 (completion-complete-and-exit (minibuffer-prompt-end) (point-max)
1333 #'exit-minibuffer))
1335 (defun completion-complete-and-exit (beg end exit-function)
1336 (completion--complete-and-exit
1337 beg end exit-function
1338 (lambda ()
1339 (pcase (condition-case nil
1340 (completion--do-completion beg end
1341 nil 'expect-exact)
1342 (error 1))
1343 ((or #b001 #b011) (funcall exit-function))
1344 (#b111 (if (not minibuffer-completion-confirm)
1345 (funcall exit-function)
1346 (minibuffer-message "Confirm")
1347 nil))
1348 (_ nil)))))
1350 (defun completion--complete-and-exit (beg end
1351 exit-function completion-function)
1352 "Exit from `require-match' minibuffer.
1353 COMPLETION-FUNCTION is called if the current buffer's content does not
1354 appear to be a match."
1355 (cond
1356 ;; Allow user to specify null string
1357 ((= beg end) (funcall exit-function))
1358 ((test-completion (buffer-substring beg end)
1359 minibuffer-completion-table
1360 minibuffer-completion-predicate)
1361 ;; FIXME: completion-ignore-case has various slightly
1362 ;; incompatible meanings. E.g. it can reflect whether the user
1363 ;; wants completion to pay attention to case, or whether the
1364 ;; string will be used in a context where case is significant.
1365 ;; E.g. usually try-completion should obey the first, whereas
1366 ;; test-completion should obey the second.
1367 (when completion-ignore-case
1368 ;; Fixup case of the field, if necessary.
1369 (let* ((string (buffer-substring beg end))
1370 (compl (try-completion
1371 string
1372 minibuffer-completion-table
1373 minibuffer-completion-predicate)))
1374 (when (and (stringp compl) (not (equal string compl))
1375 ;; If it weren't for this piece of paranoia, I'd replace
1376 ;; the whole thing with a call to do-completion.
1377 ;; This is important, e.g. when the current minibuffer's
1378 ;; content is a directory which only contains a single
1379 ;; file, so `try-completion' actually completes to
1380 ;; that file.
1381 (= (length string) (length compl)))
1382 (completion--replace beg end compl))))
1383 (funcall exit-function))
1385 ((memq minibuffer-completion-confirm '(confirm confirm-after-completion))
1386 ;; The user is permitted to exit with an input that's rejected
1387 ;; by test-completion, after confirming her choice.
1388 (if (or (eq last-command this-command)
1389 ;; For `confirm-after-completion' we only ask for confirmation
1390 ;; if trying to exit immediately after typing TAB (this
1391 ;; catches most minibuffer typos).
1392 (and (eq minibuffer-completion-confirm 'confirm-after-completion)
1393 (not (memq last-command minibuffer-confirm-exit-commands))))
1394 (funcall exit-function)
1395 (minibuffer-message "Confirm")
1396 nil))
1399 ;; Call do-completion, but ignore errors.
1400 (funcall completion-function))))
1402 (defun completion--try-word-completion (string table predicate point md)
1403 (let ((comp (completion-try-completion string table predicate point md)))
1404 (if (not (consp comp))
1405 comp
1407 ;; If completion finds next char not unique,
1408 ;; consider adding a space or a hyphen.
1409 (when (= (length string) (length (car comp)))
1410 ;; Mark the added char with the `completion-word' property, so it
1411 ;; can be handled specially by completion styles such as
1412 ;; partial-completion.
1413 ;; We used to remove `partial-completion' from completion-styles
1414 ;; instead, but it was too blunt, leading to situations where SPC
1415 ;; was the only insertable char at point but minibuffer-complete-word
1416 ;; refused inserting it.
1417 (let ((exts (mapcar (lambda (str) (propertize str 'completion-try-word t))
1418 '(" " "-")))
1419 (before (substring string 0 point))
1420 (after (substring string point))
1421 tem)
1422 ;; If both " " and "-" lead to completions, prefer " " so SPC behaves
1423 ;; a bit more like a self-inserting key (bug#17375).
1424 (while (and exts (not (consp tem)))
1425 (setq tem (completion-try-completion
1426 (concat before (pop exts) after)
1427 table predicate (1+ point) md)))
1428 (if (consp tem) (setq comp tem))))
1430 ;; Completing a single word is actually more difficult than completing
1431 ;; as much as possible, because we first have to find the "current
1432 ;; position" in `completion' in order to find the end of the word
1433 ;; we're completing. Normally, `string' is a prefix of `completion',
1434 ;; which makes it trivial to find the position, but with fancier
1435 ;; completion (plus env-var expansion, ...) `completion' might not
1436 ;; look anything like `string' at all.
1437 (let* ((comppoint (cdr comp))
1438 (completion (car comp))
1439 (before (substring string 0 point))
1440 (combined (concat before "\n" completion)))
1441 ;; Find in completion the longest text that was right before point.
1442 (when (string-match "\\(.+\\)\n.*?\\1" combined)
1443 (let* ((prefix (match-string 1 before))
1444 ;; We used non-greedy match to make `rem' as long as possible.
1445 (rem (substring combined (match-end 0)))
1446 ;; Find in the remainder of completion the longest text
1447 ;; that was right after point.
1448 (after (substring string point))
1449 (suffix (if (string-match "\\`\\(.+\\).*\n.*\\1"
1450 (concat after "\n" rem))
1451 (match-string 1 after))))
1452 ;; The general idea is to try and guess what text was inserted
1453 ;; at point by the completion. Problem is: if we guess wrong,
1454 ;; we may end up treating as "added by completion" text that was
1455 ;; actually painfully typed by the user. So if we then cut
1456 ;; after the first word, we may throw away things the
1457 ;; user wrote. So let's try to be as conservative as possible:
1458 ;; only cut after the first word, if we're reasonably sure that
1459 ;; our guess is correct.
1460 ;; Note: a quick survey on emacs-devel seemed to indicate that
1461 ;; nobody actually cares about the "word-at-a-time" feature of
1462 ;; minibuffer-complete-word, whose real raison-d'être is that it
1463 ;; tries to add "-" or " ". One more reason to only cut after
1464 ;; the first word, if we're really sure we're right.
1465 (when (and (or suffix (zerop (length after)))
1466 (string-match (concat
1467 ;; Make submatch 1 as small as possible
1468 ;; to reduce the risk of cutting
1469 ;; valuable text.
1470 ".*" (regexp-quote prefix) "\\(.*?\\)"
1471 (if suffix (regexp-quote suffix) "\\'"))
1472 completion)
1473 ;; The new point in `completion' should also be just
1474 ;; before the suffix, otherwise something more complex
1475 ;; is going on, and we're not sure where we are.
1476 (eq (match-end 1) comppoint)
1477 ;; (match-beginning 1)..comppoint is now the stretch
1478 ;; of text in `completion' that was completed at point.
1479 (string-match "\\W" completion (match-beginning 1))
1480 ;; Is there really something to cut?
1481 (> comppoint (match-end 0)))
1482 ;; Cut after the first word.
1483 (let ((cutpos (match-end 0)))
1484 (setq completion (concat (substring completion 0 cutpos)
1485 (substring completion comppoint)))
1486 (setq comppoint cutpos)))))
1488 (cons completion comppoint)))))
1491 (defun minibuffer-complete-word ()
1492 "Complete the minibuffer contents at most a single word.
1493 After one word is completed as much as possible, a space or hyphen
1494 is added, provided that matches some possible completion.
1495 Return nil if there is no valid completion, else t."
1496 (interactive)
1497 (completion-in-region--single-word
1498 (minibuffer-prompt-end) (point-max)
1499 minibuffer-completion-table minibuffer-completion-predicate))
1501 (defun completion-in-region--single-word (beg end collection
1502 &optional predicate)
1503 (let ((minibuffer-completion-table collection)
1504 (minibuffer-completion-predicate predicate))
1505 (pcase (completion--do-completion beg end
1506 #'completion--try-word-completion)
1507 (#b000 nil)
1508 (_ t))))
1510 (defface completions-annotations '((t :inherit italic))
1511 "Face to use for annotations in the *Completions* buffer.")
1513 (defcustom completions-format 'horizontal
1514 "Define the appearance and sorting of completions.
1515 If the value is `vertical', display completions sorted vertically
1516 in columns in the *Completions* buffer.
1517 If the value is `horizontal', display completions sorted
1518 horizontally in alphabetical order, rather than down the screen."
1519 :type '(choice (const horizontal) (const vertical))
1520 :version "23.2")
1522 (defun completion--insert-strings (strings)
1523 "Insert a list of STRINGS into the current buffer.
1524 Uses columns to keep the listing readable but compact.
1525 It also eliminates runs of equal strings."
1526 (when (consp strings)
1527 (let* ((length (apply 'max
1528 (mapcar (lambda (s)
1529 (if (consp s)
1530 (+ (string-width (car s))
1531 (string-width (cadr s)))
1532 (string-width s)))
1533 strings)))
1534 (window (get-buffer-window (current-buffer) 0))
1535 (wwidth (if window (1- (window-width window)) 79))
1536 (columns (min
1537 ;; At least 2 columns; at least 2 spaces between columns.
1538 (max 2 (/ wwidth (+ 2 length)))
1539 ;; Don't allocate more columns than we can fill.
1540 ;; Windows can't show less than 3 lines anyway.
1541 (max 1 (/ (length strings) 2))))
1542 (colwidth (/ wwidth columns))
1543 (column 0)
1544 (rows (/ (length strings) columns))
1545 (row 0)
1546 (first t)
1547 (laststring nil))
1548 ;; The insertion should be "sensible" no matter what choices were made
1549 ;; for the parameters above.
1550 (dolist (str strings)
1551 (unless (equal laststring str) ; Remove (consecutive) duplicates.
1552 (setq laststring str)
1553 ;; FIXME: `string-width' doesn't pay attention to
1554 ;; `display' properties.
1555 (let ((length (if (consp str)
1556 (+ (string-width (car str))
1557 (string-width (cadr str)))
1558 (string-width str))))
1559 (cond
1560 ((eq completions-format 'vertical)
1561 ;; Vertical format
1562 (when (> row rows)
1563 (forward-line (- -1 rows))
1564 (setq row 0 column (+ column colwidth)))
1565 (when (> column 0)
1566 (end-of-line)
1567 (while (> (current-column) column)
1568 (if (eobp)
1569 (insert "\n")
1570 (forward-line 1)
1571 (end-of-line)))
1572 (insert " \t")
1573 (set-text-properties (1- (point)) (point)
1574 `(display (space :align-to ,column)))))
1576 ;; Horizontal format
1577 (unless first
1578 (if (< wwidth (+ (max colwidth length) column))
1579 ;; No space for `str' at point, move to next line.
1580 (progn (insert "\n") (setq column 0))
1581 (insert " \t")
1582 ;; Leave the space unpropertized so that in the case we're
1583 ;; already past the goal column, there is still
1584 ;; a space displayed.
1585 (set-text-properties (1- (point)) (point)
1586 ;; We can't just set tab-width, because
1587 ;; completion-setup-function will kill
1588 ;; all local variables :-(
1589 `(display (space :align-to ,column)))
1590 nil))))
1591 (setq first nil)
1592 (if (not (consp str))
1593 (put-text-property (point) (progn (insert str) (point))
1594 'mouse-face 'highlight)
1595 (put-text-property (point) (progn (insert (car str)) (point))
1596 'mouse-face 'highlight)
1597 (let ((beg (point))
1598 (end (progn (insert (cadr str)) (point))))
1599 (put-text-property beg end 'mouse-face nil)
1600 (font-lock-prepend-text-property beg end 'face
1601 'completions-annotations)))
1602 (cond
1603 ((eq completions-format 'vertical)
1604 ;; Vertical format
1605 (if (> column 0)
1606 (forward-line)
1607 (insert "\n"))
1608 (setq row (1+ row)))
1610 ;; Horizontal format
1611 ;; Next column to align to.
1612 (setq column (+ column
1613 ;; Round up to a whole number of columns.
1614 (* colwidth (ceiling length colwidth))))))))))))
1616 (defvar completion-common-substring nil)
1617 (make-obsolete-variable 'completion-common-substring nil "23.1")
1619 (defvar completion-setup-hook nil
1620 "Normal hook run at the end of setting up a completion list buffer.
1621 When this hook is run, the current buffer is the one in which the
1622 command to display the completion list buffer was run.
1623 The completion list buffer is available as the value of `standard-output'.
1624 See also `display-completion-list'.")
1626 (defface completions-first-difference
1627 '((t (:inherit bold)))
1628 "Face for the first uncommon character in completions.
1629 See also the face `completions-common-part'.")
1631 (defface completions-common-part '((t nil))
1632 "Face for the common prefix substring in completions.
1633 The idea of this face is that you can use it to make the common parts
1634 less visible than normal, so that the differing parts are emphasized
1635 by contrast.
1636 See also the face `completions-first-difference'.")
1638 (defun completion-hilit-commonality (completions prefix-len &optional base-size)
1639 "Apply font-lock highlighting to a list of completions, COMPLETIONS.
1640 PREFIX-LEN is an integer. BASE-SIZE is an integer or nil (meaning zero).
1642 This adds the face `completions-common-part' to the first
1643 \(PREFIX-LEN - BASE-SIZE) characters of each completion, and the face
1644 `completions-first-difference' to the first character after that.
1646 It returns a list with font-lock properties applied to each element,
1647 and with BASE-SIZE appended as the last element."
1648 (when completions
1649 (let ((com-str-len (- prefix-len (or base-size 0))))
1650 (nconc
1651 (mapcar
1652 (lambda (elem)
1653 (let ((str
1654 ;; Don't modify the string itself, but a copy, since the
1655 ;; the string may be read-only or used for other purposes.
1656 ;; Furthermore, since `completions' may come from
1657 ;; display-completion-list, `elem' may be a list.
1658 (if (consp elem)
1659 (car (setq elem (cons (copy-sequence (car elem))
1660 (cdr elem))))
1661 (setq elem (copy-sequence elem)))))
1662 (font-lock-prepend-text-property
1664 ;; If completion-boundaries returns incorrect
1665 ;; values, all-completions may return strings
1666 ;; that don't contain the prefix.
1667 (min com-str-len (length str))
1668 'face 'completions-common-part str)
1669 (if (> (length str) com-str-len)
1670 (font-lock-prepend-text-property com-str-len (1+ com-str-len)
1671 'face
1672 'completions-first-difference
1673 str)))
1674 elem)
1675 completions)
1676 base-size))))
1678 (defun display-completion-list (completions &optional common-substring)
1679 "Display the list of completions, COMPLETIONS, using `standard-output'.
1680 Each element may be just a symbol or string
1681 or may be a list of two strings to be printed as if concatenated.
1682 If it is a list of two strings, the first is the actual completion
1683 alternative, the second serves as annotation.
1684 `standard-output' must be a buffer.
1685 The actual completion alternatives, as inserted, are given `mouse-face'
1686 properties of `highlight'.
1687 At the end, this runs the normal hook `completion-setup-hook'.
1688 It can find the completion buffer in `standard-output'."
1689 (declare (advertised-calling-convention (completions) "24.4"))
1690 (if common-substring
1691 (setq completions (completion-hilit-commonality
1692 completions (length common-substring)
1693 ;; We don't know the base-size.
1694 nil)))
1695 (if (not (bufferp standard-output))
1696 ;; This *never* (ever) happens, so there's no point trying to be clever.
1697 (with-temp-buffer
1698 (let ((standard-output (current-buffer))
1699 (completion-setup-hook nil))
1700 (display-completion-list completions common-substring))
1701 (princ (buffer-string)))
1703 (with-current-buffer standard-output
1704 (goto-char (point-max))
1705 (if (null completions)
1706 (insert "There are no possible completions of what you have typed.")
1707 (insert "Possible completions are:\n")
1708 (completion--insert-strings completions))))
1710 ;; The hilit used to be applied via completion-setup-hook, so there
1711 ;; may still be some code that uses completion-common-substring.
1712 (with-no-warnings
1713 (let ((completion-common-substring common-substring))
1714 (run-hooks 'completion-setup-hook)))
1715 nil)
1717 (defvar completion-extra-properties nil
1718 "Property list of extra properties of the current completion job.
1719 These include:
1721 `:annotation-function': Function to annotate the completions buffer.
1722 The function must accept one argument, a completion string,
1723 and return either nil or a string which is to be displayed
1724 next to the completion (but which is not part of the
1725 completion). The function can access the completion data via
1726 `minibuffer-completion-table' and related variables.
1728 `:exit-function': Function to run after completion is performed.
1730 The function must accept two arguments, STRING and STATUS.
1731 STRING is the text to which the field was completed, and
1732 STATUS indicates what kind of operation happened:
1733 `finished' - text is now complete
1734 `sole' - text cannot be further completed but
1735 completion is not finished
1736 `exact' - text is a valid completion but may be further
1737 completed.")
1739 (defvar completion-annotate-function
1741 ;; Note: there's a lot of scope as for when to add annotations and
1742 ;; what annotations to add. E.g. completing-help.el allowed adding
1743 ;; the first line of docstrings to M-x completion. But there's
1744 ;; a tension, since such annotations, while useful at times, can
1745 ;; actually drown the useful information.
1746 ;; So completion-annotate-function should be used parsimoniously, or
1747 ;; else only used upon a user's request (e.g. we could add a command
1748 ;; to completion-list-mode to add annotations to the current
1749 ;; completions).
1750 "Function to add annotations in the *Completions* buffer.
1751 The function takes a completion and should either return nil, or a string that
1752 will be displayed next to the completion. The function can access the
1753 completion table and predicates via `minibuffer-completion-table' and related
1754 variables.")
1755 (make-obsolete-variable 'completion-annotate-function
1756 'completion-extra-properties "24.1")
1758 (defun completion--done (string &optional finished message)
1759 (let* ((exit-fun (plist-get completion-extra-properties :exit-function))
1760 (pre-msg (and exit-fun (current-message))))
1761 (cl-assert (memq finished '(exact sole finished unknown)))
1762 (when exit-fun
1763 (when (eq finished 'unknown)
1764 (setq finished
1765 (if (eq (try-completion string
1766 minibuffer-completion-table
1767 minibuffer-completion-predicate)
1769 'finished 'exact)))
1770 (funcall exit-fun string finished))
1771 (when (and message
1772 ;; Don't output any message if the exit-fun already did so.
1773 (equal pre-msg (and exit-fun (current-message))))
1774 (completion--message message))))
1776 (defun minibuffer-completion-help (&optional start end)
1777 "Display a list of possible completions of the current minibuffer contents."
1778 (interactive)
1779 (message "Making completion list...")
1780 (let* ((start (or start (minibuffer-prompt-end)))
1781 (end (or end (point-max)))
1782 (string (buffer-substring start end))
1783 (md (completion--field-metadata start))
1784 (completions (completion-all-completions
1785 string
1786 minibuffer-completion-table
1787 minibuffer-completion-predicate
1788 (- (point) start)
1789 md)))
1790 (message nil)
1791 (if (or (null completions)
1792 (and (not (consp (cdr completions)))
1793 (equal (car completions) string)))
1794 (progn
1795 ;; If there are no completions, or if the current input is already
1796 ;; the sole completion, then hide (previous&stale) completions.
1797 (minibuffer-hide-completions)
1798 (ding)
1799 (minibuffer-message
1800 (if completions "Sole completion" "No completions")))
1802 (let* ((last (last completions))
1803 (base-size (or (cdr last) 0))
1804 (prefix (unless (zerop base-size) (substring string 0 base-size)))
1805 (all-md (completion--metadata (buffer-substring-no-properties
1806 start (point))
1807 base-size md
1808 minibuffer-completion-table
1809 minibuffer-completion-predicate))
1810 (afun (or (completion-metadata-get all-md 'annotation-function)
1811 (plist-get completion-extra-properties
1812 :annotation-function)
1813 completion-annotate-function))
1814 ;; If the *Completions* buffer is shown in a new
1815 ;; window, mark it as softly-dedicated, so bury-buffer in
1816 ;; minibuffer-hide-completions will know whether to
1817 ;; delete the window or not.
1818 (display-buffer-mark-dedicated 'soft)
1819 ;; Disable `pop-up-windows' temporarily to allow
1820 ;; `display-buffer--maybe-pop-up-frame-or-window'
1821 ;; in the display actions below to pop up a frame
1822 ;; if `pop-up-frames' is non-nil, but not to pop up a window.
1823 (pop-up-windows nil))
1824 (with-displayed-buffer-window
1825 "*Completions*"
1826 ;; This is a copy of `display-buffer-fallback-action'
1827 ;; where `display-buffer-use-some-window' is replaced
1828 ;; with `display-buffer-at-bottom'.
1829 `((display-buffer--maybe-same-window
1830 display-buffer-reuse-window
1831 display-buffer--maybe-pop-up-frame-or-window
1832 ;; Use `display-buffer-below-selected' for inline completions,
1833 ;; but not in the minibuffer (e.g. in `eval-expression')
1834 ;; for which `display-buffer-at-bottom' is used.
1835 ,(if (eq (selected-window) (minibuffer-window))
1836 'display-buffer-at-bottom
1837 'display-buffer-below-selected))
1838 ,(if temp-buffer-resize-mode
1839 '(window-height . resize-temp-buffer-window)
1840 '(window-height . fit-window-to-buffer))
1841 ,(when temp-buffer-resize-mode
1842 '(preserve-size . (nil . t))))
1844 ;; Remove the base-size tail because `sort' requires a properly
1845 ;; nil-terminated list.
1846 (when last (setcdr last nil))
1847 (setq completions
1848 ;; FIXME: This function is for the output of all-completions,
1849 ;; not completion-all-completions. Often it's the same, but
1850 ;; not always.
1851 (let ((sort-fun (completion-metadata-get
1852 all-md 'display-sort-function)))
1853 (if sort-fun
1854 (funcall sort-fun completions)
1855 (sort completions 'string-lessp))))
1856 (when afun
1857 (setq completions
1858 (mapcar (lambda (s)
1859 (let ((ann (funcall afun s)))
1860 (if ann (list s ann) s)))
1861 completions)))
1863 (with-current-buffer standard-output
1864 (set (make-local-variable 'completion-base-position)
1865 (list (+ start base-size)
1866 ;; FIXME: We should pay attention to completion
1867 ;; boundaries here, but currently
1868 ;; completion-all-completions does not give us the
1869 ;; necessary information.
1870 end))
1871 (set (make-local-variable 'completion-list-insert-choice-function)
1872 (let ((ctable minibuffer-completion-table)
1873 (cpred minibuffer-completion-predicate)
1874 (cprops completion-extra-properties))
1875 (lambda (start end choice)
1876 (unless (or (zerop (length prefix))
1877 (equal prefix
1878 (buffer-substring-no-properties
1879 (max (point-min)
1880 (- start (length prefix)))
1881 start)))
1882 (message "*Completions* out of date"))
1883 ;; FIXME: Use `md' to do quoting&terminator here.
1884 (completion--replace start end choice)
1885 (let* ((minibuffer-completion-table ctable)
1886 (minibuffer-completion-predicate cpred)
1887 (completion-extra-properties cprops)
1888 (result (concat prefix choice))
1889 (bounds (completion-boundaries
1890 result ctable cpred "")))
1891 ;; If the completion introduces a new field, then
1892 ;; completion is not finished.
1893 (completion--done result
1894 (if (eq (car bounds) (length result))
1895 'exact 'finished)))))))
1897 (display-completion-list completions))))
1898 nil))
1900 (defun minibuffer-hide-completions ()
1901 "Get rid of an out-of-date *Completions* buffer."
1902 ;; FIXME: We could/should use minibuffer-scroll-window here, but it
1903 ;; can also point to the minibuffer-parent-window, so it's a bit tricky.
1904 (let ((win (get-buffer-window "*Completions*" 0)))
1905 (if win (with-selected-window win (bury-buffer)))))
1907 (defun exit-minibuffer ()
1908 "Terminate this minibuffer argument."
1909 (interactive)
1910 ;; If the command that uses this has made modifications in the minibuffer,
1911 ;; we don't want them to cause deactivation of the mark in the original
1912 ;; buffer.
1913 ;; A better solution would be to make deactivate-mark buffer-local
1914 ;; (or to turn it into a list of buffers, ...), but in the mean time,
1915 ;; this should do the trick in most cases.
1916 (setq deactivate-mark nil)
1917 (throw 'exit nil))
1919 (defun self-insert-and-exit ()
1920 "Terminate minibuffer input."
1921 (interactive)
1922 (if (characterp last-command-event)
1923 (call-interactively 'self-insert-command)
1924 (ding))
1925 (exit-minibuffer))
1927 (defvar completion-in-region-functions nil
1928 "Wrapper hook around `completion--in-region'.
1929 \(See `with-wrapper-hook' for details about wrapper hooks.)")
1930 (make-obsolete-variable 'completion-in-region-functions
1931 'completion-in-region-function "24.4")
1933 (defvar completion-in-region-function #'completion--in-region
1934 "Function to perform the job of `completion-in-region'.
1935 The function is called with 4 arguments: START END COLLECTION PREDICATE.
1936 The arguments and expected return value are as specified for
1937 `completion-in-region'.")
1939 (defvar completion-in-region--data nil)
1941 (defvar completion-in-region-mode-predicate nil
1942 "Predicate to tell `completion-in-region-mode' when to exit.
1943 It is called with no argument and should return nil when
1944 `completion-in-region-mode' should exit (and hence pop down
1945 the *Completions* buffer).")
1947 (defvar completion-in-region-mode--predicate nil
1948 "Copy of the value of `completion-in-region-mode-predicate'.
1949 This holds the value `completion-in-region-mode-predicate' had when
1950 we entered `completion-in-region-mode'.")
1952 (defun completion-in-region (start end collection &optional predicate)
1953 "Complete the text between START and END using COLLECTION.
1954 Point needs to be somewhere between START and END.
1955 PREDICATE (a function called with no arguments) says when to exit.
1956 This calls the function that `completion-in-region-function' specifies
1957 \(passing the same four arguments that it received) to do the work,
1958 and returns whatever it does. The return value should be nil
1959 if there was no valid completion, else t."
1960 (cl-assert (<= start (point)) (<= (point) end))
1961 (funcall completion-in-region-function start end collection predicate))
1963 (defcustom read-file-name-completion-ignore-case
1964 (if (memq system-type '(ms-dos windows-nt darwin cygwin))
1965 t nil)
1966 "Non-nil means when reading a file name completion ignores case."
1967 :type 'boolean
1968 :version "22.1")
1970 (defun completion--in-region (start end collection &optional predicate)
1971 "Default function to use for `completion-in-region-function'.
1972 Its arguments and return value are as specified for `completion-in-region'.
1973 Also respects the obsolete wrapper hook `completion-in-region-functions'.
1974 \(See `with-wrapper-hook' for details about wrapper hooks.)"
1975 (subr--with-wrapper-hook-no-warnings
1976 ;; FIXME: Maybe we should use this hook to provide a "display
1977 ;; completions" operation as well.
1978 completion-in-region-functions (start end collection predicate)
1979 (let ((minibuffer-completion-table collection)
1980 (minibuffer-completion-predicate predicate))
1981 ;; HACK: if the text we are completing is already in a field, we
1982 ;; want the completion field to take priority (e.g. Bug#6830).
1983 (when completion-in-region-mode-predicate
1984 (setq completion-in-region--data
1985 `(,(if (markerp start) start (copy-marker start))
1986 ,(copy-marker end t) ,collection ,predicate))
1987 (completion-in-region-mode 1))
1988 (completion--in-region-1 start end))))
1990 (defvar completion-in-region-mode-map
1991 (let ((map (make-sparse-keymap)))
1992 ;; FIXME: Only works if completion-in-region-mode was activated via
1993 ;; completion-at-point called directly.
1994 (define-key map "\M-?" 'completion-help-at-point)
1995 (define-key map "\t" 'completion-at-point)
1996 map)
1997 "Keymap activated during `completion-in-region'.")
1999 ;; It is difficult to know when to exit completion-in-region-mode (i.e. hide
2000 ;; the *Completions*). Here's how previous packages did it:
2001 ;; - lisp-mode: never.
2002 ;; - comint: only do it if you hit SPC at the right time.
2003 ;; - pcomplete: pop it down on SPC or after some time-delay.
2004 ;; - semantic: use a post-command-hook check similar to this one.
2005 (defun completion-in-region--postch ()
2006 (or unread-command-events ;Don't pop down the completions in the middle of
2007 ;mouse-drag-region/mouse-set-point.
2008 (and completion-in-region--data
2009 (and (eq (marker-buffer (nth 0 completion-in-region--data))
2010 (current-buffer))
2011 (>= (point) (nth 0 completion-in-region--data))
2012 (<= (point)
2013 (save-excursion
2014 (goto-char (nth 1 completion-in-region--data))
2015 (line-end-position)))
2016 (funcall completion-in-region-mode--predicate)))
2017 (completion-in-region-mode -1)))
2019 ;; (defalias 'completion-in-region--prech 'completion-in-region--postch)
2021 (defvar completion-in-region-mode nil) ;Explicit defvar, i.s.o defcustom.
2023 (define-minor-mode completion-in-region-mode
2024 "Transient minor mode used during `completion-in-region'."
2025 :global t
2026 :group 'minibuffer
2027 ;; Prevent definition of a custom-variable since it makes no sense to
2028 ;; customize this variable.
2029 :variable completion-in-region-mode
2030 ;; (remove-hook 'pre-command-hook #'completion-in-region--prech)
2031 (remove-hook 'post-command-hook #'completion-in-region--postch)
2032 (setq minor-mode-overriding-map-alist
2033 (delq (assq 'completion-in-region-mode minor-mode-overriding-map-alist)
2034 minor-mode-overriding-map-alist))
2035 (if (null completion-in-region-mode)
2036 (progn
2037 (setq completion-in-region--data nil)
2038 (unless (equal "*Completions*" (buffer-name (window-buffer)))
2039 (minibuffer-hide-completions)))
2040 ;; (add-hook 'pre-command-hook #'completion-in-region--prech)
2041 (cl-assert completion-in-region-mode-predicate)
2042 (setq completion-in-region-mode--predicate
2043 completion-in-region-mode-predicate)
2044 (add-hook 'post-command-hook #'completion-in-region--postch)
2045 (push `(completion-in-region-mode . ,completion-in-region-mode-map)
2046 minor-mode-overriding-map-alist)))
2048 ;; Define-minor-mode added our keymap to minor-mode-map-alist, but we want it
2049 ;; on minor-mode-overriding-map-alist instead.
2050 (setq minor-mode-map-alist
2051 (delq (assq 'completion-in-region-mode minor-mode-map-alist)
2052 minor-mode-map-alist))
2054 (defvar completion-at-point-functions '(tags-completion-at-point-function)
2055 "Special hook to find the completion table for the entity at point.
2056 Each function on this hook is called in turn without any argument and
2057 should return either nil, meaning it is not applicable at point,
2058 or a function of no arguments to perform completion (discouraged),
2059 or a list of the form (START END COLLECTION . PROPS), where:
2060 START and END delimit the entity to complete and should include point,
2061 COLLECTION is the completion table to use to complete the entity, and
2062 PROPS is a property list for additional information.
2063 Currently supported properties are all the properties that can appear in
2064 `completion-extra-properties' plus:
2065 `:predicate' a predicate that completion candidates need to satisfy.
2066 `:exclusive' value of `no' means that if the completion table fails to
2067 match the text at point, then instead of reporting a completion
2068 failure, the completion should try the next completion function.
2069 As is the case with most hooks, the functions are responsible for
2070 preserving things like point and current buffer.")
2072 (defvar completion--capf-misbehave-funs nil
2073 "List of functions found on `completion-at-point-functions' that misbehave.
2074 These are functions that neither return completion data nor a completion
2075 function but instead perform completion right away.")
2076 (defvar completion--capf-safe-funs nil
2077 "List of well-behaved functions found on `completion-at-point-functions'.
2078 These are functions which return proper completion data rather than
2079 a completion function or god knows what else.")
2081 (defun completion--capf-wrapper (fun which)
2082 ;; FIXME: The safe/misbehave handling assumes that a given function will
2083 ;; always return the same kind of data, but this breaks down with functions
2084 ;; like comint-completion-at-point or mh-letter-completion-at-point, which
2085 ;; could be sometimes safe and sometimes misbehaving (and sometimes neither).
2086 (if (pcase which
2087 (`all t)
2088 (`safe (member fun completion--capf-safe-funs))
2089 (`optimist (not (member fun completion--capf-misbehave-funs))))
2090 (let ((res (funcall fun)))
2091 (cond
2092 ((and (consp res) (not (functionp res)))
2093 (unless (member fun completion--capf-safe-funs)
2094 (push fun completion--capf-safe-funs))
2095 (and (eq 'no (plist-get (nthcdr 3 res) :exclusive))
2096 ;; FIXME: Here we'd need to decide whether there are
2097 ;; valid completions against the current text. But this depends
2098 ;; on the actual completion UI (e.g. with the default completion
2099 ;; it depends on completion-style) ;-(
2100 ;; We approximate this result by checking whether prefix
2101 ;; completion might work, which means that non-prefix completion
2102 ;; will not work (or not right) for completion functions that
2103 ;; are non-exclusive.
2104 (null (try-completion (buffer-substring-no-properties
2105 (car res) (point))
2106 (nth 2 res)
2107 (plist-get (nthcdr 3 res) :predicate)))
2108 (setq res nil)))
2109 ((not (or (listp res) (functionp res)))
2110 (unless (member fun completion--capf-misbehave-funs)
2111 (message
2112 "Completion function %S uses a deprecated calling convention" fun)
2113 (push fun completion--capf-misbehave-funs))))
2114 (if res (cons fun res)))))
2116 (defun completion-at-point ()
2117 "Perform completion on the text around point.
2118 The completion method is determined by `completion-at-point-functions'."
2119 (interactive)
2120 (let ((res (run-hook-wrapped 'completion-at-point-functions
2121 #'completion--capf-wrapper 'all)))
2122 (pcase res
2123 (`(,_ . ,(and (pred functionp) f)) (funcall f))
2124 (`(,hookfun . (,start ,end ,collection . ,plist))
2125 (unless (markerp start) (setq start (copy-marker start)))
2126 (let* ((completion-extra-properties plist)
2127 (completion-in-region-mode-predicate
2128 (lambda ()
2129 ;; We're still in the same completion field.
2130 (let ((newstart (car-safe (funcall hookfun))))
2131 (and newstart (= newstart start))))))
2132 (completion-in-region start end collection
2133 (plist-get plist :predicate))))
2134 ;; Maybe completion already happened and the function returned t.
2136 (when (cdr res)
2137 (message "Warning: %S failed to return valid completion data!"
2138 (car res)))
2139 (cdr res)))))
2141 (defun completion-help-at-point ()
2142 "Display the completions on the text around point.
2143 The completion method is determined by `completion-at-point-functions'."
2144 (interactive)
2145 (let ((res (run-hook-wrapped 'completion-at-point-functions
2146 ;; Ignore misbehaving functions.
2147 #'completion--capf-wrapper 'optimist)))
2148 (pcase res
2149 (`(,_ . ,(and (pred functionp) f))
2150 (message "Don't know how to show completions for %S" f))
2151 (`(,hookfun . (,start ,end ,collection . ,plist))
2152 (unless (markerp start) (setq start (copy-marker start)))
2153 (let* ((minibuffer-completion-table collection)
2154 (minibuffer-completion-predicate (plist-get plist :predicate))
2155 (completion-extra-properties plist)
2156 (completion-in-region-mode-predicate
2157 (lambda ()
2158 ;; We're still in the same completion field.
2159 (let ((newstart (car-safe (funcall hookfun))))
2160 (and newstart (= newstart start))))))
2161 ;; FIXME: We should somehow (ab)use completion-in-region-function or
2162 ;; introduce a corresponding hook (plus another for word-completion,
2163 ;; and another for force-completion, maybe?).
2164 (setq completion-in-region--data
2165 `(,start ,(copy-marker end t) ,collection
2166 ,(plist-get plist :predicate)))
2167 (completion-in-region-mode 1)
2168 (minibuffer-completion-help start end)))
2169 (`(,hookfun . ,_)
2170 ;; The hook function already performed completion :-(
2171 ;; Not much we can do at this point.
2172 (message "%s already performed completion!" hookfun)
2173 nil)
2174 (_ (message "Nothing to complete at point")))))
2176 ;;; Key bindings.
2178 (let ((map minibuffer-local-map))
2179 (define-key map "\C-g" 'abort-recursive-edit)
2180 (define-key map "\r" 'exit-minibuffer)
2181 (define-key map "\n" 'exit-minibuffer))
2183 (defvar minibuffer-local-completion-map
2184 (let ((map (make-sparse-keymap)))
2185 (set-keymap-parent map minibuffer-local-map)
2186 (define-key map "\t" 'minibuffer-complete)
2187 ;; M-TAB is already abused for many other purposes, so we should find
2188 ;; another binding for it.
2189 ;; (define-key map "\e\t" 'minibuffer-force-complete)
2190 (define-key map " " 'minibuffer-complete-word)
2191 (define-key map "?" 'minibuffer-completion-help)
2192 map)
2193 "Local keymap for minibuffer input with completion.")
2195 (defvar minibuffer-local-must-match-map
2196 (let ((map (make-sparse-keymap)))
2197 (set-keymap-parent map minibuffer-local-completion-map)
2198 (define-key map "\r" 'minibuffer-complete-and-exit)
2199 (define-key map "\n" 'minibuffer-complete-and-exit)
2200 map)
2201 "Local keymap for minibuffer input with completion, for exact match.")
2203 (defvar minibuffer-local-filename-completion-map
2204 (let ((map (make-sparse-keymap)))
2205 (define-key map " " nil)
2206 map)
2207 "Local keymap for minibuffer input with completion for filenames.
2208 Gets combined either with `minibuffer-local-completion-map' or
2209 with `minibuffer-local-must-match-map'.")
2211 (define-obsolete-variable-alias 'minibuffer-local-must-match-filename-map
2212 'minibuffer-local-filename-must-match-map "23.1")
2213 (defvar minibuffer-local-filename-must-match-map (make-sparse-keymap))
2214 (make-obsolete-variable 'minibuffer-local-filename-must-match-map nil "24.1")
2216 (let ((map minibuffer-local-ns-map))
2217 (define-key map " " 'exit-minibuffer)
2218 (define-key map "\t" 'exit-minibuffer)
2219 (define-key map "?" 'self-insert-and-exit))
2221 (defvar minibuffer-inactive-mode-map
2222 (let ((map (make-keymap)))
2223 (suppress-keymap map)
2224 (define-key map "e" 'find-file-other-frame)
2225 (define-key map "f" 'find-file-other-frame)
2226 (define-key map "b" 'switch-to-buffer-other-frame)
2227 (define-key map "i" 'info)
2228 (define-key map "m" 'mail)
2229 (define-key map "n" 'make-frame)
2230 (define-key map [mouse-1] 'view-echo-area-messages)
2231 ;; So the global down-mouse-1 binding doesn't clutter the execution of the
2232 ;; above mouse-1 binding.
2233 (define-key map [down-mouse-1] #'ignore)
2234 map)
2235 "Keymap for use in the minibuffer when it is not active.
2236 The non-mouse bindings in this keymap can only be used in minibuffer-only
2237 frames, since the minibuffer can normally not be selected when it is
2238 not active.")
2240 (define-derived-mode minibuffer-inactive-mode nil "InactiveMinibuffer"
2241 :abbrev-table nil ;abbrev.el is not loaded yet during dump.
2242 ;; Note: this major mode is called from minibuf.c.
2243 "Major mode to use in the minibuffer when it is not active.
2244 This is only used when the minibuffer area has no active minibuffer.")
2246 ;;; Completion tables.
2248 (defun minibuffer--double-dollars (str)
2249 ;; Reuse the actual "$" from the string to preserve any text-property it
2250 ;; might have, such as `face'.
2251 (replace-regexp-in-string "\\$" (lambda (dollar) (concat dollar dollar))
2252 str))
2254 (defun minibuffer-maybe-quote-filename (filename)
2255 "Protect FILENAME from `substitute-in-file-name', as needed.
2256 Useful to give the user default values that won't be substituted."
2257 (if (and (not (file-name-quoted-p filename))
2258 (file-name-absolute-p filename)
2259 (string-match-p (if (memq system-type '(windows-nt ms-dos))
2260 "[/\\\\]~" "/~")
2261 (file-local-name filename)))
2262 (file-name-quote filename)
2263 (minibuffer--double-dollars filename)))
2265 (defun completion--make-envvar-table ()
2266 (mapcar (lambda (enventry)
2267 (substring enventry 0 (string-match-p "=" enventry)))
2268 process-environment))
2270 (defconst completion--embedded-envvar-re
2271 ;; We can't reuse env--substitute-vars-regexp because we need to match only
2272 ;; potentially-unfinished envvars at end of string.
2273 (concat "\\(?:^\\|[^$]\\(?:\\$\\$\\)*\\)"
2274 "$\\([[:alnum:]_]*\\|{\\([^}]*\\)\\)\\'"))
2276 (defun completion--embedded-envvar-table (string _pred action)
2277 "Completion table for envvars embedded in a string.
2278 The envvar syntax (and escaping) rules followed by this table are the
2279 same as `substitute-in-file-name'."
2280 ;; We ignore `pred', because the predicates passed to us via
2281 ;; read-file-name-internal are not 100% correct and fail here:
2282 ;; e.g. we get predicates like file-directory-p there, whereas the filename
2283 ;; completed needs to be passed through substitute-in-file-name before it
2284 ;; can be passed to file-directory-p.
2285 (when (string-match completion--embedded-envvar-re string)
2286 (let* ((beg (or (match-beginning 2) (match-beginning 1)))
2287 (table (completion--make-envvar-table))
2288 (prefix (substring string 0 beg)))
2289 (cond
2290 ((eq action 'lambda)
2291 ;; This table is expected to be used in conjunction with some
2292 ;; other table that provides the "main" completion. Let the
2293 ;; other table handle the test-completion case.
2294 nil)
2295 ((or (eq (car-safe action) 'boundaries) (eq action 'metadata))
2296 ;; Only return boundaries/metadata if there's something to complete,
2297 ;; since otherwise when we're used in
2298 ;; completion-table-in-turn, we could return boundaries and
2299 ;; let some subsequent table return a list of completions.
2300 ;; FIXME: Maybe it should rather be fixed in
2301 ;; completion-table-in-turn instead, but it's difficult to
2302 ;; do it efficiently there.
2303 (when (try-completion (substring string beg) table nil)
2304 ;; Compute the boundaries of the subfield to which this
2305 ;; completion applies.
2306 (if (eq action 'metadata)
2307 '(metadata (category . environment-variable))
2308 (let ((suffix (cdr action)))
2309 `(boundaries
2310 ,(or (match-beginning 2) (match-beginning 1))
2311 . ,(when (string-match "[^[:alnum:]_]" suffix)
2312 (match-beginning 0)))))))
2314 (if (eq (aref string (1- beg)) ?{)
2315 (setq table (apply-partially 'completion-table-with-terminator
2316 "}" table)))
2317 ;; Even if file-name completion is case-insensitive, we want
2318 ;; envvar completion to be case-sensitive.
2319 (let ((completion-ignore-case nil))
2320 (completion-table-with-context
2321 prefix table (substring string beg) nil action)))))))
2323 (defun completion-file-name-table (string pred action)
2324 "Completion table for file names."
2325 (condition-case nil
2326 (cond
2327 ((eq action 'metadata) '(metadata (category . file)))
2328 ((string-match-p "\\`~[^/\\]*\\'" string)
2329 (completion-table-with-context "~"
2330 (mapcar (lambda (u) (concat u "/"))
2331 (system-users))
2332 (substring string 1)
2333 pred action))
2334 ((eq (car-safe action) 'boundaries)
2335 (let ((start (length (file-name-directory string)))
2336 (end (string-match-p "/" (cdr action))))
2337 `(boundaries
2338 ;; if `string' is "C:" in w32, (file-name-directory string)
2339 ;; returns "C:/", so `start' is 3 rather than 2.
2340 ;; Not quite sure what is The Right Fix, but clipping it
2341 ;; back to 2 will work for this particular case. We'll
2342 ;; see if we can come up with a better fix when we bump
2343 ;; into more such problematic cases.
2344 ,(min start (length string)) . ,end)))
2346 ((eq action 'lambda)
2347 (if (zerop (length string))
2348 nil ;Not sure why it's here, but it probably doesn't harm.
2349 (funcall (or pred 'file-exists-p) string)))
2352 (let* ((name (file-name-nondirectory string))
2353 (specdir (file-name-directory string))
2354 (realdir (or specdir default-directory)))
2356 (cond
2357 ((null action)
2358 (let ((comp (file-name-completion name realdir pred)))
2359 (if (stringp comp)
2360 (concat specdir comp)
2361 comp)))
2363 ((eq action t)
2364 (let ((all (file-name-all-completions name realdir)))
2366 ;; Check the predicate, if necessary.
2367 (unless (memq pred '(nil file-exists-p))
2368 (let ((comp ())
2369 (pred
2370 (if (eq pred 'file-directory-p)
2371 ;; Brute-force speed up for directory checking:
2372 ;; Discard strings which don't end in a slash.
2373 (lambda (s)
2374 (let ((len (length s)))
2375 (and (> len 0) (eq (aref s (1- len)) ?/))))
2376 ;; Must do it the hard (and slow) way.
2377 pred)))
2378 (let ((default-directory (expand-file-name realdir)))
2379 (dolist (tem all)
2380 (if (funcall pred tem) (push tem comp))))
2381 (setq all (nreverse comp))))
2383 all))))))
2384 (file-error nil))) ;PCM often calls with invalid directories.
2386 (defvar read-file-name-predicate nil
2387 "Current predicate used by `read-file-name-internal'.")
2388 (make-obsolete-variable 'read-file-name-predicate
2389 "use the regular PRED argument" "23.2")
2391 (defun completion--sifn-requote (upos qstr)
2392 ;; We're looking for `qpos' such that:
2393 ;; (equal (substring (substitute-in-file-name qstr) 0 upos)
2394 ;; (substitute-in-file-name (substring qstr 0 qpos)))
2395 ;; Big problem here: we have to reverse engineer substitute-in-file-name to
2396 ;; find the position corresponding to UPOS in QSTR, but
2397 ;; substitute-in-file-name can do anything, depending on file-name-handlers.
2398 ;; substitute-in-file-name does the following kind of things:
2399 ;; - expand env-var references.
2400 ;; - turn backslashes into slashes.
2401 ;; - truncate some prefix of the input.
2402 ;; - rewrite some prefix.
2403 ;; Some of these operations are written in external libraries and we'd rather
2404 ;; not hard code any assumptions here about what they actually do. IOW, we
2405 ;; want to treat substitute-in-file-name as a black box, as much as possible.
2406 ;; Kind of like in rfn-eshadow-update-overlay, only worse.
2407 ;; Example of things we need to handle:
2408 ;; - Tramp (substitute-in-file-name "/foo:~/bar//baz") => "/scpc:foo:/baz".
2409 ;; - Cygwin (substitute-in-file-name "C:\bin") => "/usr/bin"
2410 ;; (substitute-in-file-name "C:\") => "/"
2411 ;; (substitute-in-file-name "C:\bi") => "/bi"
2412 (let* ((ustr (substitute-in-file-name qstr))
2413 (uprefix (substring ustr 0 upos))
2414 qprefix)
2415 ;; Main assumption: nothing after qpos should affect the text before upos,
2416 ;; so we can work our way backward from the end of qstr, one character
2417 ;; at a time.
2418 ;; Second assumptions: If qpos is far from the end this can be a bit slow,
2419 ;; so we speed it up by doing a first loop that skips a word at a time.
2420 ;; This word-sized loop is careful not to cut in the middle of env-vars.
2421 (while (let ((boundary (string-match "\\(\\$+{?\\)?\\w+\\W*\\'" qstr)))
2422 (and boundary
2423 (progn
2424 (setq qprefix (substring qstr 0 boundary))
2425 (string-prefix-p uprefix
2426 (substitute-in-file-name qprefix)))))
2427 (setq qstr qprefix))
2428 (let ((qpos (length qstr)))
2429 (while (and (> qpos 0)
2430 (string-prefix-p uprefix
2431 (substitute-in-file-name
2432 (substring qstr 0 (1- qpos)))))
2433 (setq qpos (1- qpos)))
2434 (cons qpos #'minibuffer-maybe-quote-filename))))
2436 (defalias 'completion--file-name-table
2437 (completion-table-with-quoting #'completion-file-name-table
2438 #'substitute-in-file-name
2439 #'completion--sifn-requote)
2440 "Internal subroutine for `read-file-name'. Do not call this.
2441 This is a completion table for file names, like `completion-file-name-table'
2442 except that it passes the file name through `substitute-in-file-name'.")
2444 (defalias 'read-file-name-internal
2445 (completion-table-in-turn #'completion--embedded-envvar-table
2446 #'completion--file-name-table)
2447 "Internal subroutine for `read-file-name'. Do not call this.")
2449 (defvar read-file-name-function 'read-file-name-default
2450 "The function called by `read-file-name' to do its work.
2451 It should accept the same arguments as `read-file-name'.")
2453 (defcustom insert-default-directory t
2454 "Non-nil means when reading a filename start with default dir in minibuffer.
2456 When the initial minibuffer contents show a name of a file or a directory,
2457 typing RETURN without editing the initial contents is equivalent to typing
2458 the default file name.
2460 If this variable is non-nil, the minibuffer contents are always
2461 initially non-empty, and typing RETURN without editing will fetch the
2462 default name, if one is provided. Note however that this default name
2463 is not necessarily the same as initial contents inserted in the minibuffer,
2464 if the initial contents is just the default directory.
2466 If this variable is nil, the minibuffer often starts out empty. In
2467 that case you may have to explicitly fetch the next history element to
2468 request the default name; typing RETURN without editing will leave
2469 the minibuffer empty.
2471 For some commands, exiting with an empty minibuffer has a special meaning,
2472 such as making the current buffer visit no file in the case of
2473 `set-visited-file-name'."
2474 :type 'boolean)
2476 ;; Not always defined, but only called if next-read-file-uses-dialog-p says so.
2477 (declare-function x-file-dialog "xfns.c"
2478 (prompt dir &optional default-filename mustmatch only-dir-p))
2480 (defun read-file-name--defaults (&optional dir initial)
2481 (let ((default
2482 (cond
2483 ;; With non-nil `initial', use `dir' as the first default.
2484 ;; Essentially, this mean reversing the normal order of the
2485 ;; current directory name and the current file name, i.e.
2486 ;; 1. with normal file reading:
2487 ;; 1.1. initial input is the current directory
2488 ;; 1.2. the first default is the current file name
2489 ;; 2. with non-nil `initial' (e.g. for `find-alternate-file'):
2490 ;; 2.2. initial input is the current file name
2491 ;; 2.1. the first default is the current directory
2492 (initial (abbreviate-file-name dir))
2493 ;; In file buffers, try to get the current file name
2494 (buffer-file-name
2495 (abbreviate-file-name buffer-file-name))))
2496 (file-name-at-point
2497 (run-hook-with-args-until-success 'file-name-at-point-functions)))
2498 (when file-name-at-point
2499 (setq default (delete-dups
2500 (delete "" (delq nil (list file-name-at-point default))))))
2501 ;; Append new defaults to the end of existing `minibuffer-default'.
2502 (append
2503 (if (listp minibuffer-default) minibuffer-default (list minibuffer-default))
2504 (if (listp default) default (list default)))))
2506 (defun read-file-name (prompt &optional dir default-filename mustmatch initial predicate)
2507 "Read file name, prompting with PROMPT and completing in directory DIR.
2508 The return value is not expanded---you must call `expand-file-name' yourself.
2510 DIR is the directory to use for completing relative file names.
2511 It should be an absolute directory name, or nil (which means the
2512 current buffer's value of `default-directory').
2514 DEFAULT-FILENAME specifies the default file name to return if the
2515 user exits the minibuffer with the same non-empty string inserted
2516 by this function. If DEFAULT-FILENAME is a string, that serves
2517 as the default. If DEFAULT-FILENAME is a list of strings, the
2518 first string is the default. If DEFAULT-FILENAME is omitted or
2519 nil, then if INITIAL is non-nil, the default is DIR combined with
2520 INITIAL; otherwise, if the current buffer is visiting a file,
2521 that file serves as the default; otherwise, the default is simply
2522 the string inserted into the minibuffer.
2524 If the user exits with an empty minibuffer, return an empty
2525 string. (This happens only if the user erases the pre-inserted
2526 contents, or if `insert-default-directory' is nil.)
2528 Fourth arg MUSTMATCH can take the following values:
2529 - nil means that the user can exit with any input.
2530 - t means that the user is not allowed to exit unless
2531 the input is (or completes to) an existing file.
2532 - `confirm' means that the user can exit with any input, but she needs
2533 to confirm her choice if the input is not an existing file.
2534 - `confirm-after-completion' means that the user can exit with any
2535 input, but she needs to confirm her choice if she called
2536 `minibuffer-complete' right before `minibuffer-complete-and-exit'
2537 and the input is not an existing file.
2538 - anything else behaves like t except that typing RET does not exit if it
2539 does non-null completion.
2541 Fifth arg INITIAL specifies text to start with.
2543 Sixth arg PREDICATE, if non-nil, should be a function of one
2544 argument; then a file name is considered an acceptable completion
2545 alternative only if PREDICATE returns non-nil with the file name
2546 as its argument.
2548 If this command was invoked with the mouse, use a graphical file
2549 dialog if `use-dialog-box' is non-nil, and the window system or X
2550 toolkit in use provides a file dialog box, and DIR is not a
2551 remote file. For graphical file dialogs, any of the special values
2552 of MUSTMATCH `confirm' and `confirm-after-completion' are
2553 treated as equivalent to nil. Some graphical file dialogs respect
2554 a MUSTMATCH value of t, and some do not (or it only has a cosmetic
2555 effect, and does not actually prevent the user from entering a
2556 non-existent file).
2558 See also `read-file-name-completion-ignore-case'
2559 and `read-file-name-function'."
2560 ;; If x-gtk-use-old-file-dialog = t (xg_get_file_with_selection),
2561 ;; then MUSTMATCH is enforced. But with newer Gtk
2562 ;; (xg_get_file_with_chooser), it only has a cosmetic effect.
2563 ;; The user can still type a non-existent file name.
2564 (funcall (or read-file-name-function #'read-file-name-default)
2565 prompt dir default-filename mustmatch initial predicate))
2567 (defvar minibuffer-local-filename-syntax
2568 (let ((table (make-syntax-table))
2569 (punctuation (car (string-to-syntax "."))))
2570 ;; Convert all punctuation entries to symbol.
2571 (map-char-table (lambda (c syntax)
2572 (when (eq (car syntax) punctuation)
2573 (modify-syntax-entry c "_" table)))
2574 table)
2575 (mapc
2576 (lambda (c)
2577 (modify-syntax-entry c "." table))
2578 '(?/ ?: ?\\))
2579 table)
2580 "Syntax table used when reading a file name in the minibuffer.")
2582 ;; minibuffer-completing-file-name is a variable used internally in minibuf.c
2583 ;; to determine whether to use minibuffer-local-filename-completion-map or
2584 ;; minibuffer-local-completion-map. It shouldn't be exported to Elisp.
2585 ;; FIXME: Actually, it is also used in rfn-eshadow.el we'd otherwise have to
2586 ;; use (eq minibuffer-completion-table #'read-file-name-internal), which is
2587 ;; probably even worse. Maybe We should add some read-file-name-setup-hook
2588 ;; instead, but for now, let's keep this non-obsolete.
2589 ;;(make-obsolete-variable 'minibuffer-completing-file-name nil "future" 'get)
2591 (defun read-file-name-default (prompt &optional dir default-filename mustmatch initial predicate)
2592 "Default method for reading file names.
2593 See `read-file-name' for the meaning of the arguments."
2594 (unless dir (setq dir (or default-directory "~/")))
2595 (unless (file-name-absolute-p dir) (setq dir (expand-file-name dir)))
2596 (unless default-filename
2597 (setq default-filename (if initial (expand-file-name initial dir)
2598 buffer-file-name)))
2599 ;; If dir starts with user's homedir, change that to ~.
2600 (setq dir (abbreviate-file-name dir))
2601 ;; Likewise for default-filename.
2602 (if default-filename
2603 (setq default-filename
2604 (if (consp default-filename)
2605 (mapcar 'abbreviate-file-name default-filename)
2606 (abbreviate-file-name default-filename))))
2607 (let ((insdef (cond
2608 ((and insert-default-directory (stringp dir))
2609 (if initial
2610 (cons (minibuffer-maybe-quote-filename (concat dir initial))
2611 (length (minibuffer-maybe-quote-filename dir)))
2612 (minibuffer-maybe-quote-filename dir)))
2613 (initial (cons (minibuffer-maybe-quote-filename initial) 0)))))
2615 (let ((completion-ignore-case read-file-name-completion-ignore-case)
2616 (minibuffer-completing-file-name t)
2617 (pred (or predicate 'file-exists-p))
2618 (add-to-history nil))
2620 (let* ((val
2621 (if (or (not (next-read-file-uses-dialog-p))
2622 ;; Graphical file dialogs can't handle remote
2623 ;; files (Bug#99).
2624 (file-remote-p dir))
2625 ;; We used to pass `dir' to `read-file-name-internal' by
2626 ;; abusing the `predicate' argument. It's better to
2627 ;; just use `default-directory', but in order to avoid
2628 ;; changing `default-directory' in the current buffer,
2629 ;; we don't let-bind it.
2630 (let ((dir (file-name-as-directory
2631 (expand-file-name dir))))
2632 (minibuffer-with-setup-hook
2633 (lambda ()
2634 (setq default-directory dir)
2635 ;; When the first default in `minibuffer-default'
2636 ;; duplicates initial input `insdef',
2637 ;; reset `minibuffer-default' to nil.
2638 (when (equal (or (car-safe insdef) insdef)
2639 (or (car-safe minibuffer-default)
2640 minibuffer-default))
2641 (setq minibuffer-default
2642 (cdr-safe minibuffer-default)))
2643 ;; On the first request on `M-n' fill
2644 ;; `minibuffer-default' with a list of defaults
2645 ;; relevant for file-name reading.
2646 (set (make-local-variable 'minibuffer-default-add-function)
2647 (lambda ()
2648 (with-current-buffer
2649 (window-buffer (minibuffer-selected-window))
2650 (read-file-name--defaults dir initial))))
2651 (set-syntax-table minibuffer-local-filename-syntax))
2652 (completing-read prompt 'read-file-name-internal
2653 pred mustmatch insdef
2654 'file-name-history default-filename)))
2655 ;; If DEFAULT-FILENAME not supplied and DIR contains
2656 ;; a file name, split it.
2657 (let ((file (file-name-nondirectory dir))
2658 ;; When using a dialog, revert to nil and non-nil
2659 ;; interpretation of mustmatch. confirm options
2660 ;; need to be interpreted as nil, otherwise
2661 ;; it is impossible to create new files using
2662 ;; dialogs with the default settings.
2663 (dialog-mustmatch
2664 (not (memq mustmatch
2665 '(nil confirm confirm-after-completion)))))
2666 (when (and (not default-filename)
2667 (not (zerop (length file))))
2668 (setq default-filename file)
2669 (setq dir (file-name-directory dir)))
2670 (when default-filename
2671 (setq default-filename
2672 (expand-file-name (if (consp default-filename)
2673 (car default-filename)
2674 default-filename)
2675 dir)))
2676 (setq add-to-history t)
2677 (x-file-dialog prompt dir default-filename
2678 dialog-mustmatch
2679 (eq predicate 'file-directory-p)))))
2681 (replace-in-history (eq (car-safe file-name-history) val)))
2682 ;; If completing-read returned the inserted default string itself
2683 ;; (rather than a new string with the same contents),
2684 ;; it has to mean that the user typed RET with the minibuffer empty.
2685 ;; In that case, we really want to return ""
2686 ;; so that commands such as set-visited-file-name can distinguish.
2687 (when (consp default-filename)
2688 (setq default-filename (car default-filename)))
2689 (when (eq val default-filename)
2690 ;; In this case, completing-read has not added an element
2691 ;; to the history. Maybe we should.
2692 (if (not replace-in-history)
2693 (setq add-to-history t))
2694 (setq val ""))
2695 (unless val (error "No file name specified"))
2697 (if (and default-filename
2698 (string-equal val (if (consp insdef) (car insdef) insdef)))
2699 (setq val default-filename))
2700 (setq val (substitute-in-file-name val))
2702 (if replace-in-history
2703 ;; Replace what Fcompleting_read added to the history
2704 ;; with what we will actually return. As an exception,
2705 ;; if that's the same as the second item in
2706 ;; file-name-history, it's really a repeat (Bug#4657).
2707 (let ((val1 (minibuffer-maybe-quote-filename val)))
2708 (if history-delete-duplicates
2709 (setcdr file-name-history
2710 (delete val1 (cdr file-name-history))))
2711 (if (string= val1 (cadr file-name-history))
2712 (pop file-name-history)
2713 (setcar file-name-history val1)))
2714 (if add-to-history
2715 ;; Add the value to the history--but not if it matches
2716 ;; the last value already there.
2717 (let ((val1 (minibuffer-maybe-quote-filename val)))
2718 (unless (and (consp file-name-history)
2719 (equal (car file-name-history) val1))
2720 (setq file-name-history
2721 (cons val1
2722 (if history-delete-duplicates
2723 (delete val1 file-name-history)
2724 file-name-history)))))))
2725 val))))
2727 (defun internal-complete-buffer-except (&optional buffer)
2728 "Perform completion on all buffers excluding BUFFER.
2729 BUFFER nil or omitted means use the current buffer.
2730 Like `internal-complete-buffer', but removes BUFFER from the completion list."
2731 (let ((except (if (stringp buffer) buffer (buffer-name buffer))))
2732 (apply-partially 'completion-table-with-predicate
2733 'internal-complete-buffer
2734 (lambda (name)
2735 (not (equal (if (consp name) (car name) name) except)))
2736 nil)))
2738 ;;; Old-style completion, used in Emacs-21 and Emacs-22.
2740 (defun completion-emacs21-try-completion (string table pred _point)
2741 (let ((completion (try-completion string table pred)))
2742 (if (stringp completion)
2743 (cons completion (length completion))
2744 completion)))
2746 (defun completion-emacs21-all-completions (string table pred _point)
2747 (completion-hilit-commonality
2748 (all-completions string table pred)
2749 (length string)
2750 (car (completion-boundaries string table pred ""))))
2752 (defun completion-emacs22-try-completion (string table pred point)
2753 (let ((suffix (substring string point))
2754 (completion (try-completion (substring string 0 point) table pred)))
2755 (if (not (stringp completion))
2756 completion
2757 ;; Merge a trailing / in completion with a / after point.
2758 ;; We used to only do it for word completion, but it seems to make
2759 ;; sense for all completions.
2760 ;; Actually, claiming this feature was part of Emacs-22 completion
2761 ;; is pushing it a bit: it was only done in minibuffer-completion-word,
2762 ;; which was (by default) not bound during file completion, where such
2763 ;; slashes are most likely to occur.
2764 (if (and (not (zerop (length completion)))
2765 (eq ?/ (aref completion (1- (length completion))))
2766 (not (zerop (length suffix)))
2767 (eq ?/ (aref suffix 0)))
2768 ;; This leaves point after the / .
2769 (setq suffix (substring suffix 1)))
2770 (cons (concat completion suffix) (length completion)))))
2772 (defun completion-emacs22-all-completions (string table pred point)
2773 (let ((beforepoint (substring string 0 point)))
2774 (completion-hilit-commonality
2775 (all-completions beforepoint table pred)
2776 point
2777 (car (completion-boundaries beforepoint table pred "")))))
2779 ;;; Basic completion.
2781 (defun completion--merge-suffix (completion point suffix)
2782 "Merge end of COMPLETION with beginning of SUFFIX.
2783 Simple generalization of the \"merge trailing /\" done in Emacs-22.
2784 Return the new suffix."
2785 (if (and (not (zerop (length suffix)))
2786 (string-match "\\(.+\\)\n\\1" (concat completion "\n" suffix)
2787 ;; Make sure we don't compress things to less
2788 ;; than we started with.
2789 point)
2790 ;; Just make sure we didn't match some other \n.
2791 (eq (match-end 1) (length completion)))
2792 (substring suffix (- (match-end 1) (match-beginning 1)))
2793 ;; Nothing to merge.
2794 suffix))
2796 (defun completion-basic--pattern (beforepoint afterpoint bounds)
2797 (delete
2798 "" (list (substring beforepoint (car bounds))
2799 'point
2800 (substring afterpoint 0 (cdr bounds)))))
2802 (defun completion-basic-try-completion (string table pred point)
2803 (let* ((beforepoint (substring string 0 point))
2804 (afterpoint (substring string point))
2805 (bounds (completion-boundaries beforepoint table pred afterpoint)))
2806 (if (zerop (cdr bounds))
2807 ;; `try-completion' may return a subtly different result
2808 ;; than `all+merge', so try to use it whenever possible.
2809 (let ((completion (try-completion beforepoint table pred)))
2810 (if (not (stringp completion))
2811 completion
2812 (cons
2813 (concat completion
2814 (completion--merge-suffix completion point afterpoint))
2815 (length completion))))
2816 (let* ((suffix (substring afterpoint (cdr bounds)))
2817 (prefix (substring beforepoint 0 (car bounds)))
2818 (pattern (delete
2819 "" (list (substring beforepoint (car bounds))
2820 'point
2821 (substring afterpoint 0 (cdr bounds)))))
2822 (all (completion-pcm--all-completions prefix pattern table pred)))
2823 (if minibuffer-completing-file-name
2824 (setq all (completion-pcm--filename-try-filter all)))
2825 (completion-pcm--merge-try pattern all prefix suffix)))))
2827 (defun completion-basic-all-completions (string table pred point)
2828 (let* ((beforepoint (substring string 0 point))
2829 (afterpoint (substring string point))
2830 (bounds (completion-boundaries beforepoint table pred afterpoint))
2831 ;; (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 (completion-hilit-commonality all point (car bounds))))
2840 ;;; Partial-completion-mode style completion.
2842 (defvar completion-pcm--delim-wild-regex nil
2843 "Regular expression matching delimiters controlling the partial-completion.
2844 Typically, this regular expression simply matches a delimiter, meaning
2845 that completion can add something at (match-beginning 0), but if it has
2846 a submatch 1, then completion can add something at (match-end 1).
2847 This is used when the delimiter needs to be of size zero (e.g. the transition
2848 from lowercase to uppercase characters).")
2850 (defun completion-pcm--prepare-delim-re (delims)
2851 (setq completion-pcm--delim-wild-regex (concat "[" delims "*]")))
2853 (defcustom completion-pcm-word-delimiters "-_./:| "
2854 "A string of characters treated as word delimiters for completion.
2855 Some arcane rules:
2856 If `]' is in this string, it must come first.
2857 If `^' is in this string, it must not come first.
2858 If `-' is in this string, it must come first or right after `]'.
2859 In other words, if S is this string, then `[S]' must be a valid Emacs regular
2860 expression (not containing character ranges like `a-z')."
2861 :set (lambda (symbol value)
2862 (set-default symbol value)
2863 ;; Refresh other vars.
2864 (completion-pcm--prepare-delim-re value))
2865 :initialize 'custom-initialize-reset
2866 :type 'string)
2868 (defcustom completion-pcm-complete-word-inserts-delimiters nil
2869 "Treat the SPC or - inserted by `minibuffer-complete-word' as delimiters.
2870 Those chars are treated as delimiters if this variable is non-nil.
2871 I.e. if non-nil, M-x SPC will just insert a \"-\" in the minibuffer, whereas
2872 if nil, it will list all possible commands in *Completions* because none of
2873 the commands start with a \"-\" or a SPC."
2874 :version "24.1"
2875 :type 'boolean)
2877 (defun completion-pcm--pattern-trivial-p (pattern)
2878 (and (stringp (car pattern))
2879 ;; It can be followed by `point' and "" and still be trivial.
2880 (let ((trivial t))
2881 (dolist (elem (cdr pattern))
2882 (unless (member elem '(point ""))
2883 (setq trivial nil)))
2884 trivial)))
2886 (defun completion-pcm--string->pattern (string &optional point)
2887 "Split STRING into a pattern.
2888 A pattern is a list where each element is either a string
2889 or a symbol, see `completion-pcm--merge-completions'."
2890 (if (and point (< point (length string)))
2891 (let ((prefix (substring string 0 point))
2892 (suffix (substring string point)))
2893 (append (completion-pcm--string->pattern prefix)
2894 '(point)
2895 (completion-pcm--string->pattern suffix)))
2896 (let* ((pattern nil)
2897 (p 0)
2898 (p0 p)
2899 (pending nil))
2901 (while (and (setq p (string-match completion-pcm--delim-wild-regex
2902 string p))
2903 (or completion-pcm-complete-word-inserts-delimiters
2904 ;; If the char was added by minibuffer-complete-word,
2905 ;; then don't treat it as a delimiter, otherwise
2906 ;; "M-x SPC" ends up inserting a "-" rather than listing
2907 ;; all completions.
2908 (not (get-text-property p 'completion-try-word string))))
2909 ;; Usually, completion-pcm--delim-wild-regex matches a delimiter,
2910 ;; meaning that something can be added *before* it, but it can also
2911 ;; match a prefix and postfix, in which case something can be added
2912 ;; in-between (e.g. match [[:lower:]][[:upper:]]).
2913 ;; This is determined by the presence of a submatch-1 which delimits
2914 ;; the prefix.
2915 (if (match-end 1) (setq p (match-end 1)))
2916 (unless (= p0 p)
2917 (if pending (push pending pattern))
2918 (push (substring string p0 p) pattern))
2919 (setq pending nil)
2920 (if (eq (aref string p) ?*)
2921 (progn
2922 (push 'star pattern)
2923 (setq p0 (1+ p)))
2924 (push 'any pattern)
2925 (if (match-end 1)
2926 (setq p0 p)
2927 (push (substring string p (match-end 0)) pattern)
2928 ;; `any-delim' is used so that "a-b" also finds "array->beginning".
2929 (setq pending 'any-delim)
2930 (setq p0 (match-end 0))))
2931 (setq p p0))
2933 (when (> (length string) p0)
2934 (if pending (push pending pattern))
2935 (push (substring string p0) pattern))
2936 ;; An empty string might be erroneously added at the beginning.
2937 ;; It should be avoided properly, but it's so easy to remove it here.
2938 (delete "" (nreverse pattern)))))
2940 (defun completion-pcm--optimize-pattern (p)
2941 ;; Remove empty strings in a separate phase since otherwise a ""
2942 ;; might prevent some other optimization, as in '(any "" any).
2943 (setq p (delete "" p))
2944 (let ((n '()))
2945 (while p
2946 (pcase p
2947 (`(,(and s1 (pred stringp)) ,(and s2 (pred stringp)) . ,rest)
2948 (setq p (cons (concat s1 s2) rest)))
2949 (`(,(and p1 (pred symbolp)) ,(and p2 (guard (eq p1 p2))) . ,_)
2950 (setq p (cdr p)))
2951 (`(star ,(pred symbolp) . ,rest) (setq p `(star . ,rest)))
2952 (`(,(pred symbolp) star . ,rest) (setq p `(star . ,rest)))
2953 (`(point ,(or `any `any-delim) . ,rest) (setq p `(point . ,rest)))
2954 (`(,(or `any `any-delim) point . ,rest) (setq p `(point . ,rest)))
2955 (`(any ,(or `any `any-delim) . ,rest) (setq p `(any . ,rest)))
2956 (`(,(pred symbolp)) (setq p nil)) ;Implicit terminating `any'.
2957 (_ (push (pop p) n))))
2958 (nreverse n)))
2960 (defun completion-pcm--pattern->regex (pattern &optional group)
2961 (let ((re
2962 (concat "\\`"
2963 (mapconcat
2964 (lambda (x)
2965 (cond
2966 ((stringp x) (regexp-quote x))
2968 (let ((re (if (eq x 'any-delim)
2969 (concat completion-pcm--delim-wild-regex "*?")
2970 ".*?")))
2971 (if (if (consp group) (memq x group) group)
2972 (concat "\\(" re "\\)")
2973 re)))))
2974 pattern
2975 ""))))
2976 ;; Avoid pathological backtracking.
2977 (while (string-match "\\.\\*\\?\\(?:\\\\[()]\\)*\\(\\.\\*\\?\\)" re)
2978 (setq re (replace-match "" t t re 1)))
2979 re))
2981 (defun completion-pcm--all-completions (prefix pattern table pred)
2982 "Find all completions for PATTERN in TABLE obeying PRED.
2983 PATTERN is as returned by `completion-pcm--string->pattern'."
2984 ;; (cl-assert (= (car (completion-boundaries prefix table pred ""))
2985 ;; (length prefix)))
2986 ;; Find an initial list of possible completions.
2987 (if (completion-pcm--pattern-trivial-p pattern)
2989 ;; Minibuffer contains no delimiters -- simple case!
2990 (all-completions (concat prefix (car pattern)) table pred)
2992 ;; Use all-completions to do an initial cull. This is a big win,
2993 ;; since all-completions is written in C!
2994 (let* (;; Convert search pattern to a standard regular expression.
2995 (regex (completion-pcm--pattern->regex pattern))
2996 (case-fold-search completion-ignore-case)
2997 (completion-regexp-list (cons regex completion-regexp-list))
2998 (compl (all-completions
2999 (concat prefix
3000 (if (stringp (car pattern)) (car pattern) ""))
3001 table pred)))
3002 (if (not (functionp table))
3003 ;; The internal functions already obeyed completion-regexp-list.
3004 compl
3005 (let ((poss ()))
3006 (dolist (c compl)
3007 (when (string-match-p regex c) (push c poss)))
3008 poss)))))
3010 (defun completion-pcm--hilit-commonality (pattern completions)
3011 (when completions
3012 (let* ((re (completion-pcm--pattern->regex pattern '(point)))
3013 (case-fold-search completion-ignore-case))
3014 (mapcar
3015 (lambda (str)
3016 ;; Don't modify the string itself.
3017 (setq str (copy-sequence str))
3018 (unless (string-match re str)
3019 (error "Internal error: %s does not match %s" re str))
3020 (let ((pos (or (match-beginning 1) (match-end 0))))
3021 (put-text-property 0 pos
3022 'font-lock-face 'completions-common-part
3023 str)
3024 (if (> (length str) pos)
3025 (put-text-property pos (1+ pos)
3026 'font-lock-face 'completions-first-difference
3027 str)))
3028 str)
3029 completions))))
3031 (defun completion-pcm--find-all-completions (string table pred point
3032 &optional filter)
3033 "Find all completions for STRING at POINT in TABLE, satisfying PRED.
3034 POINT is a position inside STRING.
3035 FILTER is a function applied to the return value, that can be used, e.g. to
3036 filter out additional entries (because TABLE might not obey PRED)."
3037 (unless filter (setq filter 'identity))
3038 (let* ((beforepoint (substring string 0 point))
3039 (afterpoint (substring string point))
3040 (bounds (completion-boundaries beforepoint table pred afterpoint))
3041 (prefix (substring beforepoint 0 (car bounds)))
3042 (suffix (substring afterpoint (cdr bounds)))
3043 firsterror)
3044 (setq string (substring string (car bounds) (+ point (cdr bounds))))
3045 (let* ((relpoint (- point (car bounds)))
3046 (pattern (completion-pcm--string->pattern string relpoint))
3047 (all (condition-case-unless-debug err
3048 (funcall filter
3049 (completion-pcm--all-completions
3050 prefix pattern table pred))
3051 (error (setq firsterror err) nil))))
3052 (when (and (null all)
3053 (> (car bounds) 0)
3054 (null (ignore-errors (try-completion prefix table pred))))
3055 ;; The prefix has no completions at all, so we should try and fix
3056 ;; that first.
3057 (let ((substring (substring prefix 0 -1)))
3058 (pcase-let ((`(,subpat ,suball ,subprefix ,_subsuffix)
3059 (completion-pcm--find-all-completions
3060 substring table pred (length substring) filter)))
3061 (let ((sep (aref prefix (1- (length prefix))))
3062 ;; Text that goes between the new submatches and the
3063 ;; completion substring.
3064 (between nil))
3065 ;; Eliminate submatches that don't end with the separator.
3066 (dolist (submatch (prog1 suball (setq suball ())))
3067 (when (eq sep (aref submatch (1- (length submatch))))
3068 (push submatch suball)))
3069 (when suball
3070 ;; Update the boundaries and corresponding pattern.
3071 ;; We assume that all submatches result in the same boundaries
3072 ;; since we wouldn't know how to merge them otherwise anyway.
3073 ;; FIXME: COMPLETE REWRITE!!!
3074 (let* ((newbeforepoint
3075 (concat subprefix (car suball)
3076 (substring string 0 relpoint)))
3077 (leftbound (+ (length subprefix) (length (car suball))))
3078 (newbounds (completion-boundaries
3079 newbeforepoint table pred afterpoint)))
3080 (unless (or (and (eq (cdr bounds) (cdr newbounds))
3081 (eq (car newbounds) leftbound))
3082 ;; Refuse new boundaries if they step over
3083 ;; the submatch.
3084 (< (car newbounds) leftbound))
3085 ;; The new completed prefix does change the boundaries
3086 ;; of the completed substring.
3087 (setq suffix (substring afterpoint (cdr newbounds)))
3088 (setq string
3089 (concat (substring newbeforepoint (car newbounds))
3090 (substring afterpoint 0 (cdr newbounds))))
3091 (setq between (substring newbeforepoint leftbound
3092 (car newbounds)))
3093 (setq pattern (completion-pcm--string->pattern
3094 string
3095 (- (length newbeforepoint)
3096 (car newbounds)))))
3097 (dolist (submatch suball)
3098 (setq all (nconc
3099 (mapcar
3100 (lambda (s) (concat submatch between s))
3101 (funcall filter
3102 (completion-pcm--all-completions
3103 (concat subprefix submatch between)
3104 pattern table pred)))
3105 all)))
3106 ;; FIXME: This can come in handy for try-completion,
3107 ;; but isn't right for all-completions, since it lists
3108 ;; invalid completions.
3109 ;; (unless all
3110 ;; ;; Even though we found expansions in the prefix, none
3111 ;; ;; leads to a valid completion.
3112 ;; ;; Let's keep the expansions, tho.
3113 ;; (dolist (submatch suball)
3114 ;; (push (concat submatch between newsubstring) all)))
3116 (setq pattern (append subpat (list 'any (string sep))
3117 (if between (list between)) pattern))
3118 (setq prefix subprefix)))))
3119 (if (and (null all) firsterror)
3120 (signal (car firsterror) (cdr firsterror))
3121 (list pattern all prefix suffix)))))
3123 (defun completion-pcm-all-completions (string table pred point)
3124 (pcase-let ((`(,pattern ,all ,prefix ,_suffix)
3125 (completion-pcm--find-all-completions string table pred point)))
3126 (when all
3127 (nconc (completion-pcm--hilit-commonality pattern all)
3128 (length prefix)))))
3130 (defun completion--common-suffix (strs)
3131 "Return the common suffix of the strings STRS."
3132 (nreverse (try-completion "" (mapcar #'reverse strs))))
3134 (defun completion-pcm--merge-completions (strs pattern)
3135 "Extract the commonality in STRS, with the help of PATTERN.
3136 PATTERN can contain strings and symbols chosen among `star', `any', `point',
3137 and `prefix'. They all match anything (aka \".*\") but are merged differently:
3138 `any' only grows from the left (when matching \"a1b\" and \"a2b\" it gets
3139 completed to just \"a\").
3140 `prefix' only grows from the right (when matching \"a1b\" and \"a2b\" it gets
3141 completed to just \"b\").
3142 `star' grows from both ends and is reified into a \"*\" (when matching \"a1b\"
3143 and \"a2b\" it gets completed to \"a*b\").
3144 `point' is like `star' except that it gets reified as the position of point
3145 instead of being reified as a \"*\" character.
3146 The underlying idea is that we should return a string which still matches
3147 the same set of elements."
3148 ;; When completing while ignoring case, we want to try and avoid
3149 ;; completing "fo" to "foO" when completing against "FOO" (bug#4219).
3150 ;; So we try and make sure that the string we return is all made up
3151 ;; of text from the completions rather than part from the
3152 ;; completions and part from the input.
3153 ;; FIXME: This reduces the problems of inconsistent capitalization
3154 ;; but it doesn't fully fix it: we may still end up completing
3155 ;; "fo-ba" to "foo-BAR" or "FOO-bar" when completing against
3156 ;; '("foo-barr" "FOO-BARD").
3157 (cond
3158 ((null (cdr strs)) (list (car strs)))
3160 (let ((re (completion-pcm--pattern->regex pattern 'group))
3161 (ccs ())) ;Chopped completions.
3163 ;; First chop each string into the parts corresponding to each
3164 ;; non-constant element of `pattern', using regexp-matching.
3165 (let ((case-fold-search completion-ignore-case))
3166 (dolist (str strs)
3167 (unless (string-match re str)
3168 (error "Internal error: %s doesn't match %s" str re))
3169 (let ((chopped ())
3170 (last 0)
3171 (i 1)
3172 next)
3173 (while (setq next (match-end i))
3174 (push (substring str last next) chopped)
3175 (setq last next)
3176 (setq i (1+ i)))
3177 ;; Add the text corresponding to the implicit trailing `any'.
3178 (push (substring str last) chopped)
3179 (push (nreverse chopped) ccs))))
3181 ;; Then for each of those non-constant elements, extract the
3182 ;; commonality between them.
3183 (let ((res ())
3184 (fixed ""))
3185 ;; Make the implicit trailing `any' explicit.
3186 (dolist (elem (append pattern '(any)))
3187 (if (stringp elem)
3188 (setq fixed (concat fixed elem))
3189 (let ((comps ()))
3190 (dolist (cc (prog1 ccs (setq ccs nil)))
3191 (push (car cc) comps)
3192 (push (cdr cc) ccs))
3193 ;; Might improve the likelihood to avoid choosing
3194 ;; different capitalizations in different parts.
3195 ;; In practice, it doesn't seem to make any difference.
3196 (setq ccs (nreverse ccs))
3197 (let* ((prefix (try-completion fixed comps))
3198 (unique (or (and (eq prefix t) (setq prefix fixed))
3199 (eq t (try-completion prefix comps)))))
3200 (unless (or (eq elem 'prefix)
3201 (equal prefix ""))
3202 (push prefix res))
3203 ;; If there's only one completion, `elem' is not useful
3204 ;; any more: it can only match the empty string.
3205 ;; FIXME: in some cases, it may be necessary to turn an
3206 ;; `any' into a `star' because the surrounding context has
3207 ;; changed such that string->pattern wouldn't add an `any'
3208 ;; here any more.
3209 (unless unique
3210 (push elem res)
3211 ;; Extract common suffix additionally to common prefix.
3212 ;; Don't do it for `any' since it could lead to a merged
3213 ;; completion that doesn't itself match the candidates.
3214 (when (and (memq elem '(star point prefix))
3215 ;; If prefix is one of the completions, there's no
3216 ;; suffix left to find.
3217 (not (assoc-string prefix comps t)))
3218 (let ((suffix
3219 (completion--common-suffix
3220 (if (zerop (length prefix)) comps
3221 ;; Ignore the chars in the common prefix, so we
3222 ;; don't merge '("abc" "abbc") as "ab*bc".
3223 (let ((skip (length prefix)))
3224 (mapcar (lambda (str) (substring str skip))
3225 comps))))))
3226 (cl-assert (stringp suffix))
3227 (unless (equal suffix "")
3228 (push suffix res)))))
3229 (setq fixed "")))))
3230 ;; We return it in reverse order.
3231 res)))))
3233 (defun completion-pcm--pattern->string (pattern)
3234 (mapconcat (lambda (x) (cond
3235 ((stringp x) x)
3236 ((eq x 'star) "*")
3237 (t ""))) ;any, point, prefix.
3238 pattern
3239 ""))
3241 ;; We want to provide the functionality of `try', but we use `all'
3242 ;; and then merge it. In most cases, this works perfectly, but
3243 ;; if the completion table doesn't consider the same completions in
3244 ;; `try' as in `all', then we have a problem. The most common such
3245 ;; case is for filename completion where completion-ignored-extensions
3246 ;; is only obeyed by the `try' code. We paper over the difference
3247 ;; here. Note that it is not quite right either: if the completion
3248 ;; table uses completion-table-in-turn, this filtering may take place
3249 ;; too late to correctly fallback from the first to the
3250 ;; second alternative.
3251 (defun completion-pcm--filename-try-filter (all)
3252 "Filter to adjust `all' file completion to the behavior of `try'."
3253 (when all
3254 (let ((try ())
3255 (re (concat "\\(?:\\`\\.\\.?/\\|"
3256 (regexp-opt completion-ignored-extensions)
3257 "\\)\\'")))
3258 (dolist (f all)
3259 (unless (string-match-p re f) (push f try)))
3260 (or try all))))
3263 (defun completion-pcm--merge-try (pattern all prefix suffix)
3264 (cond
3265 ((not (consp all)) all)
3266 ((and (not (consp (cdr all))) ;Only one completion.
3267 ;; Ignore completion-ignore-case here.
3268 (equal (completion-pcm--pattern->string pattern) (car all)))
3271 (let* ((mergedpat (completion-pcm--merge-completions all pattern))
3272 ;; `mergedpat' is in reverse order. Place new point (by
3273 ;; order of preference) either at the old point, or at
3274 ;; the last place where there's something to choose, or
3275 ;; at the very end.
3276 (pointpat (or (memq 'point mergedpat)
3277 (memq 'any mergedpat)
3278 (memq 'star mergedpat)
3279 ;; Not `prefix'.
3280 mergedpat))
3281 ;; New pos from the start.
3282 (newpos (length (completion-pcm--pattern->string pointpat)))
3283 ;; Do it afterwards because it changes `pointpat' by side effect.
3284 (merged (completion-pcm--pattern->string (nreverse mergedpat))))
3286 (setq suffix (completion--merge-suffix
3287 ;; The second arg should ideally be "the position right
3288 ;; after the last char of `merged' that comes from the text
3289 ;; to be completed". But completion-pcm--merge-completions
3290 ;; currently doesn't give us that info. So instead we just
3291 ;; use the "last but one" position, which tends to work
3292 ;; well in practice since `suffix' always starts
3293 ;; with a boundary and we hence mostly/only care about
3294 ;; merging this boundary (bug#15419).
3295 merged (max 0 (1- (length merged))) suffix))
3296 (cons (concat prefix merged suffix) (+ newpos (length prefix)))))))
3298 (defun completion-pcm-try-completion (string table pred point)
3299 (pcase-let ((`(,pattern ,all ,prefix ,suffix)
3300 (completion-pcm--find-all-completions
3301 string table pred point
3302 (if minibuffer-completing-file-name
3303 'completion-pcm--filename-try-filter))))
3304 (completion-pcm--merge-try pattern all prefix suffix)))
3306 ;;; Substring completion
3307 ;; Mostly derived from the code of `basic' completion.
3309 (defun completion-substring--all-completions (string table pred point)
3310 (let* ((beforepoint (substring string 0 point))
3311 (afterpoint (substring string point))
3312 (bounds (completion-boundaries beforepoint table pred afterpoint))
3313 (suffix (substring afterpoint (cdr bounds)))
3314 (prefix (substring beforepoint 0 (car bounds)))
3315 (basic-pattern (completion-basic--pattern
3316 beforepoint afterpoint bounds))
3317 (pattern (if (not (stringp (car basic-pattern)))
3318 basic-pattern
3319 (cons 'prefix basic-pattern)))
3320 (all (completion-pcm--all-completions prefix pattern table pred)))
3321 (list all pattern prefix suffix (car bounds))))
3323 (defun completion-substring-try-completion (string table pred point)
3324 (pcase-let ((`(,all ,pattern ,prefix ,suffix ,_carbounds)
3325 (completion-substring--all-completions
3326 string table pred point)))
3327 (if minibuffer-completing-file-name
3328 (setq all (completion-pcm--filename-try-filter all)))
3329 (completion-pcm--merge-try pattern all prefix suffix)))
3331 (defun completion-substring-all-completions (string table pred point)
3332 (pcase-let ((`(,all ,pattern ,prefix ,_suffix ,_carbounds)
3333 (completion-substring--all-completions
3334 string table pred point)))
3335 (when all
3336 (nconc (completion-pcm--hilit-commonality pattern all)
3337 (length prefix)))))
3339 ;; Initials completion
3340 ;; Complete /ums to /usr/monnier/src or lch to list-command-history.
3342 (defun completion-initials-expand (str table pred)
3343 (let ((bounds (completion-boundaries str table pred "")))
3344 (unless (or (zerop (length str))
3345 ;; Only check within the boundaries, since the
3346 ;; boundary char (e.g. /) might be in delim-regexp.
3347 (string-match completion-pcm--delim-wild-regex str
3348 (car bounds)))
3349 (if (zerop (car bounds))
3350 ;; FIXME: Don't hardcode "-" (bug#17559).
3351 (mapconcat 'string str "-")
3352 ;; If there's a boundary, it's trickier. The main use-case
3353 ;; we consider here is file-name completion. We'd like
3354 ;; to expand ~/eee to ~/e/e/e and /eee to /e/e/e.
3355 ;; But at the same time, we don't want /usr/share/ae to expand
3356 ;; to /usr/share/a/e just because we mistyped "ae" for "ar",
3357 ;; so we probably don't want initials to touch anything that
3358 ;; looks like /usr/share/foo. As a heuristic, we just check that
3359 ;; the text before the boundary char is at most 1 char.
3360 ;; This allows both ~/eee and /eee and not much more.
3361 ;; FIXME: It sadly also disallows the use of ~/eee when that's
3362 ;; embedded within something else (e.g. "(~/eee" in Info node
3363 ;; completion or "ancestor:/eee" in bzr-revision completion).
3364 (when (< (car bounds) 3)
3365 (let ((sep (substring str (1- (car bounds)) (car bounds))))
3366 ;; FIXME: the above string-match checks the whole string, whereas
3367 ;; we end up only caring about the after-boundary part.
3368 (concat (substring str 0 (car bounds))
3369 (mapconcat 'string (substring str (car bounds)) sep))))))))
3371 (defun completion-initials-all-completions (string table pred _point)
3372 (let ((newstr (completion-initials-expand string table pred)))
3373 (when newstr
3374 (completion-pcm-all-completions newstr table pred (length newstr)))))
3376 (defun completion-initials-try-completion (string table pred _point)
3377 (let ((newstr (completion-initials-expand string table pred)))
3378 (when newstr
3379 (completion-pcm-try-completion newstr table pred (length newstr)))))
3381 (defvar completing-read-function 'completing-read-default
3382 "The function called by `completing-read' to do its work.
3383 It should accept the same arguments as `completing-read'.")
3385 (defun completing-read-default (prompt collection &optional predicate
3386 require-match initial-input
3387 hist def inherit-input-method)
3388 "Default method for reading from the minibuffer with completion.
3389 See `completing-read' for the meaning of the arguments."
3391 (when (consp initial-input)
3392 (setq initial-input
3393 (cons (car initial-input)
3394 ;; `completing-read' uses 0-based index while
3395 ;; `read-from-minibuffer' uses 1-based index.
3396 (1+ (cdr initial-input)))))
3398 (let* ((minibuffer-completion-table collection)
3399 (minibuffer-completion-predicate predicate)
3400 (minibuffer-completion-confirm (unless (eq require-match t)
3401 require-match))
3402 (base-keymap (if require-match
3403 minibuffer-local-must-match-map
3404 minibuffer-local-completion-map))
3405 (keymap (if (memq minibuffer-completing-file-name '(nil lambda))
3406 base-keymap
3407 ;; Layer minibuffer-local-filename-completion-map
3408 ;; on top of the base map.
3409 (make-composed-keymap
3410 minibuffer-local-filename-completion-map
3411 ;; Set base-keymap as the parent, so that nil bindings
3412 ;; in minibuffer-local-filename-completion-map can
3413 ;; override bindings in base-keymap.
3414 base-keymap)))
3415 (result (read-from-minibuffer prompt initial-input keymap
3416 nil hist def inherit-input-method)))
3417 (when (and (equal result "") def)
3418 (setq result (if (consp def) (car def) def)))
3419 result))
3421 ;; Miscellaneous
3423 (defun minibuffer-insert-file-name-at-point ()
3424 "Get a file name at point in original buffer and insert it to minibuffer."
3425 (interactive)
3426 (let ((file-name-at-point
3427 (with-current-buffer (window-buffer (minibuffer-selected-window))
3428 (run-hook-with-args-until-success 'file-name-at-point-functions))))
3429 (when file-name-at-point
3430 (insert file-name-at-point))))
3432 (provide 'minibuffer)
3434 ;;; minibuffer.el ends here