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