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