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