(eval-expression-print-format): Use lisp-readable syntax
[emacs.git] / lisp / ido.el
blobcc4eab4bb4d5a45076f74af38c8d5f1e94d1990e
1 ;;; ido.el --- interactively do things with buffers and files.
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
4 ;; 2004, 2005 Free Software Foundation, Inc.
6 ;; Author: Kim F. Storm <storm@cua.dk>
7 ;; Based on: iswitchb by Stephen Eglen <stephen@cns.ed.ac.uk>
8 ;; Keywords: extensions convenience
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
27 ;;; Acknowledgements
29 ;; Infinite amounts of gratitude goes to Stephen Eglen <stephen@cns.ed.ac.uk>
30 ;; who wrote iswitch-buffer mode - from which I ripped off 99% of the code
31 ;; for ido-switch-buffer and found the inspiration for ido-find-file.
32 ;; The ido package would never have existed without his work.
34 ;; Also thanks to Klaus Berndl, Rohit Namjoshi, Robert Fenk, Alex
35 ;; Schroeder, Bill Benedetto, Stephen Eglen, and many others for bug
36 ;; fixes and improvements.
38 ;;; History
40 ;; Since I discovered Stephen Eglen's excellent iswitchb package, I just
41 ;; couldn't live without it, but once being addicted to switching buffers
42 ;; with a minimum of keystrokes, I soon found that opening files in the
43 ;; old-fashioned way was just too slow - so I decided to write a package
44 ;; which could open files with the same speed and ease as iswitchb could
45 ;; switch buffers.
47 ;; I originally wrote a separate ifindf.el package based on a copy of
48 ;; iswitchb.el, which did for opening files what iswitchb did for
49 ;; switching buffers. Along the way, I corrected a few errors in
50 ;; ifindf which could have found its way back into iswitchb, but since
51 ;; most of the functionality of the two package was practically
52 ;; identical, I decided that the proper thing to do was to merge my
53 ;; ifindf package back into iswitchb.
55 ;; This is basically what ido (interactively do) is all about; but I
56 ;; found it ackward to merge my changes into the "iswitchb-" namespace,
57 ;; so I invented a common "ido-" namespace for the merged packages.
59 ;; This version is based on ido.el version 1.57 released on
60 ;; gnu.emacs.sources adapted for emacs 22.1 to use command remapping
61 ;; and optionally hooking the read-buffer and read-file-name functions.
63 ;; Prefix matching was added by Klaus Berndl <klaus.berndl@sdm.de> based on
64 ;; an idea of Yuji Minejima <ggb01164@nifty.ne.jp> and his mcomplete-package.
67 ;;; Commentary:
69 ;; Ido - interactive do - switches between buffers and opens files and
70 ;; directories with a minimum of keystrokes. It is a superset of
71 ;; iswitchb, the interactive buffer switching package by Stephen Eglen.
73 ;; Interactive substring matching
74 ;; ------------------------------
76 ;; As you type in a substring, the list of buffers or files currently
77 ;; matching the substring are displayed as you type. The list is
78 ;; ordered so that the most recent buffers or files visited come at
79 ;; the start of the list.
81 ;; The buffer or file at the start of the list will be the one visited
82 ;; when you press RETURN. By typing more of the substring, the list is
83 ;; narrowed down so that gradually the buffer or file you want will be
84 ;; at the top of the list. Alternatively, you can use C-s and C-r (or
85 ;; the right and left arrow keys) to rotate buffer or file names in the
86 ;; list until the one you want is at the top of the list.
88 ;; Completion is also available so that you can see what is common to
89 ;; all of the matching buffers or files as you type.
91 ;; Example:
93 ;; If I have two buffers called "123456" and "123", with "123456" the
94 ;; most recent, when I use ido-switch-buffer, I first of all get
95 ;; presented with the list of all the buffers
97 ;; Buffer: {123456,123}
99 ;; If I then press 2:
100 ;; Buffer: 2[3]{123456,123}
102 ;; The list in {...} are the matching buffers, most recent first
103 ;; (buffers visible in the current frame are put at the end of the
104 ;; list by default). At any time I can select the item at the head of
105 ;; the list by pressing RET. I can also put the first element at the
106 ;; end of the list by pressing C-s or [right], or bring the last
107 ;; element to the head of the list by pressing C-r or [left].
109 ;; The item in [...] indicates what can be added to my input by
110 ;; pressing TAB. In this case, I will get "3" added to my input.
112 ;; So, I press TAB:
113 ;; Buffer: 23{123456,123}
115 ;; At this point, I still have two matching buffers.
116 ;; If I want the first buffer in the list, I simply press RET. If I
117 ;; wanted the second in the list, I could press C-s to move it to the
118 ;; top of the list and then RET to select it.
120 ;; However, if I type 4, I only have one match left:
121 ;; Buffer: 234[123456] [Matched]
123 ;; Since there is only one matching buffer left, it is given in [] and we
124 ;; see the text [Matched] afterwards. I can now press TAB or RET to go
125 ;; to that buffer.
127 ;; If however, I now type "a":
128 ;; Buffer: 234a [No match]
129 ;; There are no matching buffers. If I press RET or TAB, I can be
130 ;; prompted to create a new buffer called "234a".
132 ;; Of course, where this function comes in really useful is when you
133 ;; can specify the buffer using only a few keystrokes. In the above
134 ;; example, the quickest way to get to the "123456" file would be
135 ;; just to type 4 and then RET (assuming there isn't any newer buffer
136 ;; with 4 in its name).
138 ;; Likewise, if you use C-x C-f (ido-find-file), the list of files and
139 ;; directories in the current directory is provided in the same
140 ;; fashion as the buffers above. The files and directories are
141 ;; normally sorted in alphabetical order, but the most recently
142 ;; visited directory is placed first to speed up navigating to
143 ;; directories that you have visited recently.
145 ;; In addition to scrolling through the list using [right] and [left],
146 ;; you can use [up] and [down] to quickly scroll the list to the next
147 ;; or previous subdirectory.
149 ;; To go down into a subdirectory, and continue the file selection on
150 ;; the files in that directory, simply move the directory to the head
151 ;; of the list and hit RET.
153 ;; To go up to the parent directory, delete any partial file name
154 ;; already specified (e.g. using [backspace]) and hit [backspace].
156 ;; To go to the root directory (on the current drive), enter two
157 ;; slashes. On MS-DOS or Windows, to select the root of another
158 ;; drive, enter X:/ where X is the drive letter. You can also visit
159 ;; files on other hosts using the ange-ftp notations `/host:' and
160 ;; `/user@host:'. See the variable `ido-slow-ftp-hosts' if you want
161 ;; to inhibit the ido substring matching for ftp access.
163 ;; If for some reason you cannot specify the proper file using
164 ;; ido-find-file, you can press C-f to enter the normal find-file.
165 ;; You can also press C-b to drop into ido-switch-buffer.
167 ;; See the doc string of ido-switch-buffer and ido-find-file for full
168 ;; keybindings and features.
169 ;; (describe-function 'ido-find-file)
171 ;; Hidden buffers and files
172 ;; ------------------------
174 ;; Normally, ido does not include hidden buffers (whose name starts
175 ;; with a space) and hidden files and directories (whose name starts
176 ;; with `.') in the list of possible completions. However, if the
177 ;; substring you enter does not match any of the visible buffers or
178 ;; files, ido will automatically look for completions among the hidden
179 ;; buffers or files.
181 ;; You can toggle display of the hidden buffers and files with C-a.
183 ;; Additional functionality
184 ;; ------------------------
186 ;; After C-x b, the buffer at the head of the list can be killed by
187 ;; pressing C-k. If the buffer needs saving, you will be queried
188 ;; before the buffer is killed.
190 ;; Likewise, after C-x C-f, you can delete (i.e. physically remove)
191 ;; the file at the head of the list with C-k. You will always be
192 ;; asked for confirmation before the file is deleted.
194 ;; If you enter C-x b to switch to a buffer visiting a given file, and
195 ;; you find that the file you are after is not in any buffer, you can
196 ;; press C-f to immediately drop into ido-find-file. And you can
197 ;; switch back to buffer selection with C-b.
199 ;; Prefix matching
200 ;; ---------------
202 ;; The standard way of completion with Unix-shells and Emacs is to insert a
203 ;; PREFIX and then hitting TAB (or another completion key). Cause of this
204 ;; behavior has become second nature to a lot of emacs users `ido' offers in
205 ;; addition to the default substring-matching-method (look above) also the
206 ;; prefix-matching-method. The kind of matching is the only difference to
207 ;; the description of the substring-matching above.
209 ;; You can toggle prefix matching with C-p.
211 ;; Example:
213 ;; If you have again two Buffers "123456" and "123" then hitting "2" does
214 ;; not match because "2" is not a PREFIX in any of the buffer-names.
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 `[ch]$' for example and see all file names
240 ;; ending in `c' or `h'.
242 ;; Note: ido-style completion is inhibited when you enable regexp matching.
245 ;; Customization
246 ;; -------------
248 ;; Customize the `ido' group to change the `ido' functionality.
250 ;; To modify the keybindings, use the ido-setup-hook. For example:
251 ;;(add-hook 'ido-setup-hook 'ido-my-keys)
253 ;;(defun ido-my-keys ()
254 ;; "Add my keybindings for ido."
255 ;; (define-key ido-mode-map " " 'ido-next-match)
256 ;; )
258 ;; Seeing all the matching buffers or files
259 ;; ----------------------------------------
261 ;; If you have many matching files, they may not all fit onto one
262 ;; line of the minibuffer. Normally, the minibuffer window will grow
263 ;; to show you more of the matching files (depending on the setting
264 ;; of the variables `resize-mini-windows' and `max-mini-window-height').
265 ;; If you want ido to behave differently from the default minibuffer
266 ;; resizing behaviour, set the variable `ido-max-window-height'.
268 ;; Also, to improve the responsiveness of ido, the maximum number of
269 ;; matching items is limited to 12, but you can increase or removed
270 ;; this limit via the `ido-max-prospects' variable.
272 ;; To see a full list of all matching buffers in a separate buffer,
273 ;; hit ? or press TAB when there are no further completions to the
274 ;; substring. Repeated TAB presses will scroll you through this
275 ;; separate buffer.
277 ;; Changing the list of files
278 ;; --------------------------
280 ;; By default, the list of current files is most recent first,
281 ;; oldest last, with the exception that the files visible in the
282 ;; current frame are put at the end of the list. A hook exists to
283 ;; allow other functions to order the list. For example, if you add:
285 ;; (add-hook 'ido-make-buffer-list-hook 'ido-summary-buffers-to-end)
287 ;; then all files matching "Summary" are moved to the end of the
288 ;; list. (I find this handy for keeping the INBOX Summary and so on
289 ;; out of the way.) It also moves files matching "output\*$" to the
290 ;; end of the list (these are created by AUCTeX when compiling.)
291 ;; Other functions could be made available which alter the list of
292 ;; matching files (either deleting or rearranging elements.)
294 ;; Highlighting
295 ;; ------------
297 ;; The highlighting of matching items is controlled via ido-use-faces.
298 ;; The faces used are ido-first-match, ido-only-match and
299 ;; ido-subdir.
300 ;; Colouring of the matching item was suggested by
301 ;; Carsten Dominik (dominik@strw.leidenuniv.nl).
303 ;; Replacement for read-buffer and read-file-name
304 ;; ----------------------------------------------
306 ;; ido-read-buffer and ido-read-file-name have been written to be drop
307 ;; in replacements for the normal buffer and file name reading
308 ;; functions `read-buffer' and `read-file-name'.
310 ;; To use ido for all buffer and file selections in Emacs, customize the
311 ;; variable `ido-everywhere'.
313 ;; Using ido-like behaviour in other lisp packages
314 ;; -----------------------------------------------
316 ;; If you don't want to rely on the `ido-everywhere' functionality,
317 ;; ido-read-buffer, ido-read-file-name, and ido-read-directory-name
318 ;; can be used by other packages to read a buffer name, a file name,
319 ;; or a directory name in the `ido' way.
322 ;;; Code:
324 (provide 'ido)
326 (defvar cua-inhibit-cua-keys)
328 ;;; User Variables
330 ;; These are some things you might want to change.
332 (defun ido-fractionp (n)
333 (and (numberp n) (> n 0.0) (<= n 1.0)))
335 (defgroup ido nil
336 "Switch between files using substrings."
337 :group 'extensions
338 :group 'convenience
339 :version "22.1"
340 :link '(emacs-commentary-link :tag "Commentary" "ido.el")
341 :link '(emacs-library-link :tag "Lisp File" "ido.el"))
343 ;;;###autoload
344 (defcustom ido-mode nil
345 "Determines for which functional group \(buffer and files) ido behavior
346 should be enabled. The following values are possible:
347 - `buffer': Turn only on ido buffer behavior \(switching, killing,
348 displaying...)
349 - `file': Turn only on ido file behavior \(finding, writing, inserting...)
350 - `both': Turn on ido buffer and file behavior.
351 - `nil': Turn off any ido switching.
353 Setting this variable directly does not take effect;
354 use either \\[customize] or the function `ido-mode'."
355 :set #'(lambda (symbol value)
356 (ido-mode value))
357 :initialize 'custom-initialize-set
358 :require 'ido
359 :link '(emacs-commentary-link "ido.el")
360 :set-after '(ido-save-directory-list-file)
361 :type '(choice (const :tag "Turn on only buffer" buffer)
362 (const :tag "Turn on only file" file)
363 (const :tag "Turn on both buffer and file" both)
364 (const :tag "Switch off all" nil))
365 :group 'ido)
367 (defcustom ido-everywhere nil
368 "Use ido everywhere for reading file names and directories.
369 Setting this variable directly does not work. Use `customize' or
370 call the function `ido-everywhere'."
371 :set #'(lambda (symbol value)
372 (ido-everywhere (if value 1 -1)))
373 :initialize 'custom-initialize-default
374 :type 'boolean
375 :group 'ido)
377 (defcustom ido-case-fold case-fold-search
378 "*Non-nil if searching of buffer and file names should ignore case."
379 :type 'boolean
380 :group 'ido)
382 (defcustom ido-ignore-buffers
383 '("\\` ")
384 "*List of regexps or functions matching buffer names to ignore.
385 For example, traditional behavior is not to list buffers whose names begin
386 with a space, for which the regexp is `\\` '. See the source file for
387 example functions that filter buffernames."
388 :type '(repeat (choice regexp function))
389 :group 'ido)
391 (defcustom ido-ignore-files
392 '("\\`CVS/" "\\`#" "\\`.#" "\\`\\.\\./" "\\`\\./")
393 "*List of regexps or functions matching file names to ignore.
394 For example, traditional behavior is not to list files whose names begin
395 with a #, for which the regexp is `\\`#'. See the source file for
396 example functions that filter filenames."
397 :type '(repeat (choice regexp function))
398 :group 'ido)
400 (defcustom ido-ignore-extensions t
401 "*Non-nil means ignore files in completion-ignored-extensions list."
402 :type 'boolean
403 :group 'ido)
405 (defcustom ido-show-dot-for-dired nil
406 "*Non-nil means to always put . as the first item in file name lists.
407 This allows the current directory to be opened immediate with `dired'."
408 :type 'boolean
409 :group 'ido)
411 (defcustom ido-file-extensions-order nil
412 "*List of file extensions specifying preferred order of file selections.
413 Each element is either a string with `.' as the first char, an empty
414 string matching files without extension, or t which is the default order
415 for files with an unlisted file extension."
416 :type '(repeat (choice string
417 (const :tag "Default order" t)))
418 :group 'ido)
420 (defcustom ido-ignore-directories
421 '("\\`CVS/" "\\`\\.\\./" "\\`\\./")
422 "*List of regexps or functions matching sub-directory names to ignore."
423 :type '(repeat (choice regexp function))
424 :group 'ido)
426 (defcustom ido-ignore-directories-merge nil
427 "*List of regexps or functions matching directory names to ignore during merge.
428 Directory names matched by one of the regexps in this list are not inserted
429 in merged file and directory lists."
430 :type '(repeat (choice regexp function))
431 :group 'ido)
433 ;;; Examples for setting the value of ido-ignore-buffers
434 ;(defun ido-ignore-c-mode (name)
435 ; "Ignore all c mode buffers -- example function for ido."
436 ; (save-excursion
437 ; (set-buffer name)
438 ; (string-match "^C$" mode-name)))
440 ;(setq ido-ignore-buffers '("^ " ido-ignore-c-mode))
442 ;;; Examples for setting the value of ido-ignore-files
443 ;(setq ido-ignore-files '("^ " "\\.c$" "\\.h$"))
445 (defcustom ido-default-file-method 'always-frame
446 "*How to switch to new file when using `ido-find-file'.
447 Possible values:
448 `samewindow' Show new file in same window
449 `otherwindow' Show new file in another window (same frame)
450 `display' Display file in another window without switching to it
451 `otherframe' Show new file in another frame
452 `maybe-frame' If a file is visible in another frame, prompt to ask if you
453 you want to see the file in the same window of the current
454 frame or in the other frame
455 `always-frame' If a file is visible in another frame, raise that
456 frame; otherwise, visit the file in the same window"
457 :type '(choice (const samewindow)
458 (const otherwindow)
459 (const display)
460 (const otherframe)
461 (const maybe-frame)
462 (const always-frame))
463 :group 'ido)
465 (defcustom ido-default-buffer-method 'always-frame
466 "*How to switch to new buffer when using `ido-switch-buffer'.
467 See `ido-default-file-method' for details."
468 :type '(choice (const samewindow)
469 (const otherwindow)
470 (const display)
471 (const otherframe)
472 (const maybe-frame)
473 (const always-frame))
474 :group 'ido)
476 (defcustom ido-enable-flex-matching nil
477 "*Non-nil means that `ido' will do flexible string matching.
478 Flexible matching means that if the entered string does not
479 match any item, any item containing the entered characters
480 in the given sequence will match."
481 :type 'boolean
482 :group 'ido)
485 (defcustom ido-enable-regexp nil
486 "*Non-nil means that `ido' will do regexp matching.
487 Value can be toggled within `ido' using `ido-toggle-regexp'."
488 :type 'boolean
489 :group 'ido)
491 (defcustom ido-enable-prefix nil
492 "*Non-nil means only match if the entered text is a prefix of file name.
493 This behavior is like the standard emacs-completion.
494 Nil means to match if the entered text is an arbitrary substring.
495 Value can be toggled within `ido' using `ido-toggle-prefix'."
496 :type 'boolean
497 :group 'ido)
499 (defcustom ido-enable-dot-prefix nil
500 "*Non-nil means to match leading dot as prefix.
501 I.e. hidden files and buffers will match only if you type a dot
502 as first char even if `ido-enable-prefix' is nil."
503 :type 'boolean
504 :group 'ido)
506 (defcustom ido-confirm-unique-completion nil
507 "*Non-nil means that even a unique completion must be confirmed.
508 This means that \\[ido-complete] must always be followed by \\[ido-exit-minibuffer]
509 even when there is only one unique completion."
510 :type 'boolean
511 :group 'ido)
513 (defcustom ido-cannot-complete-command 'ido-completion-help
514 "*Command run when `ido-complete' can't complete any more.
515 The most useful values are `ido-completion-help', which pops up a
516 window with completion alternatives, or `ido-next-match' or
517 `ido-prev-match', which cycle the buffer list."
518 :type 'function
519 :group 'ido)
522 (defcustom ido-record-commands t
523 "*Non-nil means that `ido' will record commands in command history.
524 Note that the non-ido equivalent command is recorded."
525 :type 'boolean
526 :group 'ido)
528 (defcustom ido-max-prospects 12
529 "*Non-zero means that the prospect list will be limited to than number of items.
530 For a long list of prospects, building the full list for the minibuffer can take a
531 non-negligible amount of time; setting this variable reduces that time."
532 :type 'integer
533 :group 'ido)
535 (defcustom ido-max-file-prompt-width 0.35
536 "*Non-zero means that the prompt string be limited to than number of characters.
537 If value is a floating point number, it specifies a fraction of the frame width."
538 :type '(choice
539 (integer :tag "Characters" :value 20)
540 (restricted-sexp :tag "Fraction of frame width"
541 :value 0.35
542 :match-alternatives (ido-fractionp)))
543 :group 'ido)
545 (defcustom ido-max-window-height nil
546 "*Non-nil specifies a value to override `max-mini-window-height'."
547 :type '(choice
548 (const :tag "Don't override" nil)
549 (integer :tag "Number of lines" :value 1)
550 (restricted-sexp
551 :tag "Fraction of window height"
552 :value 0.25
553 :match-alternatives (ido-fractionp)))
554 :group 'ido)
556 (defcustom ido-enable-last-directory-history t
557 "*Non-nil means that `ido' will remember latest selected directory names.
558 See `ido-last-directory-list' and `ido-save-directory-list-file'."
559 :type 'boolean
560 :group 'ido)
562 (defcustom ido-max-work-directory-list 50
563 "*Maximum number of working directories to record.
564 This is the list of directories where files have most recently been opened.
565 See `ido-work-directory-list' and `ido-save-directory-list-file'."
566 :type 'integer
567 :group 'ido)
569 (defcustom ido-work-directory-list-ignore-regexps nil
570 "*List of regexps matching directories which should not be recorded.
571 Directory names matched by one of the regexps in this list are not inserted in
572 the `ido-work-directory-list' list."
573 :type '(repeat regexp)
574 :group 'ido)
577 (defcustom ido-use-filename-at-point nil
578 "*Non-nil means that ido shall look for a filename at point.
579 May use `ffap-guesser' to guess whether text at point is a filename.
580 If found, use that as the starting point for filename selection."
581 :type '(choice
582 (const :tag "Disabled" nil)
583 (const :tag "Guess filename" guess)
584 (other :tag "Use literal filename" t))
585 :group 'ido)
588 (defcustom ido-use-url-at-point nil
589 "*Non-nil means that ido shall look for a URL at point.
590 If found, call `find-file-at-point' to visit it."
591 :type 'boolean
592 :group 'ido)
595 (defcustom ido-enable-tramp-completion t
596 "*Non-nil means that ido shall perform tramp method and server name completion.
597 A tramp file name uses the following syntax: /method:user@host:filename."
598 :type 'boolean
599 :group 'ido)
601 (defcustom ido-record-ftp-work-directories t
602 "*Non-nil means record ftp file names in the work directory list."
603 :type 'boolean
604 :group 'ido)
606 (defcustom ido-merge-ftp-work-directories nil
607 "*If nil means merging ignores ftp file names in the work directory list."
608 :type 'boolean
609 :group 'ido)
611 (defcustom ido-cache-ftp-work-directory-time 1.0
612 "*Maximum time to cache contents of an ftp directory (in hours).
613 If zero, ftp directories are not cached."
614 :type 'number
615 :group 'ido)
617 (defcustom ido-slow-ftp-hosts nil
618 "*List of slow ftp hosts where ido prompting should not be used.
619 If an ftp host is on this list, ido automatically switches to the non-ido
620 equivalent function, e.g. `find-file' rather than `ido-find-file'."
621 :type '(repeat string)
622 :group 'ido)
624 (defcustom ido-slow-ftp-host-regexps nil
625 "*List of regexps matching slow ftp hosts (see `ido-slow-ftp-hosts')."
626 :type '(repeat regexp)
627 :group 'ido)
629 (defcustom ido-max-work-file-list 10
630 "*Maximum number of names of recently opened files to record.
631 This is the list the file names (sans directory) which have most recently
632 been opened. See `ido-work-file-list' and `ido-save-directory-list-file'."
633 :type 'integer
634 :group 'ido)
636 (defcustom ido-work-directory-match-only t
637 "*Non-nil means to skip non-matching directories in the directory history.
638 When some text is already entered at the `ido-find-file' prompt, using
639 \\[ido-prev-work-directory] or \\[ido-next-work-directory] will skip directories
640 without any matching entries."
641 :type 'boolean
642 :group 'ido)
644 (defcustom ido-auto-merge-work-directories-length 0
645 "*Automatically switch to merged work directories during file name input.
646 The value is number of characters to type before switching to merged mode.
647 If zero, the switch happens when no matches are found in the current directory.
648 Automatic merging is disabled if the value is negative."
649 :type 'integer
650 :group 'ido)
652 (defcustom ido-auto-merge-delay-time 0.70
653 "*Delay in seconds to wait for more input before doing auto merge."
654 :type 'number
655 :group 'ido)
657 (defcustom ido-auto-merge-inhibit-characters-regexp "[][*?~]"
658 "*Regexp matching characters which should inhibit automatic merging.
659 When a (partial) file name matches this regexp, merging is inhibited."
660 :type 'regexp
661 :group 'ido)
663 (defcustom ido-merged-indicator "^"
664 "The string appended to first choice if it has multiple directory choices."
665 :type 'string
666 :group 'ido)
668 (defcustom ido-max-dir-file-cache 100
669 "*Maximum number of working directories to be cached.
670 This is the size of the cache of file-name-all-completions results.
671 Each cache entry is time stamped with the modification time of the
672 directory. Some systems, like Windows, have unreliable directory
673 modification times, so you may choose to disable caching on such
674 systems, or explicitly refresh the cache contents using the command
675 `ido-reread-directory' command (C-l) in the minibuffer.
676 See also `ido-dir-file-cache' and `ido-save-directory-list-file'."
677 :type 'integer
678 :group 'ido)
680 (defcustom ido-max-directory-size 30000
681 "*Maximum size (in bytes) for directories to use ido completion.
682 If you enter a directory with a size larger than this size, ido will
683 not provide the normal completion. To show the completions, use C-a."
684 :type '(choice (const :tag "No limit" nil)
685 (integer :tag "Size in bytes" 30000))
686 :group 'ido)
688 (defcustom ido-rotate-file-list-default nil
689 "*Non-nil means that `ido' will always rotate file list to get default in front."
690 :type 'boolean
691 :group 'ido)
693 (defcustom ido-enter-matching-directory 'only
694 "*Additional methods to enter sub-directory of first/only matching item.
695 If value is 'first, enter first matching sub-directory when typing a slash.
696 If value is 'only, typing a slash only enters the sub-directory if it is
697 the only matching item.
698 If value is t, automatically enter a sub-directory when it is the only
699 matching item, even without typing a slash."
700 :type '(choice (const :tag "Never" nil)
701 (const :tag "Slash enters first directory" first)
702 (const :tag "Slash enters first and only directory" only)
703 (other :tag "Always enter unique directory" t))
704 :group 'ido)
706 (defcustom ido-create-new-buffer 'prompt
707 "*Specify whether a new buffer is created if no buffer matches substring.
708 Choices are 'always to create new buffers unconditionally, 'prompt to
709 ask user whether to create buffer, or 'never to never create new buffer."
710 :type '(choice (const always)
711 (const prompt)
712 (const never))
713 :group 'ido)
715 (defcustom ido-setup-hook nil
716 "*Hook run after the ido variables and keymap have been setup.
717 The dynamic variable `ido-cur-item' contains the current type of item that
718 is read by ido, possible values are file, dir, buffer, and list.
719 Additional keys can be defined in `ido-mode-map'."
720 :type 'hook
721 :group 'ido)
723 (defcustom ido-separator nil
724 "*String used by ido to separate the alternatives in the minibuffer.
725 Obsolete. Set 3rd element of `ido-decorations' instead."
726 :type '(choice string (const nil))
727 :group 'ido)
729 (defcustom ido-decorations '( "{" "}" " | " " | ..." "[" "]" " [No match]" " [Matched]" " [Not readable]" " [Too big]")
730 "*List of strings used by ido to display the alternatives in the minibuffer.
731 There are 10 elements in this list:
732 1st and 2nd elements are used as brackets around the prospect list,
733 3rd element is the separator between prospects (ignored if ido-separator is set),
734 4th element is the string inserted at the end of a truncated list of prospects,
735 5th and 6th elements are used as brackets around the common match string which
736 can be completed using TAB,
737 7th element is the string displayed when there are no matches, and
738 8th element is displayed if there is a single match (and faces are not used),
739 9th element is displayed when the current directory is non-readable,
740 10th element is displayed when directory exceeds `ido-max-directory-size'."
741 :type '(repeat string)
742 :group 'ido)
744 (defcustom ido-use-faces t
745 "*Non-nil means use ido faces to highlighting first match, only match and
746 subdirs in the alternatives."
747 :type 'boolean
748 :group 'ido)
750 (defface ido-first-match '((t (:bold t)))
751 "*Font used by ido for highlighting first match."
752 :group 'ido)
754 (defface ido-only-match '((((class color))
755 (:foreground "ForestGreen"))
756 (t (:italic t)))
757 "*Font used by ido for highlighting only match."
758 :group 'ido)
760 (defface ido-subdir '((((min-colors 88) (class color))
761 (:foreground "red1"))
762 (((class color))
763 (:foreground "red"))
764 (t (:underline t)))
765 "*Font used by ido for highlighting subdirs in the alternatives."
766 :group 'ido)
768 (defface ido-indicator '((((min-colors 88) (class color))
769 (:foreground "yellow1"
770 :background "red1"
771 :width condensed))
772 (((class color))
773 (:foreground "yellow"
774 :background "red"
775 :width condensed))
776 (t (:inverse-video t)))
777 "*Font used by ido for highlighting its indicators."
778 :group 'ido)
780 (defface ido-incomplete-regexp
781 '((t
782 (:inherit font-lock-warning-face)))
783 "Ido face for indicating incomplete regexps."
784 :group 'ido)
786 (defcustom ido-make-file-list-hook nil
787 "*List of functions to run when the list of matching files is created.
788 Each function on the list may modify the dynamically bound variable
789 `ido-temp-list' which contains the current list of matching files."
790 :type 'hook
791 :group 'ido)
793 (defcustom ido-make-dir-list-hook nil
794 "*List of functions to run when the list of matching directories is created.
795 Each function on the list may modify the dynamically bound variable
796 `ido-temp-list' which contains the current list of matching directories."
797 :type 'hook
798 :group 'ido)
800 (defcustom ido-make-buffer-list-hook nil
801 "*List of functions to run when the list of matching buffers is created.
802 Each function on the list may modify the dynamically bound variable
803 `ido-temp-list' which contains the current list of matching buffer names."
804 :type 'hook
805 :group 'ido)
807 (defcustom ido-rewrite-file-prompt-functions nil
808 "*List of functions to run when the find-file prompt is created.
809 Each function on the list may modify the following dynamically bound
810 variables:
811 dirname - the (abbreviated) directory name
812 to be modified by the hook functions
813 max-width - the max width of the resulting dirname; nil means no limit
814 prompt - the basic prompt (e.g. \"Find File: \")
815 literal - the string shown if doing \"literal\" find; set to nil to omit
816 vc-off - the string shown if version control is inhibited; set to nit to omit
817 prefix - either nil or a fixed prefix for the dirname
819 The following variables are available, but should not be changed:
820 ido-current-directory - the unabbreviated directory name
821 item - equals `file' or `dir' depending on the current mode."
822 :type 'hook
823 :group 'ido)
825 (defvar ido-rewrite-file-prompt-rules nil
826 "*Alist of rewriting rules for directory names in ido prompts.
827 A list of elements of the form (FROM . TO) or (FROM . FUNC), each
828 meaning to rewrite the directory name if matched by FROM by either
829 substituting the matched string by TO or calling the function FUNC
830 with the current directory name as its only argument and using the
831 return value as the new directory name. In addition, each FUNC may
832 also modify the dynamic variables described for the variable
833 `ido-rewrite-file-prompt-functions'.")
835 (defcustom ido-completion-buffer "*Ido Completions*"
836 "*Name of completion buffer used by ido.
837 Set to nil to disable completion buffers popping up."
838 :type 'string
839 :group 'ido)
841 (defcustom ido-completion-buffer-all-completions nil
842 "*Non-nil means to show all completions in completion buffer.
843 Otherwise, only the current list of matches is shown."
844 :type 'boolean
845 :group 'ido)
847 (defvar ido-all-frames 'visible
848 "*Argument to pass to `walk-windows' when finding visible files.
849 See documentation of `walk-windows' for useful values.")
851 (defcustom ido-minibuffer-setup-hook nil
852 "*Ido-specific customization of minibuffer setup.
854 This hook is run during minibuffer setup iff `ido' will be active.
855 It is intended for use in customizing ido for interoperation
856 with other packages. For instance:
858 \(add-hook 'ido-minibuffer-setup-hook
859 \(function
860 \(lambda ()
861 \(make-local-variable 'max-mini-window-height)
862 \(setq max-mini-window-height 3))))
864 will constrain Emacs to a maximum minibuffer height of 3 lines when
865 ido is running. Copied from `icomplete-minibuffer-setup-hook'."
866 :type 'hook
867 :group 'ido)
869 (defcustom ido-save-directory-list-file "~/.ido.last"
870 "File in which the ido state is saved between invocations.
871 Variables stored are: `ido-last-directory-list', `ido-work-directory-list',
872 `ido-work-file-list', and `ido-dir-file-cache'.
873 Must be set before enabling ido mode."
874 :type 'string
875 :group 'ido)
877 (defcustom ido-read-file-name-as-directory-commands '()
878 "List of commands which uses read-file-name to read a directory name.
879 When `ido-everywhere' is non-nil, the commands in this list will read
880 the directory using `ido-read-directory-name'."
881 :type '(repeat symbol)
882 :group 'ido)
884 (defcustom ido-read-file-name-non-ido '()
885 "List of commands which shall not read file names the ido way.
886 When `ido-everywhere' is non-nil, the commands in this list will read
887 the file name using normal `read-file-name' style."
888 :type '(repeat symbol)
889 :group 'ido)
891 (defcustom ido-before-fallback-functions '()
892 "List of functions to call before calling a fallback command.
893 The fallback command is passed as an argument to the functions."
894 :type 'hook
895 :group 'ido)
897 ;;; Internal Variables
899 ;; Persistent variables
901 (defvar ido-mode-map nil
902 "Keymap for `ido-find-file' and `ido-switch-buffer'.")
904 (defvar ido-file-history nil
905 "History of files selected using `ido-find-file'.")
907 (defvar ido-buffer-history nil
908 "History of buffers selected using `ido-switch-buffer'.")
910 (defvar ido-last-directory-list nil
911 "List of last selected directory names.
912 See `ido-enable-last-directory-history' for details.")
914 (defvar ido-work-directory-list nil
915 "List of actual working directory names.
916 The current directory is inserted at the front of this list whenever a
917 file is opened with `ido-find-file' and family.")
919 (defvar ido-work-file-list nil
920 "List of actual work file names.
921 Opening a file with `ido-find-file' and similar functions
922 inserts the current file name (relative to its containing directory)
923 at the front of this list.")
925 (defvar ido-dir-file-cache nil
926 "List of `file-name-all-completions' results.
927 Each element in the list is of the form (DIR (MTIME) FILE...).")
929 (defvar ido-ignore-item-temp-list nil
930 "List of items to ignore in current ido invocation.
931 Intended to be let-bound by functions which call ido repeatedly.
932 Should never be set permanently.")
934 ;; Temporary storage
936 (defvar ido-eoinput 1
937 "Point where minibuffer input ends and completion info begins.
938 Copied from `icomplete-eoinput'.")
939 (make-variable-buffer-local 'ido-eoinput)
941 (defvar ido-common-match-string nil
942 "Stores the string that is common to all matching files.")
944 (defvar ido-rescan nil
945 "Non-nil means we need to regenerate the list of matching items.")
947 (defvar ido-rotate nil
948 "Non-nil means we are rotating list of matches.")
950 (defvar ido-text nil
951 "Stores the users string as it is typed in.")
953 (defvar ido-text-init nil
954 "The initial string for the users string it is typed in.")
956 (defvar ido-input-stack nil
957 "Stores the users strings when user hits M-b/M-f.")
959 (defvar ido-matches nil
960 "List of files currently matching `ido-text'.")
962 (defvar ido-report-no-match t
963 "Report [No Match] when no completions matches ido-text.")
965 (defvar ido-exit nil
966 "Flag to monitor how `ido-find-file' exits.
967 If equal to `takeprompt', we use the prompt as the file name to be
968 selected.")
970 (defvar ido-current-directory nil
971 "Current directory for `ido-find-file'.")
973 (defvar ido-auto-merge-timer nil
974 "Delay timer for auto merge.")
976 (defvar ido-use-mycompletion-depth 0
977 "Non-nil means use `ido' completion feedback.
978 Is set by ido functions to the current minibuffer-depth, so that
979 it doesn't interfere with other minibuffer usage.")
981 (defvar ido-incomplete-regexp nil
982 "Non-nil if an incomplete regexp is entered.")
984 ;;; Variables with dynamic bindings.
985 ;;; Declared here to keep the byte compiler quiet.
987 ;; Stores the current ido item type ('file, 'dir, 'buffer, or 'list).
988 (defvar ido-cur-item)
990 ;; Stores the current list of items that will be searched through.
991 ;; The list is ordered, so that the most interesting item comes first,
992 ;; although by default, the files visible in the current frame are put
993 ;; at the end of the list. Created by `ido-make-item-list'.
994 (defvar ido-cur-list)
996 ;; Stores the choice list for ido-completing-read
997 (defvar ido-choice-list)
999 ;; Stores the list of items which are ignored when building
1000 ;; `ido-cur-list'. It is in no specific order.
1001 (defvar ido-ignored-list)
1003 ;; Remember if current directory is non-readable (so we cannot do completion).
1004 (defvar ido-directory-nonreadable)
1006 ;; Remember if current directory is 'huge' (so we don't want to do completion).
1007 (defvar ido-directory-too-big)
1009 ;; Keep current item list if non-nil.
1010 (defvar ido-keep-item-list)
1012 ;; Process ido-ignore-* lists.
1013 (defvar ido-process-ignore-lists)
1015 ;; Don't process ido-ignore- lists once.
1016 (defvar ido-process-ignore-lists-inhibit)
1018 ;; Buffer from which ido was entered.
1019 (defvar ido-entry-buffer)
1021 ;; Non-nil if matching file must be selected.
1022 (defvar ido-require-match)
1024 ;; Stores a temporary version of the file list being created.
1025 (defvar ido-temp-list)
1027 ;; Non-nil if default list element should be rotated into place.
1028 (defvar ido-rotate-temp)
1030 ;; Stores current index in ido-work-directory-list.
1031 (defvar ido-work-directory-index)
1033 ;; Stores current index in ido-work-file-list.
1034 (defvar ido-work-file-index)
1036 ;; Set when merged work directory list is in use.
1037 (defvar ido-use-merged-list)
1039 ;; Set when merged work directory list not yet built.
1040 (defvar ido-try-merged-list)
1042 ;; Saved state prior to last work directory merge.
1043 ;; Value is a list (ido-text dir cur-list ignored-list matches).
1044 (defvar ido-pre-merge-state)
1046 ;; Original value of vc-handled-backends for use in ido-toggle-vc.
1047 (defvar ido-saved-vc-hb)
1049 ;; Stores temporary state of literal find file.
1050 (defvar ido-find-literal)
1052 ;; Set to 'ignore to inhibit switching between find-file/switch-buffer.
1053 (defvar ido-context-switch-command)
1055 ;;; FUNCTIONS
1057 (defun ido-active (&optional merge)
1058 (if merge
1059 ido-use-merged-list
1060 (and (boundp 'ido-completing-read) (= ido-use-mycompletion-depth (minibuffer-depth)))))
1062 (defvar ido-trace-enable nil)
1064 (defun ido-trace (p &optional s retval)
1065 (if ido-trace-enable
1066 (let ((b (get-buffer-create " *IDO Trace*"))
1067 (deactivate-mark deactivate-mark))
1068 (save-excursion
1069 (save-restriction
1070 (set-buffer b)
1071 (insert p ": " (if (stringp s) s (format "%S" s)) "\n")))))
1072 retval)
1074 (defun ido-toggle-trace (arg)
1075 (interactive "P")
1076 (setq ido-trace-enable (or arg (not ido-trace-enable)))
1077 (if ido-trace-enable
1078 (message "IDO trace on"))
1079 (let ((b (get-buffer " *IDO Trace*")))
1080 (if b
1081 (if ido-trace-enable
1082 (kill-buffer b)
1083 (pop-to-buffer b t t)
1084 (setq truncate-lines t)))))
1086 (defun ido-is-tramp-root (&optional dir)
1087 (and ido-enable-tramp-completion
1088 (string-match "\\`/[^/]+[@:]\\'"
1089 (or dir ido-current-directory))))
1091 (defun ido-is-root-directory (&optional dir)
1092 (setq dir (or dir ido-current-directory))
1094 (string-equal "/" dir)
1095 (and (memq system-type '(windows-nt ms-dos))
1096 (string-match "\\`[a-zA-Z]:[/\\]\\'" dir))
1097 (if ido-enable-tramp-completion
1098 (ido-is-tramp-root dir)
1099 (string-match "\\`/[^:/][^:/]+:\\'" dir))))
1101 (defun ido-is-ftp-directory (&optional dir)
1102 (string-match
1103 (if ido-enable-tramp-completion
1104 "\\`/[^/:][^/:]+:" ;; like tramp-file-name-regexp-unified, but doesn't match single drive letters
1105 "\\`/[^/:][^/:]+:/")
1106 (or dir ido-current-directory)))
1108 (defun ido-is-slow-ftp-host (&optional dir)
1109 (and (or ido-slow-ftp-hosts ido-slow-ftp-host-regexps)
1110 (setq dir (or dir ido-current-directory))
1111 ;; (featurep 'ange-ftp)
1112 ;; (ange-ftp-ftp-name dir)
1113 (string-match
1114 (if ido-enable-tramp-completion
1115 "\\`/\\([^/]+[@:]\\)*\\([^@/:][^@/:]+\\):"
1116 "\\`/\\([^/:]*@\\)?\\([^@/:][^@/:]+\\):/")
1117 dir)
1118 (let ((host (substring dir (match-beginning 2) (match-end 2))))
1119 (or (member host ido-slow-ftp-hosts)
1120 (let ((re ido-slow-ftp-host-regexps))
1121 (while (and re (not (string-match (car re) host)))
1122 (setq re (cdr re)))
1123 re)))))
1125 (defun ido-time-stamp (&optional time)
1126 ;; Time is a floating point number (fractions of 1 hour)
1127 (setq time (or time (current-time)))
1128 (/ (+ (* (car time) 65536.0) (car (cdr time))) 3600.0))
1130 (defun ido-cache-ftp-valid (&optional time)
1131 (and (numberp ido-cache-ftp-work-directory-time)
1132 (> ido-cache-ftp-work-directory-time 0)
1133 (or (not time)
1134 (< (- (ido-time-stamp) time) ido-cache-ftp-work-directory-time))))
1136 (defun ido-may-cache-directory (&optional dir)
1137 (setq dir (or dir ido-current-directory))
1138 (cond
1139 ((ido-directory-too-big-p dir)
1140 nil)
1141 ((and (ido-is-root-directory dir)
1142 (or ido-enable-tramp-completion
1143 (memq system-type '(windows-nt ms-dos))))
1144 nil)
1145 ((not (ido-is-ftp-directory dir))
1147 ((ido-cache-ftp-valid)
1148 t)))
1150 (defun ido-pp (list &optional sep)
1151 (let ((print-level nil) (eval-expression-print-level nil)
1152 (print-length nil) (eval-expression-print-length nil))
1153 (insert "\n;; ----- " (symbol-name list) " -----\n(\n ")
1154 (setq list (symbol-value list))
1155 (while list
1156 (let* ((elt (car list))
1157 (s (if (consp elt) (car elt) elt)))
1158 (if (and (stringp s) (= (length s) 0))
1159 (setq s nil))
1160 (if s
1161 (prin1 elt (current-buffer)))
1162 (if (and (setq list (cdr list)) s)
1163 (insert (or sep "\n ")))))
1164 (insert "\n)\n")))
1166 (defun ido-save-history ()
1167 "Save ido history and cache information between sessions."
1168 (interactive)
1169 (if (and ido-last-directory-list ido-save-directory-list-file)
1170 (save-excursion
1171 (save-window-excursion
1172 (if (find-buffer-visiting ido-save-directory-list-file)
1173 (kill-buffer (find-buffer-visiting ido-save-directory-list-file)))
1174 (if (file-exists-p ido-save-directory-list-file)
1175 (delete-file ido-save-directory-list-file))
1176 (set-buffer (let ((enable-local-variables nil))
1177 (find-file-noselect ido-save-directory-list-file t)))
1178 (goto-char (point-min))
1179 (delete-region (point-min) (point-max))
1180 (ido-pp 'ido-last-directory-list)
1181 (ido-pp 'ido-work-directory-list)
1182 (ido-pp 'ido-work-file-list)
1183 (ido-pp 'ido-dir-file-cache "\n\n ")
1184 (insert "\n")
1185 (let ((version-control 'never))
1186 (write-file ido-save-directory-list-file nil))
1187 (kill-buffer (current-buffer))))))
1189 (defun ido-load-history (&optional arg)
1190 "Load ido history and cache information from previous session.
1191 With prefix argument, reload history unconditionally."
1192 (interactive "P")
1193 (if (or arg (and ido-save-directory-list-file (not ido-last-directory-list)))
1194 (let ((file (expand-file-name ido-save-directory-list-file))
1195 buf)
1196 (when (file-readable-p file)
1197 (save-excursion
1198 (save-window-excursion
1199 (setq buf (set-buffer (let ((enable-local-variables nil))
1200 (find-file-noselect file))))
1201 (goto-char (point-min))
1202 (condition-case nil
1203 (setq ido-last-directory-list (read (current-buffer))
1204 ido-work-directory-list (read (current-buffer))
1205 ido-work-file-list (read (current-buffer))
1206 ido-dir-file-cache (read (current-buffer)))
1207 (error nil))))
1208 (kill-buffer buf))))
1209 (ido-wash-history))
1211 (defun ido-wash-history ()
1212 "Clean-up ido history and cache information.
1213 Removes badly formatted data and ignored directories."
1214 (interactive)
1215 ;; Check format of each of our lists, discard bogus elements
1216 (setq ido-last-directory-list
1217 (and (listp ido-last-directory-list)
1218 (let ((l ido-last-directory-list) r)
1219 (while l
1220 (if (and (consp (car l))
1221 (stringp (car (car l)))
1222 (stringp (cdr (car l))))
1223 (setq r (cons (car l) r)))
1224 (setq l (cdr l)))
1225 (nreverse r))))
1226 (setq ido-work-directory-list
1227 (and (listp ido-work-directory-list)
1228 (let ((l ido-work-directory-list) r)
1229 (while l
1230 (if (and (stringp (car l))
1231 (or ido-record-ftp-work-directories
1232 (not (ido-is-ftp-directory (car l)))))
1233 (setq r (cons (car l) r)))
1234 (setq l (cdr l)))
1235 (nreverse r))))
1236 (setq ido-work-file-list
1237 (and (listp ido-work-file-list)
1238 (let ((l ido-work-file-list) r)
1239 (while l
1240 (if (stringp (car l))
1241 (setq r (cons (car l) r)))
1242 (setq l (cdr l)))
1243 (nreverse r))))
1244 (setq ido-dir-file-cache
1245 (and (listp ido-dir-file-cache)
1246 (let ((l ido-dir-file-cache) r)
1247 (while l
1248 (if (and (listp (car l))
1249 (> (length (car l)) 2)
1250 (let ((dir (car (car l)))
1251 (time (car (cdr (car l))))
1252 (files (cdr (cdr (car l)))))
1253 (and
1254 (stringp dir)
1255 (consp time)
1256 (if (integerp (car time))
1257 (and (/= (car time) 0)
1258 (integerp (car (cdr time)))
1259 (/= (car (cdr time)) 0)
1260 (ido-may-cache-directory dir))
1261 (and (eq (car time) 'ftp)
1262 (numberp (cdr time))
1263 (ido-is-ftp-directory dir)
1264 (ido-cache-ftp-valid (cdr time))))
1265 (let ((s files) (ok t))
1266 (while s
1267 (if (stringp (car s))
1268 (setq s (cdr s))
1269 (setq s nil ok nil)))
1270 ok))))
1271 (setq r (cons (car l) r)))
1272 (setq l (cdr l)))
1273 (nreverse r))))
1275 ;; Remove ignored directories from work directory list
1276 ;; according to ido-work-directory-list-ignore-regexps
1277 (if ido-work-directory-list
1278 (let ((dirs (reverse ido-work-directory-list)))
1279 (setq ido-work-directory-list nil)
1280 (while dirs
1281 (ido-record-work-directory (car dirs))
1282 (setq dirs (cdr dirs)))))
1283 ;; Get rid of text properties
1284 (let ((l ido-last-directory-list) e)
1285 (while l
1286 (setq e (car l) l (cdr l))
1287 (set-text-properties 0 (length (car e)) nil (car e))
1288 (set-text-properties 0 (length (cdr e)) nil (cdr e))))
1289 (let ((l ido-work-directory-list) e)
1290 (while l
1291 (setq e (car l) l (cdr l))
1292 (set-text-properties 0 (length e) nil e)))
1293 (let ((l ido-work-file-list) e)
1294 (while l
1295 (setq e (car l) l (cdr l))
1296 (set-text-properties 0 (length e) nil e)))
1297 (let ((l ido-dir-file-cache) e d)
1298 (while l
1299 (setq e (car l) l (cdr l))
1300 (if (listp e)
1301 (while e
1302 (setq d (car e) e (cdr e))
1303 (if (not (consp d))
1304 (set-text-properties 0 (length d) nil d))))))
1308 (defun ido-kill-emacs-hook ()
1309 ;; ido kill emacs hook
1310 (ido-save-history))
1312 (defvar ido-minor-mode-map-entry nil)
1314 ;;;###autoload
1315 (defun ido-mode (&optional arg)
1316 "Toggle ido speed-ups on or off.
1317 With ARG, turn ido speed-up on if arg is positive, off otherwise.
1318 Turning on ido-mode will remap (via a minor-mode keymap) the default
1319 keybindings for the `find-file' and `switch-to-buffer' families of
1320 commands to the ido versions of these functions.
1321 However, if ARG arg equals 'files, remap only commands for files, or
1322 if it equals 'buffers, remap only commands for buffer switching.
1323 This function also adds a hook to the minibuffer."
1324 (interactive "P")
1325 (setq ido-mode
1326 (cond
1327 ((null arg) (if ido-mode nil 'both))
1328 ((eq arg t) 'both)
1329 ((eq arg 'files) 'file)
1330 ((eq arg 'buffers) 'buffer)
1331 ((memq arg '(file buffer both)) arg)
1332 ((> (prefix-numeric-value arg) 0) 'both)
1333 (t nil)))
1335 (ido-everywhere (if ido-everywhere 1 -1))
1337 (when ido-mode
1338 (add-hook 'minibuffer-setup-hook 'ido-minibuffer-setup)
1339 (add-hook 'choose-completion-string-functions 'ido-choose-completion-string)
1340 (ido-load-history)
1342 (add-hook 'kill-emacs-hook 'ido-kill-emacs-hook)
1344 (if ido-minor-mode-map-entry
1345 (setcdr ido-minor-mode-map-entry (make-sparse-keymap))
1346 (setq ido-minor-mode-map-entry (cons 'ido-mode (make-sparse-keymap)))
1347 (add-to-list 'minor-mode-map-alist ido-minor-mode-map-entry))
1349 (let ((map (cdr ido-minor-mode-map-entry)))
1350 (when (memq ido-mode '(file both))
1351 (define-key map [remap find-file] 'ido-find-file)
1352 (define-key map [remap find-file-read-only] 'ido-find-file-read-only)
1353 (define-key map [remap find-alternate-file] 'ido-find-alternate-file)
1354 (define-key map [remap write-file] 'ido-write-file)
1355 (define-key map [remap insert-file] 'ido-insert-file)
1356 (define-key map [remap list-directory] 'ido-list-directory)
1357 (define-key map [remap dired] 'ido-dired)
1358 (define-key map [remap find-file-other-window] 'ido-find-file-other-window)
1359 (define-key map [remap find-file-read-only-other-window] 'ido-find-file-read-only-other-window)
1360 (define-key map [remap find-file-other-frame] 'ido-find-file-other-frame)
1361 (define-key map [remap find-file-read-only-other-frame] 'ido-find-file-read-only-other-frame))
1363 (when (memq ido-mode '(buffer both))
1364 (define-key map [remap switch-to-buffer] 'ido-switch-buffer)
1365 (define-key map [remap switch-to-buffer-other-window] 'ido-switch-buffer-other-window)
1366 (define-key map [remap switch-to-buffer-other-frame] 'ido-switch-buffer-other-frame)
1367 (define-key map [remap insert-buffer] 'ido-insert-buffer)
1368 (define-key map [remap kill-buffer] 'ido-kill-buffer)
1369 (define-key map [remap display-buffer] 'ido-display-buffer)))))
1371 (defun ido-everywhere (arg)
1372 "Toggle using ido speed-ups everywhere file and directory names are read.
1373 With ARG, turn ido speed-up on if arg is positive, off otherwise."
1374 (interactive "P")
1375 (setq ido-everywhere (if arg
1376 (> (prefix-numeric-value arg) 0)
1377 (not ido-everywhere)))
1378 (when (get 'ido-everywhere 'file)
1379 (setq read-file-name-function (car (get 'ido-everywhere 'file)))
1380 (put 'ido-everywhere 'file nil))
1381 (when (get 'ido-everywhere 'buffer)
1382 (setq read-buffer-function (car (get 'ido-everywhere 'buffer)))
1383 (put 'ido-everywhere 'buffer nil))
1384 (when ido-everywhere
1385 (when (memq ido-mode '(both file))
1386 (put 'ido-everywhere 'file (cons read-file-name-function nil))
1387 (setq read-file-name-function 'ido-read-file-name))
1388 (when (memq ido-mode '(both buffer))
1389 (put 'ido-everywhere 'buffer (cons read-buffer-function nil))
1390 (setq read-buffer-function 'ido-read-buffer))))
1393 ;;; IDO KEYMAP
1394 (defun ido-define-mode-map ()
1395 "Set up the keymap for `ido'."
1396 (let (map)
1397 ;; generated every time so that it can inherit new functions.
1399 (setq map (copy-keymap minibuffer-local-map))
1400 (define-key map "\C-a" 'ido-toggle-ignore)
1401 (define-key map "\C-c" 'ido-toggle-case)
1402 (define-key map "\C-e" 'ido-edit-input)
1403 (define-key map "\t" 'ido-complete)
1404 (define-key map " " 'ido-complete-space)
1405 (define-key map "\C-j" 'ido-select-text)
1406 (define-key map "\C-m" 'ido-exit-minibuffer)
1407 (define-key map "\C-p" 'ido-toggle-prefix)
1408 (define-key map "\C-r" 'ido-prev-match)
1409 (define-key map "\C-s" 'ido-next-match)
1410 (define-key map "\C-t" 'ido-toggle-regexp)
1411 (define-key map "\C-z" 'ido-undo-merge-work-directory)
1412 (define-key map [(control ?\s)] 'ido-restrict-to-matches)
1413 (define-key map [(control ?@)] 'ido-restrict-to-matches)
1414 (define-key map [right] 'ido-next-match)
1415 (define-key map [left] 'ido-prev-match)
1416 (define-key map "?" 'ido-completion-help)
1418 ;; Magic commands.
1419 (define-key map "\C-b" 'ido-magic-backward-char)
1420 (define-key map "\C-f" 'ido-magic-forward-char)
1421 (define-key map "\C-d" 'ido-magic-delete-char)
1423 (when (memq ido-cur-item '(file dir))
1424 (define-key map "\C-x\C-b" (or ido-context-switch-command 'ido-enter-switch-buffer))
1425 (define-key map "\C-x\C-f" 'ido-fallback-command)
1426 (define-key map "\C-x\C-d" (or (and ido-context-switch-command 'ignore) 'ido-enter-dired))
1427 (define-key map [down] 'ido-next-match-dir)
1428 (define-key map [up] 'ido-prev-match-dir)
1429 (define-key map [(meta up)] 'ido-prev-work-directory)
1430 (define-key map [(meta down)] 'ido-next-work-directory)
1431 (define-key map [backspace] 'ido-delete-backward-updir)
1432 (define-key map "\d" 'ido-delete-backward-updir)
1433 (define-key map [(meta backspace)] 'ido-delete-backward-word-updir)
1434 (define-key map [(control backspace)] 'ido-up-directory)
1435 (define-key map "\C-l" 'ido-reread-directory)
1436 (define-key map [(meta ?d)] 'ido-wide-find-dir-or-delete-dir)
1437 (define-key map [(meta ?b)] 'ido-push-dir)
1438 (define-key map [(meta ?f)] 'ido-wide-find-file-or-pop-dir)
1439 (define-key map [(meta ?k)] 'ido-forget-work-directory)
1440 (define-key map [(meta ?m)] 'ido-make-directory)
1441 (define-key map [(meta ?n)] 'ido-next-work-directory)
1442 (define-key map [(meta ?o)] 'ido-prev-work-file)
1443 (define-key map [(meta control ?o)] 'ido-next-work-file)
1444 (define-key map [(meta ?p)] 'ido-prev-work-directory)
1445 (define-key map [(meta ?s)] 'ido-merge-work-directories)
1448 (when (eq ido-cur-item 'file)
1449 (define-key map "\C-k" 'ido-delete-file-at-head)
1450 (define-key map "\C-o" 'ido-copy-current-word)
1451 (define-key map "\C-w" 'ido-copy-current-file-name)
1452 (define-key map [(meta ?l)] 'ido-toggle-literal)
1453 (define-key map "\C-v" 'ido-toggle-vc)
1456 (when (eq ido-cur-item 'buffer)
1457 (define-key map "\C-x\C-f" (or ido-context-switch-command 'ido-enter-find-file))
1458 (define-key map "\C-x\C-b" 'ido-fallback-command)
1459 (define-key map "\C-k" 'ido-kill-buffer-at-head)
1462 (when (if (boundp 'viper-mode) viper-mode)
1463 (define-key map [remap viper-intercept-ESC-key] 'ignore)
1464 (when (memq ido-cur-item '(file dir))
1465 (define-key map [remap viper-backward-char] 'ido-delete-backward-updir)
1466 (define-key map [remap viper-del-backward-char-in-insert] 'ido-delete-backward-updir)
1467 (define-key map [remap viper-delete-backward-word] 'ido-delete-backward-word-updir)))
1469 (setq ido-mode-map map)))
1471 (defun ido-final-slash (dir &optional fix-it)
1472 ;; return DIR if DIR has final slash.
1473 ;; else if FIX-IT is non-nil, return DIR/
1474 ;; else return nil.
1475 (setq dir (ido-name dir))
1476 (cond
1477 ((string-match "/\\'" dir) dir)
1478 ((ido-is-tramp-root dir) dir)
1479 (fix-it (concat dir "/"))
1480 (t nil)))
1482 (defun ido-no-final-slash (s)
1483 ;; Remove optional final slash from string S
1484 (let ((l (1- (length s))))
1485 (if (and (> l 0) (eq (aref s l) ?/))
1486 (substring s 0 l)
1487 s)))
1489 (defun ido-nonreadable-directory-p (dir)
1490 ;; Return t if dir is a directory, but not readable
1491 ;; Do not check for non-readable directories via tramp, as this causes a premature
1492 ;; connect on incomplete tramp paths (after entring just method:).
1493 (let ((ido-enable-tramp-completion nil))
1494 (and (ido-final-slash dir)
1495 (file-directory-p dir)
1496 (not (file-readable-p dir)))))
1498 (defun ido-directory-too-big-p (dir)
1499 ;; Return t if dir is a directory, but too big to show
1500 ;; Do not check for non-readable directories via tramp, as this causes a premature
1501 ;; connect on incomplete tramp paths (after entring just method:).
1502 (let ((ido-enable-tramp-completion nil))
1503 (and (numberp ido-max-directory-size)
1504 (ido-final-slash dir)
1505 (file-directory-p dir)
1506 (> (nth 7 (file-attributes dir)) ido-max-directory-size))))
1508 (defun ido-set-current-directory (dir &optional subdir no-merge)
1509 ;; Set ido's current directory to DIR or DIR/SUBDIR
1510 (unless (and ido-enable-tramp-completion
1511 (string-match "\\`/[^/]*@\\'" dir))
1512 (setq dir (ido-final-slash dir t)))
1513 (setq ido-use-merged-list nil
1514 ido-try-merged-list (not no-merge))
1515 (when subdir
1516 (setq dir (concat dir subdir))
1517 (unless (and ido-enable-tramp-completion
1518 (string-match "\\`/[^/]*@\\'" dir))
1519 (setq dir (ido-final-slash dir t))))
1520 (if (equal dir ido-current-directory)
1522 (ido-trace "cd" dir)
1523 (setq ido-current-directory dir)
1524 (if (get-buffer ido-completion-buffer)
1525 (kill-buffer ido-completion-buffer))
1526 (setq ido-directory-nonreadable (ido-nonreadable-directory-p dir))
1527 (setq ido-directory-too-big (and (not ido-directory-nonreadable)
1528 (ido-directory-too-big-p dir)))
1531 (defun ido-set-current-home (&optional dir)
1532 ;; Set ido's current directory to user's home directory
1533 (ido-set-current-directory (expand-file-name (or dir "~/"))))
1535 (defun ido-record-command (command arg)
1536 ;; Add (command arg) to command-history if ido-record-commands is t
1537 (if ido-record-commands
1538 (let ((cmd (list command arg)))
1539 (if (or (not command-history)
1540 (not (equal cmd (car command-history))))
1541 (setq command-history (cons cmd command-history))))))
1543 (defun ido-make-prompt (item prompt)
1544 ;; Make the prompt for ido-read-internal
1545 (cond
1546 ((and (memq item '(file dir)) ido-current-directory)
1547 (let ((dirname (abbreviate-file-name ido-current-directory))
1548 (max-width (if (and ido-max-file-prompt-width (floatp ido-max-file-prompt-width))
1549 (floor (* (frame-width) ido-max-file-prompt-width))
1550 ido-max-file-prompt-width))
1551 (literal (and (boundp 'ido-find-literal) ido-find-literal "(literal) "))
1552 (vc-off (and ido-saved-vc-hb (not vc-handled-backends) "[-VC] "))
1553 (prefix nil)
1554 (rule ido-rewrite-file-prompt-rules))
1555 (let ((case-fold-search nil))
1556 (while rule
1557 (if (and (consp (car rule))
1558 (string-match (car (car rule)) dirname))
1559 (setq dirname
1560 (if (stringp (cdr (car rule)))
1561 (replace-match (cdr (car rule)) t nil dirname)
1562 (funcall (cdr (car rule)) dirname))))
1563 (setq rule (cdr rule))))
1564 (run-hooks 'ido-rewrite-file-prompt-functions)
1565 (concat prompt
1566 ; (if ido-process-ignore-lists "" "&")
1567 (or literal "")
1568 (or vc-off "")
1569 (or prefix "")
1570 (let ((l (length dirname)))
1571 (if (and max-width (> max-width 0) (> l max-width))
1572 (let* ((s (substring dirname (- max-width)))
1573 (i (string-match "/" s)))
1574 (concat "..." (if i (substring s i) s)))
1575 dirname)))))
1576 (t prompt)))
1578 ;; Here is very briefly how ido-find-file works:
1580 ;; (ido-find-file)
1581 ;; (ido-file-internal method)
1582 ;; set ido-current-directory
1583 ;; (ido-read-internal 'file ...)
1584 ;; (while ...
1585 ;; (ido-make-item-list ...)
1586 ;; (ido-set-matches)
1587 ;; (completing-read ... ido-text-init ...)
1589 ;; ... here user is allowed to type characters and commands
1590 ;; a command may set ido-exit and call (exit-minibuffer)
1591 ;; to make ido-read-internal do advanced tasks (or return)
1593 ;; ... ido-tidy and ido-exhibit are pre- and post-hooks
1594 ;; which are run before and after each user command.
1596 ;; return value from completing-read is stored in ido-final-text
1597 ;; - ido-exit may cause further actions to be taken:
1598 ;; 'refresh - repeat loop (make-item-list, set-matches)
1599 ;; 'edit - edit the prompt string, then repeat loop
1600 ;; 'keep - repeat loop but don't (re)make-item-list
1601 ;; 'updir - go up one directory, repeat loop
1602 ;; else set ido-selected based on ido-final-text,
1603 ;; optionally update ido-current-directory and repeat loop, or
1604 ;; exit with the return value of ido-selected (file name)
1605 ;; selected file name is returned from ido-read-internal,
1606 ;; ido-exit and method determines what action is taken
1607 ;; e.g. the file name may be ignored or joined with ido-current-directory, and
1608 ;; the relevant function is called (find-file, write-file, etc).
1610 (defun ido-read-internal (item prompt history &optional default require-match initial)
1611 "Perform the ido-read-buffer and ido-read-file-name functions.
1612 Return the name of a buffer or file selected.
1613 PROMPT is the prompt to give to the user.
1614 DEFAULT if given is the default directory to start with.
1615 If REQUIRE-MATCH is non-nil, an existing file must be selected.
1616 If INITIAL is non-nil, it specifies the initial input string."
1617 (let
1618 ((ido-cur-item item)
1619 (ido-entry-buffer (current-buffer))
1620 (ido-process-ignore-lists t)
1621 (ido-process-ignore-lists-inhibit nil)
1622 (ido-set-default-item t)
1623 ido-default-item
1624 ido-selected
1625 ido-final-text
1626 (done nil)
1627 (icomplete-mode nil) ;; prevent icomplete starting up
1628 ;; Exported dynamic variables:
1629 ido-cur-list
1630 ido-ignored-list
1631 (ido-rotate-temp nil)
1632 (ido-keep-item-list nil)
1633 (ido-use-merged-list nil)
1634 (ido-try-merged-list t)
1635 (ido-pre-merge-state nil)
1636 (ido-case-fold ido-case-fold)
1637 (ido-enable-prefix ido-enable-prefix)
1638 (ido-enable-regexp ido-enable-regexp)
1641 (ido-define-mode-map)
1642 (setq ido-text-init initial)
1643 (setq ido-input-stack nil)
1645 (run-hooks 'ido-setup-hook)
1647 (while (not done)
1648 (ido-trace "\n_LOOP_" ido-text-init)
1649 (setq ido-exit nil)
1650 (setq ido-rescan t)
1651 (setq ido-rotate nil)
1652 (setq ido-text "")
1653 (when ido-set-default-item
1654 (setq ido-default-item
1655 (cond
1656 ((eq item 'buffer)
1657 (if (bufferp default) (buffer-name default) default))
1658 ((stringp default) default)
1659 ((eq item 'file)
1660 (and ido-enable-last-directory-history
1661 (let ((d (assoc ido-current-directory ido-last-directory-list)))
1662 (and d (cdr d)))))))
1663 (if (member ido-default-item ido-ignore-item-temp-list)
1664 (setq ido-default-item nil))
1665 (setq ido-set-default-item nil))
1667 (if ido-process-ignore-lists-inhibit
1668 (setq ido-process-ignore-lists nil))
1670 (if (and ido-use-merged-list (memq ido-try-merged-list '(t wide)) (not ido-keep-item-list))
1671 (let ((olist ido-cur-list)
1672 (oign ido-ignored-list)
1673 (omat ido-matches)
1674 (l (ido-make-merged-file-list ido-text-init
1675 (eq ido-use-merged-list 'auto)
1676 (eq ido-try-merged-list 'wide))))
1677 (ido-trace "merged" l)
1678 (cond
1679 ((not l)
1680 (if (eq ido-try-merged-list 'wide)
1681 (setq ido-pre-merge-state
1682 (list "" ido-current-directory olist oign omat)
1683 ido-cur-list nil
1684 ido-ignored-list nil
1685 ido-matches nil
1686 ido-keep-item-list t
1687 ido-try-merged-list (if (eq ido-use-merged-list 'auto) 'auto nil)
1688 ido-use-merged-list nil)
1689 (setq ido-cur-list olist
1690 ido-ignored-list oign
1691 ido-matches omat
1692 ido-keep-item-list t
1693 ido-try-merged-list (if (eq ido-use-merged-list 'auto) 'auto nil)
1694 ido-use-merged-list nil)))
1695 ((eq l t)
1696 (setq ido-use-merged-list nil))
1697 ((eq l 'input-pending-p)
1698 (setq ido-try-merged-list t
1699 ido-use-merged-list nil))
1701 (setq ido-pre-merge-state
1702 (list ido-text-init ido-current-directory olist oign omat))
1703 (ido-set-current-directory (car (cdr (car l))))
1704 (if (ido-final-slash ido-text-init)
1705 (setq ido-text-init ""))
1706 (setq ido-cur-list l
1707 ido-ignored-list nil
1708 ido-matches l
1709 ido-rescan nil
1710 ido-keep-item-list t
1711 ido-use-merged-list t)
1712 (ido-trace "Merged" t)
1713 ))))
1715 (cond
1716 (ido-keep-item-list
1717 (setq ido-keep-item-list nil
1718 ido-rescan nil))
1719 ((eq ido-cur-item 'file)
1720 (setq ido-ignored-list nil
1721 ido-cur-list (and (not ido-directory-nonreadable)
1722 (not ido-directory-too-big)
1723 (ido-make-file-list ido-default-item))))
1724 ((eq ido-cur-item 'dir)
1725 (setq ido-ignored-list nil
1726 ido-cur-list (and (not ido-directory-nonreadable)
1727 (not ido-directory-too-big)
1728 (ido-make-dir-list ido-default-item))))
1729 ((eq ido-cur-item 'buffer)
1730 (setq ido-ignored-list nil
1731 ido-cur-list (ido-make-buffer-list ido-default-item)))
1732 ((eq ido-cur-item 'list)
1733 (setq ido-ignored-list nil
1734 ido-cur-list (ido-make-choice-list ido-default-item)))
1735 (t nil))
1736 (setq ido-rotate-temp nil)
1738 (if ido-process-ignore-lists-inhibit
1739 (setq ido-process-ignore-lists t
1740 ido-process-ignore-lists-inhibit nil))
1742 (ido-set-matches)
1743 (if (and ido-matches (eq ido-try-merged-list 'auto))
1744 (setq ido-try-merged-list t))
1745 (let
1746 ((minibuffer-local-completion-map ido-mode-map)
1747 (max-mini-window-height (or ido-max-window-height
1748 (and (boundp 'max-mini-window-height) max-mini-window-height)))
1749 (ido-completing-read t)
1750 (ido-require-match require-match)
1751 (ido-use-mycompletion-depth (1+ (minibuffer-depth)))
1752 (show-paren-mode nil))
1753 ;; prompt the user for the file name
1754 (setq ido-exit nil)
1755 (setq ido-final-text
1756 (catch 'ido
1757 (completing-read
1758 (ido-make-prompt item prompt)
1759 '(("dummy" . 1)) nil nil ; table predicate require-match
1760 (prog1 ido-text-init (setq ido-text-init nil)) ;initial-contents
1761 history))))
1762 (ido-trace "completing-read" ido-final-text)
1763 (if (get-buffer ido-completion-buffer)
1764 (kill-buffer ido-completion-buffer))
1766 (ido-trace "\n_EXIT_" ido-exit)
1768 (cond
1769 ((eq ido-exit 'refresh)
1770 (if (and (eq ido-use-merged-list 'auto)
1771 (or (input-pending-p)))
1772 (setq ido-use-merged-list nil
1773 ido-keep-item-list t))
1774 nil)
1776 ((eq ido-exit 'done)
1777 (setq done t
1778 ido-selected ido-text
1779 ido-exit nil))
1781 ((memq ido-exit '(edit chdir))
1782 (cond
1783 ((memq ido-cur-item '(file dir))
1784 (let* ((read-file-name-function nil)
1785 (edit (eq ido-exit 'edit))
1786 (d ido-current-directory)
1787 (f ido-text-init)
1788 (new t))
1789 (setq ido-text-init "")
1790 (while new
1791 (setq new (if edit
1792 (condition-case nil
1793 (read-file-name (concat prompt "[EDIT] ")
1794 (expand-file-name d)
1795 (concat d f) nil f)
1796 (quit (concat d f)))
1798 d (or (file-name-directory new) "/")
1799 f (file-name-nondirectory new)
1800 edit t)
1801 (if (or
1802 (file-directory-p d)
1803 (and (yes-or-no-p (format "Create directory %s? " d))
1804 (condition-case nil
1805 (progn (make-directory d t) t)
1806 (error
1807 (message "Could not create directory")
1808 (sit-for 1)
1809 nil))))
1810 (progn
1811 (ido-set-current-directory d nil (eq ido-exit 'chdir))
1812 (setq ido-text-init f
1813 new nil))))))
1815 (setq ido-text-init
1816 (condition-case nil
1817 (read-string (concat prompt "[EDIT] ") ido-final-text)
1818 (quit ido-final-text)))))
1820 nil)
1822 ((eq ido-exit 'keep)
1823 (setq ido-keep-item-list t))
1825 ((memq ido-exit '(dired fallback find-file switch-to-buffer insert-buffer insert-file))
1826 (setq done t))
1828 ((memq ido-exit '(updir push))
1829 ;; cannot go up if already at the root-dir (Unix) or at the
1830 ;; root-dir of a certain drive (Windows or MS-DOS).
1831 (if (ido-is-tramp-root)
1832 (when (string-match "\\`\\(/\\([^/]+[:@]\\)*\\)\\([^/]+\\)[:@]\\'" ido-current-directory)
1833 (setq ido-text-init (match-string 3 ido-current-directory))
1834 (ido-set-current-directory (match-string 1 ido-current-directory))
1835 (setq ido-set-default-item t))
1836 (unless (ido-is-root-directory)
1837 (when (eq ido-exit 'push)
1838 (setq ido-input-stack (cons (cons ido-cur-item ido-text) ido-input-stack))
1839 (setq ido-cur-item 'dir)
1840 (setq ido-text-init (file-name-nondirectory (substring ido-current-directory 0 -1)))
1841 (ido-trace "push" ido-input-stack))
1842 (ido-set-current-directory (file-name-directory (substring ido-current-directory 0 -1)))
1843 (setq ido-set-default-item t))))
1845 ((eq ido-exit 'pop)
1846 (ido-trace "pop" ido-input-stack)
1847 (let ((elt (car ido-input-stack)))
1848 (setq ido-input-stack (cdr ido-input-stack))
1849 (ido-set-current-directory (concat ido-current-directory ido-text))
1850 (setq ido-cur-item (car elt))
1851 (setq ido-text-init (cdr elt))))
1853 ((eq ido-exit 'pop-all)
1854 (ido-trace "pop-all" ido-input-stack)
1855 (while ido-input-stack
1856 (let ((elt (car ido-input-stack)))
1857 (setq ido-input-stack (cdr ido-input-stack))
1858 (ido-set-current-directory (concat ido-current-directory ido-text))
1859 (setq ido-cur-item (car elt))
1860 (setq ido-text-init (cdr elt)))))
1862 ;; Handling the require-match must be done in a better way.
1863 ((and require-match
1864 (not (if ido-directory-too-big
1865 (file-exists-p (concat ido-current-directory ido-final-text))
1866 (ido-existing-item-p))))
1867 (error "must specify valid item"))
1870 (setq ido-selected
1871 (if (or (eq ido-exit 'takeprompt)
1872 (null ido-matches))
1873 ido-final-text
1874 ;; else take head of list
1875 (ido-name (car ido-matches))))
1877 (cond
1878 ((memq item '(buffer list))
1879 (setq done t))
1881 ((string-equal "./" ido-selected)
1882 nil)
1884 ((string-equal "../" ido-selected)
1885 ;; cannot go up if already at the root-dir (Unix) or at the
1886 ;; root-dir of a certain drive (Windows or MS-DOS).
1887 (or (ido-is-root-directory)
1888 (ido-set-current-directory (file-name-directory (substring ido-current-directory 0 -1))))
1889 (setq ido-set-default-item t))
1891 ((and (string-match (if ido-enable-tramp-completion "..[:@]\\'" "..:\\'") ido-selected)
1892 (ido-is-root-directory)) ;; Ange-ftp or Tramp
1893 (ido-set-current-directory ido-current-directory ido-selected)
1894 (ido-trace "tramp prefix" ido-selected)
1895 (if (ido-is-slow-ftp-host)
1896 (setq ido-exit 'fallback
1897 done t)
1898 (setq ido-set-default-item t)))
1899 ((or (string-match "[/\\][^/\\]" ido-selected)
1900 (and (memq system-type '(windows-nt ms-dos))
1901 (string-match "\\`.:" ido-selected)))
1902 (ido-set-current-directory (file-name-directory ido-selected))
1903 (setq ido-set-default-item t))
1905 ((string-match "\\`~" ido-selected)
1906 (ido-set-current-home ido-selected))
1908 ((ido-final-slash ido-selected)
1909 (if ido-enable-last-directory-history
1910 (let ((x (assoc ido-current-directory ido-last-directory-list)))
1911 (if x
1912 (setcdr x ido-selected)
1913 (setq ido-last-directory-list
1914 (cons (cons ido-current-directory ido-selected) ido-last-directory-list)))))
1915 (ido-set-current-directory ido-current-directory ido-selected)
1916 (if ido-input-stack
1917 (while ido-input-stack
1918 (let ((elt (car ido-input-stack)))
1919 (if (setq ido-input-stack (cdr ido-input-stack))
1920 (ido-set-current-directory ido-current-directory (cdr elt))
1921 (setq ido-text-init (cdr elt)))
1922 (setq ido-cur-item (car elt))))
1923 (setq ido-set-default-item t)))
1926 (setq done t))))))
1927 ido-selected))
1929 (defun ido-edit-input ()
1930 "Edit absolute file name entered so far with ido; terminate by RET."
1931 (interactive)
1932 (setq ido-text-init ido-text)
1933 (setq ido-exit 'edit)
1934 (exit-minibuffer))
1936 ;;; MAIN FUNCTIONS
1937 (defun ido-buffer-internal (method &optional fallback prompt default initial switch-cmd)
1938 ;; Internal function for ido-switch-buffer and friends
1939 (if (not ido-mode)
1940 (progn
1941 (run-hook-with-args 'ido-before-fallback-functions
1942 (or fallback 'switch-to-buffer))
1943 (call-interactively (or fallback 'switch-to-buffer)))
1944 (let* ((ido-context-switch-command switch-cmd)
1945 (ido-current-directory nil)
1946 (ido-directory-nonreadable nil)
1947 (ido-directory-too-big nil)
1948 (buf (ido-read-internal 'buffer (or prompt "Buffer: ") 'ido-buffer-history default nil initial)))
1950 ;; Choose the buffer name: either the text typed in, or the head
1951 ;; of the list of matches
1953 (cond
1954 ((eq ido-exit 'find-file)
1955 (ido-file-internal ido-default-file-method nil nil nil nil ido-text))
1957 ((eq ido-exit 'insert-file)
1958 (ido-file-internal 'insert 'insert-file nil "Insert file: " nil ido-text 'ido-enter-insert-buffer))
1960 ((eq ido-exit 'fallback)
1961 (let ((read-buffer-function nil))
1962 (run-hook-with-args 'ido-before-fallback-functions
1963 (or fallback 'switch-to-buffer))
1964 (call-interactively (or fallback 'switch-to-buffer))))
1966 ;; Check buf is non-nil.
1967 ((not buf) nil)
1968 ((= (length buf) 0) nil)
1970 ;; View buffer if it exists
1971 ((get-buffer buf)
1972 (if (eq method 'insert)
1973 (progn
1974 (ido-record-command 'insert-buffer buf)
1975 (with-no-warnings
1976 ;; we really want to run insert-buffer here
1977 (insert-buffer buf)))
1978 (ido-visit-buffer buf method t)))
1980 ;; buffer doesn't exist
1981 ((eq ido-create-new-buffer 'never)
1982 (message "no buffer matching `%s'" buf))
1984 ((and (eq ido-create-new-buffer 'prompt)
1985 (not (y-or-n-p (format "No buffer matching `%s', create one? " buf))))
1986 nil)
1988 ;; create a new buffer
1990 (setq buf (get-buffer-create buf))
1991 (if (fboundp 'set-buffer-major-mode)
1992 (set-buffer-major-mode buf))
1993 (ido-visit-buffer buf method t))))))
1995 (defun ido-record-work-directory (&optional dir)
1996 (when (and (numberp ido-max-work-directory-list) (> ido-max-work-directory-list 0))
1997 (if (and (setq dir (or dir ido-current-directory)) (> (length dir) 0))
1998 (let ((items ido-work-directory-list-ignore-regexps)
1999 (case-fold-search nil))
2000 (while (and items dir)
2001 (if (string-match (car items) dir)
2002 (setq dir nil))
2003 (setq items (cdr items)))
2004 (if dir
2005 (setq ido-work-directory-list (cons dir (delete dir ido-work-directory-list))))))
2006 (if (> (length ido-work-directory-list) ido-max-work-directory-list)
2007 (setcdr (nthcdr (1- ido-max-work-directory-list) ido-work-directory-list) nil))))
2009 (defun ido-forget-work-directory ()
2010 (interactive)
2011 (when (and ido-current-directory ido-work-directory-list)
2012 (setq ido-work-directory-list (delete ido-current-directory ido-work-directory-list))
2013 (when ido-use-merged-list
2014 (ido-undo-merge-work-directory)
2015 (setq ido-exit 'refresh
2016 ido-try-merged-list t
2017 ido-use-merged-list t
2018 ido-text-init ido-text
2019 ido-rotate-temp t)
2020 (exit-minibuffer))))
2022 (defun ido-record-work-file (name)
2023 ;; Save NAME in ido-work-file-list
2024 (when (and (numberp ido-max-work-file-list) (> ido-max-work-file-list 0))
2026 (and ido-work-file-list (equal (car ido-work-file-list) name))
2027 (setq ido-work-file-list (cons name (delete name ido-work-file-list))))
2028 (if (> (length ido-work-file-list) ido-max-work-file-list)
2029 (setcdr (nthcdr (1- ido-max-work-file-list) ido-work-file-list) nil))))
2031 (defun ido-expand-directory (dir)
2032 ;; Expand DIR or use DEFAULT-DIRECTORY if nil.
2033 ;; Add final slash to result in case it was missing from DEFAULT-DIRECTORY.
2034 (ido-final-slash (expand-file-name (or dir default-directory)) t))
2036 (defun ido-file-internal (method &optional fallback default prompt item initial switch-cmd)
2037 ;; Internal function for ido-find-file and friends
2038 (unless item
2039 (setq item 'file))
2040 (let ((ido-current-directory (ido-expand-directory default))
2041 (ido-context-switch-command switch-cmd)
2042 ido-directory-nonreadable ido-directory-too-big
2043 (minibuffer-completing-file-name t)
2044 filename)
2046 (if (or (not ido-mode) (ido-is-slow-ftp-host))
2047 (setq filename t
2048 ido-exit 'fallback)
2049 (setq ido-directory-nonreadable
2050 (ido-nonreadable-directory-p ido-current-directory)
2051 ido-directory-too-big
2052 (and (not ido-directory-nonreadable)
2053 (ido-directory-too-big-p ido-current-directory))))
2055 (when (and (eq item 'file)
2056 (or ido-use-url-at-point ido-use-filename-at-point))
2057 (let (fn d)
2058 (require 'ffap)
2059 ;; Duplicate code from ffap-guesser as we want different behaviour for files and URLs.
2060 (cond
2061 ((with-no-warnings
2062 (and ido-use-url-at-point
2063 ffap-url-regexp
2064 (ffap-fixup-url (or (ffap-url-at-point)
2065 (ffap-gopher-at-point)))))
2066 (setq ido-exit 'ffap
2067 filename t))
2069 ((and ido-use-filename-at-point
2070 (setq fn (if (eq ido-use-filename-at-point 'guess)
2071 (with-no-warnings (ffap-guesser))
2072 (ffap-string-at-point)))
2073 (not (string-match "^http:/" fn))
2074 (setq d (file-name-directory fn))
2075 (file-directory-p d))
2076 (setq ido-current-directory d)
2077 (setq initial (file-name-nondirectory fn))))))
2079 (let (ido-saved-vc-hb
2080 (vc-handled-backends (and (boundp 'vc-handled-backends) vc-handled-backends))
2081 (ido-work-directory-index -1)
2082 (ido-work-file-index -1)
2083 (ido-find-literal nil))
2085 (unless filename
2086 (setq ido-saved-vc-hb vc-handled-backends)
2087 (setq filename (ido-read-internal item
2088 (or prompt "Find file: ")
2089 'ido-file-history nil nil initial)))
2091 ;; Choose the file name: either the text typed in, or the head
2092 ;; of the list of matches
2094 (cond
2095 ((eq ido-exit 'fallback)
2096 ;; Need to guard setting of default-directory here, since
2097 ;; we don't want to change directory of current buffer.
2098 (let ((default-directory ido-current-directory)
2099 (read-file-name-function nil))
2100 (run-hook-with-args 'ido-before-fallback-functions
2101 (or fallback 'find-file))
2102 (call-interactively (or fallback 'find-file))))
2104 ((eq ido-exit 'switch-to-buffer)
2105 (ido-buffer-internal ido-default-buffer-method nil nil nil ido-text))
2107 ((eq ido-exit 'insert-buffer)
2108 (ido-buffer-internal 'insert 'insert-buffer "Insert buffer: " nil ido-text 'ido-enter-insert-file))
2110 ((eq ido-exit 'dired)
2111 (dired (concat ido-current-directory (or ido-text ""))))
2113 ((eq ido-exit 'ffap)
2114 (find-file-at-point))
2116 ((eq method 'alt-file)
2117 (ido-record-work-file filename)
2118 (setq default-directory ido-current-directory)
2119 (ido-record-work-directory)
2120 (find-alternate-file filename))
2122 ((memq method '(dired list-directory))
2123 (if (equal filename ".")
2124 (setq filename ""))
2125 (let* ((dirname (ido-final-slash (concat ido-current-directory filename) t))
2126 (file (substring dirname 0 -1)))
2127 (cond
2128 ((file-directory-p dirname)
2129 (ido-record-command method dirname)
2130 (ido-record-work-directory dirname)
2131 (funcall method dirname))
2132 ((file-directory-p ido-current-directory)
2133 (cond
2134 ((file-exists-p file)
2135 (ido-record-command method ido-current-directory)
2136 (ido-record-work-directory)
2137 (funcall method ido-current-directory)
2138 (if (eq method 'dired)
2139 (with-no-warnings
2140 (dired-goto-file (expand-file-name file)))))
2141 ((string-match "[[*?]" filename)
2142 (setq dirname (concat ido-current-directory filename))
2143 (ido-record-command method dirname)
2144 (ido-record-work-directory)
2145 (funcall method dirname))
2146 ((y-or-n-p (format "Directory %s does not exist. Create it? " filename))
2147 (ido-record-command method dirname)
2148 (ido-record-work-directory dirname)
2149 (make-directory-internal dirname)
2150 (funcall method dirname))
2152 ;; put make-directory command on history
2153 (ido-record-command 'make-directory dirname))))
2154 (t (error "No such directory")))))
2156 ((eq method 'write)
2157 (ido-record-work-file filename)
2158 (setq default-directory ido-current-directory)
2159 (ido-record-command 'write-file (concat ido-current-directory filename))
2160 (ido-record-work-directory)
2161 (write-file filename))
2163 ((eq method 'read-only)
2164 (ido-record-work-file filename)
2165 (setq filename (concat ido-current-directory filename))
2166 (ido-record-command fallback filename)
2167 (ido-record-work-directory)
2168 (run-hook-with-args 'ido-before-fallback-functions fallback)
2169 (funcall fallback filename))
2171 ((eq method 'insert)
2172 (ido-record-work-file filename)
2173 (setq filename (concat ido-current-directory filename))
2174 (ido-record-command
2175 (if ido-find-literal 'insert-file-literally 'insert-file)
2176 filename)
2177 (ido-record-work-directory)
2178 (if ido-find-literal
2179 (insert-file-contents-literally filename)
2180 (insert-file-contents filename)))
2182 (filename
2183 (ido-record-work-file filename)
2184 (setq filename (concat ido-current-directory filename))
2185 (ido-record-command 'find-file filename)
2186 (ido-record-work-directory)
2187 (ido-visit-buffer (find-file-noselect filename nil ido-find-literal) method))))))
2189 (defun ido-existing-item-p ()
2190 ;; Return non-nil if there is a matching item
2191 (not (null ido-matches)))
2193 ;;; COMPLETION CODE
2195 (defun ido-set-common-completion ()
2196 ;; Find common completion of `ido-text' in `ido-matches'
2197 ;; The result is stored in `ido-common-match-string'
2198 (let* (val)
2199 (setq ido-common-match-string nil)
2200 (if (and ido-matches
2201 (not ido-enable-regexp) ;; testing
2202 (stringp ido-text)
2203 (> (length ido-text) 0))
2204 (if (setq val (ido-find-common-substring ido-matches ido-text))
2205 (setq ido-common-match-string val)))
2206 val))
2208 (defun ido-complete ()
2209 "Try and complete the current pattern amongst the file names."
2210 (interactive)
2211 (let (res)
2212 (cond
2213 (ido-incomplete-regexp
2214 ;; Do nothing
2216 ((and (memq ido-cur-item '(file dir))
2217 (string-match "[$]" ido-text))
2218 (let ((evar (substitute-in-file-name (concat ido-current-directory ido-text))))
2219 (if (not (file-exists-p (file-name-directory evar)))
2220 (message "Expansion generates non-existing directory name")
2221 (if (file-directory-p evar)
2222 (ido-set-current-directory evar)
2223 (let ((d (or (file-name-directory evar) "/"))
2224 (f (file-name-nondirectory evar)))
2225 (when (file-directory-p d)
2226 (ido-set-current-directory d)
2227 (setq ido-text-init f))))
2228 (setq ido-exit 'refresh)
2229 (exit-minibuffer))))
2231 (ido-directory-too-big
2232 (setq ido-directory-too-big nil)
2233 (setq ido-text-init ido-text)
2234 (setq ido-exit 'refresh)
2235 (exit-minibuffer))
2237 ((not ido-matches)
2238 (when ido-completion-buffer
2239 (call-interactively (setq this-command ido-cannot-complete-command))))
2241 ((and (= 1 (length ido-matches))
2242 (not (and ido-enable-tramp-completion
2243 (string-equal ido-current-directory "/")
2244 (string-match "..[@:]\\'" (car ido-matches)))))
2245 ;; only one choice, so select it.
2246 (if (not ido-confirm-unique-completion)
2247 (exit-minibuffer)
2248 (setq ido-rescan (not ido-enable-prefix))
2249 (delete-region (minibuffer-prompt-end) (point))
2250 (insert (car ido-matches))))
2252 (t ;; else there could be some completions
2253 (setq res ido-common-match-string)
2254 (if (and (not (memq res '(t nil)))
2255 (not (equal res ido-text)))
2256 ;; found something to complete, so put it in the minibuffer.
2257 (progn
2258 ;; move exact match to front if not in prefix mode
2259 (setq ido-rescan (not ido-enable-prefix))
2260 (delete-region (minibuffer-prompt-end) (point))
2261 (insert res))
2262 ;; else nothing to complete
2263 (call-interactively (setq this-command ido-cannot-complete-command))
2264 )))))
2266 (defun ido-complete-space ()
2267 "Try completion unless inserting the space makes sense."
2268 (interactive)
2269 (if (and (stringp ido-common-match-string)
2270 (stringp ido-text)
2271 (cond
2272 ((> (length ido-common-match-string) (length ido-text))
2273 (= (aref ido-common-match-string (length ido-text)) ? ))
2274 (ido-matches
2275 (let (insert-space
2276 (re (concat (regexp-quote ido-text) " "))
2277 (comp ido-matches))
2278 (while comp
2279 (if (string-match re (ido-name (car comp)))
2280 (setq comp nil insert-space t)
2281 (setq comp (cdr comp))))
2282 insert-space))
2283 (t nil)))
2284 (insert " ")
2285 (ido-complete)))
2287 (defun ido-undo-merge-work-directory (&optional text try refresh)
2288 "Undo or redo last ido directory merge operation.
2289 If no merge has yet taken place, toggle automatic merging option."
2290 (interactive)
2291 (cond
2292 (ido-pre-merge-state
2293 (ido-set-current-directory (nth 1 ido-pre-merge-state))
2294 (setq ido-text-init (or text (car ido-pre-merge-state))
2295 ido-cur-list (nth 2 ido-pre-merge-state)
2296 ido-ignored-list (nth 3 ido-pre-merge-state)
2297 ido-matches (nth 4 ido-pre-merge-state)
2298 ido-use-merged-list nil
2299 ido-try-merged-list try
2300 ido-keep-item-list (not refresh)
2301 ido-rescan nil
2302 ido-exit 'refresh
2303 ido-pre-merge-state nil)
2304 (exit-minibuffer))
2305 (text
2306 nil)
2307 (ido-try-merged-list
2308 (setq ido-try-merged-list nil))
2309 (ido-matches
2310 (setq ido-try-merged-list t))
2311 ((not ido-use-merged-list)
2312 (ido-merge-work-directories))))
2314 ;;; Magic C-f
2316 (defun ido-magic-forward-char ()
2317 "Move forward in user input or perform magic action.
2318 If no user input is present, or at end of input, perform magic actions:
2319 C-x C-b ... C-f switch to ido-find-file.
2320 C-x C-f ... C-f fallback to non-ido find-file.
2321 C-x C-d ... C-f fallback to non-ido brief dired.
2322 C-x d ... C-f fallback to non-ido dired."
2323 (interactive)
2324 (cond
2325 ((not (eobp))
2326 (forward-char 1))
2327 ((memq ido-cur-item '(file dir))
2328 (ido-fallback-command))
2329 (ido-context-switch-command
2330 (call-interactively ido-context-switch-command))
2331 ((eq ido-cur-item 'buffer)
2332 (ido-enter-find-file))))
2334 ;;; Magic C-b
2336 (defun ido-magic-backward-char ()
2337 "Move backward in user input or perform magic action.
2338 If no user input is present, or at start of input, perform magic actions:
2339 C-x C-f C-b switch to ido-switch-buffer.
2340 C-x C-d C-b switch to ido-switch-buffer.
2341 C-x d C-b switch to ido-switch-buffer.
2342 C-x C-b C-b fallback to non-ido switch-to-buffer."
2343 (interactive)
2344 (cond
2345 ((> (point) (minibuffer-prompt-end))
2346 (forward-char -1))
2347 ((eq ido-cur-item 'buffer)
2348 (ido-fallback-command))
2349 (ido-context-switch-command
2350 (call-interactively ido-context-switch-command))
2352 (ido-enter-switch-buffer))))
2354 ;;; Magic C-d
2356 (defun ido-magic-delete-char ()
2357 "Delete following char in user input or perform magic action.
2358 If at end of user input, perform magic actions:
2359 C-x C-f ... C-d enter dired on current directory."
2360 (interactive)
2361 (cond
2362 ((not (eobp))
2363 (delete-char 1))
2364 (ido-context-switch-command
2365 nil)
2366 ((memq ido-cur-item '(file dir))
2367 (ido-enter-dired))))
2370 ;;; TOGGLE FUNCTIONS
2372 (defun ido-toggle-case ()
2373 "Toggle the value of `ido-case-fold'."
2374 (interactive)
2375 (setq ido-case-fold (not ido-case-fold))
2376 ;; ask for list to be regenerated.
2377 (setq ido-rescan t))
2379 (defun ido-toggle-regexp ()
2380 "Toggle the value of `ido-enable-regexp'."
2381 (interactive)
2382 (setq ido-enable-regexp (not ido-enable-regexp))
2383 ;; ask for list to be regenerated.
2384 (setq ido-rescan t))
2386 (defun ido-toggle-prefix ()
2387 "Toggle the value of `ido-enable-prefix'."
2388 (interactive)
2389 (setq ido-enable-prefix (not ido-enable-prefix))
2390 ;; ask for list to be regenerated.
2391 (setq ido-rescan t))
2393 (defun ido-toggle-ignore ()
2394 "Toggle ignoring files specified with `ido-ignore-files'."
2395 (interactive)
2396 (if ido-directory-too-big
2397 (setq ido-directory-too-big nil)
2398 (setq ido-process-ignore-lists (not ido-process-ignore-lists)))
2399 (setq ido-text-init ido-text)
2400 (setq ido-exit 'refresh)
2401 (exit-minibuffer))
2403 (defun ido-toggle-vc ()
2404 "Disable version control for this file."
2405 (interactive)
2406 (if (and ido-mode (eq ido-cur-item 'file))
2407 (progn
2408 (setq vc-handled-backends
2409 (if vc-handled-backends nil ido-saved-vc-hb))
2410 (setq ido-text-init ido-text)
2411 (setq ido-exit 'keep)
2412 (exit-minibuffer))))
2414 (defun ido-toggle-literal ()
2415 "Toggle literal reading of this file."
2416 (interactive)
2417 (if (and ido-mode (eq ido-cur-item 'file))
2418 (progn
2419 (setq ido-find-literal (not ido-find-literal))
2420 (setq ido-text-init ido-text)
2421 (setq ido-exit 'keep)
2422 (exit-minibuffer))))
2424 (defun ido-reread-directory ()
2425 "Read current directory again.
2426 May be useful if cached version is no longer valid, but directory
2427 timestamp has not changed (e.g. with ftp or on Windows)."
2428 (interactive)
2429 (if (and ido-mode (eq ido-cur-item 'file))
2430 (progn
2431 (ido-remove-cached-dir ido-current-directory)
2432 (setq ido-text-init ido-text)
2433 (setq ido-rotate-temp t)
2434 (setq ido-exit 'refresh)
2435 (exit-minibuffer))))
2437 (defun ido-exit-minibuffer ()
2438 "Exit minibuffer, but make sure we have a match if one is needed."
2439 (interactive)
2440 (if (and (or (not ido-require-match)
2441 (ido-existing-item-p))
2442 (not ido-incomplete-regexp))
2443 (exit-minibuffer)))
2445 (defun ido-select-text ()
2446 "Select the buffer or file named by the prompt.
2447 If no buffer or file exactly matching the prompt exists, maybe create a new one."
2448 (interactive)
2449 (setq ido-exit 'takeprompt)
2450 (exit-minibuffer))
2452 (defun ido-fallback-command ()
2453 "Fallback to non-ido version of current command."
2454 (interactive)
2455 (let ((i (length ido-text)))
2456 (while (> i 0)
2457 (push (aref ido-text (setq i (1- i))) unread-command-events)))
2458 (setq ido-exit 'fallback)
2459 (exit-minibuffer))
2461 (defun ido-enter-find-file ()
2462 "Drop into `find-file' from buffer switching."
2463 (interactive)
2464 (setq ido-exit 'find-file)
2465 (exit-minibuffer))
2467 (defun ido-enter-switch-buffer ()
2468 "Drop into `ido-switch-buffer' from file switching."
2469 (interactive)
2470 (setq ido-exit 'switch-to-buffer)
2471 (exit-minibuffer))
2473 (defun ido-enter-dired ()
2474 "Drop into dired from file switching."
2475 (interactive)
2476 (setq ido-exit 'dired)
2477 (exit-minibuffer))
2479 (defun ido-enter-insert-buffer ()
2480 "Drop into insert buffer from insert file."
2481 (interactive)
2482 (setq ido-exit 'insert-buffer)
2483 (exit-minibuffer))
2485 (defun ido-enter-insert-file ()
2486 "Drop into insert file from insert buffer."
2487 (interactive)
2488 (setq ido-exit 'insert-file)
2489 (exit-minibuffer))
2492 (defun ido-up-directory (&optional clear)
2493 "Go up one directory level."
2494 (interactive "P")
2495 (setq ido-text-init (if clear nil ido-text))
2496 (setq ido-exit 'updir)
2497 (setq ido-rotate-temp t)
2498 (exit-minibuffer))
2500 (defun ido-delete-backward-updir (count)
2501 "Delete char backwards, or at beginning of buffer, go up one level."
2502 (interactive "P")
2503 (cond
2504 ((= (minibuffer-prompt-end) (point))
2505 (if (not count)
2506 (ido-up-directory t)))
2507 ((and ido-pre-merge-state (string-equal (car ido-pre-merge-state) ido-text))
2508 (ido-undo-merge-work-directory (substring ido-text 0 -1) t t))
2509 ((eq this-original-command 'viper-backward-char)
2510 (funcall this-original-command (prefix-numeric-value count)))
2511 ((eq this-original-command 'viper-del-backward-char-in-insert)
2512 (funcall this-original-command))
2514 (delete-backward-char (prefix-numeric-value count)))))
2516 (defun ido-delete-backward-word-updir (count)
2517 "Delete all chars backwards, or at beginning of buffer, go up one level."
2518 (interactive "P")
2519 (if (= (minibuffer-prompt-end) (point))
2520 (if (not count)
2521 (ido-up-directory t))
2522 (if (eq this-original-command 'viper-delete-backward-word)
2523 (funcall this-original-command (prefix-numeric-value count))
2524 (backward-kill-word (prefix-numeric-value count)))))
2526 (defun ido-get-work-directory (&optional incr must-match)
2527 (let ((n (length ido-work-directory-list))
2528 (i ido-work-directory-index)
2529 (j 0)
2530 dir)
2531 (if (or (not ido-text) (= (length ido-text) 0))
2532 (setq must-match nil))
2533 (while (< j n)
2534 (setq i (+ i incr)
2535 j (1+ j))
2536 (if (> incr 0)
2537 (if (>= i n) (setq i 0))
2538 (if (< i 0) (setq i (1- n))))
2539 (setq dir (nth i ido-work-directory-list))
2540 (if (and dir
2541 (not (equal dir ido-current-directory))
2542 (file-directory-p dir)
2543 (or (not must-match)
2544 ;; TODO. check for nonreadable and too-big.
2545 (ido-set-matches-1
2546 (if (eq ido-cur-item 'file)
2547 (ido-make-file-list-1 dir)
2548 (ido-make-dir-list-1 dir)))))
2549 (setq j n)
2550 (setq dir nil)))
2551 (if dir
2552 (setq ido-work-directory-index i))
2553 dir))
2555 (defun ido-prev-work-directory ()
2556 "Change to next working directory in list."
2557 (interactive)
2558 (let ((dir (ido-get-work-directory 1 ido-work-directory-match-only)))
2559 (when dir
2560 (ido-set-current-directory dir)
2561 (setq ido-exit 'refresh)
2562 (setq ido-text-init ido-text)
2563 (setq ido-rotate-temp t)
2564 (exit-minibuffer))))
2566 (defun ido-next-work-directory ()
2567 "Change to previous working directory in list."
2568 (interactive)
2569 (let ((dir (ido-get-work-directory -1 ido-work-directory-match-only)))
2570 (when dir
2571 (ido-set-current-directory dir)
2572 (setq ido-exit 'refresh)
2573 (setq ido-text-init ido-text)
2574 (setq ido-rotate-temp t)
2575 (exit-minibuffer))))
2577 (defun ido-merge-work-directories ()
2578 "Search (and merge) work directories for files matching the current input string."
2579 (interactive)
2580 (setq ido-use-merged-list t ido-try-merged-list t)
2581 (setq ido-exit 'refresh)
2582 (setq ido-text-init ido-text)
2583 (setq ido-rotate-temp t)
2584 (exit-minibuffer))
2586 (defun ido-wide-find-file (&optional file)
2587 "Prompt for FILE to search for using find, starting from current directory."
2588 (interactive)
2589 (unless file
2590 (let ((enable-recursive-minibuffers t))
2591 (setq file
2592 (condition-case nil
2593 (read-string (concat "Wide find file: " ido-current-directory) ido-text)
2594 (quit "")))))
2595 (when (> (length file) 0)
2596 (setq ido-use-merged-list t ido-try-merged-list 'wide)
2597 (setq ido-exit 'refresh)
2598 (setq ido-text-init file)
2599 (setq ido-rotate-temp t)
2600 (exit-minibuffer)))
2602 (defun ido-wide-find-dir (&optional dir)
2603 "Prompt for DIR to search for using find, starting from current directory."
2604 (interactive)
2605 (unless dir
2606 (let ((enable-recursive-minibuffers t))
2607 (setq dir
2608 (condition-case nil
2609 (read-string (concat "Wide find directory: " ido-current-directory) ido-text)
2610 (quit "")))))
2611 (when (> (length dir) 0)
2612 (setq ido-use-merged-list t ido-try-merged-list 'wide)
2613 (setq ido-exit 'refresh)
2614 (setq ido-text-init (ido-final-slash dir t))
2615 (setq ido-rotate-temp t)
2616 (exit-minibuffer)))
2618 (defun ido-wide-find-dir-or-delete-dir (&optional dir)
2619 "Prompt for DIR to search for using find, starting from current directory.
2620 If input stack is non-empty, delete current directory component."
2621 (interactive)
2622 (if ido-input-stack
2623 (ido-delete-backward-word-updir 1)
2624 (ido-wide-find-dir)))
2626 (defun ido-push-dir ()
2627 "Move to previous directory in file name, push current input on stack."
2628 (interactive)
2629 (setq ido-exit 'push)
2630 (exit-minibuffer))
2632 (defun ido-pop-dir (arg)
2633 "Pop directory from input stack back to input.
2634 With \\[universal-argument], pop all element."
2635 (interactive "P")
2636 (when ido-input-stack
2637 (setq ido-exit (if arg 'pop-all 'pop))
2638 (exit-minibuffer)))
2640 (defun ido-wide-find-file-or-pop-dir (arg)
2641 (interactive "P")
2642 (if ido-input-stack
2643 (ido-pop-dir arg)
2644 (ido-wide-find-file)))
2646 (defun ido-make-directory (&optional dir)
2647 "Prompt for DIR to create in current directory."
2648 (interactive)
2649 (unless dir
2650 (let ((enable-recursive-minibuffers t))
2651 (setq dir
2652 (read-string (concat "Make directory: " ido-current-directory) ido-text))))
2653 (when (> (length dir) 0)
2654 (setq dir (concat ido-current-directory dir))
2655 (unless (file-exists-p dir)
2656 (make-directory dir t)
2657 (ido-set-current-directory dir)
2658 (setq ido-exit 'refresh)
2659 (setq ido-text-init nil)
2660 (setq ido-rotate-temp t)
2661 (exit-minibuffer))))
2663 (defun ido-get-work-file (incr)
2664 (let ((n (length ido-work-file-list))
2665 (i (+ ido-work-file-index incr))
2666 name)
2667 (if (> incr 0)
2668 (if (>= i n) (setq i 0))
2669 (if (< i 0) (setq i (1- n))))
2670 (setq name (nth i ido-work-file-list))
2671 (setq ido-work-file-index i)
2672 name))
2674 (defun ido-prev-work-file ()
2675 "Change to next working file name in list."
2676 (interactive)
2677 (let ((name (ido-get-work-file 1)))
2678 (when name
2679 (setq ido-text-init name)
2680 (setq ido-exit 'refresh)
2681 (exit-minibuffer))))
2683 (defun ido-next-work-file ()
2684 "Change to previous working file name in list."
2685 (interactive)
2686 (let ((name (ido-get-work-file -1)))
2687 (when name
2688 (setq ido-text-init name)
2689 (setq ido-exit 'refresh)
2690 (exit-minibuffer))))
2692 (defun ido-copy-current-file-name (all)
2693 "Insert file name of current buffer.
2694 If repeated, insert text from buffer instead."
2695 (interactive "P")
2696 (let* ((bfname (buffer-file-name ido-entry-buffer))
2697 (name (and bfname (file-name-nondirectory bfname))))
2698 (when name
2699 (setq ido-text-init
2700 (if (or all
2701 (not (equal (file-name-directory bfname) ido-current-directory))
2702 (not (string-match "\\.[^.]*\\'" name)))
2703 name
2704 (substring name 0 (1+ (match-beginning 0)))))
2705 (setq ido-exit 'refresh
2706 ido-try-merged-list nil)
2707 (exit-minibuffer))))
2709 (defun ido-copy-current-word (all)
2710 "Insert current word (file or directory name) from current buffer."
2711 (interactive "P")
2712 (let ((word (save-excursion
2713 (set-buffer ido-entry-buffer)
2714 (let ((p (point)) start-line end-line start-name name)
2715 (beginning-of-line)
2716 (setq start-line (point))
2717 (end-of-line)
2718 (setq end-line (point))
2719 (goto-char p)
2720 (if (re-search-backward "[^-_a-zA-Z0-9:./\\~@]" start-line 1)
2721 (forward-char 1))
2722 (setq start-name (point))
2723 (re-search-forward "[-_a-zA-Z0-9:./\\~@]*" end-line 1)
2724 (if (= start-name (point))
2726 (buffer-substring-no-properties start-name (point)))))))
2727 (if (cond
2728 ((not word) nil)
2729 ((string-match "\\`[~/]" word)
2730 (setq ido-text-init word
2731 ido-try-merged-list nil
2732 ido-exit 'chdir))
2733 ((string-match "/" word)
2734 (setq ido-text-init (concat ido-current-directory word)
2735 ido-try-merged-list nil
2736 ido-exit 'chdir))
2738 (setq ido-text-init word
2739 ido-try-merged-list nil
2740 ido-exit 'refresh)))
2741 (exit-minibuffer))))
2743 (defun ido-next-match ()
2744 "Put first element of `ido-matches' at the end of the list."
2745 (interactive)
2746 (if ido-matches
2747 (let ((next (cadr ido-matches)))
2748 (setq ido-cur-list (ido-chop ido-cur-list next))
2749 (setq ido-rescan t)
2750 (setq ido-rotate t))))
2752 (defun ido-prev-match ()
2753 "Put last element of `ido-matches' at the front of the list."
2754 (interactive)
2755 (if ido-matches
2756 (let ((prev (car (last ido-matches))))
2757 (setq ido-cur-list (ido-chop ido-cur-list prev))
2758 (setq ido-rescan t)
2759 (setq ido-rotate t))))
2761 (defun ido-next-match-dir ()
2762 "Find next directory in match list.
2763 If work directories have been merged, cycle through directories for
2764 first matching file."
2765 (interactive)
2766 (if ido-use-merged-list
2767 (if ido-matches
2768 (let* ((elt (car ido-matches))
2769 (dirs (cdr elt)))
2770 (when (> (length dirs) 1)
2771 (setcdr elt (ido-chop dirs (cadr dirs))))
2772 (setq ido-rescan nil)))
2773 (let ((cnt (length ido-matches))
2774 (i 1))
2775 (while (and (< i cnt) (not (ido-final-slash (nth i ido-matches))))
2776 (setq i (1+ i)))
2777 (if (< i cnt)
2778 (setq ido-cur-list (ido-chop ido-cur-list (nth i ido-matches)))))))
2780 (defun ido-prev-match-dir ()
2781 "Find previous directory in match list.
2782 If work directories have been merged, cycle through directories
2783 for first matching file."
2784 (interactive)
2785 (if ido-use-merged-list
2786 (if ido-matches
2787 (let* ((elt (car ido-matches))
2788 (dirs (cdr elt)))
2789 (when (> (length dirs) 1)
2790 (setcdr elt (ido-chop dirs (car (last dirs)))))
2791 (setq ido-rescan nil)))
2792 (let* ((cnt (length ido-matches))
2793 (i (1- cnt)))
2794 (while (and (> i 0) (not (ido-final-slash (nth i ido-matches))))
2795 (setq i (1- i)))
2796 (if (> i 0)
2797 (setq ido-cur-list (ido-chop ido-cur-list (nth i ido-matches)))))))
2799 (defun ido-restrict-to-matches ()
2800 "Set current item list to the currently matched items."
2801 (interactive)
2802 (when ido-matches
2803 (setq ido-cur-list ido-matches
2804 ido-text-init ""
2805 ido-rescan nil
2806 ido-exit 'keep)
2807 (exit-minibuffer)))
2809 (defun ido-chop (items elem)
2810 "Remove all elements before ELEM and put them at the end of ITEMS."
2811 (let ((ret nil)
2812 (next nil)
2813 (sofar nil))
2814 (while (not ret)
2815 (setq next (car items))
2816 (if (equal next elem)
2817 (setq ret (append items (nreverse sofar)))
2818 ;; else
2819 (progn
2820 (setq items (cdr items))
2821 (setq sofar (cons next sofar)))))
2822 ret))
2824 (defun ido-name (item)
2825 ;; Return file name for current item, whether in a normal list
2826 ;; or a merged work directory list.
2827 (if (consp item) (car item) item))
2830 ;;; CREATE LIST OF ALL CURRENT FILES
2832 (defun ido-all-completions ()
2833 ;; Return unsorted list of all competions.
2834 (let ((ido-process-ignore-lists nil)
2835 (ido-directory-too-big nil))
2836 (cond
2837 ((eq ido-cur-item 'file)
2838 (ido-make-file-list-1 ido-current-directory))
2839 ((eq ido-cur-item 'dir)
2840 (ido-make-dir-list-1 ido-current-directory))
2841 ((eq ido-cur-item 'buffer)
2842 (ido-make-buffer-list-1))
2843 ((eq ido-cur-item 'list)
2844 ido-choice-list)
2845 (t nil))))
2848 ;; File list sorting
2850 (defun ido-file-lessp (a b)
2851 ;; Simple compare two file names.
2852 (string-lessp (ido-no-final-slash a) (ido-no-final-slash b)))
2855 (defun ido-file-extension-lessp (a b)
2856 ;; Compare file names according to ido-file-extensions-order list.
2857 (let ((n (compare-strings a 0 nil b 0 nil nil))
2858 lessp p)
2859 (if (eq n t)
2861 (if (< n 0)
2862 (setq n (1- (- n))
2863 p a a b b p
2864 lessp t)
2865 (setq n (1- n)))
2866 (cond
2867 ((= n 0)
2868 lessp)
2869 ((= (aref a n) ?.)
2870 (ido-file-extension-aux a b n lessp))
2872 (while (and (> n 2) (/= (aref a n) ?.))
2873 (setq n (1- n)))
2874 (if (> n 1)
2875 (ido-file-extension-aux a b n lessp)
2876 lessp))))))
2878 (defun ido-file-extension-aux (a b n lessp)
2879 (let ((oa (ido-file-extension-order a n))
2880 (ob (ido-file-extension-order b n)))
2881 (cond
2882 ((= oa ob)
2883 lessp)
2884 ((and oa ob)
2885 (if lessp
2886 (> oa ob)
2887 (< oa ob)))
2889 (not lessp))
2891 lessp)
2893 lessp))))
2895 (defun ido-file-extension-order (s n)
2896 (let ((l ido-file-extensions-order)
2897 (i 0) o do)
2898 (while l
2899 (cond
2900 ((eq (car l) t)
2901 (setq do i
2902 l (cdr l)))
2903 ((eq (compare-strings s n nil (car l) 0 nil nil) t)
2904 (setq o i
2905 l nil))
2907 (setq l (cdr l))))
2908 (setq i (1+ i)))
2909 (or o do)))
2912 (defun ido-sort-merged-list (items promote)
2913 ;; Input is list of ("file" . "dir") cons cells.
2914 ;; Output is sorted list of ("file "dir" ...) lists
2915 (let ((l (sort items (lambda (a b) (string-lessp (car b) (car a)))))
2916 res a cur dirs)
2917 (while l
2918 (setq a (car l)
2919 l (cdr l))
2920 (if (and res (string-equal (car (car res)) (car a)))
2921 (progn
2922 (setcdr (car (if cur (cdr res) res)) (cons (cdr a) (cdr (car res))))
2923 (if (and promote (string-equal ido-current-directory (cdr a)))
2924 (setq cur t)))
2925 (setq res (cons (list (car a) (cdr a)) res)
2926 cur nil)))
2927 res))
2929 (defun ido-wide-find-dirs-or-files (dir file &optional prefix finddir)
2930 ;; As ido-run-find-command, but returns a list of cons pairs ("file" . "dir")
2931 (let ((filenames
2932 (split-string
2933 (shell-command-to-string
2934 (concat "find " dir " -name \"" (if prefix "" "*") file "*\" -type " (if finddir "d" "f") " -print"))))
2935 filename d f
2936 res)
2937 (while filenames
2938 (setq filename (car filenames)
2939 filenames (cdr filenames))
2940 (if (and (string-match "^/" filename)
2941 (file-exists-p filename))
2942 (setq d (file-name-directory filename)
2943 f (file-name-nondirectory filename)
2944 res (cons (cons (if finddir (ido-final-slash f t) f) d) res))))
2945 res))
2947 (defun ido-flatten-merged-list (items)
2948 ;; Create a list of directory names based on a merged directory list.
2949 (let (res)
2950 (while items
2951 (let* ((item (car items))
2952 (file (car item))
2953 (dirs (cdr item)))
2954 (while dirs
2955 (setq res (cons (concat (car dirs) file) res)
2956 dirs (cdr dirs))))
2957 (setq items (cdr items)))
2958 res))
2961 (defun ido-make-merged-file-list-1 (text auto wide)
2962 (let (res)
2963 (if (and (ido-final-slash text) ido-dir-file-cache)
2964 (if wide
2965 (setq res (ido-wide-find-dirs-or-files
2966 ido-current-directory (substring text 0 -1) ido-enable-prefix t))
2967 ;; Use list of cached directories
2968 (let ((re (concat (regexp-quote (substring text 0 -1)) "[^/:]*/\\'"))
2969 (dirs ido-dir-file-cache)
2970 dir b d f)
2971 (if nil ;; simple
2972 (while dirs
2973 (setq dir (car (car dirs))
2974 dirs (cdr dirs))
2975 (when (and (string-match re dir)
2976 (not (ido-ignore-item-p dir ido-ignore-directories-merge))
2977 (file-directory-p dir))
2978 (setq b (substring dir 0 -1)
2979 f (concat (file-name-nondirectory b) "/")
2980 d (file-name-directory b)
2981 res (cons (cons f d) res))))
2982 (while dirs
2983 (setq dir (car dirs)
2984 d (car dir)
2985 dirs (cdr dirs))
2986 (when (not (ido-ignore-item-p d ido-ignore-directories-merge))
2987 (setq dir (cdr (cdr dir)))
2988 (while dir
2989 (setq f (car dir)
2990 dir (cdr dir))
2991 (if (and (string-match re f)
2992 (not (ido-ignore-item-p f ido-ignore-directories)))
2993 (setq res (cons (cons f d) res)))))
2994 (if (and auto (input-pending-p))
2995 (setq dirs nil
2996 res t))))))
2997 (if wide
2998 (setq res (ido-wide-find-dirs-or-files
2999 ido-current-directory text ido-enable-prefix nil))
3000 (let ((ido-text text)
3001 (dirs ido-work-directory-list)
3002 (must-match (and text (> (length text) 0)))
3003 dir fl)
3004 (if (and auto (not (member ido-current-directory dirs)))
3005 (setq dirs (cons ido-current-directory dirs)))
3006 (while dirs
3007 (setq dir (car dirs)
3008 dirs (cdr dirs))
3009 (when (and dir (stringp dir)
3010 (or ido-merge-ftp-work-directories
3011 (not (ido-is-ftp-directory dir)))
3012 (file-directory-p dir)
3013 ;; TODO. check for nonreadable and too-big.
3014 (setq fl (if (eq ido-cur-item 'file)
3015 (ido-make-file-list-1 dir t)
3016 (ido-make-dir-list-1 dir t))))
3017 (if must-match
3018 (setq fl (ido-set-matches-1 fl)))
3019 (if fl
3020 (setq res (nconc fl res))))
3021 (if (and auto (input-pending-p))
3022 (setq dirs nil
3023 res t))))))
3024 res))
3026 (defun ido-make-merged-file-list (text auto wide)
3027 (let (res)
3028 (message "Searching for `%s'...." text)
3029 (condition-case nil
3030 (if (eq t (setq res
3031 (while-no-input
3032 (ido-make-merged-file-list-1 text auto wide))))
3033 (setq res 'input-pending-p))
3034 (quit
3035 (setq res t
3036 ido-try-merged-list nil
3037 ido-use-merged-list nil)))
3038 (when (and res (listp res))
3039 (setq res (ido-sort-merged-list res auto)))
3040 (when (and (or ido-rotate-temp ido-rotate-file-list-default)
3041 (listp res)
3042 (> (length text) 0))
3043 (let ((elt (assoc text res)))
3044 (when (and elt (not (eq elt (car res))))
3045 (setq res (delq elt res))
3046 (setq res (cons elt res)))))
3047 (message nil)
3048 res))
3050 (defun ido-make-buffer-list-1 (&optional frame visible)
3051 ;; Return list of non-ignored buffer names
3052 (delq nil
3053 (mapcar
3054 (lambda (x)
3055 (let ((name (buffer-name x)))
3056 (if (not (or (ido-ignore-item-p name ido-ignore-buffers) (member name visible)))
3057 name)))
3058 (buffer-list frame))))
3060 (defun ido-make-buffer-list (default)
3061 ;; Return the current list of buffers.
3062 ;; Currently visible buffers are put at the end of the list.
3063 ;; The hook `ido-make-buffer-list-hook' is run after the list has been
3064 ;; created to allow the user to further modify the order of the buffer names
3065 ;; in this list. If DEFAULT is non-nil, and corresponds to an existing buffer,
3066 ;; it is put to the start of the list.
3067 (let* ((ido-current-buffers (ido-get-buffers-in-frames 'current))
3068 (ido-temp-list (ido-make-buffer-list-1 (selected-frame) ido-current-buffers)))
3069 (if ido-temp-list
3070 (nconc ido-temp-list ido-current-buffers)
3071 (setq ido-temp-list ido-current-buffers))
3072 (if default
3073 (progn
3074 (setq ido-temp-list
3075 (delete default ido-temp-list))
3076 (setq ido-temp-list
3077 (cons default ido-temp-list))))
3078 (run-hooks 'ido-make-buffer-list-hook)
3079 ido-temp-list))
3081 (defun ido-make-choice-list (default)
3082 ;; Return the current list of choices.
3083 ;; If DEFAULT is non-nil, and corresponds to an element of choices,
3084 ;; it is put to the start of the list.
3085 (let ((ido-temp-list ido-choice-list))
3086 (if default
3087 (progn
3088 (setq ido-temp-list
3089 (delete default ido-temp-list))
3090 (setq ido-temp-list
3091 (cons default ido-temp-list))))
3092 ; (run-hooks 'ido-make-choice-list-hook)
3093 ido-temp-list))
3095 (defun ido-to-end (items)
3096 ;; Move the elements from ITEMS to the end of `ido-temp-list'
3097 (mapcar
3098 (lambda (elem)
3099 (setq ido-temp-list (delq elem ido-temp-list)))
3100 items)
3101 (if ido-temp-list
3102 (nconc ido-temp-list items)
3103 (setq ido-temp-list items)))
3105 (defun ido-file-name-all-completions-1 (dir)
3106 (cond
3107 ((ido-nonreadable-directory-p dir) '())
3108 ;; do not check (ido-directory-too-big-p dir) here.
3109 ;; Caller must have done that if necessary.
3111 ((and ido-enable-tramp-completion
3112 (or (fboundp 'tramp-completion-mode)
3113 (require 'tramp nil t))
3114 (string-match "\\`/[^/]+[:@]\\'" dir))
3115 ;; Strip method:user@host: part of tramp completions.
3116 ;; Tramp completions do not include leading slash.
3117 (let ((len (1- (length dir)))
3118 (compl
3119 (or (file-name-all-completions "" dir)
3120 ;; work around bug in ange-ftp.
3121 ;; /ftp:user@host: => nil
3122 ;; /ftp:user@host:./ => ok
3123 (and
3124 (not (string= "/ftp:" dir))
3125 (tramp-tramp-file-p dir)
3126 (fboundp 'tramp-ftp-file-name-p)
3127 (funcall 'tramp-ftp-file-name-p dir)
3128 (string-match ":\\'" dir)
3129 (file-name-all-completions "" (concat dir "./"))))))
3130 (if (and compl
3131 (> (length (car compl)) len)
3132 (string= (substring (car compl) 0 len) (substring dir 1)))
3133 (mapcar (lambda (c) (substring c len)) compl)
3134 compl)))
3136 (file-name-all-completions "" dir))))
3138 (defun ido-file-name-all-completions (dir)
3139 ;; Return name of all files in DIR
3140 ;; Uses and updates ido-dir-file-cache
3141 (if (and (numberp ido-max-dir-file-cache) (> ido-max-dir-file-cache 0)
3142 (stringp dir) (> (length dir) 0)
3143 (ido-may-cache-directory dir))
3144 (let* ((cached (assoc dir ido-dir-file-cache))
3145 (ctime (nth 1 cached))
3146 (ftp (ido-is-ftp-directory dir))
3147 (attr (if ftp nil (file-attributes dir)))
3148 (mtime (nth 5 attr))
3149 valid)
3150 (when cached ; should we use the cached entry ?
3151 (if ftp
3152 (setq valid (and (eq (car ctime) 'ftp)
3153 (ido-cache-ftp-valid (cdr ctime))))
3154 (if attr
3155 (setq valid (and (= (car ctime) (car mtime))
3156 (= (car (cdr ctime)) (car (cdr mtime)))))))
3157 (if (not valid)
3158 (setq ido-dir-file-cache (delq cached ido-dir-file-cache)
3159 cached nil)))
3160 (unless cached
3161 (if (and ftp (file-readable-p dir))
3162 (setq mtime (cons 'ftp (ido-time-stamp))))
3163 (if mtime
3164 (setq cached (cons dir (cons mtime (ido-file-name-all-completions-1 dir)))
3165 ido-dir-file-cache (cons cached ido-dir-file-cache)))
3166 (if (> (length ido-dir-file-cache) ido-max-dir-file-cache)
3167 (setcdr (nthcdr (1- ido-max-dir-file-cache) ido-dir-file-cache) nil)))
3168 (and cached
3169 (cdr (cdr cached))))
3170 (ido-file-name-all-completions-1 dir)))
3172 (defun ido-remove-cached-dir (dir)
3173 ;; Remove dir from ido-dir-file-cache
3174 (if (and ido-dir-file-cache
3175 (stringp dir) (> (length dir) 0))
3176 (let ((cached (assoc dir ido-dir-file-cache)))
3177 (if cached
3178 (setq ido-dir-file-cache (delq cached ido-dir-file-cache))))))
3181 (defun ido-make-file-list-1 (dir &optional merged)
3182 ;; Return list of non-ignored files in DIR
3183 ;; If MERGED is non-nil, each file is cons'ed with DIR
3184 (and (or (ido-is-tramp-root dir) (file-directory-p dir))
3185 (delq nil
3186 (mapcar
3187 (lambda (name)
3188 (if (not (ido-ignore-item-p name ido-ignore-files t))
3189 (if merged (cons name dir) name)))
3190 (ido-file-name-all-completions dir)))))
3192 (defun ido-make-file-list (default)
3193 ;; Return the current list of files.
3194 ;; Currently visible files are put at the end of the list.
3195 ;; The hook `ido-make-file-list-hook' is run after the list has been
3196 ;; created to allow the user to further modify the order of the file names
3197 ;; in this list.
3198 (let ((ido-temp-list (ido-make-file-list-1 ido-current-directory)))
3199 (setq ido-temp-list (sort ido-temp-list
3200 (if ido-file-extensions-order
3201 #'ido-file-extension-lessp
3202 #'ido-file-lessp)))
3203 (unless (ido-is-tramp-root ido-current-directory)
3204 (let ((default-directory ido-current-directory))
3205 (ido-to-end ;; move ftp hosts and visited files to end
3206 (delq nil (mapcar
3207 (lambda (x) (if (or (string-match "..:\\'" x)
3208 (and (not (ido-final-slash x))
3209 (get-file-buffer x))) x))
3210 ido-temp-list)))))
3211 (ido-to-end ;; move . files to end
3212 (delq nil (mapcar
3213 (lambda (x) (if (string-equal (substring x 0 1) ".") x))
3214 ido-temp-list)))
3215 (if (and default (member default ido-temp-list))
3216 (if (or ido-rotate-temp ido-rotate-file-list-default)
3217 (unless (equal default (car ido-temp-list))
3218 (let ((l ido-temp-list) k)
3219 (while (and l (cdr l) (not (equal default (car (cdr l)))))
3220 (setq l (cdr l)))
3221 (setq k (cdr l))
3222 (setcdr l nil)
3223 (nconc k ido-temp-list)
3224 (setq ido-temp-list k)))
3225 (setq ido-temp-list
3226 (delete default ido-temp-list))
3227 (setq ido-temp-list
3228 (cons default ido-temp-list))))
3229 (when ido-show-dot-for-dired
3230 (setq ido-temp-list (delete "." ido-temp-list))
3231 (setq ido-temp-list (cons "." ido-temp-list)))
3232 (run-hooks 'ido-make-file-list-hook)
3233 ido-temp-list))
3235 (defun ido-make-dir-list-1 (dir &optional merged)
3236 ;; Return list of non-ignored subdirs in DIR
3237 ;; If MERGED is non-nil, each subdir is cons'ed with DIR
3238 (and (or (ido-is-tramp-root dir) (file-directory-p dir))
3239 (delq nil
3240 (mapcar
3241 (lambda (name)
3242 (and (ido-final-slash name) (not (ido-ignore-item-p name ido-ignore-directories))
3243 (if merged (cons name dir) name)))
3244 (ido-file-name-all-completions dir)))))
3246 (defun ido-make-dir-list (default)
3247 ;; Return the current list of directories.
3248 ;; The hook `ido-make-dir-list-hook' is run after the list has been
3249 ;; created to allow the user to further modify the order of the
3250 ;; directory names in this list.
3251 (let ((ido-temp-list (ido-make-dir-list-1 ido-current-directory)))
3252 (setq ido-temp-list (sort ido-temp-list #'ido-file-lessp))
3253 (ido-to-end ;; move . files to end
3254 (delq nil (mapcar
3255 (lambda (x) (if (string-equal (substring x 0 1) ".") x))
3256 ido-temp-list)))
3257 (if (and default (member default ido-temp-list))
3258 (if (or ido-rotate-temp ido-rotate-file-list-default)
3259 (unless (equal default (car ido-temp-list))
3260 (let ((l ido-temp-list) k)
3261 (while (and l (cdr l) (not (equal default (car (cdr l)))))
3262 (setq l (cdr l)))
3263 (setq k (cdr l))
3264 (setcdr l nil)
3265 (nconc k ido-temp-list)
3266 (setq ido-temp-list k)))
3267 (setq ido-temp-list
3268 (delete default ido-temp-list))
3269 (setq ido-temp-list
3270 (cons default ido-temp-list))))
3271 (setq ido-temp-list (delete "." ido-temp-list))
3272 (unless ido-input-stack
3273 (setq ido-temp-list (cons "." ido-temp-list)))
3274 (run-hooks 'ido-make-dir-list-hook)
3275 ido-temp-list))
3277 ;; List of the files visible in the current frame.
3278 (defvar ido-bufs-in-frame)
3280 (defun ido-get-buffers-in-frames (&optional current)
3281 ;; Return the list of buffers that are visible in the current frame.
3282 ;; If optional argument `current' is given, restrict searching to the
3283 ;; current frame, rather than all frames, regardless of value of
3284 ;; `ido-all-frames'.
3285 (let ((ido-bufs-in-frame nil))
3286 (walk-windows 'ido-get-bufname nil
3287 (if current
3289 ido-all-frames))
3290 ido-bufs-in-frame))
3292 (defun ido-get-bufname (win)
3293 ;; Used by `ido-get-buffers-in-frames' to walk through all windows
3294 (let ((buf (buffer-name (window-buffer win))))
3295 (unless (or (member buf ido-bufs-in-frame)
3296 (member buf ido-ignore-item-temp-list))
3297 ;; Only add buf if it is not already in list.
3298 ;; This prevents same buf in two different windows being
3299 ;; put into the list twice.
3300 (setq ido-bufs-in-frame
3301 (cons buf ido-bufs-in-frame)))))
3303 ;;; FIND MATCHING ITEMS
3305 (defun ido-set-matches-1 (items &optional do-full)
3306 ;; Return list of matches in items
3307 (let* ((case-fold-search ido-case-fold)
3308 (slash (and (not ido-enable-prefix) (ido-final-slash ido-text)))
3309 (text (if slash (substring ido-text 0 -1) ido-text))
3310 (rexq (concat (if ido-enable-regexp text (regexp-quote text)) (if slash ".*/" "")))
3311 (re (if ido-enable-prefix (concat "\\`" rexq) rexq))
3312 (full-re (and do-full (not ido-enable-regexp) (not (string-match "\$\\'" re))
3313 (concat "\\`" re "\\'")))
3314 (prefix-re (and full-re (not ido-enable-prefix)
3315 (concat "\\`" rexq)))
3316 (non-prefix-dot (or (not ido-enable-dot-prefix)
3317 (not ido-process-ignore-lists)
3318 ido-enable-prefix
3319 (= (length ido-text) 0)))
3321 full-matches
3322 prefix-matches
3323 matches)
3324 (setq ido-incomplete-regexp nil)
3325 (condition-case error
3326 (mapcar
3327 (lambda (item)
3328 (let ((name (ido-name item)))
3329 (if (and (or non-prefix-dot
3330 (if (= (aref ido-text 0) ?.)
3331 (= (aref name 0) ?.)
3332 (/= (aref name 0) ?.)))
3333 (string-match re name))
3334 (cond
3335 ((and full-re (string-match full-re name))
3336 (setq full-matches (cons item full-matches)))
3337 ((and prefix-re (string-match prefix-re name))
3338 (setq prefix-matches (cons item prefix-matches)))
3339 (t (setq matches (cons item matches))))))
3341 items)
3342 (invalid-regexp
3343 (setq ido-incomplete-regexp t
3344 ;; Consider the invalid regexp message internally as a
3345 ;; special-case single match, and handle appropriately
3346 ;; elsewhere.
3347 matches (cdr error))))
3348 (if prefix-matches
3349 (setq matches (nconc prefix-matches matches)))
3350 (if full-matches
3351 (setq matches (nconc full-matches matches)))
3352 (when (and (null matches)
3353 ido-enable-flex-matching
3354 (> (length ido-text) 1)
3355 (not ido-enable-regexp))
3356 (setq re (mapconcat #'regexp-quote (split-string ido-text "") ".*"))
3357 (if ido-enable-prefix
3358 (setq re (concat "\\`" re)))
3359 (mapcar
3360 (lambda (item)
3361 (let ((name (ido-name item)))
3362 (if (string-match re name)
3363 (setq matches (cons item matches)))))
3364 items))
3365 matches))
3368 (defun ido-set-matches ()
3369 ;; Set `ido-matches' to the list of items matching prompt
3370 (when ido-rescan
3371 (setq ido-matches (ido-set-matches-1 (reverse ido-cur-list) (not ido-rotate))
3372 ido-rotate nil)))
3374 (defun ido-ignore-item-p (name re-list &optional ignore-ext)
3375 ;; Return t if the buffer or file NAME should be ignored.
3376 (or (member name ido-ignore-item-temp-list)
3377 (and
3378 ido-process-ignore-lists re-list
3379 (save-match-data
3380 (let ((ext-list (and ignore-ext ido-ignore-extensions
3381 completion-ignored-extensions))
3382 (case-fold-search ido-case-fold)
3383 ignorep nextstr
3384 (flen (length name)) slen)
3385 (while ext-list
3386 (setq nextstr (car ext-list))
3387 (if (cond
3388 ((stringp nextstr)
3389 (and (>= flen (setq slen (length nextstr)))
3390 (string-equal (substring name (- flen slen)) nextstr)))
3391 ((fboundp nextstr) (funcall nextstr name))
3392 (t nil))
3393 (setq ignorep t
3394 ext-list nil
3395 re-list nil)
3396 (setq ext-list (cdr ext-list))))
3397 (while re-list
3398 (setq nextstr (car re-list))
3399 (if (cond
3400 ((stringp nextstr) (string-match nextstr name))
3401 ((fboundp nextstr) (funcall nextstr name))
3402 (t nil))
3403 (setq ignorep t
3404 re-list nil)
3405 (setq re-list (cdr re-list))))
3406 ;; return the result
3407 (if ignorep
3408 (setq ido-ignored-list (cons name ido-ignored-list)))
3409 ignorep)))))
3411 ;; Private variable used by `ido-word-matching-substring'.
3412 (defvar ido-change-word-sub)
3414 (defun ido-find-common-substring (items subs)
3415 ;; Return common string following SUBS in each element of ITEMS.
3416 (let (res
3417 alist
3418 ido-change-word-sub)
3419 (setq ido-change-word-sub
3420 (if ido-enable-regexp
3421 subs
3422 (regexp-quote subs)))
3423 (setq res (mapcar #'ido-word-matching-substring items))
3424 (setq res (delq nil res)) ;; remove any nil elements (shouldn't happen)
3425 (setq alist (mapcar #'ido-makealist res)) ;; could use an OBARRAY
3427 ;; try-completion returns t if there is an exact match.
3428 (let* ((completion-ignore-case ido-case-fold)
3429 (comp (try-completion subs alist)))
3430 (if (eq comp t)
3431 subs
3432 comp))))
3434 (defun ido-word-matching-substring (word)
3435 ;; Return part of WORD before 1st match to `ido-change-word-sub'.
3436 ;; If `ido-change-word-sub' cannot be found in WORD, return nil.
3437 (let ((case-fold-search ido-case-fold))
3438 (let ((m (string-match ido-change-word-sub (ido-name word))))
3439 (if m
3440 (substring (ido-name word) m)
3441 ;; else no match
3442 nil))))
3444 (defun ido-makealist (res)
3445 ;; Return dotted pair (RES . 1).
3446 (cons res 1))
3448 (defun ido-choose-completion-string (choice buffer mini-p base-size)
3449 (when (ido-active)
3450 ;; Insert the completion into the buffer where completion was requested.
3451 (if (get-buffer ido-completion-buffer)
3452 (kill-buffer ido-completion-buffer))
3453 (cond
3454 ((ido-active t) ;; ido-use-merged-list
3455 (setq ido-current-directory ""
3456 ido-text choice
3457 ido-exit 'done))
3458 ((not (ido-final-slash choice))
3459 (setq ido-text choice
3460 ido-exit 'done))
3462 (ido-set-current-directory ido-current-directory choice)
3463 (setq ido-exit 'refresh)))
3464 (exit-minibuffer)
3467 (defun ido-completion-help ()
3468 "Show possible completions in a *File Completions* buffer."
3469 (interactive)
3470 (setq ido-rescan nil)
3471 (let ((temp-buf (get-buffer ido-completion-buffer))
3472 display-it full-list)
3473 (if (and (eq last-command this-command) temp-buf)
3474 ;; scroll buffer
3475 (let (win (buf (current-buffer)))
3476 (display-buffer temp-buf nil nil)
3477 (set-buffer temp-buf)
3478 (setq win (get-buffer-window temp-buf))
3479 (if (pos-visible-in-window-p (point-max) win)
3480 (if (or ido-completion-buffer-all-completions (boundp 'ido-completion-buffer-full))
3481 (set-window-start win (point-min))
3482 (with-no-warnings
3483 (set (make-local-variable 'ido-completion-buffer-full) t))
3484 (setq full-list t
3485 display-it t))
3486 (scroll-other-window))
3487 (set-buffer buf))
3488 (setq display-it t))
3489 (if display-it
3490 (with-output-to-temp-buffer ido-completion-buffer
3491 (let ((completion-list (sort
3492 (cond
3493 (ido-use-merged-list
3494 (ido-flatten-merged-list (or ido-matches ido-cur-list)))
3495 ((or full-list ido-completion-buffer-all-completions)
3496 (ido-all-completions))
3498 (copy-sequence (or ido-matches ido-cur-list))))
3499 #'ido-file-lessp)))
3500 (if (featurep 'xemacs)
3501 ;; XEmacs extents are put on by default, doesn't seem to be
3502 ;; any way of switching them off.
3503 ;; This obscure code avoids a byte compiler warning in Emacs.
3504 (let ((f 'display-completion-list))
3505 (funcall f completion-list
3506 :help-string "ido "
3507 :activate-callback
3508 '(lambda (x y z) (message "doesn't work yet, sorry!"))))
3509 ;; else running Emacs
3510 ;;(add-hook 'completion-setup-hook 'completion-setup-function)
3511 (display-completion-list completion-list)))))))
3513 ;;; KILL CURRENT BUFFER
3514 (defun ido-kill-buffer-at-head ()
3515 "Kill the buffer at the head of `ido-matches'."
3516 (interactive)
3517 (let ((enable-recursive-minibuffers t)
3518 (buf (car ido-matches)))
3519 (when buf
3520 (kill-buffer buf)
3521 ;; Check if buffer still exists.
3522 (if (get-buffer buf)
3523 ;; buffer couldn't be killed.
3524 (setq ido-rescan t)
3525 ;; else buffer was killed so remove name from list.
3526 (setq ido-cur-list (delq buf ido-cur-list))))))
3528 ;;; DELETE CURRENT FILE
3529 (defun ido-delete-file-at-head ()
3530 "Delete the file at the head of `ido-matches'."
3531 (interactive)
3532 (let ((enable-recursive-minibuffers t)
3533 (file (car ido-matches)))
3534 (if file
3535 (setq file (concat ido-current-directory file)))
3536 (when (and file
3537 (file-exists-p file)
3538 (not (file-directory-p file))
3539 (file-writable-p ido-current-directory)
3540 (yes-or-no-p (concat "Delete " file "? ")))
3541 (delete-file file)
3542 ;; Check if file still exists.
3543 (if (file-exists-p file)
3544 ;; file could not be deleted
3545 (setq ido-rescan t)
3546 ;; else file was killed so remove name from list.
3547 (setq ido-cur-list (delq (car ido-matches) ido-cur-list))))))
3550 ;;; VISIT CHOSEN BUFFER
3551 (defun ido-visit-buffer (buffer method &optional record)
3552 "Visit file named FILE according to METHOD.
3553 Record command in `command-history' if optional RECORD is non-nil."
3555 (let (win newframe)
3556 (cond
3557 ((eq method 'kill)
3558 (if record
3559 (ido-record-command 'kill-buffer buffer))
3560 (kill-buffer buffer))
3562 ((eq method 'samewindow)
3563 (if record
3564 (ido-record-command 'switch-to-buffer buffer))
3565 (switch-to-buffer buffer))
3567 ((memq method '(always-frame maybe-frame))
3568 (cond
3569 ((and window-system
3570 (setq win (ido-window-buffer-p buffer))
3571 (or (eq method 'always-frame)
3572 (y-or-n-p "Jump to frame? ")))
3573 (setq newframe (window-frame win))
3574 (if (fboundp 'select-frame-set-input-focus)
3575 (select-frame-set-input-focus newframe)
3576 (raise-frame newframe)
3577 (select-frame newframe)
3578 (unless (featurep 'xemacs)
3579 (set-mouse-position (selected-frame) (1- (frame-width)) 0)))
3580 (select-window win))
3582 ;; No buffer in other frames...
3583 (if record
3584 (ido-record-command 'switch-to-buffer buffer))
3585 (switch-to-buffer buffer)
3588 ((eq method 'otherwindow)
3589 (if record
3590 (ido-record-command 'switch-to-buffer buffer))
3591 (switch-to-buffer-other-window buffer))
3593 ((eq method 'display)
3594 (display-buffer buffer))
3596 ((eq method 'otherframe)
3597 (switch-to-buffer-other-frame buffer)
3598 (unless (featurep 'xemacs)
3599 (select-frame-set-input-focus (selected-frame)))
3600 ))))
3603 (defun ido-window-buffer-p (buffer)
3604 ;; Return window pointer if BUFFER is visible in another frame.
3605 ;; If BUFFER is visible in the current frame, return nil.
3606 (let ((blist (ido-get-buffers-in-frames 'current)))
3607 ;;If the buffer is visible in current frame, return nil
3608 (if (member buffer blist)
3610 ;; maybe in other frame or icon
3611 (get-buffer-window buffer 0) ; better than 'visible
3615 ;;; ----------- IDONIZED FUNCTIONS ------------
3617 ;;;###autoload
3618 (defun ido-switch-buffer ()
3619 "Switch to another buffer.
3620 The buffer is displayed according to `ido-default-buffer-method' -- the
3621 default is to show it in the same window, unless it is already visible
3622 in another frame.
3624 As you type in a string, all of the buffers matching the string are
3625 displayed if substring-matching is used \(default). Look at
3626 `ido-enable-prefix' and `ido-toggle-prefix'. When you have found the
3627 buffer you want, it can then be selected. As you type, most keys have
3628 their normal keybindings, except for the following: \\<ido-mode-map>
3630 RET Select the buffer at the front of the list of matches. If the
3631 list is empty, possibly prompt to create new buffer.
3633 \\[ido-select-text] Select the current prompt as the buffer.
3634 If no buffer is found, prompt for a new one.
3636 \\[ido-next-match] Put the first element at the end of the list.
3637 \\[ido-prev-match] Put the last element at the start of the list.
3638 \\[ido-complete] Complete a common suffix to the current string that
3639 matches all buffers. If there is only one match, select that buffer.
3640 If there is no common suffix, show a list of all matching buffers
3641 in a separate window.
3642 \\[ido-edit-input] Edit input string.
3643 \\[ido-fallback-command] Fallback to non-ido version of current command.
3644 \\[ido-toggle-regexp] Toggle regexp searching.
3645 \\[ido-toggle-prefix] Toggle between substring and prefix matching.
3646 \\[ido-toggle-case] Toggle case-sensitive searching of buffer names.
3647 \\[ido-completion-help] Show list of matching buffers in separate window.
3648 \\[ido-enter-find-file] Drop into ido-find-file.
3649 \\[ido-kill-buffer-at-head] Kill buffer at head of buffer list.
3650 \\[ido-toggle-ignore] Toggle ignoring buffers listed in `ido-ignore-buffers'."
3651 (interactive)
3652 (ido-buffer-internal ido-default-buffer-method))
3654 ;;;###autoload
3655 (defun ido-switch-buffer-other-window ()
3656 "Switch to another buffer and show it in another window.
3657 The buffer name is selected interactively by typing a substring.
3658 For details of keybindings, do `\\[describe-function] ido'."
3659 (interactive)
3660 (ido-buffer-internal 'otherwindow 'switch-to-buffer-other-window))
3662 ;;;###autoload
3663 (defun ido-display-buffer ()
3664 "Display a buffer in another window but don't select it.
3665 The buffer name is selected interactively by typing a substring.
3666 For details of keybindings, do `\\[describe-function] ido'."
3667 (interactive)
3668 (ido-buffer-internal 'display 'display-buffer nil nil nil 'ignore))
3670 ;;;###autoload
3671 (defun ido-kill-buffer ()
3672 "Kill a buffer.
3673 The buffer name is selected interactively by typing a substring.
3674 For details of keybindings, do `\\[describe-function] ido'."
3675 (interactive)
3676 (ido-buffer-internal 'kill 'kill-buffer "Kill buffer: " (buffer-name (current-buffer)) nil 'ignore))
3678 ;;;###autoload
3679 (defun ido-insert-buffer ()
3680 "Insert contents of a buffer in current buffer after point.
3681 The buffer name is selected interactively by typing a substring.
3682 For details of keybindings, do `\\[describe-function] ido'."
3683 (interactive)
3684 (ido-buffer-internal 'insert 'insert-buffer "Insert buffer: " nil nil 'ido-enter-insert-file))
3686 ;;;###autoload
3687 (defun ido-switch-buffer-other-frame ()
3688 "Switch to another buffer and show it in another frame.
3689 The buffer name is selected interactively by typing a substring.
3690 For details of keybindings, do `\\[describe-function] ido'."
3691 (interactive)
3692 (if ido-mode
3693 (ido-buffer-internal 'otherframe)
3694 (call-interactively 'switch-to-buffer-other-frame)))
3696 ;;;###autoload
3697 (defun ido-find-file-in-dir (dir)
3698 "Switch to another file starting from DIR."
3699 (interactive "DDir: ")
3700 (if (not (equal (substring dir -1) "/"))
3701 (setq dir (concat dir "/")))
3702 (ido-file-internal ido-default-file-method nil dir nil nil nil 'ignore))
3704 ;;;###autoload
3705 (defun ido-find-file ()
3706 "Edit file with name obtained via minibuffer.
3707 The file is displayed according to `ido-default-file-method' -- the
3708 default is to show it in the same window, unless it is already
3709 visible in another frame.
3711 The file name is selected interactively by typing a substring. As you
3712 type in a string, all of the filenames matching the string are displayed
3713 if substring-matching is used \(default). Look at `ido-enable-prefix' and
3714 `ido-toggle-prefix'. When you have found the filename you want, it can
3715 then be selected. As you type, most keys have their normal keybindings,
3716 except for the following: \\<ido-mode-map>
3718 RET Select the file at the front of the list of matches. If the
3719 list is empty, possibly prompt to create new file.
3721 \\[ido-select-text] Select the current prompt as the buffer or file.
3722 If no buffer or file is found, prompt for a new one.
3724 \\[ido-next-match] Put the first element at the end of the list.
3725 \\[ido-prev-match] Put the last element at the start of the list.
3726 \\[ido-complete] Complete a common suffix to the current string that
3727 matches all files. If there is only one match, select that file.
3728 If there is no common suffix, show a list of all matching files
3729 in a separate window.
3730 \\[ido-edit-input] Edit input string (including directory).
3731 \\[ido-prev-work-directory] or \\[ido-next-work-directory] go to previous/next directory in work directory history.
3732 \\[ido-merge-work-directories] search for file in the work directory history.
3733 \\[ido-forget-work-directory] removes current directory from the work directory history.
3734 \\[ido-prev-work-file] or \\[ido-next-work-file] cycle through the work file history.
3735 \\[ido-wide-find-file] and \\[ido-wide-find-dir] prompts and uses find to locate files or directories.
3736 \\[ido-make-directory] prompts for a directory to create in current directory.
3737 \\[ido-fallback-command] Fallback to non-ido version of current command.
3738 \\[ido-toggle-regexp] Toggle regexp searching.
3739 \\[ido-toggle-prefix] Toggle between substring and prefix matching.
3740 \\[ido-toggle-case] Toggle case-sensitive searching of file names.
3741 \\[ido-toggle-vc] Toggle version control for this file.
3742 \\[ido-toggle-literal] Toggle literal reading of this file.
3743 \\[ido-completion-help] Show list of matching files in separate window.
3744 \\[ido-toggle-ignore] Toggle ignoring files listed in `ido-ignore-files'."
3746 (interactive)
3747 (ido-file-internal ido-default-file-method))
3749 ;;;###autoload
3750 (defun ido-find-file-other-window ()
3751 "Switch to another file and show it in another window.
3752 The file name is selected interactively by typing a substring.
3753 For details of keybindings, do `\\[describe-function] ido-find-file'."
3754 (interactive)
3755 (ido-file-internal 'otherwindow 'find-file-other-window))
3757 ;;;###autoload
3758 (defun ido-find-alternate-file ()
3759 "Switch to another file and show it in another window.
3760 The file name is selected interactively by typing a substring.
3761 For details of keybindings, do `\\[describe-function] ido-find-file'."
3762 (interactive)
3763 (ido-file-internal 'alt-file 'find-alternate-file nil "Find alternate file: "))
3765 ;;;###autoload
3766 (defun ido-find-file-read-only ()
3767 "Edit file read-only with name obtained via minibuffer.
3768 The file name is selected interactively by typing a substring.
3769 For details of keybindings, do `\\[describe-function] ido-find-file'."
3770 (interactive)
3771 (ido-file-internal 'read-only 'find-file-read-only nil "Find file read-only: "))
3773 ;;;###autoload
3774 (defun ido-find-file-read-only-other-window ()
3775 "Edit file read-only in other window with name obtained via minibuffer.
3776 The file name is selected interactively by typing a substring.
3777 For details of keybindings, do `\\[describe-function] ido-find-file'."
3778 (interactive)
3779 (ido-file-internal 'read-only 'find-file-read-only-other-window nil "Find file read-only other window: "))
3781 ;;;###autoload
3782 (defun ido-find-file-read-only-other-frame ()
3783 "Edit file read-only in other frame with name obtained via minibuffer.
3784 The file name is selected interactively by typing a substring.
3785 For details of keybindings, do `\\[describe-function] ido-find-file'."
3786 (interactive)
3787 (ido-file-internal 'read-only 'find-file-read-only-other-frame nil "Find file read-only other frame: "))
3789 ;;;###autoload
3790 (defun ido-display-file ()
3791 "Display a file in another window but don't select it.
3792 The file name is selected interactively by typing a substring.
3793 For details of keybindings, do `\\[describe-function] ido-find-file'."
3794 (interactive)
3795 (ido-file-internal 'display nil nil nil nil nil 'ignore))
3797 ;;;###autoload
3798 (defun ido-find-file-other-frame ()
3799 "Switch to another file and show it in another frame.
3800 The file name is selected interactively by typing a substring.
3801 For details of keybindings, do `\\[describe-function] ido-find-file'."
3802 (interactive)
3803 (ido-file-internal 'otherframe 'find-file-other-frame))
3805 ;;;###autoload
3806 (defun ido-write-file ()
3807 "Write current buffer to a file.
3808 The file name is selected interactively by typing a substring.
3809 For details of keybindings, do `\\[describe-function] ido-find-file'."
3810 (interactive)
3811 (let ((ido-process-ignore-lists t)
3812 (ido-work-directory-match-only nil)
3813 (ido-ignore-files (cons "[^/]\\'" ido-ignore-files))
3814 (ido-report-no-match nil)
3815 (ido-confirm-unique-completion t)
3816 (ido-auto-merge-work-directories-length -1))
3817 (ido-file-internal 'write 'write-file nil "Write file: " nil nil 'ignore)))
3819 ;;;###autoload
3820 (defun ido-insert-file ()
3821 "Insert contents of file in current buffer.
3822 The file name is selected interactively by typing a substring.
3823 For details of keybindings, do `\\[describe-function] ido-find-file'."
3824 (interactive)
3825 (ido-file-internal 'insert 'insert-file nil "Insert file: " nil nil 'ido-enter-insert-buffer))
3827 ;;;###autoload
3828 (defun ido-dired ()
3829 "Call dired the ido way.
3830 The directory is selected interactively by typing a substring.
3831 For details of keybindings, do `\\[describe-function] ido-find-file'."
3832 (interactive)
3833 (let ((ido-report-no-match nil)
3834 (ido-auto-merge-work-directories-length -1))
3835 (ido-file-internal 'dired 'dired nil "Dired: " 'dir)))
3837 (defun ido-list-directory ()
3838 "Call list-directory the ido way.
3839 The directory is selected interactively by typing a substring.
3840 For details of keybindings, do `\\[describe-function] ido-find-file'."
3841 (interactive)
3842 (let ((ido-report-no-match nil)
3843 (ido-auto-merge-work-directories-length -1))
3844 (ido-file-internal 'list-directory 'list-directory nil "List directory: " 'dir)))
3846 ;;; XEmacs hack for showing default buffer
3848 ;; The first time we enter the minibuffer, Emacs puts up the default
3849 ;; buffer to switch to, but XEmacs doesn't -- presumably there is a
3850 ;; subtle difference in the two versions of post-command-hook. The
3851 ;; default is shown for both whenever we delete all of our text
3852 ;; though, indicating its just a problem the first time we enter the
3853 ;; function. To solve this, we use another entry hook for emacs to
3854 ;; show the default the first time we enter the minibuffer.
3857 ;;; ICOMPLETE TYPE CODE
3859 (defun ido-initiate-auto-merge (buffer)
3860 (ido-trace "\n*merge timeout*" buffer)
3861 (setq ido-auto-merge-timer nil)
3862 (when (and (buffer-live-p buffer)
3863 (= ido-use-mycompletion-depth (minibuffer-depth))
3864 (boundp 'ido-eoinput) ido-eoinput)
3865 (let ((contents (buffer-substring-no-properties (minibuffer-prompt-end) ido-eoinput)))
3866 (ido-trace "request merge")
3867 (setq ido-use-merged-list 'auto
3868 ido-text-init contents
3869 ido-rotate-temp t
3870 ido-exit 'refresh)
3871 (save-excursion
3872 (set-buffer buffer)
3873 (ido-tidy))
3874 (throw 'ido contents))))
3876 (defun ido-exhibit ()
3877 "Post command hook for `ido'."
3878 ;; Find matching files and display a list in the minibuffer.
3879 ;; Copied from `icomplete-exhibit' with two changes:
3880 ;; 1. It prints a default file name when there is no text yet entered.
3881 ;; 2. It calls my completion routine rather than the standard completion.
3883 (when (= ido-use-mycompletion-depth (minibuffer-depth))
3884 (let ((contents (buffer-substring-no-properties (minibuffer-prompt-end) (point-max)))
3885 (buffer-undo-list t)
3886 try-single-dir-match
3887 refresh)
3889 (ido-trace "\nexhibit" this-command)
3890 (ido-trace "dir" ido-current-directory)
3891 (ido-trace "contents" contents)
3892 (ido-trace "list" ido-cur-list)
3893 (ido-trace "matches" ido-matches)
3894 (ido-trace "rescan" ido-rescan)
3896 (save-excursion
3897 (goto-char (point-max))
3898 ;; Register the end of input, so we know where the extra stuff (match-status info) begins:
3899 (unless (boundp 'ido-eoinput)
3900 ;; In case it got wiped out by major mode business:
3901 (make-local-variable 'ido-eoinput))
3902 (setq ido-eoinput (point))
3904 ;; Handle explicit directory changes
3905 (cond
3906 ((memq ido-cur-item '(buffer list))
3909 ((= (length contents) 0)
3912 ((= (length contents) 1)
3913 (when (and (ido-is-tramp-root) (string-equal contents "/"))
3914 (ido-set-current-directory ido-current-directory contents)
3915 (setq refresh t))
3918 ((and (string-match (if ido-enable-tramp-completion "..[:@]\\'" "..:\\'") contents)
3919 (ido-is-root-directory)) ;; Ange-ftp or tramp
3920 (ido-set-current-directory ido-current-directory contents)
3921 (when (ido-is-slow-ftp-host)
3922 (setq ido-exit 'fallback)
3923 (exit-minibuffer))
3924 (setq refresh t))
3926 ((ido-final-slash contents) ;; xxx/
3927 (ido-trace "final slash" contents)
3928 (cond
3929 ((string-equal contents "~/")
3930 (ido-set-current-home)
3931 (setq refresh t))
3932 ((string-equal contents "../")
3933 (ido-up-directory t)
3934 (setq refresh t))
3935 ((string-equal contents "./")
3936 (setq refresh t))
3937 ((string-match "\\`~[a-zA-Z0-9]+/\\'" contents)
3938 (ido-trace "new home" contents)
3939 (ido-set-current-home contents)
3940 (setq refresh t))
3941 ((string-match "[$][A-Za-z0-9_]+/\\'" contents)
3942 (let ((exp (condition-case ()
3943 (expand-file-name
3944 (substitute-in-file-name (substring contents 0 -1))
3945 ido-current-directory)
3946 (error nil))))
3947 (ido-trace contents exp)
3948 (when (and exp (file-directory-p exp))
3949 (ido-set-current-directory (file-name-directory exp))
3950 (setq ido-text-init (file-name-nondirectory exp))
3951 (setq refresh t))))
3952 ((and (memq system-type '(windows-nt ms-dos))
3953 (string-equal (substring contents 1) ":/"))
3954 (ido-set-current-directory (file-name-directory contents))
3955 (setq refresh t))
3956 ((string-equal (substring contents -2 -1) "/")
3957 (ido-set-current-directory
3958 (if (memq system-type '(windows-nt ms-dos))
3959 (expand-file-name "/" ido-current-directory)
3960 "/"))
3961 (setq refresh t))
3962 ((and (or ido-directory-nonreadable ido-directory-too-big)
3963 (file-directory-p (concat ido-current-directory (file-name-directory contents))))
3964 (ido-set-current-directory
3965 (concat ido-current-directory (file-name-directory contents)))
3966 (setq refresh t))
3968 (ido-trace "try single dir")
3969 (setq try-single-dir-match t))))
3971 ((and (string-equal (substring contents -2 -1) "/")
3972 (not (string-match "[$]" contents)))
3973 (ido-set-current-directory
3974 (cond
3975 ((= (length contents) 2)
3976 "/")
3977 (ido-matches
3978 (concat ido-current-directory (car ido-matches)))
3980 (concat ido-current-directory (substring contents 0 -1)))))
3981 (setq ido-text-init (substring contents -1))
3982 (setq refresh t))
3984 ((and (not ido-use-merged-list)
3985 (not (ido-final-slash contents))
3986 (eq ido-try-merged-list t)
3987 (numberp ido-auto-merge-work-directories-length)
3988 (> ido-auto-merge-work-directories-length 0)
3989 (= (length contents) ido-auto-merge-work-directories-length)
3990 (not (and ido-auto-merge-inhibit-characters-regexp
3991 (string-match ido-auto-merge-inhibit-characters-regexp contents)))
3992 (not (input-pending-p)))
3993 (setq ido-use-merged-list 'auto
3994 ido-text-init contents
3995 ido-rotate-temp t)
3996 (setq refresh t))
3998 (t nil))
4000 (when refresh
4001 (ido-trace "refresh on /" ido-text-init)
4002 (setq ido-exit 'refresh)
4003 (exit-minibuffer))
4005 ;; Update the list of matches
4006 (setq ido-text contents)
4007 (ido-set-matches)
4008 (ido-trace "new " ido-matches)
4010 (when (and ido-enter-matching-directory
4011 ido-matches
4012 (or (eq ido-enter-matching-directory 'first)
4013 (null (cdr ido-matches)))
4014 (ido-final-slash (car ido-matches))
4015 (or try-single-dir-match
4016 (eq ido-enter-matching-directory t)))
4017 (ido-trace "single match" (car ido-matches))
4018 (ido-set-current-directory
4019 (concat ido-current-directory (car ido-matches)))
4020 (setq ido-exit 'refresh)
4021 (exit-minibuffer))
4023 (when (and (not ido-matches)
4024 (not ido-directory-nonreadable)
4025 (not ido-directory-too-big)
4026 ;; ido-rescan ?
4027 ido-process-ignore-lists
4028 ido-ignored-list)
4029 (let ((ido-process-ignore-lists nil)
4030 (ido-rotate ido-rotate)
4031 (ido-cur-list ido-ignored-list))
4032 (ido-trace "try all" ido-ignored-list)
4033 (ido-set-matches))
4034 (when ido-matches
4035 (ido-trace "found " ido-matches)
4036 (setq ido-rescan t)
4037 (setq ido-process-ignore-lists-inhibit t)
4038 (setq ido-text-init ido-text)
4039 (setq ido-exit 'refresh)
4040 (exit-minibuffer)))
4042 (when (and
4043 ido-rescan
4044 (not ido-matches)
4045 (memq ido-cur-item '(file dir))
4046 (not (ido-is-root-directory))
4047 (> (length contents) 1)
4048 (not (string-match "[$]" contents))
4049 (not ido-directory-nonreadable)
4050 (not ido-directory-too-big))
4051 (ido-trace "merge?")
4052 (if ido-use-merged-list
4053 (ido-undo-merge-work-directory contents nil)
4054 (when (and (eq ido-try-merged-list t)
4055 (numberp ido-auto-merge-work-directories-length)
4056 (= ido-auto-merge-work-directories-length 0)
4057 (not (and ido-auto-merge-inhibit-characters-regexp
4058 (string-match ido-auto-merge-inhibit-characters-regexp contents)))
4059 (not (input-pending-p)))
4060 (ido-trace "\n*start timer*")
4061 (setq ido-auto-merge-timer
4062 (run-with-timer ido-auto-merge-delay-time nil 'ido-initiate-auto-merge (current-buffer))))))
4064 (setq ido-rescan t)
4066 (if (and ido-use-merged-list
4067 ido-matches
4068 (not (string-equal (car (cdr (car ido-matches))) ido-current-directory)))
4069 (progn
4070 (ido-set-current-directory (car (cdr (car ido-matches))))
4071 (setq ido-use-merged-list t
4072 ido-exit 'keep
4073 ido-text-init ido-text)
4074 (exit-minibuffer)))
4076 ;; Insert the match-status information:
4077 (ido-set-common-completion)
4078 (let ((inf (ido-completions
4079 contents
4080 minibuffer-completion-table
4081 minibuffer-completion-predicate
4082 (not minibuffer-completion-confirm))))
4083 (ido-trace "inf" inf)
4084 (insert inf))
4085 ))))
4087 (defun ido-completions (name candidates predicate require-match)
4088 ;; Return the string that is displayed after the user's text.
4089 ;; Modified from `icomplete-completions'.
4091 (let* ((comps ido-matches)
4092 (ind (and (consp (car comps)) (> (length (cdr (car comps))) 1)
4093 ido-merged-indicator))
4094 first)
4096 (if (and ind ido-use-faces)
4097 (put-text-property 0 1 'face 'ido-indicator ind))
4099 (if (and ido-use-faces comps)
4100 (let* ((fn (ido-name (car comps)))
4101 (ln (length fn)))
4102 (setq first (format "%s" fn))
4103 (put-text-property 0 ln 'face
4104 (if (= (length comps) 1)
4105 (if ido-incomplete-regexp
4106 'ido-incomplete-regexp
4107 'ido-only-match)
4108 'ido-first-match)
4109 first)
4110 (if ind (setq first (concat first ind)))
4111 (setq comps (cons first (cdr comps)))))
4113 (cond ((null comps)
4114 (cond
4115 (ido-directory-nonreadable
4116 (or (nth 8 ido-decorations) " [Not readable]"))
4117 (ido-directory-too-big
4118 (or (nth 9 ido-decorations) " [Too big]"))
4119 (ido-report-no-match
4120 (nth 6 ido-decorations)) ;; [No match]
4121 (t "")))
4122 (ido-incomplete-regexp
4123 (concat " " (car comps)))
4124 ((null (cdr comps)) ;one match
4125 (concat (if (if (not ido-enable-regexp)
4126 (= (length (ido-name (car comps))) (length name))
4127 ;; We can't rely on the length of the input
4128 ;; for regexps, so explicitly check for a
4129 ;; complete match
4130 (string-match name (ido-name (car comps)))
4131 (string-equal (match-string 0 (ido-name (car comps)))
4132 (ido-name (car comps))))
4134 ;; when there is one match, show the matching file name in full
4135 (concat (nth 4 ido-decorations) ;; [ ... ]
4136 (ido-name (car comps))
4137 (nth 5 ido-decorations)))
4138 (if (not ido-use-faces) (nth 7 ido-decorations)))) ;; [Matched]
4139 (t ;multiple matches
4140 (let* ((items (if (> ido-max-prospects 0) (1+ ido-max-prospects) 999))
4141 (alternatives
4142 (apply
4143 #'concat
4144 (cdr (apply
4145 #'nconc
4146 (mapcar
4147 (lambda (com)
4148 (setq com (ido-name com))
4149 (setq items (1- items))
4150 (cond
4151 ((< items 0) ())
4152 ((= items 0) (list (nth 3 ido-decorations))) ; " | ..."
4154 (list (or ido-separator (nth 2 ido-decorations)) ; " | "
4155 (let ((str (substring com 0)))
4156 (if (and ido-use-faces
4157 (not (string= str first))
4158 (ido-final-slash str))
4159 (put-text-property 0 (length str) 'face 'ido-subdir str))
4160 str)))))
4161 comps))))))
4163 (concat
4164 ;; put in common completion item -- what you get by pressing tab
4165 (if (and (stringp ido-common-match-string)
4166 (> (length ido-common-match-string) (length name)))
4167 (concat (nth 4 ido-decorations) ;; [ ... ]
4168 (substring ido-common-match-string (length name))
4169 (nth 5 ido-decorations)))
4170 ;; list all alternatives
4171 (nth 0 ido-decorations) ;; { ... }
4172 alternatives
4173 (nth 1 ido-decorations)))))))
4175 (defun ido-minibuffer-setup ()
4176 "Minibuffer setup hook for `ido'."
4177 ;; Copied from `icomplete-minibuffer-setup-hook'.
4178 (when (and (boundp 'ido-completing-read)
4179 (or (featurep 'xemacs)
4180 (= ido-use-mycompletion-depth (minibuffer-depth))))
4181 (add-hook 'pre-command-hook 'ido-tidy nil t)
4182 (add-hook 'post-command-hook 'ido-exhibit nil t)
4183 (setq cua-inhibit-cua-keys t)
4184 (when (featurep 'xemacs)
4185 (ido-exhibit)
4186 (goto-char (point-min)))
4187 (run-hooks 'ido-minibuffer-setup-hook)))
4189 (defun ido-tidy ()
4190 "Pre command hook for `ido'."
4191 ;; Remove completions display, if any, prior to new user input.
4192 ;; Copied from `icomplete-tidy'."
4194 (when ido-auto-merge-timer
4195 (ido-trace "\n*cancel timer*" this-command)
4196 (cancel-timer ido-auto-merge-timer)
4197 (setq ido-auto-merge-timer nil))
4199 (if (and (boundp 'ido-use-mycompletion-depth)
4200 (= ido-use-mycompletion-depth (minibuffer-depth)))
4201 (if (and (boundp 'ido-eoinput)
4202 ido-eoinput)
4204 (if (> ido-eoinput (point-max))
4205 ;; Oops, got rug pulled out from under us - reinit:
4206 (setq ido-eoinput (point-max))
4207 (let ((buffer-undo-list t))
4208 (delete-region ido-eoinput (point-max))))
4210 ;; Reestablish the local variable 'cause minibuffer-setup is weird:
4211 (make-local-variable 'ido-eoinput)
4212 (setq ido-eoinput 1))))
4214 (defun ido-summary-buffers-to-end ()
4215 ;; Move the summaries to the end of the buffer list.
4216 ;; This is an example function which can be hooked on to
4217 ;; `ido-make-buffer-list-hook'. Any buffer matching the regexps
4218 ;; `Summary' or `output\*$'are put to the end of the list.
4219 (let ((summaries (delq nil (mapcar
4220 (lambda (x)
4221 (if (or
4222 (string-match "Summary" x)
4223 (string-match "output\\*\\'" x))
4225 ido-temp-list))))
4226 (ido-to-end summaries)))
4228 ;;; Helper functions for other programs
4230 (put 'dired-do-rename 'ido 'ignore)
4231 (put 'ibuffer-find-file 'ido 'find-file)
4232 (put 'dired-other-window 'ido 'dir)
4234 ;;;###autoload
4235 (defun ido-read-buffer (prompt &optional default require-match)
4236 "Ido replacement for the built-in `read-buffer'.
4237 Return the name of a buffer selected.
4238 PROMPT is the prompt to give to the user. DEFAULT if given is the default
4239 buffer to be selected, which will go to the front of the list.
4240 If REQUIRE-MATCH is non-nil, an existing buffer must be selected."
4241 (let* ((ido-current-directory nil)
4242 (ido-directory-nonreadable nil)
4243 (ido-directory-too-big nil)
4244 (ido-context-switch-command 'ignore)
4245 (buf (ido-read-internal 'buffer prompt 'ido-buffer-history default require-match)))
4246 (if (eq ido-exit 'fallback)
4247 (let ((read-buffer-function nil))
4248 (run-hook-with-args 'ido-before-fallback-functions 'read-buffer)
4249 (read-buffer prompt default require-match))
4250 buf)))
4252 ;;;###autoload
4253 (defun ido-read-file-name (prompt &optional dir default-filename mustmatch initial predicate)
4254 "Ido replacement for the built-in `read-file-name'.
4255 Read file name, prompting with PROMPT and completing in directory DIR.
4256 See `read-file-name' for additional parameters."
4257 (let (filename)
4258 (cond
4259 ((or (eq predicate 'file-directory-p)
4260 (eq (get this-command 'ido) 'dir)
4261 (memq this-command ido-read-file-name-as-directory-commands))
4262 (setq filename
4263 (ido-read-directory-name prompt dir default-filename mustmatch initial))
4264 (if (eq ido-exit 'fallback)
4265 (setq filename 'fallback)))
4266 ((and (not (eq (get this-command 'ido) 'ignore))
4267 (not (memq this-command ido-read-file-name-non-ido))
4268 (or (null predicate) (eq predicate 'file-exists-p)))
4269 (let* (ido-saved-vc-hb
4270 (ido-context-switch-command
4271 (if (eq (get this-command 'ido) 'find-file) nil 'ignore))
4272 (vc-handled-backends (and (boundp 'vc-handled-backends) vc-handled-backends))
4273 (minibuffer-completing-file-name t)
4274 (ido-current-directory (ido-expand-directory dir))
4275 (ido-directory-nonreadable (not (file-readable-p ido-current-directory)))
4276 (ido-directory-too-big (and (not ido-directory-nonreadable)
4277 (ido-directory-too-big-p ido-current-directory)))
4278 (ido-work-directory-index -1)
4279 (ido-work-file-index -1)
4280 (ido-find-literal nil))
4281 (setq ido-exit nil)
4282 (setq filename
4283 (ido-read-internal 'file prompt 'ido-file-history default-filename mustmatch initial))
4284 (cond
4285 ((eq ido-exit 'fallback)
4286 (setq filename 'fallback))
4287 ((eq ido-exit 'dired)
4288 (setq filename ido-current-directory))
4289 (filename
4290 (setq filename
4291 (concat ido-current-directory filename))))))
4293 (setq filename 'fallback)))
4294 (if (eq filename 'fallback)
4295 (let ((read-file-name-function nil))
4296 (run-hook-with-args 'ido-before-fallback-functions 'read-file-name)
4297 (read-file-name prompt dir default-filename mustmatch initial predicate))
4298 filename)))
4300 ;;;###autoload
4301 (defun ido-read-directory-name (prompt &optional dir default-dirname mustmatch initial)
4302 "Ido replacement for the built-in `read-directory-name'.
4303 Read directory name, prompting with PROMPT and completing in directory DIR.
4304 See `read-directory-name' for additional parameters."
4305 (let* (filename
4306 (minibuffer-completing-file-name t)
4307 (ido-context-switch-command 'ignore)
4308 ido-saved-vc-hb
4309 (ido-current-directory (ido-expand-directory dir))
4310 (ido-directory-nonreadable (not (file-readable-p ido-current-directory)))
4311 (ido-directory-too-big (and (not ido-directory-nonreadable)
4312 (ido-directory-too-big-p ido-current-directory)))
4313 (ido-work-directory-index -1)
4314 (ido-work-file-index -1))
4315 (setq filename
4316 (ido-read-internal 'dir prompt 'ido-file-history default-dirname mustmatch initial))
4317 (if filename
4318 (if (and (stringp filename) (string-equal filename "."))
4319 ido-current-directory
4320 (concat ido-current-directory filename)))))
4322 ;;;###autoload
4323 (defun ido-completing-read (prompt choices &optional predicate require-match initial-input hist def)
4324 "Ido replacement for the built-in `completing-read'.
4325 Read a string in the minibuffer with ido-style completion.
4326 PROMPT is a string to prompt with; normally it ends in a colon and a space.
4327 CHOICES is a list of strings which are the possible completions.
4328 PREDICATE is currently ignored; it is included to be compatible
4329 with `completing-read'.
4330 If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless
4331 the input is (or completes to) an element of CHOICES or is null.
4332 If the input is null, `ido-completing-read' returns DEF, or an empty
4333 string if DEF is nil, regardless of the value of REQUIRE-MATCH.
4334 If INITIAL-INPUT is non-nil, insert it in the minibuffer initially,
4335 with point positioned at the end.
4336 HIST, if non-nil, specifies a history list.
4337 DEF, if non-nil, is the default value."
4338 (let ((ido-current-directory nil)
4339 (ido-directory-nonreadable nil)
4340 (ido-directory-too-big nil)
4341 (ido-context-switch-command 'ignore)
4342 (ido-choice-list choices))
4343 (ido-read-internal 'list prompt hist def require-match initial-input)))
4346 ;;; arch-tag: b63a3500-1735-41bd-8a01-05373f0864da
4347 ;;; ido.el ends here