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