(set-visited-file-name, file-expand-wildcards): Fix docstring.
[emacs.git] / lisp / ido.el
blob4cbc88cf0370e0d35592dda62c3e3cdcd83b3d38
1 ;;; ido.el --- interactively do things with buffers and files.
3 ;; Copyright (C) 1996-2004 Free Software Foundation, Inc.
5 ;; Author: Kim F. Storm <storm@cua.dk>
6 ;; Based on: iswitchb by Stephen Eglen <stephen@cns.ed.ac.uk>
7 ;; Keywords: extensions convenience
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
26 ;;; Acknowledgements
28 ;; Infinite amounts of gratitude goes to Stephen Eglen <stephen@cns.ed.ac.uk>
29 ;; who wrote iswitch-buffer mode - from which I ripped off 99% of the code
30 ;; for ido-switch-buffer and found the inspiration for ido-find-file.
31 ;; The ido package would never have existed without his work.
33 ;; Also thanks to Klaus Berndl, Rohit Namjoshi, Robert Fenk, Alex
34 ;; Schroeder, Bill Benedetto, Stephen Eglen, and many others for bug
35 ;; fixes and improvements.
37 ;;; History
39 ;; Since I discovered Stephen Eglen's excellent iswitchb package, I just
40 ;; couldn't live without it, but once being addicted to switching buffers
41 ;; with a minimum of keystrokes, I soon found that opening files in the
42 ;; old-fashioned way was just too slow - so I decided to write a package
43 ;; which could open files with the same speed and ease as iswitchb could
44 ;; switch buffers.
46 ;; I originally wrote a separate ifindf.el package based on a copy of
47 ;; iswitchb.el, which did for opening files what iswitchb did for
48 ;; switching buffers. Along the way, I corrected a few errors in
49 ;; ifindf which could have found its way back into iswitchb, but since
50 ;; most of the functionality of the two package was practically
51 ;; identical, I decided that the proper thing to do was to merge my
52 ;; ifindf package back into iswitchb.
54 ;; This is basically what ido (interactively do) is all about; but I
55 ;; found it ackward to merge my changes into the "iswitchb-" namespace,
56 ;; so I invented a common "ido-" namespace for the merged packages.
58 ;; This version is based on ido.el version 1.57 released on
59 ;; gnu.emacs.sources adapted for emacs 21.5 to use command remapping
60 ;; and optionally hooking the read-buffer and read-file-name functions.
62 ;; Prefix matching was added by Klaus Berndl <klaus.berndl@sdm.de> based on
63 ;; an idea of Yuji Minejima <ggb01164@nifty.ne.jp> and his mcomplete-package.
66 ;;; Commentary:
68 ;; Ido - interactive do - switches between buffers and opens files and
69 ;; directories with a minimum of keystrokes. It is a superset of
70 ;; iswitchb, the interactive buffer switching package by Stephen Eglen.
72 ;; Interactive substring matching
73 ;; ------------------------------
75 ;; As you type in a substring, the list of buffers or files currently
76 ;; matching the substring are displayed as you type. The list is
77 ;; ordered so that the most recent buffers or files visited come at
78 ;; the start of the list.
80 ;; The buffer or file at the start of the list will be the one visited
81 ;; when you press RETURN. By typing more of the substring, the list is
82 ;; narrowed down so that gradually the buffer or file you want will be
83 ;; at the top of the list. Alternatively, you can use C-s and C-r (or
84 ;; the right and left arrow keys) to rotate buffer or file names in the
85 ;; list until the one you want is at the top of the list.
87 ;; Completion is also available so that you can see what is common to
88 ;; all of the matching buffers or files as you type.
90 ;; Example:
92 ;; If I have two buffers called "123456" and "123", with "123456" the
93 ;; most recent, when I use ido-switch-buffer, I first of all get
94 ;; presented with the list of all the buffers
96 ;; Buffer: {123456,123}
98 ;; If I then press 2:
99 ;; Buffer: 2[3]{123456,123}
101 ;; The list in {...} are the matching buffers, most recent first
102 ;; (buffers visible in the current frame are put at the end of the
103 ;; list by default). At any time I can select the item at the head of
104 ;; the list by pressing RET. I can also bring the put the first
105 ;; element at the end of the list by pressing C-s or [right], or put
106 ;; the last element at the head of the list by pressing C-r or [left].
108 ;; The item in [...] indicates what can be added to my input by
109 ;; pressing TAB. In this case, I will get "3" added to my input.
111 ;; So, I press TAB:
112 ;; Buffer: 23{123456,123}
114 ;; At this point, I still have two matching buffers.
115 ;; If I want the first buffer in the list, I simply press RET. If I
116 ;; wanted the second in the list, I could press C-s to move it to the
117 ;; top of the list and then RET to select it.
119 ;; However, if I type 4, I only have one match left:
120 ;; Buffer: 234[123456] [Matched]
122 ;; Since there is only one matching buffer left, it is given in [] and we
123 ;; see the text [Matched] afterwards. I can now press TAB or RET to go
124 ;; to that buffer.
126 ;; If however, I now type "a":
127 ;; Buffer: 234a [No match]
128 ;; There are no matching buffers. If I press RET or TAB, I can be
129 ;; prompted to create a new buffer called "234a".
131 ;; Of course, where this function comes in really useful is when you
132 ;; can specify the buffer using only a few keystrokes. In the above
133 ;; example, the quickest way to get to the "123456" file would be
134 ;; just to type 4 and then RET (assuming there isn't any newer buffer
135 ;; with 4 in its name).
137 ;; Likewise, if you use C-x C-f (ido-find-file), the list of files and
138 ;; directories in the current directory is provided in the same
139 ;; fashion as the buffers above. The files and directories are
140 ;; normally sorted in alphabetical order, but the most recently
141 ;; visited directory is placed first to speed up navigating to
142 ;; directories that you have visited recently.
144 ;; In addition to scrolling through the list using [right] and [left],
145 ;; you can use [up] and [down] to quickly scroll the list to the next
146 ;; or previous subdirectory.
148 ;; To go down into a subdirectory, and continue the file selection on
149 ;; the files in that directory, simply move the directory to the head
150 ;; of the list and hit RET.
152 ;; To go up to the parent directory, delete any partial file name
153 ;; already specified (e.g. using [backspace]) and hit [backspace].
155 ;; To go to the root directory (on the current drive), enter two
156 ;; slashes. On MS-DOS or Windows, to select the root of another
157 ;; drive, enter X:/ where X is the drive letter. You can also visit
158 ;; files on other hosts using the ange-ftp notations `/host:' and
159 ;; `/user@host:'. See the variable `ido-slow-ftp-hosts' if you want
160 ;; to inhibit the ido substring matching for ftp access.
162 ;; If for some reason you cannot specify the proper file using
163 ;; ido-find-file, you can press C-f to enter the normal find-file.
164 ;; You can also press C-b to drop into ido-switch-buffer.
166 ;; See the doc string of ido-switch-buffer and ido-find-file for full
167 ;; keybindings and features.
168 ;; (describe-function 'ido-find-file)
170 ;; Hidden buffers and files
171 ;; ------------------------
173 ;; Normally, ido does not include hidden buffers (whose name starts
174 ;; with a space) and hidden files and directories (whose name starts
175 ;; with `.') in the list of possible completions. However, if the
176 ;; substring you enter does not match any of the visible buffers or
177 ;; files, ido will automatically look for completions among the hidden
178 ;; buffers or files.
180 ;; You can toggle display of the hidden buffers and files with C-a.
182 ;; Additional functionality
183 ;; ------------------------
185 ;; After C-x b, the buffer at the head of the list can be killed by
186 ;; pressing C-k. If the buffer needs saving, you will be queried
187 ;; before the buffer is killed.
189 ;; Likewise, after C-x C-f, you can delete (i.e. physically remove)
190 ;; the file at the head of the list with C-k. You will always be
191 ;; asked for confirmation before the file is deleted.
193 ;; If you enter C-x b to switch to a buffer visiting a given file, and
194 ;; you find that the file you are after is not in any buffer, you can
195 ;; press C-f to immediately drop into ido-find-file. And you can
196 ;; switch back to buffer selection with C-b.
198 ;; Prefix matching
199 ;; ---------------
201 ;; The standard way of completion with Unix-shells and Emacs is to insert a
202 ;; PREFIX and then hitting TAB (or another completion key). Cause of this
203 ;; behavior has become second nature to a lot of emacs users `ido' offers in
204 ;; addition to the default substring-matching-method (look above) also the
205 ;; prefix-matching-method. The kind of matching is the only difference to
206 ;; the description of the substring-matching above.
208 ;; You can toggle prefix matching with C-p.
210 ;; Example:
212 ;; If you have again two Buffers "123456" and "123" then hitting "2" does
213 ;; not match because "2" is not a PREFIX in any of the buffer-names. This
214 ;; is the only difference between the substring and prefix matching.
216 ;; Flexible matching
217 ;; -----------------
219 ;; If you set ido-enable-flex-matching, ido will do a more flexible
220 ;; matching (unless regexp matching is active) to find possible matches
221 ;; among the available buffer or file names if no matches are found using
222 ;; the normal prefix or substring matching.
224 ;; The flexible matching implies that any item which simply contains all
225 ;; of the entered characters in the specified sequence will match.
227 ;; Example:
229 ;; If you have four files "alpha", "beta", "gamma", and "delta",
230 ;; entering "aa" will match "alpha" and "gamma", while "ea" matches
231 ;; "beta" and "delta". If prefix matching is also active, "aa" only
232 ;; matches "alpha", while "ea" does not match any files.
234 ;; Regexp matching
235 ;; ---------------
237 ;; There is limited provision for regexp matching within ido,
238 ;; enabled through `ido-enable-regexp' (toggle with C-t).
239 ;; This allows you to type `c$' for example and see all file names
240 ;; ending in `c'. This facility is quite limited though in two
241 ;; respects. First, you can't currently type in expressions like
242 ;; `[0-9]' directly -- you have to type them in when ido-enable-regexp
243 ;; is nil and then toggle on the regexp functionality. Likewise,
244 ;; don't enter an expression containing `\' in regexp mode. If you
245 ;; try, ido gets confused, so just hit C-g and try again. Secondly,
246 ;; no completion mechanism is currently offered with regexp searching.
249 ;; Customization
250 ;; -------------
252 ;; Customize the `ido' group to change the `ido' functionality.
254 ;; To modify the keybindings, use the hook provided. For example:
255 ;;(add-hook 'ido-define-mode-map-hook 'ido-my-keys)
257 ;;(defun ido-my-keys ()
258 ;; "Add my keybindings for ido."
259 ;; (define-key ido-mode-map " " 'ido-next-match)
260 ;; )
262 ;; Seeing all the matching buffers or files
263 ;; ----------------------------------------
265 ;; If you have many matching files, they may not all fit onto one
266 ;; line of the minibuffer. Normally, the minibuffer window will grow
267 ;; to show you more of the matching files (depending on the setting
268 ;; of the variables `resize-mini-windows' and `max-mini-window-height').
269 ;; If you want ido to behave differently from the default minibuffer
270 ;; resizing behaviour, set the variable `ido-max-window-height'.
272 ;; Also, to improve the responsiveness of ido, the maximum number of
273 ;; matching items is limited to 12, but you can increase or removed
274 ;; this limit via the `ido-max-prospects' variable.
276 ;; To see a full list of all matching buffers in a separate buffer,
277 ;; hit ? or press TAB when there are no further completions to the
278 ;; substring. Repeated TAB presses will scroll you through this
279 ;; separate buffer.
281 ;; Changing the list of files
282 ;; --------------------------
284 ;; By default, the list of current files is most recent first,
285 ;; oldest last, with the exception that the files visible in the
286 ;; current frame are put at the end of the list. A hook exists to
287 ;; allow other functions to order the list. For example, if you add:
289 ;; (add-hook 'ido-make-buffer-list-hook 'ido-summary-buffers-to-end)
291 ;; then all files matching "Summary" are moved to the end of the
292 ;; list. (I find this handy for keeping the INBOX Summary and so on
293 ;; out of the way.) It also moves files matching "output\*$" to the
294 ;; end of the list (these are created by AUC TeX when compiling.)
295 ;; Other functions could be made available which alter the list of
296 ;; matching files (either deleting or rearranging elements.)
298 ;; Highlighting
299 ;; ------------
301 ;; The highlighting of matching items is controlled via ido-use-faces.
302 ;; The faces used are ido-first-match-face, ido-only-match-face and
303 ;; ido-subdir-face.
304 ;; Colouring of the matching item was suggested by
305 ;; Carsten Dominik (dominik@strw.leidenuniv.nl).
307 ;; Replacement for read-buffer and read-file-name
308 ;; ----------------------------------------------
310 ;; ido-read-buffer and ido-read-file-name have been written to be drop
311 ;; in replacements for the normal buffer and file name reading
312 ;; functions `read-buffer' and `read-file-name'.
314 ;; To use ido for all buffer and file selections in Emacs, customize the
315 ;; variable `ido-everywhere'.
317 ;; Using ido-like behaviour in other lisp packages
318 ;; -----------------------------------------------
320 ;; If you don't want to rely on the `ido-everywhere' functionality,
321 ;; ido-read-buffer, ido-read-file-name, and ido-read-directory-name
322 ;; can be used by other packages to read a buffer name, a file name,
323 ;; or a directory name in the `ido' way.
326 ;;; Code:
328 (provide 'ido)
330 ;;; User Variables
332 ;; These are some things you might want to change.
334 (defun ido-fractionp (n)
335 (and (numberp n) (> n 0.0) (<= n 1.0)))
337 (defgroup ido nil
338 "Switch between files using substrings."
339 :group 'extensions
340 :group 'convenience
341 :link '(emacs-commentary-link :tag "Commentary" "ido.el")
342 :link '(emacs-library-link :tag "Lisp File" "ido.el"))
344 ;;;###autoload
345 (defcustom ido-mode nil
346 "Determines for which functional group \(buffer and files) ido behavior
347 should be enabled. The following values are possible:
348 - `buffer': Turn only on ido buffer behavior \(switching, killing,
349 displaying...)
350 - `file': Turn only on ido file behavior \(finding, writing, inserting...)
351 - `both': Turn on ido buffer and file behavior.
352 - `nil': Turn off any ido switching.
354 Setting this variable directly does not take effect;
355 use either \\[customize] or the function `ido-mode'."
356 :set #'(lambda (symbol value)
357 (ido-mode value))
358 :initialize 'custom-initialize-default
359 :require 'ido
360 :link '(emacs-commentary-link "ido.el")
361 :set-after '(ido-save-directory-list-file)
362 :version "21.4"
363 :type '(choice (const :tag "Turn on only buffer" buffer)
364 (const :tag "Turn on only file" file)
365 (const :tag "Turn on both buffer and file" both)
366 (const :tag "Switch off all" nil))
367 :group 'ido)
369 (defcustom ido-everywhere nil
370 "Use ido everywhere for reading file names and directories.
371 Setting this variable directly does not work. Use `customize' or
372 call the function `ido-everywhere'."
373 :set #'(lambda (symbol value)
374 (ido-everywhere value))
375 :initialize 'custom-initialize-default
376 :type 'boolean
377 :group 'ido)
379 (defcustom ido-case-fold case-fold-search
380 "*Non-nil if searching of buffer and file names should ignore case."
381 :type 'boolean
382 :group 'ido)
384 (defcustom ido-ignore-buffers
385 '("\\` ")
386 "*List of regexps or functions matching buffer names to ignore.
387 For example, traditional behavior is not to list buffers whose names begin
388 with a space, for which the regexp is `\\` '. See the source file for
389 example functions that filter buffernames."
390 :type '(repeat (choice regexp function))
391 :group 'ido)
393 (defcustom ido-ignore-files
394 '("\\`CVS/" "\\`#" "\\`.#" "\\`\\.\\./" "\\`\\./")
395 "*List of regexps or functions matching file names to ignore.
396 For example, traditional behavior is not to list files whose names begin
397 with a #, for which the regexp is `\\`#'. See the source file for
398 example functions that filter filenames."
399 :type '(repeat (choice regexp function))
400 :group 'ido)
402 (defcustom ido-ignore-extensions t
403 "*Non-nil means ignore files in completion-ignored-extensions list."
404 :type 'boolean
405 :group 'ido)
407 (defcustom ido-show-dot-for-dired nil
408 "*Non-nil means to always put . as the first item in file name lists.
409 This allows the current directory to be opened immediate with `dired'."
410 :type 'boolean
411 :group 'ido)
413 (defcustom ido-ignore-directories
414 '("\\`CVS/" "\\`\\.\\./" "\\`\\./")
415 "*List of regexps or functions matching sub-directory names to ignore."
416 :type '(repeat (choice regexp function))
417 :group 'ido)
419 (defcustom ido-ignore-directories-merge nil
420 "*List of regexps or functions matching directory names to ignore during merge.
421 Directory names matched by one of the regexps in this list are not inserted
422 in merged file and directory lists."
423 :type '(repeat (choice regexp function))
424 :group 'ido)
426 ;;; Examples for setting the value of ido-ignore-buffers
427 ;(defun ido-ignore-c-mode (name)
428 ; "Ignore all c mode buffers -- example function for ido."
429 ; (save-excursion
430 ; (set-buffer name)
431 ; (string-match "^C$" mode-name)))
433 ;(setq ido-ignore-buffers '("^ " ido-ignore-c-mode))
435 ;;; Examples for setting the value of ido-ignore-files
436 ;(setq ido-ignore-files '("^ " "\\.c$" "\\.h$"))
438 (defcustom ido-default-file-method 'always-frame
439 "*How to switch to new file when using `ido-find-file'.
440 Possible values:
441 `samewindow' Show new file in same window
442 `otherwindow' Show new file in another window (same frame)
443 `display' Display file in another window without switching to it
444 `otherframe' Show new file in another frame
445 `maybe-frame' If a file is visible in another frame, prompt to ask if you
446 you want to see the file in the same window of the current
447 frame or in the other frame.
448 `always-frame' If a file is visible in another frame, raise that
449 frame. Otherwise, visit the file in the same window."
450 :type '(choice (const samewindow)
451 (const otherwindow)
452 (const display)
453 (const otherframe)
454 (const maybe-frame)
455 (const always-frame))
456 :group 'ido)
458 (defcustom ido-default-buffer-method 'always-frame
459 "*How to switch to new buffer when using `ido-switch-buffer'.
460 See ido-default-file-method for details."
461 :type '(choice (const samewindow)
462 (const otherwindow)
463 (const display)
464 (const otherframe)
465 (const maybe-frame)
466 (const always-frame))
467 :group 'ido)
469 (defcustom ido-enable-flex-matching nil
470 "*Non-nil means that `ido' will do flexible string matching.
471 Flexible matching means that if the entered string does not
472 match any item, any item containing the entered characters
473 in the given sequence will match."
474 :type 'boolean
475 :group 'ido)
478 (defcustom ido-enable-regexp nil
479 "*Non-nil means that `ido' will do regexp matching.
480 Value can be toggled within `ido' using `ido-toggle-regexp'."
481 :type 'boolean
482 :group 'ido)
484 (defcustom ido-enable-prefix nil
485 "*Nil means that `ido' will match if the inserted text is an
486 arbitrary substring (default). If non-nil `ido' will only match if the inserted
487 text is a prefix \(this behavior is like the standard unix- or
488 emacs-completion works).
489 Value can be toggled within `ido' using `ido-toggle-prefix'."
490 :type 'boolean
491 :group 'ido)
493 (defcustom ido-confirm-unique-completion nil
494 "*Non-nil means that even a unique completion must be confirmed.
495 This means that \\[ido-complete] must always be followed by \\[ido-exit-minibuffer]
496 even when there is only one unique completion."
497 :type 'boolean
498 :group 'ido)
500 (defcustom ido-cannot-complete-command 'ido-completion-help
501 "*Command run when `ido-complete' can't complete any more.
502 The most useful values are `ido-completion-help', which pops up a
503 window with completion alternatives, or `ido-next-match' or
504 `ido-prev-match', which cycle the buffer list."
505 :type 'function
506 :group 'ido)
509 (defcustom ido-record-commands t
510 "*Non-nil means that `ido' will record commands in command history.
511 Note that the non-ido equivalent command is recorded."
512 :type 'boolean
513 :group 'ido)
515 (defcustom ido-max-prospects 12
516 "*Non-zero means that the prospect list will be limited to than number of items.
517 For a long list of prospects, building the full list for the minibuffer can take a
518 non-negletable amount of time; setting this variable reduces that time."
519 :type 'integer
520 :group 'ido)
522 (defcustom ido-max-file-prompt-width 0.35
523 "*Non-zero means that the prompt string be limited to than number of characters.
524 If value is a floating point number, it specifies a fraction of the frame width."
525 :type '(choice
526 (integer :tag "Characters" :value 20)
527 (restricted-sexp :tag "Fraction of frame width"
528 :value 0.35
529 :match-alternatives (ido-fractionp)))
530 :group 'ido)
532 (defcustom ido-max-window-height nil
533 "*Non-nil specifies a value to override `max-mini-window-height'."
534 :type '(choice
535 (const :tag "Don't override" nil)
536 (integer :tag "Number of lines" :value 1)
537 (restricted-sexp
538 :tag "Fraction of window height"
539 :value 0.25
540 :match-alternatives (ido-fractionp)))
541 :group 'ido)
543 (defcustom ido-enable-last-directory-history t
544 "*Non-nil means that `ido' will remember latest selected directory names.
545 See `ido-last-directory-list' and `ido-save-directory-list-file'."
546 :type 'boolean
547 :group 'ido)
549 (defcustom ido-max-work-directory-list 50
550 "*Maximum number of working directories to record.
551 This is the list of directories where files have most recently been opened.
552 See `ido-work-directory-list' and `ido-save-directory-list-file'."
553 :type 'integer
554 :group 'ido)
556 (defcustom ido-work-directory-list-ignore-regexps nil
557 "*List of regexps matching directories which should not be recorded.
558 Directory names matched by one of the regexps in this list are not inserted in
559 the `ido-work-directory-list' list."
560 :type '(repeat regexp)
561 :group 'ido)
564 (defcustom ido-use-filename-at-point nil
565 "*Non-nil means that ido shall look for a filename at point.
566 If found, use that as the starting point for filename selection."
567 :type 'boolean
568 :group 'ido)
571 (defcustom ido-use-url-at-point nil
572 "*Non-nil means that ido shall look for a URL at point.
573 If found, call `find-file-at-point' to visit it."
574 :type 'boolean
575 :group 'ido)
578 (defcustom ido-enable-tramp-completion t
579 "*Non-nil means that ido shall perform tramp method and server name completion.
580 A tramp file name uses the following syntax: /method:user@host:filename."
581 :type 'boolean
582 :group 'ido)
584 (defcustom ido-record-ftp-work-directories t
585 "*Non-nil means record ftp file names in the work directory list."
586 :type 'boolean
587 :group 'ido)
589 (defcustom ido-merge-ftp-work-directories nil
590 "*If nil means merging ignores ftp file names in the work directory list."
591 :type 'boolean
592 :group 'ido)
594 (defcustom ido-cache-ftp-work-directory-time 1.0
595 "*Maximum time to cache contents of an ftp directory (in hours).
596 If zero, ftp directories are not cached."
597 :type 'number
598 :group 'ido)
600 (defcustom ido-slow-ftp-hosts nil
601 "*List of slow ftp hosts where ido prompting should not be used.
602 If an ftp host is on this list, ido automatically switches to the non-ido
603 equivalent function, e.g. find-file rather than ido-find-file."
604 :type '(repeat string)
605 :group 'ido)
607 (defcustom ido-slow-ftp-host-regexps nil
608 "*List of regexps matching slow ftp hosts (see `ido-slow-ftp-hosts')."
609 :type '(repeat regexp)
610 :group 'ido)
612 (defcustom ido-max-work-file-list 10
613 "*Maximum number of names of recently opened files to record.
614 This is the list the file names (sans directory) which have most recently
615 been opened. See `ido-work-file-list' and `ido-save-directory-list-file'."
616 :type 'integer
617 :group 'ido)
619 (defcustom ido-work-directory-match-only t
620 "*Non-nil means to skip non-matching directories in the directory history.
621 When some text is already entered at the `ido-find-file' prompt, using
622 \\[ido-prev-work-directory] or \\[ido-next-work-directory] will skip directories
623 without any matching entries."
624 :type 'boolean
625 :group 'ido)
627 (defcustom ido-auto-merge-work-directories-length 0
628 "*Automatically switch to merged work directories during file name input.
629 The value is number of characters to type before switching to merged mode.
630 If zero, the switch happens when no matches are found in the current directory.
631 Automatic merging is disabled if the value is negative."
632 :type 'integer
633 :group 'ido)
635 (defcustom ido-auto-merge-delay-time 0.70
636 "*Delay in seconds to wait for more input before doing auto merge."
637 :type 'number
638 :group 'ido)
640 (defcustom ido-auto-merge-inhibit-characters-regexp "[][*?~]"
641 "*Regexp matching characters which should inhibit automatic merging.
642 When a (partial) file name matches this regexp, merging is inhibited."
643 :type 'regexp
644 :group 'ido)
646 (defcustom ido-merged-indicator "^"
647 "The string appended to first choice if it has multiple directory choices."
648 :type 'string
649 :group 'ido)
651 (defcustom ido-max-dir-file-cache 100
652 "*Maximum number of working directories to be cached.
653 This is the size of the cache of file-name-all-completions results.
654 Each cache entry is time stamped with the modification time of the
655 directory. Some systems, like Windows, have unreliable directory
656 modification times, so you may choose to disable caching on such
657 systems, or explicitly refresh the cache contents using the command
658 `ido-reread-directory' command (C-l) in the minibuffer.
659 See also `ido-dir-file-cache' and `ido-save-directory-list-file'."
660 :type 'integer
661 :group 'ido)
663 (defcustom ido-rotate-file-list-default nil
664 "*Non-nil means that `ido' will always rotate file list to get default in front."
665 :type 'boolean
666 :group 'ido)
668 (defcustom ido-enter-single-matching-directory 'slash
669 "*Automatically enter sub-directory if it is the only matching item, if non-nil.
670 If value is 'slash, only enter if typing final slash, else do it always."
671 :type '(choice (const :tag "Never" nil)
672 (const :tag "When typing /" slash)
673 (other :tag "Always" t))
674 :group 'ido)
676 (defcustom ido-create-new-buffer 'prompt
677 "*Specify whether a new buffer is created if no buffer matches substring.
678 Choices are 'always to create new buffers unconditionally, 'prompt to
679 ask user whether to create buffer, or 'never to never create new buffer."
680 :type '(choice (const always)
681 (const prompt)
682 (const never))
683 :group 'ido)
685 (defcustom ido-define-mode-map-hook nil
686 "*Hook to define keys in `ido-mode-map' for extra keybindings."
687 :type 'hook
688 :group 'ido)
690 (defcustom ido-separator nil
691 "*String used by ido to separate the alternatives in the minibuffer.
692 Obsolete. Set 3rd element of `ido-decorations' instead."
693 :type '(choice string (const nil))
694 :group 'ido)
696 (defcustom ido-decorations '( "{" "}" " | " " | ..." "[" "]" " [No match]" " [Matched]" " [Not readable]")
697 "*List of strings used by ido to display the alternatives in the minibuffer.
698 There are 9 elements in this list:
699 1st and 2nd elements are used as brackets around the prospect list,
700 3rd element is the separator between prospects (ignored if ido-separator is set),
701 4th element is the string inserted at the end of a truncated list of prospects,
702 5th and 6th elements are used as brackets around the common match string which
703 can be completed using TAB,
704 7th element is the string displayed when there are a no matches, and
705 8th element is displayed if there is a single match (and faces are not used).
706 9th element is displayed when the current directory is non-readable."
707 :type '(repeat string)
708 :group 'ido)
710 (defcustom ido-use-faces t
711 "*Non-nil means use ido faces to highlighting first match, only match and
712 subdirs in the alternatives."
713 :type 'boolean
714 :group 'ido)
716 (defface ido-first-match-face '((t (:bold t)))
717 "*Font used by ido for highlighting first match."
718 :group 'ido)
720 (defface ido-only-match-face '((((class color))
721 (:foreground "ForestGreen"))
722 (t (:italic t)))
723 "*Font used by ido for highlighting only match."
724 :group 'ido)
726 (defface ido-subdir-face '((((class color))
727 (:foreground "red"))
728 (t (:underline t)))
729 "*Font used by ido for highlighting subdirs in the alternatives."
730 :group 'ido)
732 (defface ido-indicator-face '((((class color))
733 (:foreground "yellow"
734 :background "red"
735 :width condensed))
736 (t (:inverse-video t)))
737 "*Font used by ido for highlighting its indicators."
738 :group 'ido)
740 (defcustom ido-make-file-list-hook nil
741 "*List of functions to run when the list of matching files is created.
742 Each function on the list may modify the dynamically bound variable
743 `ido-temp-list' which contains the current list of matching files."
744 :type 'hook
745 :group 'ido)
747 (defcustom ido-make-dir-list-hook nil
748 "*List of functions to run when the list of matching directories is created.
749 Each function on the list may modify the dynamically bound variable
750 `ido-temp-list' which contains the current list of matching directories."
751 :type 'hook
752 :group 'ido)
754 (defcustom ido-make-buffer-list-hook nil
755 "*List of functions to run when the list of matching buffers is created.
756 Each function on the list may modify the dynamically bound variable
757 `ido-temp-list' which contains the current list of matching buffer names."
758 :type 'hook
759 :group 'ido)
761 (defcustom ido-rewrite-file-prompt-functions nil
762 "*List of functions to run when the find-file prompt is created.
763 Each function on the list may modify the following dynamically bound
764 variables:
765 dirname - the (abbreviated) directory name
766 to be modified by the hook functions
767 max-width - the max width of the resulting dirname; nil means no limit
768 prompt - the basic prompt (e.g. \"Find File: \")
769 literal - the string shown if doing \"literal\" find; set to nil to omit
770 vc-off - the string shown if version control is inhibited; set to nit to omit
771 prefix - either nil or a fixed prefix for the dirname
773 The following variables are available, but should not be changed:
774 ido-current-directory - the unabbreviated directory name
775 item - equals `file' or `dir' depending on the current mode."
776 :type 'hook
777 :group 'ido)
779 (defvar ido-rewrite-file-prompt-rules nil
780 "*Alist of rewriting rules for directory names in ido prompts.
781 A list of elements of the form (FROM . TO) or (FROM . FUNC), each
782 meaning to rewrite the directory name if matched by FROM by either
783 substituting the matched string by TO or calling the function FUNC
784 with the current directory name as its only argument and using the
785 return value as the new directory name. In addition, each FUNC may
786 also modify the dynamic variables described for the variable
787 `ido-rewrite-file-prompt-functions'.")
789 (defcustom ido-completion-buffer "*Ido Completions*"
790 "*Name of completion buffer used by ido.
791 Set to nil to disable completion buffers popping up."
792 :type 'string
793 :group 'ido)
795 (defcustom ido-completion-buffer-all-completions nil
796 "*Non-nil means to show all completions in completion buffer.
797 Otherwise, only the current list of matches is shown."
798 :type 'boolean
799 :group 'ido)
801 (defvar ido-all-frames 'visible
802 "*Argument to pass to `walk-windows' when finding visible files.
803 See documentation of `walk-windows' for useful values.")
805 (defcustom ido-minibuffer-setup-hook nil
806 "*Ido-specific customization of minibuffer setup.
808 This hook is run during minibuffer setup iff `ido' will be active.
809 It is intended for use in customizing ido for interoperation
810 with other packages. For instance:
812 \(add-hook 'ido-minibuffer-setup-hook
813 \(function
814 \(lambda ()
815 \(make-local-variable 'max-mini-window-height)
816 \(setq max-mini-window-height 3))))
818 will constrain Emacs to a maximum minibuffer height of 3 lines when
819 ido is running. Copied from `icomplete-minibuffer-setup-hook'."
820 :type 'hook
821 :group 'ido)
823 (defcustom ido-save-directory-list-file "~/.ido.last"
824 "File in which the ido state is saved between invocations.
825 Variables stored are: `ido-last-directory-list', `ido-work-directory-list',
826 `ido-work-file-list', and `ido-dir-file-cache'.
827 Must be set before enabling ido mode."
828 :type 'string
829 :group 'ido)
831 (defcustom ido-read-file-name-as-directory-commands '()
832 "List of commands which uses read-file-name to read a directory name.
833 When `ido-everywhere' is non-nil, the commands in this list will read
834 the directory using ido-read-directory-name."
835 :type '(repeat symbol)
836 :group 'ido)
838 (defcustom ido-read-file-name-non-ido '()
839 "List of commands which shall not read file names the ido way.
840 When `ido-everywhere' is non-nil, the commands in this list will read
841 the file name using normal read-file-name style."
842 :type '(repeat symbol)
843 :group 'ido)
845 ;;; Internal Variables
847 ;; Persistent variables
849 (defvar ido-mode-map nil
850 "Keymap for `ido-find-file' and `ido-switch-buffer'.")
852 (defvar ido-file-history nil
853 "History of files selected using `ido-find-file'.")
855 (defvar ido-buffer-history nil
856 "History of buffers selected using `ido-switch-buffer'.")
858 (defvar ido-last-directory-list nil
859 "List of last selected directory names.
860 See `ido-enable-last-directory-history' for details.")
862 (defvar ido-work-directory-list nil
863 "List of actual working directory names.
864 The current directory is inserted at the front of this list whenever a
865 file is opened with ido-find-file and family.")
867 (defvar ido-work-file-list nil
868 "List of actual work file names.
869 Opening a file with `ido-find-file' and similar functions
870 inserts the current file name (relative to its containing directory)
871 at the front of this list.")
873 (defvar ido-dir-file-cache nil
874 "List of `file-name-all-completions' results.
875 Each element in the list is of the form (DIR (MTIME) FILE...).")
877 (defvar ido-ignore-item-temp-list nil
878 "List of items to ignore in current ido invocation.
879 Intended to be let-bound by functions which calls ido repeatedly.
880 Should never be set permanently.")
882 ;; Temporary storage
884 (defvar ido-eoinput 1
885 "Point where minibuffer input ends and completion info begins.
886 Copied from `icomplete-eoinput'.")
887 (make-variable-buffer-local 'ido-eoinput)
889 (defvar ido-common-match-string nil
890 "Stores the string that is common to all matching files.")
892 (defvar ido-rescan nil
893 "Non-nil means we need to regenerate the list of matching items.")
895 (defvar ido-rotate nil
896 "Non-nil means we are rotating list of matches.")
898 (defvar ido-text nil
899 "Stores the users string as it is typed in.")
901 (defvar ido-text-init nil
902 "The initial string for the users string it is typed in.")
904 (defvar ido-matches nil
905 "List of files currently matching `ido-text'.")
907 (defvar ido-report-no-match t
908 "Report [No Match] when no completions matches ido-text.")
910 (defvar ido-exit nil
911 "Flag to monitor how `ido-find-file' exits.
912 If equal to `takeprompt', we use the prompt as the file name to be
913 selected.")
915 (defvar ido-current-directory nil
916 "Current directory for ido-find-file.")
918 (defvar ido-auto-merge-timer nil
919 "Delay timer for auto merge.")
921 (defvar ido-use-mycompletion-depth 0
922 "Non-nil means use `ido' completion feedback.
923 Is set by ido functions to the current minibuffer-depth, so that
924 it doesn't interfere with other minibuffer usage.")
927 ;;; Variables with dynamic bindings.
928 ;;; Declared here to keep the byte compiler quiet.
930 ;; Stores the current ido item type ('file, 'dir or 'buffer).
931 (defvar ido-cur-item)
933 ;; Stores the current list of items that will be searched through.
934 ;; The list is ordered, so that the most interesting item comes first,
935 ;; although by default, the files visible in the current frame are put
936 ;; at the end of the list. Created by `ido-make-item-list'.
937 (defvar ido-cur-list)
939 ;; Stores the list of items which are ignored when building
940 ;; `ido-cur-list'. It is in no specific order.
941 (defvar ido-ignored-list)
943 ;; Remember if current directory is non-readable (so we cannot do completion).
944 (defvar ido-directory-nonreadable)
946 ;; Keep current item list if non-nil.
947 (defvar ido-keep-item-list)
949 ;; Process ido-ignore-* lists.
950 (defvar ido-process-ignore-lists)
952 ;; Don't process ido-ignore- lists once.
953 (defvar ido-process-ignore-lists-inhibit)
955 ;; Buffer from which ido was entered.
956 (defvar ido-entry-buffer)
958 ;; Non-nil if matching file must be selected.
959 (defvar ido-require-match)
961 ;; Stores a temporary version of the file list being created.
962 (defvar ido-temp-list)
964 ;; Non-nil if default list element should be rotated into place.
965 (defvar ido-rotate-temp)
967 ;; Stores current index in ido-work-directory-list.
968 (defvar ido-work-directory-index)
970 ;; Stores current index in ido-work-file-list.
971 (defvar ido-work-file-index)
973 ;; Set when merged work directory list is in use.
974 (defvar ido-use-merged-list)
976 ;; Set when merged work directory list not yet built.
977 (defvar ido-try-merged-list)
979 ;; Saved state prior to last work directory merge.
980 ;; Value is a list (ido-text dir cur-list ignored-list matches).
981 (defvar ido-pre-merge-state)
983 ;; Original value of vc-handled-backends for use in ido-toggle-vc.
984 (defvar ido-saved-vc-hb)
986 ;; Stores temporary state of literal find file.
987 (defvar ido-find-literal)
990 ;;; FUNCTIONS
992 (defun ido-active (&optional merge)
993 (if merge
994 ido-use-merged-list
995 (and (boundp 'ido-completing-read) (= ido-use-mycompletion-depth (minibuffer-depth)))))
997 (defvar ido-trace-enable nil)
999 (defun ido-trace (p &optional s retval)
1000 (if ido-trace-enable
1001 (let ((b (get-buffer-create " *IDO Trace*"))
1002 (deactivate-mark deactivate-mark))
1003 (save-excursion
1004 (save-restriction
1005 (set-buffer b)
1006 (insert p ": " (if (stringp s) s (format "%S" s)) "\n")))))
1007 retval)
1009 (defun ido-toggle-trace (arg)
1010 (interactive "P")
1011 (setq ido-trace-enable (or arg (not ido-trace-enable)))
1012 (if ido-trace-enable
1013 (message "IDO trace on"))
1014 (let ((b (get-buffer " *IDO Trace*")))
1015 (if b
1016 (if ido-trace-enable
1017 (kill-buffer b)
1018 (pop-to-buffer b t t)
1019 (setq truncate-lines t)))))
1021 (defun ido-is-tramp-root (&optional dir)
1022 (setq dir (or dir ido-current-directory))
1023 (and ido-enable-tramp-completion
1024 (string-match "\\`/[^/][^/]+:\\([^/:@]+@\\)?\\'" dir)))
1026 (defun ido-is-root-directory (&optional dir)
1027 (setq dir (or dir ido-current-directory))
1029 (string-equal "/" dir)
1030 (and (memq system-type '(windows-nt ms-dos))
1031 (string-match "\\`[a-zA-Z]:[/\\]\\'" dir))
1032 (if ido-enable-tramp-completion
1033 (ido-is-tramp-root dir)
1034 (string-match "\\`/[^:/][^:/]+:\\'" dir))))
1036 (defun ido-is-ftp-directory (&optional dir)
1037 (string-match
1038 (if ido-enable-tramp-completion
1039 "\\`/[^/:][^/:]+:" ;; like tramp-file-name-regexp-unified, but doesn't match single drive letters
1040 "\\`/[^/:][^/:]+:/")
1041 (or dir ido-current-directory)))
1043 (defun ido-is-slow-ftp-host (&optional dir)
1044 (and (or ido-slow-ftp-hosts ido-slow-ftp-host-regexps)
1045 (setq dir (or dir ido-current-directory))
1046 ;; (featurep 'ange-ftp)
1047 ;; (ange-ftp-ftp-name dir)
1048 (string-match
1049 (if ido-enable-tramp-completion
1050 "\\`/\\([^/]+[@:]\\)*\\([^@/:][^@/:]+\\):"
1051 "\\`/\\([^/:]*@\\)?\\([^@/:][^@/:]+\\):/")
1052 dir)
1053 (let ((host (substring dir (match-beginning 2) (match-end 2))))
1054 (or (member host ido-slow-ftp-hosts)
1055 (let ((re ido-slow-ftp-host-regexps))
1056 (while (and re (not (string-match (car re) host)))
1057 (setq re (cdr re)))
1058 re)))))
1060 (defun ido-time-stamp (&optional time)
1061 ;; Time is a floating point number (fractions of 1 hour)
1062 (setq time (or time (current-time)))
1063 (/ (+ (* (car time) 65536.0) (car (cdr time))) 3600.0))
1065 (defun ido-cache-ftp-valid (&optional time)
1066 (and (numberp ido-cache-ftp-work-directory-time)
1067 (> ido-cache-ftp-work-directory-time 0)
1068 (or (not time)
1069 (< (- (ido-time-stamp) time) ido-cache-ftp-work-directory-time))))
1071 (defun ido-may-cache-directory (&optional dir)
1072 (setq dir (or dir ido-current-directory))
1073 (cond
1074 ((and (ido-is-root-directory dir)
1075 (or ido-enable-tramp-completion
1076 (memq system-type '(windows-nt ms-dos))))
1077 nil)
1078 ((not (ido-is-ftp-directory dir))
1080 ((ido-cache-ftp-valid)
1081 t)))
1083 (defun ido-pp (list &optional sep)
1084 (let ((print-level nil) (eval-expression-print-level nil)
1085 (print-length nil) (eval-expression-print-length nil))
1086 (insert "\n;; ----- " (symbol-name list) " -----\n(\n ")
1087 (setq list (symbol-value list))
1088 (while list
1089 (let* ((elt (car list))
1090 (s (if (consp elt) (car elt) elt)))
1091 (if (and (stringp s) (= (length s) 0))
1092 (setq s nil))
1093 (if s
1094 (prin1 elt (current-buffer)))
1095 (if (and (setq list (cdr list)) s)
1096 (insert (or sep "\n ")))))
1097 (insert "\n)\n")))
1099 (defun ido-save-history ()
1100 "Save ido history and cache information between sessions."
1101 (interactive)
1102 (if (and ido-last-directory-list ido-save-directory-list-file)
1103 (save-excursion
1104 (save-window-excursion
1105 (if (find-buffer-visiting ido-save-directory-list-file)
1106 (kill-buffer (find-buffer-visiting ido-save-directory-list-file)))
1107 (if (file-exists-p ido-save-directory-list-file)
1108 (delete-file ido-save-directory-list-file))
1109 (set-buffer (let ((enable-local-variables nil))
1110 (find-file-noselect ido-save-directory-list-file t)))
1111 (goto-char (point-min))
1112 (delete-region (point-min) (point-max))
1113 (ido-pp 'ido-last-directory-list)
1114 (ido-pp 'ido-work-directory-list)
1115 (ido-pp 'ido-work-file-list)
1116 (ido-pp 'ido-dir-file-cache "\n\n ")
1117 (insert "\n")
1118 (let ((version-control 'never))
1119 (write-file ido-save-directory-list-file nil))
1120 (kill-buffer (current-buffer))))))
1122 (defun ido-load-history (&optional arg)
1123 "Load ido history and cache information from previous session.
1124 With prefix argument, reload history unconditionally."
1125 (interactive "P")
1126 (if (or arg (and ido-save-directory-list-file (not ido-last-directory-list)))
1127 (let ((file (expand-file-name ido-save-directory-list-file))
1128 buf)
1129 (when (file-readable-p file)
1130 (save-excursion
1131 (save-window-excursion
1132 (setq buf (set-buffer (let ((enable-local-variables nil))
1133 (find-file-noselect file))))
1134 (goto-char (point-min))
1135 (condition-case nil
1136 (setq ido-last-directory-list (read (current-buffer))
1137 ido-work-directory-list (read (current-buffer))
1138 ido-work-file-list (read (current-buffer))
1139 ido-dir-file-cache (read (current-buffer)))
1140 (error nil))))
1141 (kill-buffer buf))))
1142 (ido-wash-history))
1144 (defun ido-wash-history ()
1145 "Clean-up ido history and cache information.
1146 Removes badly formatted data and ignored directories."
1147 (interactive)
1148 ;; Check format of each of our lists, discard bogus elements
1149 (setq ido-last-directory-list
1150 (and (listp ido-last-directory-list)
1151 (let ((l ido-last-directory-list) r)
1152 (while l
1153 (if (and (consp (car l))
1154 (stringp (car (car l)))
1155 (stringp (cdr (car l))))
1156 (setq r (cons (car l) r)))
1157 (setq l (cdr l)))
1158 (nreverse r))))
1159 (setq ido-work-directory-list
1160 (and (listp ido-work-directory-list)
1161 (let ((l ido-work-directory-list) r)
1162 (while l
1163 (if (and (stringp (car l))
1164 (or ido-record-ftp-work-directories
1165 (not (ido-is-ftp-directory (car l)))))
1166 (setq r (cons (car l) r)))
1167 (setq l (cdr l)))
1168 (nreverse r))))
1169 (setq ido-work-file-list
1170 (and (listp ido-work-file-list)
1171 (let ((l ido-work-file-list) r)
1172 (while l
1173 (if (stringp (car l))
1174 (setq r (cons (car l) r)))
1175 (setq l (cdr l)))
1176 (nreverse r))))
1177 (setq ido-dir-file-cache
1178 (and (listp ido-dir-file-cache)
1179 (let ((l ido-dir-file-cache) r)
1180 (while l
1181 (if (and (listp (car l))
1182 (> (length (car l)) 2)
1183 (let ((dir (car (car l)))
1184 (time (car (cdr (car l))))
1185 (files (cdr (cdr (car l)))))
1186 (and
1187 (stringp dir)
1188 (consp time)
1189 (if (integerp (car time))
1190 (and (/= (car time) 0)
1191 (integerp (car (cdr time)))
1192 (/= (car (cdr time)) 0)
1193 (ido-may-cache-directory dir))
1194 (and (eq (car time) 'ftp)
1195 (numberp (cdr time))
1196 (ido-is-ftp-directory dir)
1197 (ido-cache-ftp-valid (cdr time))))
1198 (let ((s files) (ok t))
1199 (while s
1200 (if (stringp (car s))
1201 (setq s (cdr s))
1202 (setq s nil ok nil)))
1203 ok))))
1204 (setq r (cons (car l) r)))
1205 (setq l (cdr l)))
1206 (nreverse r))))
1208 ;; Remove ignored directories from work directory list
1209 ;; according to ido-work-directory-list-ignore-regexps
1210 (if ido-work-directory-list
1211 (let ((dirs (reverse ido-work-directory-list)))
1212 (setq ido-work-directory-list nil)
1213 (while dirs
1214 (ido-record-work-directory (car dirs))
1215 (setq dirs (cdr dirs)))))
1216 ;; Get rid of text properties
1217 (let ((l ido-last-directory-list) e)
1218 (while l
1219 (setq e (car l) l (cdr l))
1220 (set-text-properties 0 (length (car e)) nil (car e))
1221 (set-text-properties 0 (length (cdr e)) nil (cdr e))))
1222 (let ((l ido-work-directory-list) e)
1223 (while l
1224 (setq e (car l) l (cdr l))
1225 (set-text-properties 0 (length e) nil e)))
1226 (let ((l ido-work-file-list) e)
1227 (while l
1228 (setq e (car l) l (cdr l))
1229 (set-text-properties 0 (length e) nil e)))
1230 (let ((l ido-dir-file-cache) e d)
1231 (while l
1232 (setq e (car l) l (cdr l))
1233 (if (listp e)
1234 (while e
1235 (setq d (car e) e (cdr e))
1236 (if (not (consp d))
1237 (set-text-properties 0 (length d) nil d))))))
1241 (defun ido-kill-emacs-hook ()
1242 ;; ido kill emacs hook
1243 (ido-save-history))
1245 (defvar ido-minor-mode-map-entry nil)
1247 ;;;###autoload
1248 (defun ido-mode (&optional arg)
1249 "Toggle ido speed-ups on or off.
1250 With ARG, turn ido speed-up on if arg is positive, off otherwise.
1251 Turning on ido-mode will remap (via a minor-mode keymap) the default
1252 keybindings for the `find-file' and `switch-to-buffer' families of
1253 commands to the ido versions of these functions.
1254 However, if ARG arg equals 'files, remap only commands for files, or
1255 if it equals 'buffers, remap only commands for buffer switching.
1256 This function also adds a hook to the minibuffer."
1257 (interactive "P")
1258 (setq ido-mode
1259 (cond
1260 ((null arg) (if ido-mode nil 'both))
1261 ((eq arg t) 'both)
1262 ((eq arg 'files) 'file)
1263 ((eq arg 'buffers) 'buffer)
1264 ((memq arg '(file buffer both)) arg)
1265 ((> (prefix-numeric-value arg) 0) 'both)
1266 (t nil)))
1268 (ido-everywhere (if ido-everywhere 1 -1))
1270 (when ido-mode
1271 (add-hook 'minibuffer-setup-hook 'ido-minibuffer-setup)
1272 (add-hook 'choose-completion-string-functions 'ido-choose-completion-string)
1273 (ido-load-history)
1275 (add-hook 'kill-emacs-hook 'ido-kill-emacs-hook)
1277 (unless ido-minor-mode-map-entry
1278 (setq ido-minor-mode-map-entry (cons 'ido-mode (make-sparse-keymap)))
1279 (add-to-list 'minor-mode-map-alist ido-minor-mode-map-entry))
1281 (let ((map (cdr ido-minor-mode-map-entry)))
1282 (when (memq ido-mode '(file both))
1283 (define-key map [remap find-file] 'ido-find-file)
1284 (define-key map [remap find-file-read-only] 'ido-find-file-read-only)
1285 (define-key map [remap find-alternate-file] 'ido-find-alternate-file)
1286 (define-key map [remap write-file] 'ido-write-file)
1287 (define-key map [remap insert-file] 'ido-insert-file)
1288 (define-key map [remap list-directory] 'ido-list-directory)
1289 (define-key map [remap dired] 'ido-dired)
1290 (define-key map [remap find-file-other-window] 'ido-find-file-other-window)
1291 (define-key map [remap find-file-read-only-other-window] 'ido-find-file-read-only-other-window)
1292 (define-key map [remap find-file-other-frame] 'ido-find-file-other-frame)
1293 (define-key map [remap find-file-read-only-other-frame] 'ido-find-file-read-only-other-frame))
1295 (when (memq ido-mode '(buffer both))
1296 (define-key map [remap switch-to-buffer] 'ido-switch-buffer)
1297 (define-key map [remap switch-to-buffer-other-window] 'ido-switch-buffer-other-window)
1298 (define-key map [remap switch-to-buffer-other-frame] 'ido-switch-buffer-other-frame)
1299 (define-key map [remap insert-buffer] 'ido-insert-buffer)
1300 (define-key map [remap kill-buffer] 'ido-kill-buffer)
1301 (define-key map [remap display-buffer] 'ido-display-buffer)))))
1303 (defun ido-everywhere (arg)
1304 "Enable ido everywhere file and directory names are read."
1305 (interactive "P")
1306 (setq ido-everywhere (if arg
1307 (> (prefix-numeric-value arg) 0)
1308 (not ido-everywhere)))
1309 (setq read-file-name-function
1310 (and ido-everywhere (memq ido-mode '(both file))
1311 'ido-read-file-name))
1312 (setq read-buffer-function
1313 (and ido-everywhere (memq ido-mode '(both buffer))
1314 'ido-read-buffer)))
1317 ;;; IDO KEYMAP
1318 (defun ido-define-mode-map ()
1319 "Set up the keymap for `ido'."
1320 (let (map)
1321 ;; generated every time so that it can inherit new functions.
1323 (setq map (copy-keymap minibuffer-local-map))
1324 (define-key map "\C-a" 'ido-toggle-ignore)
1325 (define-key map "\C-c" 'ido-toggle-case)
1326 (define-key map "\C-e" 'ido-edit-input)
1327 (define-key map "\t" 'ido-complete)
1328 (define-key map " " 'ido-complete-space)
1329 (define-key map "\C-j" 'ido-select-text)
1330 (define-key map "\C-m" 'ido-exit-minibuffer)
1331 (define-key map "\C-p" 'ido-toggle-prefix)
1332 (define-key map "\C-r" 'ido-prev-match)
1333 (define-key map "\C-s" 'ido-next-match)
1334 (define-key map "\C-t" 'ido-toggle-regexp)
1335 (define-key map "\C-z" 'ido-undo-merge-work-directory)
1336 (define-key map [(control ? )] 'ido-restrict-to-matches)
1337 (define-key map [(control ?@)] 'ido-restrict-to-matches)
1338 (define-key map [right] 'ido-next-match)
1339 (define-key map [left] 'ido-prev-match)
1340 (define-key map "?" 'ido-completion-help)
1342 (when (memq ido-cur-item '(file dir))
1343 (define-key map "\C-b" 'ido-enter-switch-buffer)
1344 (define-key map "\C-d" 'ido-enter-dired)
1345 (define-key map "\C-f" 'ido-fallback-command)
1346 (define-key map [down] 'ido-next-match-dir)
1347 (define-key map [up] 'ido-prev-match-dir)
1348 (define-key map [(meta up)] 'ido-prev-work-directory)
1349 (define-key map [(meta down)] 'ido-next-work-directory)
1350 (define-key map [backspace] 'ido-delete-backward-updir)
1351 (define-key map "\d" 'ido-delete-backward-updir)
1352 (define-key map [(meta backspace)] 'ido-delete-backward-word-updir)
1353 (define-key map [(control backspace)] 'ido-up-directory)
1354 (define-key map "\C-l" 'ido-reread-directory)
1355 (define-key map [(meta ?b)] 'ido-next-work-file)
1356 (define-key map [(meta ?d)] 'ido-wide-find-dir)
1357 (define-key map [(meta ?f)] 'ido-wide-find-file)
1358 (define-key map [(meta ?k)] 'ido-forget-work-directory)
1359 (define-key map [(meta ?m)] 'ido-make-directory)
1360 (define-key map [(meta ?n)] 'ido-next-work-directory)
1361 (define-key map [(meta ?o)] 'ido-prev-work-file)
1362 (define-key map [(meta ?p)] 'ido-prev-work-directory)
1363 (define-key map [(meta ?s)] 'ido-merge-work-directories)
1366 (when (eq ido-cur-item 'file)
1367 (define-key map "\C-k" 'ido-delete-file-at-head)
1368 (define-key map "\C-o" 'ido-copy-current-word)
1369 (define-key map "\C-w" 'ido-copy-current-file-name)
1370 (define-key map [(meta ?l)] 'ido-toggle-literal)
1371 (define-key map "\C-v" 'ido-toggle-vc)
1374 (when (eq ido-cur-item 'buffer)
1375 (define-key map "\C-b" 'ido-fallback-command)
1376 (define-key map "\C-f" 'ido-enter-find-file)
1377 (define-key map "\C-k" 'ido-kill-buffer-at-head)
1380 (when (if (boundp 'viper-mode) viper-mode)
1381 (define-key map [remap viper-intercept-ESC-key] 'ignore)
1382 (when (memq ido-cur-item '(file dir))
1383 (define-key map [remap viper-backward-char] 'ido-delete-backward-updir)
1384 (define-key map [remap viper-del-backward-char-in-insert] 'ido-delete-backward-updir)
1385 (define-key map [remap viper-delete-backward-word] 'ido-delete-backward-word-updir)))
1387 (setq ido-mode-map map)
1388 (run-hooks 'ido-define-mode-map-hook)))
1390 (defun ido-final-slash (dir &optional fix-it)
1391 ;; return DIR if DIR has final slash.
1392 ;; else if FIX-IT is non-nil, return DIR/
1393 ;; else return nil.
1394 (setq dir (ido-name dir))
1395 (cond
1396 ((string-match "/\\'" dir) dir)
1397 ((ido-is-tramp-root dir) dir)
1398 (fix-it (concat dir "/"))
1399 (t nil)))
1401 (defun ido-no-final-slash (s)
1402 ;; Remove optional final slash from string S
1403 (let ((l (1- (length s))))
1404 (if (and (> l 0) (eq (aref s l) ?/))
1405 (substring s 0 l)
1406 s)))
1408 (defun ido-nonreadable-directory-p (dir)
1409 ;; Return t if dir is a directory, but not readable
1410 ;; Do not check for non-readable directories via tramp, as this causes a premature
1411 ;; connect on incomplete tramp paths (after entring just method:).
1412 (let ((ido-enable-tramp-completion nil))
1413 (and (ido-final-slash dir)
1414 (file-directory-p dir)
1415 (not (file-readable-p dir)))))
1417 (defun ido-set-current-directory (dir &optional subdir no-merge)
1418 ;; Set ido's current directory to DIR or DIR/SUBDIR
1419 (setq dir (ido-final-slash dir t))
1420 (setq ido-use-merged-list nil
1421 ido-try-merged-list (not no-merge))
1422 (if subdir
1423 (setq dir (ido-final-slash (concat dir subdir) t)))
1424 (if (equal dir ido-current-directory)
1426 (ido-trace "cd" dir)
1427 (setq ido-current-directory dir)
1428 (if (get-buffer ido-completion-buffer)
1429 (kill-buffer ido-completion-buffer))
1430 (setq ido-directory-nonreadable (ido-nonreadable-directory-p dir))
1433 (defun ido-set-current-home (&optional dir)
1434 ;; Set ido's current directory to user's home directory
1435 (ido-set-current-directory (expand-file-name (or dir "~/"))))
1437 (defun ido-record-command (command arg)
1438 ;; Add (command arg) to command-history if ido-record-commands is t
1439 (if ido-record-commands
1440 (let ((cmd (list command arg)))
1441 (if (or (not command-history)
1442 (not (equal cmd (car command-history))))
1443 (setq command-history (cons cmd command-history))))))
1445 (defun ido-make-prompt (item prompt)
1446 ;; Make the prompt for ido-read-internal
1447 (cond
1448 ((and (memq item '(file dir)) ido-current-directory)
1449 (let ((dirname (abbreviate-file-name ido-current-directory))
1450 (max-width (if (and ido-max-file-prompt-width (floatp ido-max-file-prompt-width))
1451 (floor (* (frame-width) ido-max-file-prompt-width))
1452 ido-max-file-prompt-width))
1453 (literal (and (boundp 'ido-find-literal) ido-find-literal "(literal) "))
1454 (vc-off (and ido-saved-vc-hb (not vc-handled-backends) "[-VC] "))
1455 (prefix nil)
1456 (rule ido-rewrite-file-prompt-rules))
1457 (let ((case-fold-search nil))
1458 (while rule
1459 (if (and (consp (car rule))
1460 (string-match (car (car rule)) dirname))
1461 (setq dirname
1462 (if (stringp (cdr (car rule)))
1463 (replace-match (cdr (car rule)) t nil dirname)
1464 (funcall (cdr (car rule)) dirname))))
1465 (setq rule (cdr rule))))
1466 (run-hooks 'ido-rewrite-file-prompt-functions)
1467 (concat prompt
1468 ; (if ido-process-ignore-lists "" "&")
1469 (or literal "")
1470 (or vc-off "")
1471 (or prefix "")
1472 (let ((l (length dirname)))
1473 (if (and max-width (> max-width 0) (> l max-width))
1474 (let* ((s (substring dirname (- max-width)))
1475 (i (string-match "/" s)))
1476 (concat "..." (if i (substring s i) s)))
1477 dirname)))))
1478 (t prompt)))
1480 ;; Here is very briefly how ido-find-file works:
1482 ;; (ido-find-file)
1483 ;; (ido-file-internal method)
1484 ;; set ido-current-directory
1485 ;; (ido-read-internal 'file ...)
1486 ;; (while ...
1487 ;; (ido-make-item-list ...)
1488 ;; (ido-set-matches)
1489 ;; (completing-read ... ido-text-init ...)
1491 ;; ... here user is allowed to type characters and commands
1492 ;; a command may set ido-exit and call (exit-minibuffer)
1493 ;; to make ido-read-internal do advanced tasks (or return)
1495 ;; ... ido-tidy and ido-exhibit are pre- and post-hooks
1496 ;; which are run before and after each user command.
1498 ;; return value from completing-read is stored in ido-final-text
1499 ;; - ido-exit may cause further actions to be taken:
1500 ;; 'refresh - repeat loop (make-item-list, set-matches)
1501 ;; 'edit - edit the prompt string, then repeat loop
1502 ;; 'keep - repeat loop but don't (re)make-item-list
1503 ;; 'updir - go up one directory, repeat loop
1504 ;; else set ido-selected based on ido-final-text,
1505 ;; optionally update ido-current-directory and repeat loop, or
1506 ;; exit with the return value of ido-selected (file name)
1507 ;; selected file name is returned from ido-read-internal,
1508 ;; ido-exit and method determines what action is taken
1509 ;; e.g. the file name may be ignored or joined with ido-current-directory, and
1510 ;; the relevant function is called (find-file, write-file, etc).
1512 (defun ido-read-internal (item prompt history &optional default require-match initial)
1513 "Perform the ido-read-buffer and ido-read-file-name functions.
1514 Return the name of a buffer or file selected.
1515 PROMPT is the prompt to give to the user.
1516 DEFAULT if given is the default directory to start with.
1517 If REQUIRE-MATCH is non-nil, an existing file must be selected.
1518 If INITIAL is non-nil, it specifies the initial input string."
1519 (let
1520 ((ido-cur-item item)
1521 (ido-entry-buffer (current-buffer))
1522 (ido-process-ignore-lists t)
1523 (ido-process-ignore-lists-inhibit nil)
1524 (ido-set-default-item t)
1525 ido-default-item
1526 ido-selected
1527 ido-final-text
1528 (done nil)
1529 (icomplete-mode nil) ;; prevent icomplete starting up
1530 ;; Exported dynamic variables:
1531 ido-cur-list
1532 ido-ignored-list
1533 (ido-rotate-temp nil)
1534 (ido-keep-item-list nil)
1535 (ido-use-merged-list nil)
1536 (ido-try-merged-list t)
1537 (ido-pre-merge-state nil)
1538 (ido-case-fold ido-case-fold)
1539 (ido-enable-prefix ido-enable-prefix)
1540 (ido-enable-regexp ido-enable-regexp)
1543 (ido-define-mode-map)
1544 (setq ido-text-init initial)
1545 (while (not done)
1546 (ido-trace "\n_LOOP_" ido-text-init)
1547 (setq ido-exit nil)
1548 (setq ido-rescan t)
1549 (setq ido-rotate nil)
1550 (setq ido-text "")
1551 (when ido-set-default-item
1552 (setq ido-default-item
1553 (cond
1554 ((eq item 'buffer)
1555 (if (bufferp default) (buffer-name default) default))
1556 ((stringp default) default)
1557 ((eq item 'file)
1558 (and ido-enable-last-directory-history
1559 (let ((d (assoc ido-current-directory ido-last-directory-list)))
1560 (and d (cdr d)))))))
1561 (if (member ido-default-item ido-ignore-item-temp-list)
1562 (setq ido-default-item nil))
1563 (setq ido-set-default-item nil))
1565 (if ido-process-ignore-lists-inhibit
1566 (setq ido-process-ignore-lists nil))
1568 (if (and ido-use-merged-list (memq ido-try-merged-list '(t wide)) (not ido-keep-item-list))
1569 (let ((olist ido-cur-list)
1570 (oign ido-ignored-list)
1571 (omat ido-matches)
1572 (l (ido-make-merged-file-list ido-text-init
1573 (eq ido-use-merged-list 'auto)
1574 (eq ido-try-merged-list 'wide))))
1575 (cond
1576 ((not l)
1577 (if (eq ido-try-merged-list 'wide)
1578 (setq ido-pre-merge-state
1579 (list "" ido-current-directory olist oign omat)
1580 ido-cur-list nil
1581 ido-ignored-list nil
1582 ido-matches nil
1583 ido-keep-item-list t
1584 ido-try-merged-list (if (eq ido-use-merged-list 'auto) 'auto nil)
1585 ido-use-merged-list nil)
1586 (setq ido-cur-list olist
1587 ido-ignored-list oign
1588 ido-matches omat
1589 ido-keep-item-list t
1590 ido-try-merged-list (if (eq ido-use-merged-list 'auto) 'auto nil)
1591 ido-use-merged-list nil)))
1592 ((eq l t)
1593 (setq ido-use-merged-list nil))
1595 (setq ido-pre-merge-state
1596 (list ido-text-init ido-current-directory olist oign omat))
1597 (ido-set-current-directory (car (cdr (car l))))
1598 (if (ido-final-slash ido-text-init)
1599 (setq ido-text-init ""))
1600 (setq ido-cur-list l
1601 ido-ignored-list nil
1602 ido-matches l
1603 ido-rescan nil
1604 ido-keep-item-list t
1605 ido-use-merged-list t)
1606 (ido-trace "Merged" t)
1607 ))))
1609 (cond
1610 (ido-keep-item-list
1611 (setq ido-keep-item-list nil
1612 ido-rescan nil))
1613 ((eq ido-cur-item 'file)
1614 (setq ido-ignored-list nil
1615 ido-cur-list (ido-make-file-list ido-default-item)))
1616 ((eq ido-cur-item 'dir)
1617 (setq ido-ignored-list nil
1618 ido-cur-list (ido-make-dir-list ido-default-item)))
1619 ((eq ido-cur-item 'buffer)
1620 (setq ido-ignored-list nil
1621 ido-cur-list (ido-make-buffer-list ido-default-item)))
1622 (t nil))
1623 (setq ido-rotate-temp nil)
1625 (if ido-process-ignore-lists-inhibit
1626 (setq ido-process-ignore-lists t
1627 ido-process-ignore-lists-inhibit nil))
1629 (ido-set-matches)
1630 (if (and ido-matches (eq ido-try-merged-list 'auto))
1631 (setq ido-try-merged-list t))
1632 (let
1633 ((minibuffer-local-completion-map ido-mode-map)
1634 (max-mini-window-height (or ido-max-window-height
1635 (and (boundp 'max-mini-window-height) max-mini-window-height)))
1636 (ido-completing-read t)
1637 (ido-require-match require-match)
1638 (ido-use-mycompletion-depth (1+ (minibuffer-depth)))
1639 (show-paren-mode nil))
1640 ;; prompt the user for the file name
1641 (setq ido-exit nil)
1642 (setq ido-final-text
1643 (catch 'ido
1644 (completing-read
1645 (ido-make-prompt item prompt)
1646 '(("dummy" . 1)) nil nil ; table predicate require-match
1647 (prog1 ido-text-init (setq ido-text-init nil)) ;initial-contents
1648 history))))
1649 (ido-trace "completing-read" ido-final-text)
1650 (if (get-buffer ido-completion-buffer)
1651 (kill-buffer ido-completion-buffer))
1653 (ido-trace "\n_EXIT_" ido-exit)
1655 (cond
1656 ((eq ido-exit 'refresh)
1657 (if (and (eq ido-use-merged-list 'auto)
1658 (or (input-pending-p)))
1659 (setq ido-use-merged-list nil
1660 ido-keep-item-list t))
1661 nil)
1663 ((eq ido-exit 'done)
1664 (setq done t
1665 ido-selected ido-text
1666 ido-exit nil))
1668 ((memq ido-exit '(edit chdir))
1669 (cond
1670 ((memq ido-cur-item '(file dir))
1671 (let* ((read-file-name-function nil)
1672 (edit (eq ido-exit 'edit))
1673 (d ido-current-directory)
1674 (f ido-text-init)
1675 (new t))
1676 (setq ido-text-init "")
1677 (while new
1678 (setq new (if edit
1679 (read-file-name (concat prompt "[EDIT] ")
1680 (expand-file-name d)
1681 (concat d f) nil f)
1683 d (or (file-name-directory new) "/")
1684 f (file-name-nondirectory new)
1685 edit t)
1686 (if (or
1687 (file-directory-p d)
1688 (and (yes-or-no-p (format "Create directory %s? " d))
1689 (condition-case nil
1690 (progn (make-directory d t) t)
1691 (error
1692 (message "Could not create directory")
1693 (sit-for 1)
1694 nil))))
1695 (progn
1696 (ido-set-current-directory d nil (eq ido-exit 'chdir))
1697 (setq ido-text-init f
1698 new nil))))))
1700 (setq ido-text-init (read-string (concat prompt "[EDIT] ") ido-final-text))))
1701 nil)
1703 ((eq ido-exit 'keep)
1704 (setq ido-keep-item-list t))
1706 ((memq ido-exit '(dired fallback findfile findbuffer))
1707 (setq done t))
1709 ((eq ido-exit 'updir)
1710 ;; cannot go up if already at the root-dir (Unix) or at the
1711 ;; root-dir of a certain drive (Windows or MS-DOS).
1712 (if (ido-is-tramp-root)
1713 (when (string-match "\\`\\(/\\([^/]+[:@]\\)*\\)\\([^/]+\\)[:@]\\'" ido-current-directory)
1714 (setq ido-text-init (match-string 3 ido-current-directory))
1715 (ido-set-current-directory (match-string 1 ido-current-directory))
1716 (setq ido-set-default-item t))
1717 (unless (ido-is-root-directory)
1718 (ido-set-current-directory (file-name-directory (substring ido-current-directory 0 -1)))
1719 (setq ido-set-default-item t))))
1721 ;; Handling the require-match must be done in a better way.
1722 ((and require-match (not (ido-existing-item-p)))
1723 (error "must specify valid item"))
1726 (setq ido-selected
1727 (if (or (eq ido-exit 'takeprompt)
1728 (null ido-matches))
1729 ido-final-text
1730 ;; else take head of list
1731 (ido-name (car ido-matches))))
1733 (cond
1734 ((eq item 'buffer)
1735 (setq done t))
1737 ((string-equal "./" ido-selected)
1738 nil)
1740 ((string-equal "../" ido-selected)
1741 ;; cannot go up if already at the root-dir (Unix) or at the
1742 ;; root-dir of a certain drive (Windows or MS-DOS).
1743 (or (ido-is-root-directory)
1744 (ido-set-current-directory (file-name-directory (substring ido-current-directory 0 -1))))
1745 (setq ido-set-default-item t))
1747 ((and (string-match (if ido-enable-tramp-completion "..[:@]\\'" "..:\\'") ido-selected)
1748 (ido-is-root-directory)) ;; Ange-ftp or Tramp
1749 (ido-set-current-directory ido-current-directory ido-selected)
1750 (ido-trace "tramp prefix" ido-selected)
1751 (if (ido-is-slow-ftp-host)
1752 (setq ido-exit 'fallback
1753 done t)
1754 (setq ido-set-default-item t)))
1755 ((or (string-match "[/\\][^/\\]" ido-selected)
1756 (and (memq system-type '(windows-nt ms-dos))
1757 (string-match "\\`.:" ido-selected)))
1758 (ido-set-current-directory (file-name-directory ido-selected))
1759 (setq ido-set-default-item t))
1761 ((string-match "\\`~" ido-selected)
1762 (ido-set-current-home ido-selected))
1764 ((ido-final-slash ido-selected)
1765 (if ido-enable-last-directory-history
1766 (let ((x (assoc ido-current-directory ido-last-directory-list)))
1767 (if x
1768 (setcdr x ido-selected)
1769 (setq ido-last-directory-list
1770 (cons (cons ido-current-directory ido-selected) ido-last-directory-list)))))
1771 (ido-set-current-directory ido-current-directory ido-selected)
1772 (setq ido-set-default-item t))
1775 (setq done t))))))
1776 ido-selected))
1778 (defun ido-edit-input ()
1779 "Edit absolute file name entered so far with ido; terminate by RET."
1780 (interactive)
1781 (setq ido-text-init ido-text)
1782 (setq ido-exit 'edit)
1783 (exit-minibuffer))
1785 ;;; MAIN FUNCTIONS
1786 (defun ido-buffer-internal (method &optional fallback prompt default initial)
1787 ;; Internal function for ido-switch-buffer and friends
1788 (if (not ido-mode)
1789 (call-interactively (or fallback 'switch-to-buffer))
1790 (let ((buf (ido-read-buffer (or prompt "Buffer: ") default nil initial)))
1792 ;; Choose the buffer name: either the text typed in, or the head
1793 ;; of the list of matches
1795 (cond
1796 ((eq ido-exit 'findfile)
1797 (ido-file-internal ido-default-file-method nil nil nil nil ido-text))
1799 ((eq ido-exit 'fallback)
1800 (let ((read-buffer-function nil))
1801 (call-interactively (or fallback 'switch-to-buffer))))
1803 ;; Check buf is non-nil.
1804 ((not buf) nil)
1805 ((= (length buf) 0) nil)
1807 ;; View buffer if it exists
1808 ((get-buffer buf)
1809 (if (eq method 'insert)
1810 (progn
1811 (ido-record-command 'insert-buffer buf)
1812 (insert-buffer buf))
1813 (ido-visit-buffer buf method t)))
1815 ;; buffer doesn't exist
1816 ((eq ido-create-new-buffer 'never)
1817 (message "no buffer matching `%s'" buf))
1819 ((and (eq ido-create-new-buffer 'prompt)
1820 (not (y-or-n-p (format "No buffer matching `%s', create one? " buf))))
1821 nil)
1823 ;; create a new buffer
1825 (setq buf (get-buffer-create buf))
1826 (if (fboundp 'set-buffer-major-mode)
1827 (set-buffer-major-mode buf))
1828 (ido-visit-buffer buf method t))))))
1830 ;;;###autoload
1831 (defun ido-read-buffer (prompt &optional default require-match initial)
1832 "Replacement for the built-in `read-buffer'.
1833 Return the name of a buffer selected.
1834 PROMPT is the prompt to give to the user. DEFAULT if given is the default
1835 buffer to be selected, which will go to the front of the list.
1836 If REQUIRE-MATCH is non-nil, an existing-buffer must be selected.
1837 If INITIAL is non-nil, it specifies the initial input string."
1838 (let ((ido-current-directory nil)
1839 (ido-directory-nonreadable nil))
1840 (ido-read-internal 'buffer prompt 'ido-buffer-history default require-match initial)))
1842 (defun ido-record-work-directory (&optional dir)
1843 (when (and (numberp ido-max-work-directory-list) (> ido-max-work-directory-list 0))
1844 (if (and (setq dir (or dir ido-current-directory)) (> (length dir) 0))
1845 (let ((items ido-work-directory-list-ignore-regexps)
1846 (case-fold-search nil))
1847 (while (and items dir)
1848 (if (string-match (car items) dir)
1849 (setq dir nil))
1850 (setq items (cdr items)))
1851 (if dir
1852 (setq ido-work-directory-list (cons dir (delete dir ido-work-directory-list))))))
1853 (if (> (length ido-work-directory-list) ido-max-work-directory-list)
1854 (setcdr (nthcdr (1- ido-max-work-directory-list) ido-work-directory-list) nil))))
1856 (defun ido-forget-work-directory ()
1857 (interactive)
1858 (when (and ido-current-directory ido-work-directory-list)
1859 (setq ido-work-directory-list (delete ido-current-directory ido-work-directory-list))
1860 (when ido-use-merged-list
1861 (ido-undo-merge-work-directory)
1862 (setq ido-exit 'refresh
1863 ido-try-merged-list t
1864 ido-use-merged-list t
1865 ido-text-init ido-text
1866 ido-rotate-temp t)
1867 (exit-minibuffer))))
1869 (defun ido-record-work-file (name)
1870 ;; Save NAME in ido-work-file-list
1871 (when (and (numberp ido-max-work-file-list) (> ido-max-work-file-list 0))
1873 (and ido-work-file-list (equal (car ido-work-file-list) name))
1874 (setq ido-work-file-list (cons name (delete name ido-work-file-list))))
1875 (if (> (length ido-work-file-list) ido-max-work-file-list)
1876 (setcdr (nthcdr (1- ido-max-work-file-list) ido-work-file-list) nil))))
1878 (defun ido-expand-directory (dir)
1879 ;; Expand DIR or use DEFAULT-DIRECTORY if nil.
1880 ;; Add final slash to result in case it was missing from DEFAULT-DIRECTORY.
1881 (ido-final-slash (expand-file-name (or dir default-directory)) t))
1883 (defun ido-file-internal (method &optional fallback default prompt item initial)
1884 ;; Internal function for ido-find-file and friends
1885 (unless item
1886 (setq item 'file))
1887 (let* ((ido-current-directory (ido-expand-directory default))
1888 (ido-directory-nonreadable (ido-nonreadable-directory-p ido-current-directory))
1889 filename)
1891 (cond
1892 ((or (not ido-mode) (ido-is-slow-ftp-host))
1893 (setq filename t
1894 ido-exit 'fallback))
1896 ((and (eq item 'file)
1897 (or ido-use-url-at-point ido-use-filename-at-point))
1898 (let (fn d)
1899 (require 'ffap)
1900 ;; Duplicate code from ffap-guesser as we want different behaviour for files and URLs.
1901 (cond
1902 ((and ido-use-url-at-point
1903 ffap-url-regexp
1904 (ffap-fixup-url (or (ffap-url-at-point)
1905 (ffap-gopher-at-point))))
1906 (setq ido-exit 'ffap
1907 filename t))
1909 ((and ido-use-filename-at-point
1910 (setq fn (ffap-string-at-point))
1911 (not (string-match "^http:/" fn))
1912 (setq d (file-name-directory fn))
1913 (file-directory-p d))
1914 (setq ido-current-directory d)
1915 (setq initial (file-name-nondirectory fn)))))))
1917 (let (ido-saved-vc-hb
1918 (vc-handled-backends (and (boundp 'vc-handled-backends) vc-handled-backends))
1919 (ido-work-directory-index -1)
1920 (ido-work-file-index -1)
1921 (ido-find-literal nil))
1923 (unless filename
1924 (setq ido-saved-vc-hb vc-handled-backends)
1925 (setq filename (ido-read-internal item
1926 (or prompt "Find file: ")
1927 'ido-file-history nil nil initial)))
1929 ;; Choose the file name: either the text typed in, or the head
1930 ;; of the list of matches
1932 (cond
1933 ((eq ido-exit 'fallback)
1934 ;; Need to guard setting of default-directory here, since
1935 ;; we don't want to change directory of current buffer.
1936 (let ((default-directory ido-current-directory)
1937 (read-file-name-function nil))
1938 (call-interactively (or fallback 'find-file))))
1940 ((eq ido-exit 'findbuffer)
1941 (ido-buffer-internal ido-default-buffer-method nil nil nil ido-text))
1943 ((eq ido-exit 'dired)
1944 (dired (concat ido-current-directory (or ido-text ""))))
1946 ((eq ido-exit 'ffap)
1947 (find-file-at-point))
1949 ((eq method 'alt-file)
1950 (ido-record-work-file filename)
1951 (setq default-directory ido-current-directory)
1952 (ido-record-work-directory)
1953 (find-alternate-file filename))
1955 ((memq method '(dired list-directory))
1956 (if (equal filename ".")
1957 (setq filename ""))
1958 (let* ((dirname (ido-final-slash (concat ido-current-directory filename) t))
1959 (file (substring dirname 0 -1)))
1960 (cond
1961 ((file-directory-p dirname)
1962 (ido-record-command method dirname)
1963 (ido-record-work-directory dirname)
1964 (funcall method dirname))
1965 ((file-directory-p ido-current-directory)
1966 (cond
1967 ((file-exists-p file)
1968 (ido-record-command method ido-current-directory)
1969 (ido-record-work-directory)
1970 (funcall method ido-current-directory)
1971 (if (eq method 'dired)
1972 (dired-goto-file (expand-file-name file))))
1973 ((string-match "[[*?]" filename)
1974 (setq dirname (concat ido-current-directory filename))
1975 (ido-record-command method dirname)
1976 (ido-record-work-directory)
1977 (funcall method dirname))
1978 ((y-or-n-p (format "Directory %s does not exist. Create it " filename))
1979 (ido-record-command method dirname)
1980 (ido-record-work-directory dirname)
1981 (make-directory-internal dirname)
1982 (funcall method dirname))
1984 ;; put make-directory command on history
1985 (ido-record-command 'make-directory dirname))))
1986 (t (error "No such directory")))))
1988 ((eq method 'write)
1989 (ido-record-work-file filename)
1990 (setq default-directory ido-current-directory)
1991 (ido-record-command 'write-file (concat ido-current-directory filename))
1992 (ido-record-work-directory)
1993 (write-file filename))
1995 ((eq method 'read-only)
1996 (ido-record-work-file filename)
1997 (setq filename (concat ido-current-directory filename))
1998 (ido-record-command fallback filename)
1999 (ido-record-work-directory)
2000 (funcall fallback filename))
2002 ((eq method 'insert)
2003 (ido-record-work-file filename)
2004 (setq filename (concat ido-current-directory filename))
2005 (ido-record-command
2006 (if ido-find-literal 'insert-file-literally 'insert-file)
2007 filename)
2008 (ido-record-work-directory)
2009 (if ido-find-literal
2010 (insert-file-contents-literally filename)
2011 (insert-file-contents filename)))
2013 (filename
2014 (ido-record-work-file filename)
2015 (setq filename (concat ido-current-directory filename))
2016 (ido-record-command 'find-file filename)
2017 (ido-record-work-directory)
2018 (ido-visit-buffer (find-file-noselect filename nil ido-find-literal) method))))))
2020 (defun ido-existing-item-p ()
2021 ;; Return non-nil if there is a matching item
2022 (not (null ido-matches)))
2024 ;;; COMPLETION CODE
2026 (defun ido-set-common-completion ()
2027 ;; Find common completion of `ido-text' in `ido-matches'
2028 ;; The result is stored in `ido-common-match-string'
2029 (let* (val)
2030 (setq ido-common-match-string nil)
2031 (if (and ido-matches
2032 (not ido-enable-regexp) ;; testing
2033 (stringp ido-text)
2034 (> (length ido-text) 0))
2035 (if (setq val (ido-find-common-substring ido-matches ido-text))
2036 (setq ido-common-match-string val)))
2037 val))
2039 (defun ido-complete ()
2040 "Try and complete the current pattern amongst the file names."
2041 (interactive)
2042 (let (res)
2043 (cond
2044 ((and (memq ido-cur-item '(file dir))
2045 (string-match "[$]" ido-text))
2046 (let ((evar (substitute-in-file-name (concat ido-current-directory ido-text))))
2047 (if (not (file-exists-p (file-name-directory evar)))
2048 (message "Expansion generates non-existing directory name")
2049 (if (file-directory-p evar)
2050 (ido-set-current-directory evar)
2051 (let ((d (or (file-name-directory evar) "/"))
2052 (f (file-name-nondirectory evar)))
2053 (when (file-directory-p d)
2054 (ido-set-current-directory d)
2055 (setq ido-text-init f))))
2056 (setq ido-exit 'refresh)
2057 (exit-minibuffer))))
2059 ((not ido-matches)
2060 (when ido-completion-buffer
2061 (call-interactively (setq this-command ido-cannot-complete-command))))
2063 ((and (= 1 (length ido-matches))
2064 (not (and ido-enable-tramp-completion
2065 (string-equal ido-current-directory "/")
2066 (string-match "..[@:]\\'" (car ido-matches)))))
2067 ;; only one choice, so select it.
2068 (if (not ido-confirm-unique-completion)
2069 (exit-minibuffer)
2070 (setq ido-rescan (not ido-enable-prefix))
2071 (delete-region (minibuffer-prompt-end) (point))
2072 (insert (car ido-matches))))
2074 (t ;; else there could be some completions
2075 (setq res ido-common-match-string)
2076 (if (and (not (memq res '(t nil)))
2077 (not (equal res ido-text)))
2078 ;; found something to complete, so put it in the minibuffer.
2079 (progn
2080 ;; move exact match to front if not in prefix mode
2081 (setq ido-rescan (not ido-enable-prefix))
2082 (delete-region (minibuffer-prompt-end) (point))
2083 (insert res))
2084 ;; else nothing to complete
2085 (call-interactively (setq this-command ido-cannot-complete-command))
2086 )))))
2088 (defun ido-complete-space ()
2089 "Try completion unless inserting the space makes sense."
2090 (interactive)
2091 (if (and (stringp ido-common-match-string)
2092 (stringp ido-text)
2093 (cond
2094 ((> (length ido-common-match-string) (length ido-text))
2095 (= (aref ido-common-match-string (length ido-text)) ? ))
2096 (ido-matches
2097 (let (insert-space
2098 (re (concat (regexp-quote ido-text) " "))
2099 (comp ido-matches))
2100 (while comp
2101 (if (string-match re (ido-name (car comp)))
2102 (setq comp nil insert-space t)
2103 (setq comp (cdr comp))))
2104 insert-space))
2105 (t nil)))
2106 (insert " ")
2107 (ido-complete)))
2109 (defun ido-undo-merge-work-directory (&optional text try refresh)
2110 "Undo or redo last ido directory merge operation.
2111 If no merge has yet taken place, toggle automatic merging option."
2112 (interactive)
2113 (cond
2114 (ido-pre-merge-state
2115 (ido-set-current-directory (nth 1 ido-pre-merge-state))
2116 (setq ido-text-init (or text (car ido-pre-merge-state))
2117 ido-cur-list (nth 2 ido-pre-merge-state)
2118 ido-ignored-list (nth 3 ido-pre-merge-state)
2119 ido-matches (nth 4 ido-pre-merge-state)
2120 ido-use-merged-list nil
2121 ido-try-merged-list try
2122 ido-keep-item-list (not refresh)
2123 ido-rescan nil
2124 ido-exit 'refresh
2125 ido-pre-merge-state nil)
2126 (exit-minibuffer))
2127 (text
2128 nil)
2129 (ido-try-merged-list
2130 (setq ido-try-merged-list nil))
2131 (ido-matches
2132 (setq ido-try-merged-list t))
2133 ((not ido-use-merged-list)
2134 (ido-merge-work-directories))))
2136 ;;; TOGGLE FUNCTIONS
2138 (defun ido-toggle-case ()
2139 "Toggle the value of `ido-case-fold'."
2140 (interactive)
2141 (setq ido-case-fold (not ido-case-fold))
2142 ;; ask for list to be regenerated.
2143 (setq ido-rescan t))
2145 (defun ido-toggle-regexp ()
2146 "Toggle the value of `ido-enable-regexp'."
2147 (interactive)
2148 (setq ido-enable-regexp (not ido-enable-regexp))
2149 ;; ask for list to be regenerated.
2150 (setq ido-rescan t))
2152 (defun ido-toggle-prefix ()
2153 "Toggle the value of `ido-enable-prefix'."
2154 (interactive)
2155 (setq ido-enable-prefix (not ido-enable-prefix))
2156 ;; ask for list to be regenerated.
2157 (setq ido-rescan t))
2159 (defun ido-toggle-ignore ()
2160 "Toggle ignoring files specified with `ido-ignore-files'."
2161 (interactive)
2162 (setq ido-process-ignore-lists (not ido-process-ignore-lists))
2163 (setq ido-text-init ido-text)
2164 (setq ido-exit 'refresh)
2165 (exit-minibuffer))
2167 (defun ido-toggle-vc ()
2168 "Disable version control for this file."
2169 (interactive)
2170 (if (and ido-mode (eq ido-cur-item 'file))
2171 (progn
2172 (setq vc-handled-backends
2173 (if vc-handled-backends nil ido-saved-vc-hb))
2174 (setq ido-text-init ido-text)
2175 (setq ido-exit 'keep)
2176 (exit-minibuffer))))
2178 (defun ido-toggle-literal ()
2179 "Toggle literal reading of this file."
2180 (interactive)
2181 (if (and ido-mode (eq ido-cur-item 'file))
2182 (progn
2183 (setq ido-find-literal (not ido-find-literal))
2184 (setq ido-text-init ido-text)
2185 (setq ido-exit 'keep)
2186 (exit-minibuffer))))
2188 (defun ido-reread-directory ()
2189 "Read current directory again.
2190 May be useful if cached version is no longer valid, but directory
2191 timestamp has not changed (e.g. with ftp or on Windows)."
2192 (interactive)
2193 (if (and ido-mode (eq ido-cur-item 'file))
2194 (progn
2195 (ido-remove-cached-dir ido-current-directory)
2196 (setq ido-text-init ido-text)
2197 (setq ido-rotate-temp t)
2198 (setq ido-exit 'refresh)
2199 (exit-minibuffer))))
2201 (defun ido-exit-minibuffer ()
2202 "Exit minibuffer, but make sure we have a match if one is needed."
2203 (interactive)
2204 (if (or (not ido-require-match)
2205 (ido-existing-item-p))
2206 (throw 'exit nil)))
2208 (defun ido-select-text ()
2209 "Select the buffer or file named by the prompt.
2210 If no buffer or file exactly matching the prompt exists, maybe create a new one."
2211 (interactive)
2212 (setq ido-exit 'takeprompt)
2213 (exit-minibuffer))
2215 (defun ido-fallback-command ()
2216 "Fallback to non-ido version of current command."
2217 (interactive)
2218 (setq ido-exit 'fallback)
2219 (exit-minibuffer))
2221 (defun ido-enter-find-file ()
2222 "Drop into find-file from buffer switching."
2223 (interactive)
2224 (setq ido-exit 'findfile)
2225 (exit-minibuffer))
2227 (defun ido-enter-switch-buffer ()
2228 "Drop into ido-switch-buffer from file switching."
2229 (interactive)
2230 (setq ido-exit 'findbuffer)
2231 (exit-minibuffer))
2233 (defun ido-enter-dired ()
2234 "Drop into dired from file switching."
2235 (interactive)
2236 (setq ido-exit 'dired)
2237 (exit-minibuffer))
2240 (defun ido-up-directory (&optional clear)
2241 "Go up one directory level."
2242 (interactive "P")
2243 (setq ido-text-init (if clear nil ido-text))
2244 (setq ido-exit 'updir)
2245 (setq ido-rotate-temp t)
2246 (exit-minibuffer))
2248 (defun ido-delete-backward-updir (count)
2249 "Delete char backwards, or at beginning of buffer, go up one level."
2250 (interactive "P")
2251 (cond
2252 ((= (minibuffer-prompt-end) (point))
2253 (if (not count)
2254 (ido-up-directory t)))
2255 ((and ido-pre-merge-state (string-equal (car ido-pre-merge-state) ido-text))
2256 (ido-undo-merge-work-directory (substring ido-text 0 -1) t t))
2257 ((eq this-original-command 'viper-backward-char)
2258 (funcall this-original-command (prefix-numeric-value count)))
2259 ((eq this-original-command 'viper-del-backward-char-in-insert)
2260 (funcall this-original-command))
2262 (delete-backward-char (prefix-numeric-value count)))))
2264 (defun ido-delete-backward-word-updir (count)
2265 "Delete all chars backwards, or at beginning of buffer, go up one level."
2266 (interactive "P")
2267 (if (= (minibuffer-prompt-end) (point))
2268 (if (not count)
2269 (ido-up-directory t))
2270 (if (eq this-original-command 'viper-delete-backward-word)
2271 (funcall this-original-command (prefix-numeric-value count))
2272 (backward-kill-word (prefix-numeric-value count)))))
2274 (defun ido-get-work-directory (&optional incr must-match)
2275 (let ((n (length ido-work-directory-list))
2276 (i ido-work-directory-index)
2277 (j 0)
2278 dir)
2279 (if (or (not ido-text) (= (length ido-text) 0))
2280 (setq must-match nil))
2281 (while (< j n)
2282 (setq i (+ i incr)
2283 j (1+ j))
2284 (if (> incr 0)
2285 (if (>= i n) (setq i 0))
2286 (if (< i 0) (setq i (1- n))))
2287 (setq dir (nth i ido-work-directory-list))
2288 (if (and dir
2289 (not (equal dir ido-current-directory))
2290 (file-directory-p dir)
2291 (or (not must-match)
2292 (ido-set-matches1
2293 (if (eq ido-cur-item 'file)
2294 (ido-make-file-list1 dir)
2295 (ido-make-dir-list1 dir)))))
2296 (setq j n)
2297 (setq dir nil)))
2298 (if dir
2299 (setq ido-work-directory-index i))
2300 dir))
2302 (defun ido-prev-work-directory ()
2303 "Change to next working directory in list."
2304 (interactive)
2305 (let ((dir (ido-get-work-directory 1 ido-work-directory-match-only)))
2306 (when dir
2307 (ido-set-current-directory dir)
2308 (setq ido-exit 'refresh)
2309 (setq ido-text-init ido-text)
2310 (setq ido-rotate-temp t)
2311 (exit-minibuffer))))
2313 (defun ido-next-work-directory ()
2314 "Change to previous working directory in list."
2315 (interactive)
2316 (let ((dir (ido-get-work-directory -1 ido-work-directory-match-only)))
2317 (when dir
2318 (ido-set-current-directory dir)
2319 (setq ido-exit 'refresh)
2320 (setq ido-text-init ido-text)
2321 (setq ido-rotate-temp t)
2322 (exit-minibuffer))))
2324 (defun ido-merge-work-directories ()
2325 "Search (and merge) work directories for files matching the current input string."
2326 (interactive)
2327 (setq ido-use-merged-list t ido-try-merged-list t)
2328 (setq ido-exit 'refresh)
2329 (setq ido-text-init ido-text)
2330 (setq ido-rotate-temp t)
2331 (exit-minibuffer))
2333 (defun ido-wide-find-file (&optional file)
2334 "Prompt for FILE to search for using find, starting from current directory."
2335 (interactive)
2336 (unless file
2337 (let ((enable-recursive-minibuffers t))
2338 (setq file
2339 (read-string (concat "Wide find file: " ido-current-directory) ido-text))))
2340 (when (> (length file) 0)
2341 (setq ido-use-merged-list t ido-try-merged-list 'wide)
2342 (setq ido-exit 'refresh)
2343 (setq ido-text-init file)
2344 (setq ido-rotate-temp t)
2345 (exit-minibuffer)))
2347 (defun ido-wide-find-dir (&optional dir)
2348 "Prompt for DIR to search for using find, starting from current directory."
2349 (interactive)
2350 (unless dir
2351 (let ((enable-recursive-minibuffers t))
2352 (setq dir
2353 (read-string (concat "Wide find directory: " ido-current-directory) ido-text))))
2354 (when (> (length dir) 0)
2355 (setq ido-use-merged-list t ido-try-merged-list 'wide)
2356 (setq ido-exit 'refresh)
2357 (setq ido-text-init (ido-final-slash dir t))
2358 (setq ido-rotate-temp t)
2359 (exit-minibuffer)))
2361 (defun ido-make-directory (&optional dir)
2362 "Prompt for DIR to create in current directory."
2363 (interactive)
2364 (unless dir
2365 (let ((enable-recursive-minibuffers t))
2366 (setq dir
2367 (read-string (concat "Make directory: " ido-current-directory) ido-text))))
2368 (when (> (length dir) 0)
2369 (setq dir (concat ido-current-directory dir))
2370 (unless (file-exists-p dir)
2371 (make-directory dir t)
2372 (ido-set-current-directory dir)
2373 (setq ido-exit 'refresh)
2374 (setq ido-text-init nil)
2375 (setq ido-rotate-temp t)
2376 (exit-minibuffer))))
2378 (defun ido-get-work-file (incr)
2379 (let ((n (length ido-work-file-list))
2380 (i (+ ido-work-file-index incr))
2381 name)
2382 (if (> incr 0)
2383 (if (>= i n) (setq i 0))
2384 (if (< i 0) (setq i (1- n))))
2385 (setq name (nth i ido-work-file-list))
2386 (setq ido-work-file-index i)
2387 name))
2389 (defun ido-prev-work-file ()
2390 "Change to next working file name in list."
2391 (interactive)
2392 (let ((name (ido-get-work-file 1)))
2393 (when name
2394 (setq ido-text-init name)
2395 (setq ido-exit 'refresh)
2396 (exit-minibuffer))))
2398 (defun ido-next-work-file ()
2399 "Change to previous working file name in list."
2400 (interactive)
2401 (let ((name (ido-get-work-file -1)))
2402 (when name
2403 (setq ido-text-init name)
2404 (setq ido-exit 'refresh)
2405 (exit-minibuffer))))
2407 (defun ido-copy-current-file-name (all)
2408 "Insert file name of current buffer.
2409 If repeated, insert text from buffer instead."
2410 (interactive "P")
2411 (let* ((bfname (buffer-file-name ido-entry-buffer))
2412 (name (and bfname (file-name-nondirectory bfname))))
2413 (when name
2414 (setq ido-text-init
2415 (if (or all
2416 (not (equal (file-name-directory bfname) ido-current-directory))
2417 (not (string-match "\\.[^.]*\\'" name)))
2418 name
2419 (substring name 0 (1+ (match-beginning 0)))))
2420 (setq ido-exit 'refresh
2421 ido-try-merged-list nil)
2422 (exit-minibuffer))))
2424 (defun ido-copy-current-word (all)
2425 "Insert current word (file or directory name) from current buffer."
2426 (interactive "P")
2427 (let ((word (save-excursion
2428 (set-buffer ido-entry-buffer)
2429 (let ((p (point)) start-line end-line start-name name)
2430 (beginning-of-line)
2431 (setq start-line (point))
2432 (end-of-line)
2433 (setq end-line (point))
2434 (goto-char p)
2435 (if (re-search-backward "[^-_a-zA-Z0-9:./\\~@]" start-line 1)
2436 (forward-char 1))
2437 (setq start-name (point))
2438 (re-search-forward "[-_a-zA-Z0-9:./\\~@]*" end-line 1)
2439 (if (= start-name (point))
2441 (buffer-substring-no-properties start-name (point)))))))
2442 (if (cond
2443 ((not word) nil)
2444 ((string-match "\\`[~/]" word)
2445 (setq ido-text-init word
2446 ido-try-merged-list nil
2447 ido-exit 'chdir))
2448 ((string-match "/" word)
2449 (setq ido-text-init (concat ido-current-directory word)
2450 ido-try-merged-list nil
2451 ido-exit 'chdir))
2453 (setq ido-text-init word
2454 ido-try-merged-list nil
2455 ido-exit 'refresh)))
2456 (exit-minibuffer))))
2458 (defun ido-next-match ()
2459 "Put first element of `ido-matches' at the end of the list."
2460 (interactive)
2461 (if ido-matches
2462 (let ((next (cadr ido-matches)))
2463 (setq ido-cur-list (ido-chop ido-cur-list next))
2464 (setq ido-rescan t)
2465 (setq ido-rotate t))))
2467 (defun ido-prev-match ()
2468 "Put last element of `ido-matches' at the front of the list."
2469 (interactive)
2470 (if ido-matches
2471 (let ((prev (car (last ido-matches))))
2472 (setq ido-cur-list (ido-chop ido-cur-list prev))
2473 (setq ido-rescan t)
2474 (setq ido-rotate t))))
2476 (defun ido-next-match-dir ()
2477 "Find next directory in match list.
2478 If work directories have been merged, cycle through directories for
2479 first matching file."
2480 (interactive)
2481 (if ido-use-merged-list
2482 (if ido-matches
2483 (let* ((elt (car ido-matches))
2484 (dirs (cdr elt)))
2485 (when (> (length dirs) 1)
2486 (setcdr elt (ido-chop dirs (cadr dirs))))
2487 (setq ido-rescan nil)))
2488 (let ((cnt (length ido-matches))
2489 (i 1))
2490 (while (and (< i cnt) (not (ido-final-slash (nth i ido-matches))))
2491 (setq i (1+ i)))
2492 (if (< i cnt)
2493 (setq ido-cur-list (ido-chop ido-cur-list (nth i ido-matches)))))))
2495 (defun ido-prev-match-dir ()
2496 "Find previous directory in match list.
2497 If work directories have been merged, cycle through directories
2498 for first matching file."
2499 (interactive)
2500 (if ido-use-merged-list
2501 (if ido-matches
2502 (let* ((elt (car ido-matches))
2503 (dirs (cdr elt)))
2504 (when (> (length dirs) 1)
2505 (setcdr elt (ido-chop dirs (car (last dirs)))))
2506 (setq ido-rescan nil)))
2507 (let* ((cnt (length ido-matches))
2508 (i (1- cnt)))
2509 (while (and (> i 0) (not (ido-final-slash (nth i ido-matches))))
2510 (setq i (1- i)))
2511 (if (> i 0)
2512 (setq ido-cur-list (ido-chop ido-cur-list (nth i ido-matches)))))))
2514 (defun ido-restrict-to-matches ()
2515 "Set current item list to the currently matched items."
2516 (interactive)
2517 (when ido-matches
2518 (setq ido-cur-list ido-matches
2519 ido-text-init ""
2520 ido-rescan nil
2521 ido-exit 'keep)
2522 (exit-minibuffer)))
2524 (defun ido-chop (items elem)
2525 "Remove all elements before ELEM and put them at the end of ITEMS."
2526 (let ((ret nil)
2527 (next nil)
2528 (sofar nil))
2529 (while (not ret)
2530 (setq next (car items))
2531 (if (equal next elem)
2532 (setq ret (append items (nreverse sofar)))
2533 ;; else
2534 (progn
2535 (setq items (cdr items))
2536 (setq sofar (cons next sofar)))))
2537 ret))
2539 (defun ido-name (item)
2540 ;; Return file name for current item, whether in a normal list
2541 ;; or a merged work directory list.
2542 (if (consp item) (car item) item))
2545 ;;; CREATE LIST OF ALL CURRENT FILES
2547 (defun ido-all-completions ()
2548 ;; Return unsorted list of all competions.
2549 (let ((ido-process-ignore-lists nil))
2550 (cond
2551 ((eq ido-cur-item 'file)
2552 (ido-make-file-list1 ido-current-directory))
2553 ((eq ido-cur-item 'dir)
2554 (ido-make-dir-list1 ido-current-directory))
2555 ((eq ido-cur-item 'buffer)
2556 (ido-make-buffer-list1))
2557 (t nil))))
2560 (defun ido-sort-list (items)
2561 ;; Simple list of file or buffer names
2562 (sort items (lambda (a b) (string-lessp (ido-no-final-slash a)
2563 (ido-no-final-slash b)))))
2565 (defun ido-sort-merged-list (items promote)
2566 ;; Input is list of ("file" . "dir") cons cells.
2567 ;; Output is sorted list of ("file "dir" ...) lists
2568 (let ((l (sort items (lambda (a b) (string-lessp (car b) (car a)))))
2569 res a cur dirs)
2570 (while l
2571 (setq a (car l)
2572 l (cdr l))
2573 (if (and res (string-equal (car (car res)) (car a)))
2574 (progn
2575 (setcdr (car (if cur (cdr res) res)) (cons (cdr a) (cdr (car res))))
2576 (if (and promote (string-equal ido-current-directory (cdr a)))
2577 (setq cur t)))
2578 (setq res (cons (list (car a) (cdr a)) res)
2579 cur nil)))
2580 res))
2582 (defun ido-wide-find-dirs-or-files (dir file &optional prefix finddir)
2583 ;; As ido-run-find-command, but returns a list of cons pairs ("file" . "dir")
2584 (let ((filenames
2585 (split-string
2586 (shell-command-to-string
2587 (concat "find " dir " -name \"" (if prefix "" "*") file "*\" -type " (if finddir "d" "f") " -print"))))
2588 filename d f
2589 res)
2590 (while filenames
2591 (setq filename (car filenames)
2592 filenames (cdr filenames))
2593 (if (and (string-match "^/" filename)
2594 (file-exists-p filename))
2595 (setq d (file-name-directory filename)
2596 f (file-name-nondirectory filename)
2597 res (cons (cons (if finddir (ido-final-slash f t) f) d) res))))
2598 res))
2600 (defun ido-flatten-merged-list (items)
2601 ;; Create a list of directory names based on a merged directory list.
2602 (let (res)
2603 (while items
2604 (let* ((item (car items))
2605 (file (car item))
2606 (dirs (cdr item)))
2607 (while dirs
2608 (setq res (cons (concat (car dirs) file) res)
2609 dirs (cdr dirs))))
2610 (setq items (cdr items)))
2611 res))
2613 (defun ido-make-merged-file-list (text auto wide)
2614 (let (res)
2615 (message "Searching for `%s'...." text)
2616 (if (and (ido-final-slash text) ido-dir-file-cache)
2617 (if wide
2618 (setq res (ido-wide-find-dirs-or-files
2619 ido-current-directory (substring text 0 -1) ido-enable-prefix t))
2620 ;; Use list of cached directories
2621 (let ((re (concat (regexp-quote (substring text 0 -1)) "[^/:]*/\\'"))
2622 (dirs ido-dir-file-cache)
2623 dir b d f)
2624 (if nil ;; simple
2625 (while dirs
2626 (setq dir (car (car dirs))
2627 dirs (cdr dirs))
2628 (when (and (string-match re dir)
2629 (not (ido-ignore-item-p dir ido-ignore-directories-merge))
2630 (file-directory-p dir))
2631 (setq b (substring dir 0 -1)
2632 f (concat (file-name-nondirectory b) "/")
2633 d (file-name-directory b)
2634 res (cons (cons f d) res))))
2635 (while dirs
2636 (setq dir (car dirs)
2637 d (car dir)
2638 dirs (cdr dirs))
2639 (when (not (ido-ignore-item-p d ido-ignore-directories-merge))
2640 (setq dir (cdr (cdr dir)))
2641 (while dir
2642 (setq f (car dir)
2643 dir (cdr dir))
2644 (if (and (string-match re f)
2645 (not (ido-ignore-item-p f ido-ignore-directories)))
2646 (setq res (cons (cons f d) res)))))
2647 (if (and auto (input-pending-p))
2648 (setq dirs nil
2649 res t))))))
2650 (if wide
2651 (setq res (ido-wide-find-dirs-or-files
2652 ido-current-directory text ido-enable-prefix nil))
2653 (let ((ido-text text)
2654 (dirs ido-work-directory-list)
2655 (must-match (and text (> (length text) 0)))
2656 dir fl)
2657 (if (and auto (not (member ido-current-directory dirs)))
2658 (setq dirs (cons ido-current-directory dirs)))
2659 (while dirs
2660 (setq dir (car dirs)
2661 dirs (cdr dirs))
2662 (when (and dir (stringp dir)
2663 (or ido-merge-ftp-work-directories
2664 (not (ido-is-ftp-directory dir)))
2665 (file-directory-p dir)
2666 (setq fl (if (eq ido-cur-item 'file)
2667 (ido-make-file-list1 dir t)
2668 (ido-make-dir-list1 dir t))))
2669 (if must-match
2670 (setq fl (ido-set-matches1 fl)))
2671 (if fl
2672 (setq res (nconc fl res))))
2673 (if (and auto (input-pending-p))
2674 (setq dirs nil
2675 res t))))))
2676 (if (and res (not (eq res t)))
2677 (setq res (ido-sort-merged-list res auto)))
2678 (when (and (or ido-rotate-temp ido-rotate-file-list-default)
2679 (listp res)
2680 (> (length text) 0))
2681 (let ((elt (assoc text res)))
2682 (when (and elt (not (eq elt (car res))))
2683 (setq res (delq elt res))
2684 (setq res (cons elt res)))))
2685 (message nil)
2686 res))
2688 (defun ido-make-buffer-list1 (&optional frame visible)
2689 ;; Return list of non-ignored buffer names
2690 (delq nil
2691 (mapcar
2692 (lambda (x)
2693 (let ((name (buffer-name x)))
2694 (if (not (or (ido-ignore-item-p name ido-ignore-buffers) (member name visible)))
2695 name)))
2696 (buffer-list frame))))
2698 (defun ido-make-buffer-list (default)
2699 ;; Return the current list of buffers.
2700 ;; Currently visible buffers are put at the end of the list.
2701 ;; The hook `ido-make-buflist-hook' is run after the list has been
2702 ;; created to allow the user to further modify the order of the buffer names
2703 ;; in this list. If DEFAULT is non-nil, and corresponds to an existing buffer,
2704 ;; it is put to the start of the list.
2705 (let* ((ido-current-buffers (ido-get-buffers-in-frames 'current))
2706 (ido-temp-list (ido-make-buffer-list1 (selected-frame) ido-current-buffers)))
2707 (if ido-temp-list
2708 (nconc ido-temp-list ido-current-buffers)
2709 (setq ido-temp-list ido-current-buffers))
2710 (if default
2711 (progn
2712 (setq ido-temp-list
2713 (delete default ido-temp-list))
2714 (setq ido-temp-list
2715 (cons default ido-temp-list))))
2716 (run-hooks 'ido-make-buffer-list-hook)
2717 ido-temp-list))
2719 (defun ido-to-end (items)
2720 ;; Move the elements from ITEMS to the end of `ido-temp-list'
2721 (mapcar
2722 (lambda (elem)
2723 (setq ido-temp-list (delq elem ido-temp-list)))
2724 items)
2725 (if ido-temp-list
2726 (nconc ido-temp-list items)
2727 (setq ido-temp-list items)))
2729 (defun ido-file-name-all-completions1 (dir)
2730 (cond
2731 ((ido-nonreadable-directory-p dir) '())
2732 ((and ido-enable-tramp-completion
2733 (string-match "\\`/\\([^/:]+:\\([^/:@]+@\\)?\\)\\'" dir))
2735 ;; Trick tramp's file-name-all-completions handler to DTRT, as it
2736 ;; has some pretty obscure requirements. This seems to work...
2737 ;; /ftp: => (f-n-a-c "/ftp:" "")
2738 ;; /ftp:kfs: => (f-n-a-c "" "/ftp:kfs:")
2739 ;; /ftp:kfs@ => (f-n-a-c "ftp:kfs@" "/")
2740 ;; /ftp:kfs@kfs: => (f-n-a-c "" "/ftp:kfs@kfs:")
2741 ;; Currently no attempt is made to handle multi: stuff.
2743 (let* ((prefix (match-string 1 dir))
2744 (user-flag (match-beginning 2))
2745 (len (and prefix (length prefix)))
2746 compl)
2747 (if user-flag
2748 (setq dir (substring dir 1)))
2749 (require 'tramp nil t)
2750 (ido-trace "tramp complete" dir)
2751 (setq compl (file-name-all-completions dir (if user-flag "/" "")))
2752 (if (> len 0)
2753 (mapcar (lambda (c) (substring c len)) compl)
2754 compl)))
2756 (file-name-all-completions "" dir))))
2758 (defun ido-file-name-all-completions (dir)
2759 ;; Return name of all files in DIR
2760 ;; Uses and updates ido-dir-file-cache
2761 (if (and (numberp ido-max-dir-file-cache) (> ido-max-dir-file-cache 0)
2762 (stringp dir) (> (length dir) 0)
2763 (ido-may-cache-directory dir))
2764 (let* ((cached (assoc dir ido-dir-file-cache))
2765 (ctime (nth 1 cached))
2766 (ftp (ido-is-ftp-directory dir))
2767 (attr (if ftp nil (file-attributes dir)))
2768 (mtime (nth 5 attr))
2769 valid)
2770 (when cached ; should we use the cached entry ?
2771 (if ftp
2772 (setq valid (and (eq (car ctime) 'ftp)
2773 (ido-cache-ftp-valid (cdr ctime))))
2774 (if attr
2775 (setq valid (and (= (car ctime) (car mtime))
2776 (= (car (cdr ctime)) (car (cdr mtime)))))))
2777 (if (not valid)
2778 (setq ido-dir-file-cache (delq cached ido-dir-file-cache)
2779 cached nil)))
2780 (unless cached
2781 (if (and ftp (file-readable-p dir))
2782 (setq mtime (cons 'ftp (ido-time-stamp))))
2783 (if mtime
2784 (setq cached (cons dir (cons mtime (ido-file-name-all-completions1 dir)))
2785 ido-dir-file-cache (cons cached ido-dir-file-cache)))
2786 (if (> (length ido-dir-file-cache) ido-max-dir-file-cache)
2787 (setcdr (nthcdr (1- ido-max-dir-file-cache) ido-dir-file-cache) nil)))
2788 (and cached
2789 (cdr (cdr cached))))
2790 (ido-file-name-all-completions1 dir)))
2792 (defun ido-remove-cached-dir (dir)
2793 ;; Remove dir from ido-dir-file-cache
2794 (if (and ido-dir-file-cache
2795 (stringp dir) (> (length dir) 0))
2796 (let ((cached (assoc dir ido-dir-file-cache)))
2797 (if cached
2798 (setq ido-dir-file-cache (delq cached ido-dir-file-cache))))))
2801 (defun ido-make-file-list1 (dir &optional merged)
2802 ;; Return list of non-ignored files in DIR
2803 ;; If MERGED is non-nil, each file is cons'ed with DIR
2804 (and (or (ido-is-tramp-root dir) (file-directory-p dir))
2805 (delq nil
2806 (mapcar
2807 (lambda (name)
2808 (if (not (ido-ignore-item-p name ido-ignore-files t))
2809 (if merged (cons name dir) name)))
2810 (ido-file-name-all-completions dir)))))
2812 (defun ido-make-file-list (default)
2813 ;; Return the current list of files.
2814 ;; Currently visible files are put at the end of the list.
2815 ;; The hook `ido-make-file-list-hook' is run after the list has been
2816 ;; created to allow the user to further modify the order of the file names
2817 ;; in this list.
2818 (let ((ido-temp-list (ido-make-file-list1 ido-current-directory)))
2819 (setq ido-temp-list (ido-sort-list ido-temp-list))
2820 (let ((default-directory ido-current-directory))
2821 (ido-to-end ;; move ftp hosts and visited files to end
2822 (delq nil (mapcar
2823 (lambda (x) (if (or (string-match "..:\\'" x)
2824 (and (not (ido-final-slash x))
2825 (get-file-buffer x))) x))
2826 ido-temp-list))))
2827 (ido-to-end ;; move . files to end
2828 (delq nil (mapcar
2829 (lambda (x) (if (string-equal (substring x 0 1) ".") x))
2830 ido-temp-list)))
2831 (if (and default (member default ido-temp-list))
2832 (if (or ido-rotate-temp ido-rotate-file-list-default)
2833 (unless (equal default (car ido-temp-list))
2834 (let ((l ido-temp-list) k)
2835 (while (and l (cdr l) (not (equal default (car (cdr l)))))
2836 (setq l (cdr l)))
2837 (setq k (cdr l))
2838 (setcdr l nil)
2839 (nconc k ido-temp-list)
2840 (setq ido-temp-list k)))
2841 (setq ido-temp-list
2842 (delete default ido-temp-list))
2843 (setq ido-temp-list
2844 (cons default ido-temp-list))))
2845 (when ido-show-dot-for-dired
2846 (setq ido-temp-list (delete "." ido-temp-list))
2847 (setq ido-temp-list (cons "." ido-temp-list)))
2848 (run-hooks 'ido-make-file-list-hook)
2849 ido-temp-list))
2851 (defun ido-make-dir-list1 (dir &optional merged)
2852 ;; Return list of non-ignored subdirs in DIR
2853 ;; If MERGED is non-nil, each subdir is cons'ed with DIR
2854 (and (or (ido-is-tramp-root dir) (file-directory-p dir))
2855 (delq nil
2856 (mapcar
2857 (lambda (name)
2858 (and (ido-final-slash name) (not (ido-ignore-item-p name ido-ignore-directories))
2859 (if merged (cons name dir) name)))
2860 (ido-file-name-all-completions dir)))))
2862 (defun ido-make-dir-list (default)
2863 ;; Return the current list of directories.
2864 ;; The hook `ido-make-dir-list-hook' is run after the list has been
2865 ;; created to allow the user to further modify the order of the
2866 ;; directory names in this list.
2867 (let ((ido-temp-list (ido-make-dir-list1 ido-current-directory)))
2868 (setq ido-temp-list (ido-sort-list ido-temp-list))
2869 (ido-to-end ;; move . files to end
2870 (delq nil (mapcar
2871 (lambda (x) (if (string-equal (substring x 0 1) ".") x))
2872 ido-temp-list)))
2873 (if (and default (member default ido-temp-list))
2874 (if (or ido-rotate-temp ido-rotate-file-list-default)
2875 (unless (equal default (car ido-temp-list))
2876 (let ((l ido-temp-list) k)
2877 (while (and l (cdr l) (not (equal default (car (cdr l)))))
2878 (setq l (cdr l)))
2879 (setq k (cdr l))
2880 (setcdr l nil)
2881 (nconc k ido-temp-list)
2882 (setq ido-temp-list k)))
2883 (setq ido-temp-list
2884 (delete default ido-temp-list))
2885 (setq ido-temp-list
2886 (cons default ido-temp-list))))
2887 (setq ido-temp-list (delete "." ido-temp-list))
2888 (setq ido-temp-list (cons "." ido-temp-list))
2889 (run-hooks 'ido-make-dir-list-hook)
2890 ido-temp-list))
2892 ;; List of the files visible in the current frame.
2893 (defvar ido-bufs-in-frame)
2895 (defun ido-get-buffers-in-frames (&optional current)
2896 ;; Return the list of buffers that are visible in the current frame.
2897 ;; If optional argument `current' is given, restrict searching to the
2898 ;; current frame, rather than all frames, regardless of value of
2899 ;; `ido-all-frames'.
2900 (let ((ido-bufs-in-frame nil))
2901 (walk-windows 'ido-get-bufname nil
2902 (if current
2904 ido-all-frames))
2905 ido-bufs-in-frame))
2907 (defun ido-get-bufname (win)
2908 ;; Used by `ido-get-buffers-in-frames' to walk through all windows
2909 (let ((buf (buffer-name (window-buffer win))))
2910 (unless (or (member buf ido-bufs-in-frame)
2911 (member buf ido-ignore-item-temp-list))
2912 ;; Only add buf if it is not already in list.
2913 ;; This prevents same buf in two different windows being
2914 ;; put into the list twice.
2915 (setq ido-bufs-in-frame
2916 (cons buf ido-bufs-in-frame)))))
2918 ;;; FIND MATCHING ITEMS
2920 (defun ido-set-matches1 (items &optional do-full)
2921 ;; Return list of matches in items
2922 (let* ((case-fold-search ido-case-fold)
2923 (slash (and (not ido-enable-prefix) (ido-final-slash ido-text)))
2924 (text (if slash (substring ido-text 0 -1) ido-text))
2925 (rexq (concat (if ido-enable-regexp text (regexp-quote text)) (if slash ".*/" "")))
2926 (re (if ido-enable-prefix (concat "\\`" rexq) rexq))
2927 (full-re (and do-full (not ido-enable-regexp) (not (string-match "\$\\'" re))
2928 (concat "\\`" re "\\'")))
2929 (prefix-re (and full-re (not ido-enable-prefix)
2930 (concat "\\`" rexq)))
2931 full-matches
2932 prefix-matches
2933 matches)
2934 (mapcar
2935 (lambda (item)
2936 (let ((name (ido-name item)))
2937 (if (string-match re name)
2938 (cond
2939 ((and full-re (string-match full-re name))
2940 (setq full-matches (cons item full-matches)))
2941 ((and prefix-re (string-match prefix-re name))
2942 (setq prefix-matches (cons item prefix-matches)))
2943 (t (setq matches (cons item matches))))))
2945 items)
2946 (if prefix-matches
2947 (setq matches (nconc prefix-matches matches)))
2948 (if full-matches
2949 (setq matches (nconc full-matches matches)))
2950 (when (and (null matches)
2951 ido-enable-flex-matching
2952 (> (length ido-text) 1)
2953 (not ido-enable-regexp))
2954 (setq re (mapconcat #'regexp-quote (split-string ido-text "") ".*"))
2955 (if ido-enable-prefix
2956 (setq re (concat "\\`" re)))
2957 (mapcar
2958 (lambda (item)
2959 (let ((name (ido-name item)))
2960 (if (string-match re name)
2961 (setq matches (cons item matches)))))
2962 items))
2963 matches))
2966 (defun ido-set-matches ()
2967 ;; Set `ido-matches' to the list of items matching prompt
2968 (when ido-rescan
2969 (setq ido-matches (ido-set-matches1 (reverse ido-cur-list) (not ido-rotate))
2970 ido-rotate nil)))
2972 (defun ido-ignore-item-p (name re-list &optional ignore-ext)
2973 ;; Return t if the buffer or file NAME should be ignored.
2974 (or (member name ido-ignore-item-temp-list)
2975 (and
2976 ido-process-ignore-lists re-list
2977 (let ((data (match-data))
2978 (ext-list (and ignore-ext ido-ignore-extensions
2979 completion-ignored-extensions))
2980 ignorep nextstr
2981 (flen (length name)) slen)
2982 (while ext-list
2983 (setq nextstr (car ext-list))
2984 (if (cond
2985 ((stringp nextstr)
2986 (and (>= flen (setq slen (length nextstr)))
2987 (string-equal (substring name (- flen slen)) nextstr)))
2988 ((fboundp nextstr) (funcall nextstr name))
2989 (t nil))
2990 (setq ignorep t
2991 ext-list nil
2992 re-list nil)
2993 (setq ext-list (cdr ext-list))))
2994 (while re-list
2995 (setq nextstr (car re-list))
2996 (if (cond
2997 ((stringp nextstr) (string-match nextstr name))
2998 ((fboundp nextstr) (funcall nextstr name))
2999 (t nil))
3000 (setq ignorep t
3001 re-list nil)
3002 (setq re-list (cdr re-list))))
3003 ;; return the result
3004 (if ignorep
3005 (setq ido-ignored-list (cons name ido-ignored-list)))
3006 (set-match-data data)
3007 ignorep))))
3010 ;; Private variable used by `ido-word-matching-substring'.
3011 (defvar ido-change-word-sub)
3013 (defun ido-find-common-substring (items subs)
3014 ;; Return common string following SUBS in each element of ITEMS.
3015 (let (res
3016 alist
3017 ido-change-word-sub)
3018 (setq ido-change-word-sub
3019 (if ido-enable-regexp
3020 subs
3021 (regexp-quote subs)))
3022 (setq res (mapcar #'ido-word-matching-substring items))
3023 (setq res (delq nil res)) ;; remove any nil elements (shouldn't happen)
3024 (setq alist (mapcar #'ido-makealist res)) ;; could use an OBARRAY
3026 ;; try-completion returns t if there is an exact match.
3027 (let* ((completion-ignore-case ido-case-fold)
3028 (comp (try-completion subs alist)))
3029 (if (eq comp t)
3030 subs
3031 comp))))
3033 (defun ido-word-matching-substring (word)
3034 ;; Return part of WORD before 1st match to `ido-change-word-sub'.
3035 ;; If `ido-change-word-sub' cannot be found in WORD, return nil.
3036 (let ((case-fold-search ido-case-fold))
3037 (let ((m (string-match ido-change-word-sub (ido-name word))))
3038 (if m
3039 (substring (ido-name word) m)
3040 ;; else no match
3041 nil))))
3043 (defun ido-makealist (res)
3044 ;; Return dotted pair (RES . 1).
3045 (cons res 1))
3047 (defun ido-choose-completion-string (choice buffer mini-p base-size)
3048 (when (ido-active)
3049 ;; Insert the completion into the buffer where completion was requested.
3050 (if (get-buffer ido-completion-buffer)
3051 (kill-buffer ido-completion-buffer))
3052 (cond
3053 ((ido-active t) ;; ido-use-merged-list
3054 (setq ido-current-directory ""
3055 ido-text choice
3056 ido-exit 'done))
3057 ((not (ido-final-slash choice))
3058 (setq ido-text choice
3059 ido-exit 'done))
3061 (ido-set-current-directory ido-current-directory choice)
3062 (setq ido-exit 'refresh)))
3063 (exit-minibuffer)
3066 (defun ido-completion-help ()
3067 "Show possible completions in a *File Completions* buffer."
3068 (interactive)
3069 (setq ido-rescan nil)
3070 (let ((temp-buf (get-buffer ido-completion-buffer))
3071 display-it full-list)
3072 (if (and (eq last-command this-command) temp-buf)
3073 ;; scroll buffer
3074 (let (win (buf (current-buffer)))
3075 (display-buffer temp-buf nil nil)
3076 (set-buffer temp-buf)
3077 (setq win (get-buffer-window temp-buf))
3078 (if (pos-visible-in-window-p (point-max) win)
3079 (if (or ido-completion-buffer-all-completions (boundp 'ido-completion-buffer-full))
3080 (set-window-start win (point-min))
3081 (set (make-local-variable 'ido-completion-buffer-full) t)
3082 (setq full-list t
3083 display-it t))
3084 (scroll-other-window))
3085 (set-buffer buf))
3086 (setq display-it t))
3087 (if display-it
3088 (with-output-to-temp-buffer ido-completion-buffer
3089 (let ((completion-list (ido-sort-list
3090 (cond
3091 (ido-use-merged-list
3092 (ido-flatten-merged-list (or ido-matches ido-cur-list)))
3093 ((or full-list ido-completion-buffer-all-completions)
3094 (ido-all-completions))
3096 (copy-sequence (or ido-matches ido-cur-list)))))))
3097 (if (featurep 'xemacs)
3098 ;; XEmacs extents are put on by default, doesn't seem to be
3099 ;; any way of switching them off.
3100 ;; This obscure code avoids a byte compiler warning in Emacs.
3101 (let ((f 'display-completion-list))
3102 (funcall f completion-list
3103 :help-string "ido "
3104 :activate-callback
3105 '(lambda (x y z) (message "doesn't work yet, sorry!"))))
3106 ;; else running Emacs
3107 ;;(add-hook 'completion-setup-hook 'completion-setup-function)
3108 (display-completion-list completion-list)))))))
3110 ;;; KILL CURRENT BUFFER
3111 (defun ido-kill-buffer-at-head ()
3112 "Kill the buffer at the head of `ido-matches'."
3113 (interactive)
3114 (let ((enable-recursive-minibuffers t)
3115 (buf (car ido-matches)))
3116 (when buf
3117 (kill-buffer buf)
3118 ;; Check if buffer still exists.
3119 (if (get-buffer buf)
3120 ;; buffer couldn't be killed.
3121 (setq ido-rescan t)
3122 ;; else buffer was killed so remove name from list.
3123 (setq ido-cur-list (delq buf ido-cur-list))))))
3125 ;;; DELETE CURRENT FILE
3126 (defun ido-delete-file-at-head ()
3127 "Delete the file at the head of `ido-matches'."
3128 (interactive)
3129 (let ((enable-recursive-minibuffers t)
3130 (file (car ido-matches)))
3131 (if file
3132 (setq file (concat ido-current-directory file)))
3133 (when (and file
3134 (file-exists-p file)
3135 (not (file-directory-p file))
3136 (file-writable-p ido-current-directory)
3137 (yes-or-no-p (concat "Delete " file " ")))
3138 (delete-file file)
3139 ;; Check if file still exists.
3140 (if (file-exists-p file)
3141 ;; file could not be deleted
3142 (setq ido-rescan t)
3143 ;; else file was killed so remove name from list.
3144 (setq ido-cur-list (delq (car ido-matches) ido-cur-list))))))
3147 ;;; VISIT CHOSEN BUFFER
3148 (defun ido-visit-buffer (buffer method &optional record)
3149 "Visit file named FILE according to METHOD.
3150 Record command in command-history if optional RECORD is non-nil."
3152 (let (win newframe)
3153 (cond
3154 ((eq method 'kill)
3155 (if record
3156 (ido-record-command 'kill-buffer buffer))
3157 (kill-buffer buffer))
3159 ((eq method 'samewindow)
3160 (if record
3161 (ido-record-command 'switch-to-buffer buffer))
3162 (switch-to-buffer buffer))
3164 ((memq method '(always-frame maybe-frame))
3165 (cond
3166 ((and window-system
3167 (setq win (ido-window-buffer-p buffer))
3168 (or (eq method 'always-frame)
3169 (y-or-n-p "Jump to frame? ")))
3170 (setq newframe (window-frame win))
3171 (if (fboundp 'select-frame-set-input-focus)
3172 (select-frame-set-input-focus newframe)
3173 (raise-frame newframe)
3174 (select-frame newframe)
3175 (unless (featurep 'xemacs)
3176 (set-mouse-position (selected-frame) (1- (frame-width)) 0)))
3177 (select-window win))
3179 ;; No buffer in other frames...
3180 (if record
3181 (ido-record-command 'switch-to-buffer buffer))
3182 (switch-to-buffer buffer)
3185 ((eq method 'otherwindow)
3186 (if record
3187 (ido-record-command 'switch-to-buffer buffer))
3188 (switch-to-buffer-other-window buffer))
3190 ((eq method 'display)
3191 (display-buffer buffer))
3193 ((eq method 'otherframe)
3194 (switch-to-buffer-other-frame buffer)
3195 (unless (featurep 'xemacs)
3196 (select-frame-set-input-focus (selected-frame)))
3197 ))))
3200 (defun ido-window-buffer-p (buffer)
3201 ;; Return window pointer if BUFFER is visible in another frame.
3202 ;; If BUFFER is visible in the current frame, return nil.
3203 (let ((blist (ido-get-buffers-in-frames 'current)))
3204 ;;If the buffer is visible in current frame, return nil
3205 (if (member buffer blist)
3207 ;; maybe in other frame or icon
3208 (get-buffer-window buffer 0) ; better than 'visible
3212 ;;; ----------- IDONIZED FUNCTIONS ------------
3214 ;;;###autoload
3215 (defun ido-switch-buffer ()
3216 "Switch to another buffer.
3217 The buffer is displayed according to `ido-default-buffer-method' -- the
3218 default is to show it in the same window, unless it is already visible
3219 in another frame.
3221 As you type in a string, all of the buffers matching the string are
3222 displayed if substring-matching is used \(default). Look at
3223 `ido-enable-prefix' and `ido-toggle-prefix'. When you have found the
3224 buffer you want, it can then be selected. As you type, most keys have their
3225 normal keybindings, except for the following: \\<ido-mode-map>
3227 RET Select the buffer at the front of the list of matches. If the
3228 list is empty, possibly prompt to create new buffer.
3230 \\[ido-select-text] Select the current prompt as the buffer.
3231 If no buffer is found, prompt for a new one.
3233 \\[ido-next-match] Put the first element at the end of the list.
3234 \\[ido-prev-match] Put the last element at the start of the list.
3235 \\[ido-complete] Complete a common suffix to the current string that
3236 matches all buffers. If there is only one match, select that buffer.
3237 If there is no common suffix, show a list of all matching buffers
3238 in a separate window.
3239 \\[ido-edit-input] Edit input string.
3240 \\[ido-fallback-command] Fallback to non-ido version of current command.
3241 \\[ido-toggle-regexp] Toggle regexp searching.
3242 \\[ido-toggle-prefix] Toggle between substring and prefix matching.
3243 \\[ido-toggle-case] Toggle case-sensitive searching of buffer names.
3244 \\[ido-completion-help] Show list of matching buffers in separate window.
3245 \\[ido-enter-find-file] Drop into ido-find-file.
3246 \\[ido-kill-buffer-at-head] Kill buffer at head of buffer list.
3247 \\[ido-toggle-ignore] Toggle ignoring buffers listed in `ido-ignore-buffers'."
3248 (interactive)
3249 (ido-buffer-internal ido-default-buffer-method))
3251 ;;;###autoload
3252 (defun ido-switch-buffer-other-window ()
3253 "Switch to another buffer and show it in another window.
3254 The buffer name is selected interactively by typing a substring.
3255 For details of keybindings, do `\\[describe-function] ido'."
3256 (interactive)
3257 (ido-buffer-internal 'otherwindow 'switch-to-buffer-other-window))
3259 ;;;###autoload
3260 (defun ido-display-buffer ()
3261 "Display a buffer in another window but don't select it.
3262 The buffer name is selected interactively by typing a substring.
3263 For details of keybindings, do `\\[describe-function] ido'."
3264 (interactive)
3265 (ido-buffer-internal 'display 'display-buffer))
3267 ;;;###autoload
3268 (defun ido-kill-buffer ()
3269 "Kill a buffer.
3270 The buffer name is selected interactively by typing a substring.
3271 For details of keybindings, do `\\[describe-function] ido'."
3272 (interactive)
3273 (ido-buffer-internal 'kill 'kill-buffer "Kill buffer: " (buffer-name (current-buffer))))
3275 ;;;###autoload
3276 (defun ido-insert-buffer ()
3277 "Insert contents of a buffer in current buffer after point.
3278 The buffer name is selected interactively by typing a substring.
3279 For details of keybindings, do `\\[describe-function] ido'."
3280 (interactive)
3281 (ido-buffer-internal 'insert 'insert-buffer "Insert buffer: "))
3283 ;;;###autoload
3284 (defun ido-switch-buffer-other-frame ()
3285 "Switch to another buffer and show it in another frame.
3286 The buffer name is selected interactively by typing a substring.
3287 For details of keybindings, do `\\[describe-function] ido'."
3288 (interactive)
3289 (if ido-mode
3290 (ido-buffer-internal 'otherframe)
3291 (call-interactively 'switch-to-buffer-other-frame)))
3293 ;;;###autoload
3294 (defun ido-find-file-in-dir (dir)
3295 "Switch to another file starting from DIR."
3296 (interactive "DDir: ")
3297 (if (not (equal (substring dir -1) "/"))
3298 (setq dir (concat dir "/")))
3299 (ido-file-internal ido-default-file-method nil dir))
3301 ;;;###autoload
3302 (defun ido-find-file ()
3303 "Edit file with name obtained via minibuffer.
3304 The file is displayed according to `ido-default-file-method' -- the
3305 default is to show it in the same window, unless it is already
3306 visible in another frame.
3308 The file name is selected interactively by typing a substring. As you type
3309 in a string, all of the filenames matching the string are displayed if
3310 substring-matching is used \(default). Look at `ido-enable-prefix' and
3311 `ido-toggle-prefix'. When you have found the filename you want, it can
3312 then be selected. As you type, most keys have their normal keybindings,
3313 except for the following: \\<ido-mode-map>
3315 RET Select the file at the front of the list of matches. If the
3316 list is empty, possibly prompt to create new file.
3318 \\[ido-select-text] Select the current prompt as the buffer or file.
3319 If no buffer or file is found, prompt for a new one.
3321 \\[ido-next-match] Put the first element at the end of the list.
3322 \\[ido-prev-match] Put the last element at the start of the list.
3323 \\[ido-complete] Complete a common suffix to the current string that
3324 matches all files. If there is only one match, select that file.
3325 If there is no common suffix, show a list of all matching files
3326 in a separate window.
3327 \\[ido-edit-input] Edit input string (including directory).
3328 \\[ido-prev-work-directory] or \\[ido-next-work-directory] go to previous/next directory in work directory history.
3329 \\[ido-merge-work-directories] search for file in the work directory history.
3330 \\[ido-forget-work-directory] removes current directory from the work directory history.
3331 \\[ido-prev-work-file] or \\[ido-next-work-file] cycle through the work file history.
3332 \\[ido-wide-find-file] and \\[ido-wide-find-dir] prompts and uses find to locate files or directories.
3333 \\[ido-make-directory] prompts for a directory to create in current directory.
3334 \\[ido-fallback-command] Fallback to non-ido version of current command.
3335 \\[ido-toggle-regexp] Toggle regexp searching.
3336 \\[ido-toggle-prefix] Toggle between substring and prefix matching.
3337 \\[ido-toggle-case] Toggle case-sensitive searching of file names.
3338 \\[ido-toggle-vc] Toggle version control for this file.
3339 \\[ido-toggle-literal] Toggle literal reading of this file.
3340 \\[ido-completion-help] Show list of matching files in separate window.
3341 \\[ido-toggle-ignore] Toggle ignoring files listed in `ido-ignore-files'."
3343 (interactive)
3344 (ido-file-internal ido-default-file-method))
3346 ;;;###autoload
3347 (defun ido-find-file-other-window ()
3348 "Switch to another file and show it in another window.
3349 The file name is selected interactively by typing a substring.
3350 For details of keybindings, do `\\[describe-function] ido-find-file'."
3351 (interactive)
3352 (ido-file-internal 'otherwindow 'find-file-other-window))
3354 ;;;###autoload
3355 (defun ido-find-alternate-file ()
3356 "Switch to another file and show it in another window.
3357 The file name is selected interactively by typing a substring.
3358 For details of keybindings, do `\\[describe-function] ido-find-file'."
3359 (interactive)
3360 (ido-file-internal 'alt-file 'find-alternate-file nil "Find alternate file: "))
3362 ;;;###autoload
3363 (defun ido-find-file-read-only ()
3364 "Edit file read-only with name obtained via minibuffer.
3365 The file name is selected interactively by typing a substring.
3366 For details of keybindings, do `\\[describe-function] ido-find-file'."
3367 (interactive)
3368 (ido-file-internal 'read-only 'find-file-read-only nil "Find file read-only: "))
3370 ;;;###autoload
3371 (defun ido-find-file-read-only-other-window ()
3372 "Edit file read-only in other window with name obtained via minibuffer.
3373 The file name is selected interactively by typing a substring.
3374 For details of keybindings, do `\\[describe-function] ido-find-file'."
3375 (interactive)
3376 (ido-file-internal 'read-only 'find-file-read-only-other-window nil "Find file read-only other window: "))
3378 ;;;###autoload
3379 (defun ido-find-file-read-only-other-frame ()
3380 "Edit file read-only in other frame with name obtained via minibuffer.
3381 The file name is selected interactively by typing a substring.
3382 For details of keybindings, do `\\[describe-function] ido-find-file'."
3383 (interactive)
3384 (ido-file-internal 'read-only 'find-file-read-only-other-frame nil "Find file read-only other frame: "))
3386 ;;;###autoload
3387 (defun ido-display-file ()
3388 "Display a file in another window but don't select it.
3389 The file name is selected interactively by typing a substring.
3390 For details of keybindings, do `\\[describe-function] ido-find-file'."
3391 (interactive)
3392 (ido-file-internal 'display))
3394 ;;;###autoload
3395 (defun ido-find-file-other-frame ()
3396 "Switch to another file and show it in another frame.
3397 The file name is selected interactively by typing a substring.
3398 For details of keybindings, do `\\[describe-function] ido-find-file'."
3399 (interactive)
3400 (ido-file-internal 'otherframe 'find-file-other-frame))
3402 ;;;###autoload
3403 (defun ido-write-file ()
3404 "Write current buffer to a file.
3405 The file name is selected interactively by typing a substring.
3406 For details of keybindings, do `\\[describe-function] ido-find-file'."
3407 (interactive)
3408 (let ((ido-process-ignore-lists t)
3409 (ido-work-directory-match-only nil)
3410 (ido-ignore-files (cons "[^/]\\'" ido-ignore-files))
3411 (ido-report-no-match nil)
3412 (ido-confirm-unique-completion t)
3413 (ido-auto-merge-work-directories-length -1))
3414 (ido-file-internal 'write 'write-file nil "Write file: ")))
3416 ;;;###autoload
3417 (defun ido-insert-file ()
3418 "Insert contents of file in current buffer.
3419 The file name is selected interactively by typing a substring.
3420 For details of keybindings, do `\\[describe-function] ido-find-file'."
3421 (interactive)
3422 (ido-file-internal 'insert 'insert-file nil "Insert file: "))
3424 ;;;###autoload
3425 (defun ido-dired ()
3426 "Call dired the ido way.
3427 The directory is selected interactively by typing a substring.
3428 For details of keybindings, do `\\[describe-function] ido-find-file'."
3429 (interactive)
3430 (let ((ido-report-no-match nil)
3431 (ido-auto-merge-work-directories-length -1))
3432 (ido-file-internal 'dired 'dired nil "Dired: " 'dir)))
3434 (defun ido-list-directory ()
3435 "Call list-directory the ido way.
3436 The directory is selected interactively by typing a substring.
3437 For details of keybindings, do `\\[describe-function] ido-find-file'."
3438 (interactive)
3439 (let ((ido-report-no-match nil)
3440 (ido-auto-merge-work-directories-length -1))
3441 (ido-file-internal 'list-directory 'list-directory nil "List directory: " 'dir)))
3443 ;;; XEmacs hack for showing default buffer
3445 ;; The first time we enter the minibuffer, Emacs puts up the default
3446 ;; buffer to switch to, but XEmacs doesn't -- presumably there is a
3447 ;; subtle difference in the two versions of post-command-hook. The
3448 ;; default is shown for both whenever we delete all of our text
3449 ;; though, indicating its just a problem the first time we enter the
3450 ;; function. To solve this, we use another entry hook for emacs to
3451 ;; show the default the first time we enter the minibuffer.
3454 ;;; ICOMPLETE TYPE CODE
3456 (defun ido-initiate-auto-merge (buffer)
3457 (ido-trace "\n*merge timeout*" buffer)
3458 (setq ido-auto-merge-timer nil)
3459 (when (and (buffer-live-p buffer)
3460 (= ido-use-mycompletion-depth (minibuffer-depth))
3461 (boundp 'ido-eoinput) ido-eoinput)
3462 (let ((contents (buffer-substring-no-properties (minibuffer-prompt-end) ido-eoinput)))
3463 (ido-trace "request merge")
3464 (setq ido-use-merged-list 'auto
3465 ido-text-init contents
3466 ido-rotate-temp t
3467 ido-exit 'refresh)
3468 (save-excursion
3469 (set-buffer buffer)
3470 (ido-tidy))
3471 (throw 'ido contents))))
3473 (defun ido-exhibit ()
3474 "Post command hook for `ido'."
3475 ;; Find matching files and display a list in the minibuffer.
3476 ;; Copied from `icomplete-exhibit' with two changes:
3477 ;; 1. It prints a default file name when there is no text yet entered.
3478 ;; 2. It calls my completion routine rather than the standard completion.
3480 (when (= ido-use-mycompletion-depth (minibuffer-depth))
3481 (let ((contents (buffer-substring-no-properties (minibuffer-prompt-end) (point-max)))
3482 (buffer-undo-list t)
3483 try-single-dir-match
3484 refresh)
3486 (ido-trace "\nexhibit" this-command)
3487 (ido-trace "dir" ido-current-directory)
3488 (ido-trace "contents" contents)
3489 (ido-trace "list" ido-cur-list)
3490 (ido-trace "matches" ido-matches)
3491 (ido-trace "rescan" ido-rescan)
3493 (save-excursion
3494 (goto-char (point-max))
3495 ;; Register the end of input, so we know where the extra stuff (match-status info) begins:
3496 (unless (boundp 'ido-eoinput)
3497 ;; In case it got wiped out by major mode business:
3498 (make-local-variable 'ido-eoinput))
3499 (setq ido-eoinput (point))
3501 ;; Handle explicit directory changes
3502 (cond
3503 ((eq ido-cur-item 'buffer)
3506 ((= (length contents) 0)
3509 ((= (length contents) 1)
3510 (when (and (ido-is-tramp-root) (string-equal contents "/"))
3511 (ido-set-current-directory ido-current-directory contents)
3512 (setq refresh t))
3515 ((and (string-match (if ido-enable-tramp-completion "..[:@]\\'" "..:\\'") contents)
3516 (ido-is-root-directory)) ;; Ange-ftp or tramp
3517 (ido-set-current-directory ido-current-directory contents)
3518 (when (ido-is-slow-ftp-host)
3519 (setq ido-exit 'fallback)
3520 (exit-minibuffer))
3521 (setq refresh t))
3523 ((ido-final-slash contents) ;; xxx/
3524 (ido-trace "final slash" contents)
3525 (cond
3526 ((string-equal contents "~/")
3527 (ido-set-current-home)
3528 (setq refresh t))
3529 ((string-equal contents "../")
3530 (ido-up-directory t)
3531 (setq refresh t))
3532 ((string-equal contents "./")
3533 (setq refresh t))
3534 ((string-match "\\`~[a-zA-Z0-9]+/\\'" contents)
3535 (ido-trace "new home" contents)
3536 (ido-set-current-home contents)
3537 (setq refresh t))
3538 ((string-match "[$][A-Za-z0-9_]+/\\'" contents)
3539 (let ((exp (condition-case ()
3540 (expand-file-name
3541 (substitute-in-file-name (substring contents 0 -1))
3542 ido-current-directory)
3543 (error nil))))
3544 (ido-trace contents exp)
3545 (when (and exp (file-directory-p exp))
3546 (ido-set-current-directory (file-name-directory exp))
3547 (setq ido-text-init (file-name-nondirectory exp))
3548 (setq refresh t))))
3549 ((and (memq system-type '(windows-nt ms-dos))
3550 (string-equal (substring contents 1) ":/"))
3551 (ido-set-current-directory (file-name-directory contents))
3552 (setq refresh t))
3553 ((string-equal (substring contents -2 -1) "/")
3554 (ido-set-current-directory
3555 (if (memq system-type '(windows-nt ms-dos))
3556 (expand-file-name "/" ido-current-directory)
3557 "/"))
3558 (setq refresh t))
3559 ((and ido-directory-nonreadable
3560 (file-directory-p (concat ido-current-directory (file-name-directory contents))))
3561 (ido-set-current-directory
3562 (concat ido-current-directory (file-name-directory contents)))
3563 (setq refresh t))
3565 (ido-trace "try single dir")
3566 (setq try-single-dir-match t))))
3568 ((and (string-equal (substring contents -2 -1) "/")
3569 (not (string-match "[$]" contents)))
3570 (ido-set-current-directory
3571 (cond
3572 ((= (length contents) 2)
3573 "/")
3574 (ido-matches
3575 (concat ido-current-directory (car ido-matches)))
3577 (concat ido-current-directory (substring contents 0 -1)))))
3578 (setq ido-text-init (substring contents -1))
3579 (setq refresh t))
3581 ((and (not ido-use-merged-list)
3582 (not (ido-final-slash contents))
3583 (eq ido-try-merged-list t)
3584 (numberp ido-auto-merge-work-directories-length)
3585 (> ido-auto-merge-work-directories-length 0)
3586 (= (length contents) ido-auto-merge-work-directories-length)
3587 (not (and ido-auto-merge-inhibit-characters-regexp
3588 (string-match ido-auto-merge-inhibit-characters-regexp contents)))
3589 (not (input-pending-p)))
3590 (setq ido-use-merged-list 'auto
3591 ido-text-init contents
3592 ido-rotate-temp t)
3593 (setq refresh t))
3595 (t nil))
3597 (when refresh
3598 (ido-trace "refresh on /" ido-text-init)
3599 (setq ido-exit 'refresh)
3600 (exit-minibuffer))
3602 ;; Update the list of matches
3603 (setq ido-text contents)
3604 (ido-set-matches)
3605 (ido-trace "new " ido-matches)
3607 (when (and ido-enter-single-matching-directory
3608 ido-matches
3609 (null (cdr ido-matches))
3610 (ido-final-slash (car ido-matches))
3611 (or try-single-dir-match
3612 (eq ido-enter-single-matching-directory t)))
3613 (ido-trace "single match" (car ido-matches))
3614 (ido-set-current-directory
3615 (concat ido-current-directory (car ido-matches)))
3616 (setq ido-exit 'refresh)
3617 (exit-minibuffer))
3619 (when (and (not ido-matches)
3620 (not ido-directory-nonreadable)
3621 ;; ido-rescan ?
3622 ido-process-ignore-lists
3623 ido-ignored-list)
3624 (let ((ido-process-ignore-lists nil)
3625 (ido-rotate ido-rotate)
3626 (ido-cur-list ido-ignored-list))
3627 (ido-trace "try all" ido-ignored-list)
3628 (ido-set-matches))
3629 (when ido-matches
3630 (ido-trace "found " ido-matches)
3631 (setq ido-rescan t)
3632 (setq ido-process-ignore-lists-inhibit t)
3633 (setq ido-text-init ido-text)
3634 (setq ido-exit 'refresh)
3635 (exit-minibuffer)))
3637 (when (and
3638 ido-rescan
3639 (not ido-matches)
3640 (memq ido-cur-item '(file dir))
3641 (not (ido-is-root-directory))
3642 (> (length contents) 1)
3643 (not (string-match "[$]" contents))
3644 (not ido-directory-nonreadable))
3645 (ido-trace "merge?")
3646 (if ido-use-merged-list
3647 (ido-undo-merge-work-directory contents nil)
3648 (when (and (eq ido-try-merged-list t)
3649 (numberp ido-auto-merge-work-directories-length)
3650 (= ido-auto-merge-work-directories-length 0)
3651 (not (and ido-auto-merge-inhibit-characters-regexp
3652 (string-match ido-auto-merge-inhibit-characters-regexp contents)))
3653 (not (input-pending-p)))
3654 (ido-trace "\n*start timer*")
3655 (setq ido-auto-merge-timer
3656 (run-with-timer ido-auto-merge-delay-time nil 'ido-initiate-auto-merge (current-buffer))))))
3658 (setq ido-rescan t)
3660 (if (and ido-use-merged-list
3661 ido-matches
3662 (not (string-equal (car (cdr (car ido-matches))) ido-current-directory)))
3663 (progn
3664 (ido-set-current-directory (car (cdr (car ido-matches))))
3665 (setq ido-use-merged-list t
3666 ido-exit 'keep
3667 ido-text-init ido-text)
3668 (exit-minibuffer)))
3670 ;; Insert the match-status information:
3671 (ido-set-common-completion)
3672 (let ((inf (ido-completions
3673 contents
3674 minibuffer-completion-table
3675 minibuffer-completion-predicate
3676 (not minibuffer-completion-confirm))))
3677 (ido-trace "inf" inf)
3678 (insert inf))
3679 ))))
3681 (defun ido-completions (name candidates predicate require-match)
3682 ;; Return the string that is displayed after the user's text.
3683 ;; Modified from `icomplete-completions'.
3685 (let* ((comps ido-matches)
3686 (ind (and (consp (car comps)) (> (length (cdr (car comps))) 1)
3687 ido-merged-indicator))
3688 first)
3690 (if (and ind ido-use-faces)
3691 (put-text-property 0 1 'face 'ido-indicator-face ind))
3693 (if (and ido-use-faces comps)
3694 (let* ((fn (ido-name (car comps)))
3695 (ln (length fn)))
3696 (setq first (format "%s" fn))
3697 (put-text-property 0 ln 'face
3698 (if (= (length comps) 1)
3699 'ido-only-match-face
3700 'ido-first-match-face)
3701 first)
3702 (if ind (setq first (concat first ind)))
3703 (setq comps (cons first (cdr comps)))))
3705 (cond ((null comps)
3706 (cond
3707 (ido-directory-nonreadable
3708 (or (nth 8 ido-decorations) " [Not readable]"))
3709 (ido-report-no-match
3710 (nth 6 ido-decorations)) ;; [No match]
3711 (t "")))
3713 ((null (cdr comps)) ;one match
3714 (concat (if (> (length (ido-name (car comps))) (length name))
3715 ;; when there is one match, show the matching file name in full
3716 (concat (nth 4 ido-decorations) ;; [ ... ]
3717 (ido-name (car comps))
3718 (nth 5 ido-decorations))
3720 (if (not ido-use-faces) (nth 7 ido-decorations)))) ;; [Matched]
3721 (t ;multiple matches
3722 (let* ((items (if (> ido-max-prospects 0) (1+ ido-max-prospects) 999))
3723 (alternatives
3724 (apply
3725 #'concat
3726 (cdr (apply
3727 #'nconc
3728 (mapcar
3729 (lambda (com)
3730 (setq com (ido-name com))
3731 (setq items (1- items))
3732 (cond
3733 ((< items 0) ())
3734 ((= items 0) (list (nth 3 ido-decorations))) ; " | ..."
3736 (list (or ido-separator (nth 2 ido-decorations)) ; " | "
3737 (let ((str (substring com 0)))
3738 (if (and ido-use-faces
3739 (not (string= str first))
3740 (ido-final-slash str))
3741 (put-text-property 0 (length str) 'face 'ido-subdir-face str))
3742 str)))))
3743 comps))))))
3745 (concat
3746 ;; put in common completion item -- what you get by pressing tab
3747 (if (and (stringp ido-common-match-string)
3748 (> (length ido-common-match-string) (length name)))
3749 (concat (nth 4 ido-decorations) ;; [ ... ]
3750 (substring ido-common-match-string (length name))
3751 (nth 5 ido-decorations)))
3752 ;; list all alternatives
3753 (nth 0 ido-decorations) ;; { ... }
3754 alternatives
3755 (nth 1 ido-decorations)))))))
3757 (defun ido-minibuffer-setup ()
3758 "Minibuffer setup hook for `ido'."
3759 ;; Copied from `icomplete-minibuffer-setup-hook'.
3760 (when (and (boundp 'ido-completing-read)
3761 (or (featurep 'xemacs)
3762 (= ido-use-mycompletion-depth (minibuffer-depth))))
3763 (add-hook 'pre-command-hook 'ido-tidy nil t)
3764 (add-hook 'post-command-hook 'ido-exhibit nil t)
3765 (setq cua-inhibit-cua-keys t)
3766 (when (featurep 'xemacs)
3767 (ido-exhibit)
3768 (goto-char (point-min)))
3769 (run-hooks 'ido-minibuffer-setup-hook)))
3771 (defun ido-tidy ()
3772 "Pre command hook for `ido'."
3773 ;; Remove completions display, if any, prior to new user input.
3774 ;; Copied from `icomplete-tidy'."
3776 (when ido-auto-merge-timer
3777 (ido-trace "\n*cancel timer*" this-command)
3778 (cancel-timer ido-auto-merge-timer)
3779 (setq ido-auto-merge-timer nil))
3781 (if (and (boundp 'ido-use-mycompletion-depth)
3782 (= ido-use-mycompletion-depth (minibuffer-depth)))
3783 (if (and (boundp 'ido-eoinput)
3784 ido-eoinput)
3786 (if (> ido-eoinput (point-max))
3787 ;; Oops, got rug pulled out from under us - reinit:
3788 (setq ido-eoinput (point-max))
3789 (let ((buffer-undo-list t))
3790 (delete-region ido-eoinput (point-max))))
3792 ;; Reestablish the local variable 'cause minibuffer-setup is weird:
3793 (make-local-variable 'ido-eoinput)
3794 (setq ido-eoinput 1))))
3796 (defun ido-summary-buffers-to-end ()
3797 ;; Move the summaries to the end of the buffer list.
3798 ;; This is an example function which can be hooked on to
3799 ;; `ido-make-buffer-list-hook'. Any buffer matching the regexps
3800 ;; `Summary' or `output\*$'are put to the end of the list.
3801 (let ((summaries (delq nil (mapcar
3802 (lambda (x)
3803 (if (or
3804 (string-match "Summary" x)
3805 (string-match "output\\*\\'" x))
3807 ido-temp-list))))
3808 (ido-to-end summaries)))
3810 ;;; Helper functions for other programs
3812 (put 'dired-do-rename 'ido 'ignore)
3814 ;;;###autoload
3815 (defun ido-read-file-name (prompt &optional dir default-filename mustmatch initial predicate)
3816 "Read file name, prompting with PROMPT and completing in directory DIR.
3817 See `read-file-name' for additional parameters."
3818 (cond
3819 ((or (eq predicate 'file-directory-p)
3820 (eq (get this-command 'ido) 'dir)
3821 (memq this-command ido-read-file-name-as-directory-commands))
3822 (ido-read-directory-name prompt dir default-filename mustmatch initial))
3823 ((and (not (eq (get this-command 'ido) 'ignore))
3824 (not (memq this-command ido-read-file-name-non-ido))
3825 (or (null predicate) (eq predicate 'file-exists-p)))
3826 (let* (filename
3827 ido-saved-vc-hb
3828 (vc-handled-backends (and (boundp 'vc-handled-backends) vc-handled-backends))
3829 (ido-current-directory (ido-expand-directory dir))
3830 (ido-directory-nonreadable (not (file-readable-p ido-current-directory)))
3831 (ido-work-directory-index -1)
3832 (ido-work-file-index -1)
3833 (ido-find-literal nil))
3834 (setq filename
3835 (ido-read-internal 'file prompt 'ido-file-history default-filename mustmatch initial))
3836 (if filename
3837 (concat ido-current-directory filename))))
3839 (let ((read-file-name-function nil))
3840 (read-file-name prompt dir default-filename mustmatch initial predicate)))))
3842 ;;;###autoload
3843 (defun ido-read-directory-name (prompt &optional dir default-dirname mustmatch initial)
3844 "Read directory name, prompting with PROMPT and completing in directory DIR.
3845 See `read-file-name' for additional parameters."
3846 (let* (filename
3847 ido-saved-vc-hb
3848 (ido-current-directory (ido-expand-directory dir))
3849 (ido-directory-nonreadable (not (file-readable-p ido-current-directory)))
3850 (ido-work-directory-index -1)
3851 (ido-work-file-index -1))
3852 (setq filename
3853 (ido-read-internal 'dir prompt 'ido-file-history default-dirname mustmatch initial))
3854 (if filename
3855 (if (and (stringp filename) (string-equal filename "."))
3856 ido-current-directory
3857 (concat ido-current-directory filename)))))
3859 ;;; arch-tag: b63a3500-1735-41bd-8a01-05373f0864da
3860 ;;; ido.el ends here