Mercurial > emacs
annotate lisp/filecache.el @ 77272:3ae6fc8b3d2c
(python-end-of-block): Avoid looping forever if python-next-statement
fails.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Mon, 16 Apr 2007 18:55:29 +0000 |
parents | e3694f1cb928 |
children | 9355f9b7bbff 95d0cdf160ea |
rev | line source |
---|---|
45046
dc980af6073b
Lowercase the first letter in the header.
Pavel Janík <Pavel@Janik.cz>
parents:
41568
diff
changeset
|
1 ;;; filecache.el --- find files using a pre-loaded cache |
18388 | 2 ;; |
21886
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
3 ;; Author: Peter Breton <pbreton@cs.umb.edu> |
18388 | 4 ;; Created: Sun Nov 10 1996 |
22250
a77d473867b8
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21886
diff
changeset
|
5 ;; Keywords: convenience |
18388 | 6 ;; |
74439 | 7 ;; Copyright (C) 1996, 2000, 2001, 2002, 2003, 2004, |
75347 | 8 ;; 2005, 2006, 2007 Free Software Foundation, Inc. |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
9 |
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
10 ;; This file is part of GNU Emacs. |
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
11 |
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
12 ;; GNU Emacs is free software; you can redistribute it and/or modify |
18388 | 13 ;; it under the terms of the GNU General Public License as published by |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
16 |
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
17 ;; GNU Emacs is distributed in the hope that it will be useful, |
18388 | 18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
20 ;; GNU General Public License for more details. |
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
21 |
18388 | 22 ;; You should have received a copy of the GNU General Public License |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64091 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
26 |
18388 | 27 ;;; Commentary: |
28 ;; | |
29 ;; The file-cache package is an attempt to make it easy to locate files | |
30 ;; by name, without having to remember exactly where they are located. | |
31 ;; This is very handy when working with source trees. You can also add | |
32 ;; frequently used files to the cache to create a hotlist effect. | |
33 ;; The cache can be used with any interactive command which takes a | |
34 ;; filename as an argument. | |
35 ;; | |
36 ;; It is worth noting that this package works best when most of the files | |
37 ;; in the cache have unique names, or (if they have the same name) exist in | |
38 ;; only a few directories. The worst case is many files all with | |
39 ;; the same name and in different directories, for example a big source tree | |
40 ;; with a Makefile in each directory. In such a case, you should probably | |
41 ;; use an alternate strategy to find the files. | |
42 ;; | |
43 ;; ADDING FILES TO THE CACHE: | |
44 ;; | |
45 ;; Use the following functions to add items to the file cache: | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
46 ;; |
18388 | 47 ;; * `file-cache-add-file': Adds a single file to the cache |
48 ;; | |
49 ;; * `file-cache-add-file-list': Adds a list of files to the cache | |
50 ;; | |
51 ;; The following functions use the regular expressions in | |
52 ;; `file-cache-delete-regexps' to eliminate unwanted files: | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
53 ;; |
18388 | 54 ;; * `file-cache-add-directory': Adds the files in a directory to the |
55 ;; cache. You can also specify a regular expression to match the files | |
56 ;; which should be added. | |
57 ;; | |
58 ;; * `file-cache-add-directory-list': Same as above, but acts on a list | |
59 ;; of directories. You can use `load-path', `exec-path' and the like. | |
60 ;; | |
61 ;; * `file-cache-add-directory-using-find': Uses the `find' command to | |
62 ;; add a directory tree to the cache. | |
63 ;; | |
64 ;; * `file-cache-add-directory-using-locate': Uses the `locate' command to | |
65 ;; add files matching a pattern to the cache. | |
66 ;; | |
50263
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
67 ;; * `file-cache-add-directory-recursively': Uses the find-lisp package to |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
68 ;; add all files matching a pattern to the cache. |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
69 ;; |
18388 | 70 ;; Use the function `file-cache-clear-cache' to remove all items from the |
71 ;; cache. There are a number of `file-cache-delete' functions provided | |
72 ;; as well, but in general it is probably better to not worry too much | |
73 ;; about extra files in the cache. | |
74 ;; | |
75 ;; The most convenient way to initialize the cache is with an | |
21886
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
76 ;; `eval-after-load' function, as noted in the ADDING FILES |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
77 ;; AUTOMATICALLY section. |
18388 | 78 ;; |
79 ;; FINDING FILES USING THE CACHE: | |
80 ;; | |
81 ;; You can use the file-cache with any function that expects a filename as | |
82 ;; an argument. For example: | |
83 ;; | |
84 ;; 1) Invoke a function which expects a filename as an argument: | |
85 ;; M-x find-file | |
86 ;; | |
87 ;; 2) Begin typing a file name. | |
88 ;; | |
89 ;; 3) Invoke `file-cache-minibuffer-complete' (bound by default to | |
90 ;; C-TAB) to complete on the filename using the cache. | |
91 ;; | |
92 ;; 4) When you have found a unique completion, the minibuffer contents | |
93 ;; will change to the full name of that file. | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
94 ;; |
18388 | 95 ;; If there are a number of directories which contain the completion, |
96 ;; invoking `file-cache-minibuffer-complete' repeatedly will cycle through | |
97 ;; them. | |
98 ;; | |
99 ;; 5) You can then edit the minibuffer contents, or press RETURN. | |
100 ;; | |
101 ;; It is much easier to simply try it than trying to explain it :) | |
102 ;; | |
21886
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
103 ;;; ADDING FILES AUTOMATICALLY |
18388 | 104 ;; |
105 ;; For maximum utility, you should probably define an `eval-after-load' | |
106 ;; form which loads your favorite files: | |
107 ;; | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
108 ;; (eval-after-load |
18388 | 109 ;; "filecache" |
110 ;; '(progn | |
111 ;; (message "Loading file cache...") | |
112 ;; (file-cache-add-directory-using-find "~/projects") | |
113 ;; (file-cache-add-directory-list load-path) | |
114 ;; (file-cache-add-directory "~/") | |
115 ;; (file-cache-add-file-list (list "~/foo/bar" "~/baz/bar")) | |
116 ;; )) | |
117 ;; | |
118 ;; If you clear and reload the cache frequently, it is probably easiest | |
119 ;; to put your initializations in a function: | |
120 ;; | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
121 ;; (eval-after-load |
18388 | 122 ;; "filecache" |
123 ;; '(my-file-cache-initialize)) | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
124 ;; |
18388 | 125 ;; (defun my-file-cache-initialize () |
126 ;; (interactive) | |
127 ;; (message "Loading file cache...") | |
128 ;; (file-cache-add-directory-using-find "~/projects") | |
129 ;; (file-cache-add-directory-list load-path) | |
130 ;; (file-cache-add-directory "~/") | |
131 ;; (file-cache-add-file-list (list "~/foo/bar" "~/baz/bar")) | |
132 ;; )) | |
133 ;; | |
134 ;; Of course, you can still add files to the cache afterwards, via | |
135 ;; Lisp functions. | |
136 ;; | |
137 ;; RELATED WORK: | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
138 ;; |
18388 | 139 ;; This package is a distant relative of Noah Friedman's fff utilities. |
140 ;; Our goal is pretty similar, but the implementation strategies are | |
141 ;; different. | |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
142 |
18388 | 143 ;;; Code: |
144 | |
50263
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
145 (eval-when-compile |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
146 (require 'find-lisp)) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
147 |
20597 | 148 (defgroup file-cache nil |
149 "Find files using a pre-loaded cache." | |
150 :group 'files | |
22250
a77d473867b8
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21886
diff
changeset
|
151 :group 'convenience |
20597 | 152 :prefix "file-cache-") |
153 | |
18388 | 154 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
21886
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
155 ;; Customization Variables |
18388 | 156 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
157 | |
158 ;; User-modifiable variables | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
159 (defcustom file-cache-filter-regexps |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
160 (list "~$" "\\.o$" "\\.exe$" "\\.a$" "\\.elc$" ",v$" "\\.output$" |
24340
9d52c9051940
(file-cache-filter-regexps): Added .class.
Richard M. Stallman <rms@gnu.org>
parents:
22250
diff
changeset
|
161 "\\.$" "#$" "\\.class$") |
18388 | 162 "*List of regular expressions used as filters by the file cache. |
163 File names which match these expressions will not be added to the cache. | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
164 Note that the functions `file-cache-add-file' and `file-cache-add-file-list' |
20597 | 165 do not use this variable." |
166 :type '(repeat regexp) | |
167 :group 'file-cache) | |
18388 | 168 |
20597 | 169 (defcustom file-cache-find-command "find" |
170 "*External program used by `file-cache-add-directory-using-find'." | |
171 :type 'string | |
172 :group 'file-cache) | |
18388 | 173 |
53729
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
174 (defcustom file-cache-find-command-posix-flag 'not-defined |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
175 "*Set to t, if `file-cache-find-command' handles wildcards POSIX style. |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
176 This variable is automatically set to nil or non-nil |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
177 if it has the initial value `not-defined' whenever you first |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
178 call the `file-cache-add-directory-using-find'. |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
179 |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
180 Under Windows operating system where Cygwin is available, this value |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
181 should be t." |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
182 :type '(choice (const :tag "Yes" t) |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
183 (const :tag "No" nil) |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
184 (const :tag "Unknown" not-defined)) |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
185 :group 'file-cache) |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
186 |
20597 | 187 (defcustom file-cache-locate-command "locate" |
188 "*External program used by `file-cache-add-directory-using-locate'." | |
189 :type 'string | |
190 :group 'file-cache) | |
18388 | 191 |
192 ;; Minibuffer messages | |
20597 | 193 (defcustom file-cache-no-match-message " [File Cache: No match]" |
194 "Message to display when there is no completion." | |
195 :type 'string | |
196 :group 'file-cache) | |
18388 | 197 |
20597 | 198 (defcustom file-cache-sole-match-message " [File Cache: sole completion]" |
199 "Message to display when there is only one completion." | |
200 :type 'string | |
201 :group 'file-cache) | |
18388 | 202 |
20597 | 203 (defcustom file-cache-non-unique-message |
204 " [File Cache: complete but not unique]" | |
205 "Message to display when there is a non-unique completion." | |
206 :type 'string | |
207 :group 'file-cache) | |
18388 | 208 |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
209 (defcustom file-cache-completion-ignore-case |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
45046
diff
changeset
|
210 (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin)) |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
211 t |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
212 completion-ignore-case) |
25907
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
213 "If non-nil, file-cache completion should ignore case. |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
214 Defaults to the value of `completion-ignore-case'." |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
215 :type 'sexp |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
216 :group 'file-cache |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
217 ) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
218 |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
219 (defcustom file-cache-case-fold-search |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
45046
diff
changeset
|
220 (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin)) |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
221 t |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
222 case-fold-search) |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
223 "If non-nil, file-cache completion should ignore case. |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
224 Defaults to the value of `case-fold-search'." |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
225 :type 'sexp |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
226 :group 'file-cache |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
227 ) |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
228 |
53400
01072e418fa4
(file-cache-ignore-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
229 (defcustom file-cache-ignore-case |
01072e418fa4
(file-cache-ignore-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
230 (memq system-type (list 'ms-dos 'windows-nt 'cygwin)) |
01072e418fa4
(file-cache-ignore-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
231 "Non-nil means ignore case when checking completions in the file cache. |
01072e418fa4
(file-cache-ignore-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
232 Defaults to nil on DOS and Windows, and t on other systems." |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
233 :type 'sexp |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
234 :group 'file-cache |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
235 ) |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
236 |
18388 | 237 (defvar file-cache-multiple-directory-message nil) |
238 | |
239 ;; Internal variables | |
240 ;; This should be named *Completions* because that's what the function | |
241 ;; switch-to-completions in simple.el expects | |
20597 | 242 (defcustom file-cache-completions-buffer "*Completions*" |
243 "Buffer to display completions when using the file cache." | |
244 :type 'string | |
245 :group 'file-cache) | |
18388 | 246 |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
247 (defcustom file-cache-buffer "*File Cache*" |
20597 | 248 "Buffer to hold the cache of file names." |
249 :type 'string | |
250 :group 'file-cache) | |
18388 | 251 |
20597 | 252 (defcustom file-cache-buffer-default-regexp "^.+$" |
253 "Regexp to match files in `file-cache-buffer'." | |
254 :type 'regexp | |
255 :group 'file-cache) | |
18388 | 256 |
257 (defvar file-cache-last-completion nil) | |
258 | |
259 (defvar file-cache-alist nil | |
260 "Internal data structure to hold cache of file names.") | |
261 | |
262 (defvar file-cache-completions-keymap nil | |
263 "Keymap for file cache completions buffer.") | |
264 | |
265 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
266 ;; Functions to add files to the cache | |
267 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
268 | |
72783
c05b61ed1101
(file-cache-add-directory)
Reiner Steib <Reiner.Steib@gmx.de>
parents:
68651
diff
changeset
|
269 ;;;###autoload |
18388 | 270 (defun file-cache-add-directory (directory &optional regexp) |
271 "Add DIRECTORY to the file cache. | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
272 If the optional REGEXP argument is non-nil, only files which match it will |
18388 | 273 be added to the cache." |
21886
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
274 (interactive "DAdd files from directory: ") |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
275 ;; Not an error, because otherwise we can't use load-paths that |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
276 ;; contain non-existent directories. |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
277 (if (not (file-accessible-directory-p directory)) |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
278 (message "Directory %s does not exist" directory) |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
279 (let* ((dir (expand-file-name directory)) |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
280 (dir-files (directory-files dir t regexp)) |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
281 ) |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
282 ;; Filter out files we don't want to see |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
283 (mapcar |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
284 '(lambda (file) |
53729
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
285 (if (file-directory-p file) |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
286 (setq dir-files (delq file dir-files)) |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
287 (mapcar |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
288 '(lambda (regexp) |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
289 (if (string-match regexp file) |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
290 (setq dir-files (delq file dir-files)))) |
2598e11dc4dd
(file-cache-find-posix-p): New function. Detect Cygwin.
Richard M. Stallman <rms@gnu.org>
parents:
53400
diff
changeset
|
291 file-cache-filter-regexps))) |
21886
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
292 dir-files) |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
293 (file-cache-add-file-list dir-files)))) |
18388 | 294 |
72783
c05b61ed1101
(file-cache-add-directory)
Reiner Steib <Reiner.Steib@gmx.de>
parents:
68651
diff
changeset
|
295 ;;;###autoload |
18388 | 296 (defun file-cache-add-directory-list (directory-list &optional regexp) |
297 "Add DIRECTORY-LIST (a list of directory names) to the file cache. | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
298 If the optional REGEXP argument is non-nil, only files which match it |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
299 will be added to the cache. Note that the REGEXP is applied to the files |
18388 | 300 in each directory, not to the directory list itself." |
301 (interactive "XAdd files from directory list: ") | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
302 (mapcar |
18388 | 303 '(lambda (dir) (file-cache-add-directory dir regexp)) |
304 directory-list)) | |
305 | |
306 (defun file-cache-add-file-list (file-list) | |
307 "Add FILE-LIST (a list of files names) to the file cache." | |
308 (interactive "XFile List: ") | |
309 (mapcar 'file-cache-add-file file-list)) | |
310 | |
311 ;; Workhorse function | |
72783
c05b61ed1101
(file-cache-add-directory)
Reiner Steib <Reiner.Steib@gmx.de>
parents:
68651
diff
changeset
|
312 |
c05b61ed1101
(file-cache-add-directory)
Reiner Steib <Reiner.Steib@gmx.de>
parents:
68651
diff
changeset
|
313 ;;;###autoload |
18388 | 314 (defun file-cache-add-file (file) |
315 "Add FILE to the file cache." | |
316 (interactive "fAdd File: ") | |
21886
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
317 (if (not (file-exists-p file)) |
53982
a8c5903da579
All message and error commands now use prefix `filecache:'
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53751
diff
changeset
|
318 (message "Filecache: file %s does not exist" file) |
21886
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
319 (let* ((file-name (file-name-nondirectory file)) |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
320 (dir-name (file-name-directory file)) |
53400
01072e418fa4
(file-cache-ignore-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
321 (the-entry (assoc-string |
01072e418fa4
(file-cache-ignore-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
322 file-name file-cache-alist |
01072e418fa4
(file-cache-ignore-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
323 file-cache-ignore-case)) |
21886
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
324 ) |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
325 ;; Does the entry exist already? |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
326 (if the-entry |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
327 (if (or (and (stringp (cdr the-entry)) |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
328 (string= dir-name (cdr the-entry))) |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
329 (and (listp (cdr the-entry)) |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
330 (member dir-name (cdr the-entry)))) |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
331 nil |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
332 (setcdr the-entry (append (list dir-name) (cdr the-entry))) |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
333 ) |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
334 ;; If not, add it to the cache |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
335 (setq file-cache-alist |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
336 (cons (cons file-name (list dir-name)) |
21886
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
337 file-cache-alist))) |
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
338 ))) |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
339 |
72783
c05b61ed1101
(file-cache-add-directory)
Reiner Steib <Reiner.Steib@gmx.de>
parents:
68651
diff
changeset
|
340 ;;;###autoload |
18388 | 341 (defun file-cache-add-directory-using-find (directory) |
342 "Use the `find' command to add files to the file cache. | |
343 Find is run in DIRECTORY." | |
344 (interactive "DAdd files under directory: ") | |
345 (let ((dir (expand-file-name directory))) | |
58944
d61290cbd2dd
(file-cache-add-directory-using-find):
Richard M. Stallman <rms@gnu.org>
parents:
58943
diff
changeset
|
346 (when (memq system-type '(windows-nt cygwin)) |
d61290cbd2dd
(file-cache-add-directory-using-find):
Richard M. Stallman <rms@gnu.org>
parents:
58943
diff
changeset
|
347 (if (eq file-cache-find-command-posix-flag 'not-defined) |
d61290cbd2dd
(file-cache-add-directory-using-find):
Richard M. Stallman <rms@gnu.org>
parents:
58943
diff
changeset
|
348 (setq file-cache-find-command-posix-flag |
d61290cbd2dd
(file-cache-add-directory-using-find):
Richard M. Stallman <rms@gnu.org>
parents:
58943
diff
changeset
|
349 (executable-command-find-posix-p file-cache-find-command)))) |
18388 | 350 (set-buffer (get-buffer-create file-cache-buffer)) |
351 (erase-buffer) | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
352 (call-process file-cache-find-command nil |
18388 | 353 (get-buffer file-cache-buffer) nil |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
354 dir "-name" |
58943
30845c637a6a
(file-cache-add-directory-using-find):
Richard M. Stallman <rms@gnu.org>
parents:
53982
diff
changeset
|
355 (if (memq system-type '(windows-nt cygwin)) |
30845c637a6a
(file-cache-add-directory-using-find):
Richard M. Stallman <rms@gnu.org>
parents:
53982
diff
changeset
|
356 (if file-cache-find-command-posix-flag |
30845c637a6a
(file-cache-add-directory-using-find):
Richard M. Stallman <rms@gnu.org>
parents:
53982
diff
changeset
|
357 "\\*" |
30845c637a6a
(file-cache-add-directory-using-find):
Richard M. Stallman <rms@gnu.org>
parents:
53982
diff
changeset
|
358 "'*'") |
30845c637a6a
(file-cache-add-directory-using-find):
Richard M. Stallman <rms@gnu.org>
parents:
53982
diff
changeset
|
359 "*") |
18388 | 360 "-print") |
361 (file-cache-add-from-file-cache-buffer))) | |
362 | |
72783
c05b61ed1101
(file-cache-add-directory)
Reiner Steib <Reiner.Steib@gmx.de>
parents:
68651
diff
changeset
|
363 ;;;###autoload |
18388 | 364 (defun file-cache-add-directory-using-locate (string) |
365 "Use the `locate' command to add files to the file cache. | |
366 STRING is passed as an argument to the locate command." | |
367 (interactive "sAdd files using locate string: ") | |
368 (set-buffer (get-buffer-create file-cache-buffer)) | |
369 (erase-buffer) | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
370 (call-process file-cache-locate-command nil |
18388 | 371 (get-buffer file-cache-buffer) nil |
372 string) | |
373 (file-cache-add-from-file-cache-buffer)) | |
374 | |
72783
c05b61ed1101
(file-cache-add-directory)
Reiner Steib <Reiner.Steib@gmx.de>
parents:
68651
diff
changeset
|
375 ;;;###autoload |
50263
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
376 (defun file-cache-add-directory-recursively (dir &optional regexp) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
377 "Adds DIR and any subdirectories to the file-cache. |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
378 This function does not use any external programs |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
379 If the optional REGEXP argument is non-nil, only files which match it |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
380 will be added to the cache. Note that the REGEXP is applied to the files |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
381 in each directory, not to the directory list itself." |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
382 (interactive "DAdd directory: ") |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
383 (require 'find-lisp) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
384 (mapcar |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
385 (function |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
386 (lambda(file) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
387 (or (file-directory-p file) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
388 (let (filtered) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
389 (mapcar |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
390 (function |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
391 (lambda(regexp) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
392 (and (string-match regexp file) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
393 (setq filtered t)) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
394 )) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
395 file-cache-filter-regexps) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
396 filtered) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
397 (file-cache-add-file file)))) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
398 (find-lisp-find-files dir (if regexp regexp "^")))) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
399 |
18388 | 400 (defun file-cache-add-from-file-cache-buffer (&optional regexp) |
401 "Add any entries found in the file cache buffer. | |
402 Each entry matches the regular expression `file-cache-buffer-default-regexp' | |
403 or the optional REGEXP argument." | |
404 (set-buffer file-cache-buffer) | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
405 (mapcar |
18388 | 406 (function (lambda (elt) |
407 (goto-char (point-min)) | |
408 (delete-matching-lines elt))) | |
409 file-cache-filter-regexps) | |
410 (goto-char (point-min)) | |
411 (let ((full-filename)) | |
412 (while (re-search-forward | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
413 (or regexp file-cache-buffer-default-regexp) |
18388 | 414 (point-max) t) |
415 (setq full-filename (buffer-substring-no-properties | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
416 (match-beginning 0) (match-end 0))) |
18388 | 417 (file-cache-add-file full-filename)))) |
418 | |
419 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
420 ;; Functions to delete from the cache | |
421 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
422 | |
423 (defun file-cache-clear-cache () | |
424 "Clear the file cache." | |
425 (interactive) | |
426 (setq file-cache-alist nil)) | |
427 | |
428 ;; This clears *all* files with the given name | |
429 (defun file-cache-delete-file (file) | |
430 "Delete FILE from the file cache." | |
431 (interactive | |
432 (list (completing-read "Delete file from cache: " file-cache-alist))) | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
433 (setq file-cache-alist |
53400
01072e418fa4
(file-cache-ignore-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
434 (delq (assoc-string file file-cache-alist file-cache-ignore-case) |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
435 file-cache-alist))) |
18388 | 436 |
437 (defun file-cache-delete-file-list (file-list) | |
438 "Delete FILE-LIST (a list of files) from the file cache." | |
439 (interactive "XFile List: ") | |
440 (mapcar 'file-cache-delete-file file-list)) | |
441 | |
442 (defun file-cache-delete-file-regexp (regexp) | |
443 "Delete files matching REGEXP from the file cache." | |
444 (interactive "sRegexp: ") | |
445 (let ((delete-list)) | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
446 (mapcar '(lambda (elt) |
18388 | 447 (and (string-match regexp (car elt)) |
448 (setq delete-list (cons (car elt) delete-list)))) | |
449 file-cache-alist) | |
450 (file-cache-delete-file-list delete-list) | |
53982
a8c5903da579
All message and error commands now use prefix `filecache:'
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53751
diff
changeset
|
451 (message "Filecache: deleted %d files from file cache" |
a8c5903da579
All message and error commands now use prefix `filecache:'
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53751
diff
changeset
|
452 (length delete-list)))) |
18388 | 453 |
454 (defun file-cache-delete-directory (directory) | |
455 "Delete DIRECTORY from the file cache." | |
456 (interactive "DDelete directory from file cache: ") | |
457 (let ((dir (expand-file-name directory)) | |
458 (result 0)) | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
459 (mapcar |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
460 '(lambda (entry) |
18388 | 461 (if (file-cache-do-delete-directory dir entry) |
462 (setq result (1+ result)))) | |
463 file-cache-alist) | |
464 (if (zerop result) | |
53982
a8c5903da579
All message and error commands now use prefix `filecache:'
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53751
diff
changeset
|
465 (error "Filecache: no entries containing %s found in cache" directory) |
a8c5903da579
All message and error commands now use prefix `filecache:'
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53751
diff
changeset
|
466 (message "Filecache: deleted %d entries" result)))) |
18388 | 467 |
468 (defun file-cache-do-delete-directory (dir entry) | |
469 (let ((directory-list (cdr entry)) | |
470 (directory (file-cache-canonical-directory dir)) | |
471 ) | |
472 (and (member directory directory-list) | |
473 (if (equal 1 (length directory-list)) | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
474 (setq file-cache-alist |
18388 | 475 (delq entry file-cache-alist)) |
476 (setcdr entry (delete directory directory-list))) | |
477 ) | |
478 )) | |
479 | |
480 (defun file-cache-delete-directory-list (directory-list) | |
481 "Delete DIRECTORY-LIST (a list of directories) from the file cache." | |
482 (interactive "XDirectory List: ") | |
483 (mapcar 'file-cache-delete-directory directory-list)) | |
484 | |
485 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
486 ;; Utility functions | |
487 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
488 | |
489 ;; Returns the name of a directory for a file in the cache | |
490 (defun file-cache-directory-name (file) | |
53400
01072e418fa4
(file-cache-ignore-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
491 (let* ((directory-list (cdr (assoc-string |
01072e418fa4
(file-cache-ignore-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
492 file file-cache-alist |
01072e418fa4
(file-cache-ignore-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
493 file-cache-ignore-case))) |
18388 | 494 (len (length directory-list)) |
495 (directory) | |
496 (num) | |
497 ) | |
498 (if (not (listp directory-list)) | |
53982
a8c5903da579
All message and error commands now use prefix `filecache:'
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53751
diff
changeset
|
499 (error "Filecache: unknown type in file-cache-alist for key %s" file)) |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
500 (cond |
18388 | 501 ;; Single element |
502 ((eq 1 len) | |
503 (setq directory (elt directory-list 0))) | |
504 ;; No elements | |
505 ((eq 0 len) | |
53982
a8c5903da579
All message and error commands now use prefix `filecache:'
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53751
diff
changeset
|
506 (error "Filecache: no directory found for key %s" file)) |
18388 | 507 ;; Multiple elements |
508 (t | |
34072
24c9291f8fa8
(file-cache-directory-name, file-cache-minibuffer-complete):
Miles Bader <miles@gnu.org>
parents:
34070
diff
changeset
|
509 (let* ((minibuffer-dir (file-name-directory (minibuffer-contents))) |
18388 | 510 (dir-list (member minibuffer-dir directory-list)) |
511 ) | |
512 (setq directory | |
513 ;; If the directory is in the list, return the next element | |
514 ;; Otherwise, return the first element | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
515 (if dir-list |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
516 (or (elt directory-list |
18388 | 517 (setq num (1+ (- len (length dir-list))))) |
518 (elt directory-list (setq num 0))) | |
519 (elt directory-list (setq num 0)))) | |
520 ) | |
521 ) | |
522 ) | |
523 ;; If there were multiple directories, set up a minibuffer message | |
524 (setq file-cache-multiple-directory-message | |
525 (and num (format " [%d of %d]" (1+ num) len))) | |
526 directory)) | |
527 | |
528 ;; Returns the name of a file in the cache | |
529 (defun file-cache-file-name (file) | |
530 (let ((directory (file-cache-directory-name file))) | |
531 (concat directory file))) | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
532 |
18388 | 533 ;; Return a canonical directory for comparison purposes. |
534 ;; Such a directory ends with a forward slash. | |
535 (defun file-cache-canonical-directory (dir) | |
536 (let ((directory dir)) | |
537 (if (not (char-equal ?/ (string-to-char (substring directory -1)))) | |
538 (concat directory "/") | |
539 directory))) | |
540 | |
541 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
542 ;; Minibuffer functions | |
543 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
544 | |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
545 ;; The prefix argument works around a bug in the minibuffer completion. |
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
546 ;; The completion function doesn't distinguish between the states: |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
547 ;; |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
548 ;; "Multiple completions of name" (eg, Makefile, Makefile.in) |
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
549 ;; "Name available in multiple directories" (/tmp/Makefile, ~me/Makefile) |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
550 ;; |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
551 ;; The default is to do the former; a prefix arg forces the latter. |
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
552 |
18388 | 553 ;;;###autoload |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
554 (defun file-cache-minibuffer-complete (arg) |
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
555 "Complete a filename in the minibuffer using a preloaded cache. |
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
556 Filecache does two kinds of substitution: it completes on names in |
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
557 the cache, and, once it has found a unique name, it cycles through |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
558 the directories that the name is available in. With a prefix argument, |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
559 the name is considered already unique; only the second substitution |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
560 \(directories) is done." |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
561 (interactive "P") |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
562 (let* |
18388 | 563 ( |
25907
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
564 (completion-ignore-case file-cache-completion-ignore-case) |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
565 (case-fold-search file-cache-case-fold-search) |
34072
24c9291f8fa8
(file-cache-directory-name, file-cache-minibuffer-complete):
Miles Bader <miles@gnu.org>
parents:
34070
diff
changeset
|
566 (string (file-name-nondirectory (minibuffer-contents))) |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
567 (completion-string (try-completion string file-cache-alist)) |
18388 | 568 (completion-list) |
569 (len) | |
570 (file-cache-string) | |
571 ) | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
572 (cond |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
573 ;; If it's the only match, replace the original contents |
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
574 ((or arg (eq completion-string t)) |
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
575 (setq file-cache-string (file-cache-file-name string)) |
34072
24c9291f8fa8
(file-cache-directory-name, file-cache-minibuffer-complete):
Miles Bader <miles@gnu.org>
parents:
34070
diff
changeset
|
576 (if (string= file-cache-string (minibuffer-contents)) |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
577 (file-cache-temp-minibuffer-message file-cache-sole-match-message) |
34072
24c9291f8fa8
(file-cache-directory-name, file-cache-minibuffer-complete):
Miles Bader <miles@gnu.org>
parents:
34070
diff
changeset
|
578 (delete-minibuffer-contents) |
41568
1aef79dfa6fe
(file-cache-minibuffer-complete): Use insert instead of insert-string.
Pavel Janík <Pavel@Janik.cz>
parents:
34072
diff
changeset
|
579 (insert file-cache-string) |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
580 (if file-cache-multiple-directory-message |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
581 (file-cache-temp-minibuffer-message |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
582 file-cache-multiple-directory-message)) |
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
583 )) |
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
584 |
18388 | 585 ;; If it's the longest match, insert it |
586 ((stringp completion-string) | |
587 ;; If we've already inserted a unique string, see if the user | |
588 ;; wants to use that one | |
589 (if (and (string= string completion-string) | |
53400
01072e418fa4
(file-cache-ignore-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
590 (assoc-string string file-cache-alist |
01072e418fa4
(file-cache-ignore-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
591 file-cache-ignore-case)) |
18388 | 592 (if (and (eq last-command this-command) |
593 (string= file-cache-last-completion completion-string)) | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
594 (progn |
34072
24c9291f8fa8
(file-cache-directory-name, file-cache-minibuffer-complete):
Miles Bader <miles@gnu.org>
parents:
34070
diff
changeset
|
595 (delete-minibuffer-contents) |
41568
1aef79dfa6fe
(file-cache-minibuffer-complete): Use insert instead of insert-string.
Pavel Janík <Pavel@Janik.cz>
parents:
34072
diff
changeset
|
596 (insert (file-cache-file-name completion-string)) |
18388 | 597 (setq file-cache-last-completion nil) |
598 ) | |
599 (file-cache-temp-minibuffer-message file-cache-non-unique-message) | |
600 (setq file-cache-last-completion string) | |
601 ) | |
602 (setq file-cache-last-completion string) | |
603 (setq completion-list (all-completions string file-cache-alist) | |
604 len (length completion-list)) | |
605 (if (> len 1) | |
606 (progn | |
607 (goto-char (point-max)) | |
41568
1aef79dfa6fe
(file-cache-minibuffer-complete): Use insert instead of insert-string.
Pavel Janík <Pavel@Janik.cz>
parents:
34072
diff
changeset
|
608 (insert |
18388 | 609 (substring completion-string (length string))) |
610 ;; Add our own setup function to the Completions Buffer | |
611 (let ((completion-setup-hook | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
612 (reverse |
18388 | 613 (append (list 'file-cache-completion-setup-function) |
614 completion-setup-hook))) | |
615 ) | |
616 (with-output-to-temp-buffer file-cache-completions-buffer | |
66114
13abee3a9bc6
* message.el (message-expand-group): Pass the common
Masatake YAMATO <jet@gyve.org>
parents:
64762
diff
changeset
|
617 (display-completion-list completion-list string)) |
18388 | 618 ) |
619 ) | |
620 (setq file-cache-string (file-cache-file-name completion-string)) | |
34072
24c9291f8fa8
(file-cache-directory-name, file-cache-minibuffer-complete):
Miles Bader <miles@gnu.org>
parents:
34070
diff
changeset
|
621 (if (string= file-cache-string (minibuffer-contents)) |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
622 (file-cache-temp-minibuffer-message |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
623 file-cache-sole-match-message) |
34072
24c9291f8fa8
(file-cache-directory-name, file-cache-minibuffer-complete):
Miles Bader <miles@gnu.org>
parents:
34070
diff
changeset
|
624 (delete-minibuffer-contents) |
41568
1aef79dfa6fe
(file-cache-minibuffer-complete): Use insert instead of insert-string.
Pavel Janík <Pavel@Janik.cz>
parents:
34072
diff
changeset
|
625 (insert file-cache-string) |
18388 | 626 (if file-cache-multiple-directory-message |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
627 (file-cache-temp-minibuffer-message |
18388 | 628 file-cache-multiple-directory-message))) |
629 ))) | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
630 |
18388 | 631 ;; No match |
632 ((eq completion-string nil) | |
633 (file-cache-temp-minibuffer-message file-cache-no-match-message)) | |
634 ) | |
635 )) | |
636 | |
637 ;; Lifted from "complete.el" | |
638 (defun file-cache-temp-minibuffer-message (msg) | |
639 "A Lisp version of `temp_minibuffer_message' from minibuf.c." | |
640 (let ((savemax (point-max))) | |
641 (save-excursion | |
642 (goto-char (point-max)) | |
643 (insert msg)) | |
644 (let ((inhibit-quit t)) | |
645 (sit-for 2) | |
646 (delete-region savemax (point-max)) | |
647 (if quit-flag | |
648 (setq quit-flag nil | |
649 unread-command-events (list 7)))))) | |
650 | |
651 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
652 ;; Completion functions | |
653 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
654 | |
655 (defun file-cache-completion-setup-function () | |
656 (set-buffer file-cache-completions-buffer) | |
657 | |
658 (if file-cache-completions-keymap | |
659 nil | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
660 (setq file-cache-completions-keymap |
18388 | 661 (copy-keymap completion-list-mode-map)) |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
662 (define-key file-cache-completions-keymap [mouse-2] |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
663 'file-cache-mouse-choose-completion) |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
664 (define-key file-cache-completions-keymap "\C-m" |
18388 | 665 'file-cache-choose-completion)) |
666 | |
667 (use-local-map file-cache-completions-keymap) | |
668 ) | |
669 | |
670 (defun file-cache-choose-completion () | |
671 "Choose a completion in the `*Completions*' buffer." | |
672 (interactive) | |
673 (let ((completion-no-auto-exit t)) | |
674 (choose-completion) | |
675 (select-window (active-minibuffer-window)) | |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
676 (file-cache-minibuffer-complete nil) |
18388 | 677 ) |
678 ) | |
679 | |
680 (defun file-cache-mouse-choose-completion (event) | |
681 "Choose a completion with the mouse." | |
682 (interactive "e") | |
683 (let ((completion-no-auto-exit t)) | |
684 (mouse-choose-completion event) | |
685 (select-window (active-minibuffer-window)) | |
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
686 (file-cache-minibuffer-complete nil) |
18388 | 687 ) |
688 ) | |
689 | |
50263
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
690 (defun file-cache-complete () |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
691 "Complete the word at point, using the filecache." |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
692 (interactive) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
693 (let (start pattern completion all) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
694 (save-excursion |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
695 (skip-syntax-backward "^\"") |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
696 (setq start (point))) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
697 (setq pattern (buffer-substring-no-properties start (point))) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
698 (setq completion (try-completion pattern file-cache-alist)) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
699 (setq all (all-completions pattern file-cache-alist nil)) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
700 (cond ((eq completion t)) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
701 ((null completion) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
702 (message "Can't find completion for \"%s\"" pattern) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
703 (ding)) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
704 ((not (string= pattern completion)) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
705 (delete-region start (point)) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
706 (insert completion) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
707 ) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
708 (t |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
709 (with-output-to-temp-buffer "*Completions*" |
66114
13abee3a9bc6
* message.el (message-expand-group): Pass the common
Masatake YAMATO <jet@gyve.org>
parents:
64762
diff
changeset
|
710 (display-completion-list all pattern)) |
50263
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
711 )) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
712 )) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
713 |
18388 | 714 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
25907
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
715 ;; Show parts of the cache |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
716 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
717 |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
718 (defun file-cache-files-matching-internal (regexp) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
719 "Output a list of files whose names (not including directories) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
720 match REGEXP." |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
721 (let ((results)) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
722 (mapcar |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
723 (function |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
724 (lambda(cache-element) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
725 (and (string-match regexp |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
726 (elt cache-element 0)) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
727 (if results |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
728 (nconc results (list (elt cache-element 0))) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
729 (setq results (list (elt cache-element 0))))))) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
730 file-cache-alist) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
731 results)) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
732 |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
733 (defun file-cache-files-matching (regexp) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
734 "Output a list of files whose names (not including directories) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
735 match REGEXP." |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
736 (interactive "sFind files matching regexp: ") |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
737 (let ((results |
25907
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
738 (file-cache-files-matching-internal regexp)) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
739 buf) |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
740 (set-buffer |
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
741 (setq buf (get-buffer-create |
25907
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
742 "*File Cache Files Matching*"))) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
743 (erase-buffer) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
744 (insert |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
745 (mapconcat |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
746 'identity |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
747 results |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
748 "\n")) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
749 (goto-char (point-min)) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
750 (display-buffer buf))) |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
751 |
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
752 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
18388 | 753 ;; Debugging functions |
754 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
755 | |
756 (defun file-cache-debug-read-from-minibuffer (file) | |
757 "Debugging function." | |
31235
5102c4c410c2
Added file-cache-case-fold-search and file-cache-assoc-function variables
Peter Breton <pbreton@attbi.com>
parents:
25907
diff
changeset
|
758 (interactive |
18388 | 759 (list (completing-read "File Cache: " file-cache-alist))) |
53400
01072e418fa4
(file-cache-ignore-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
760 (message "%s" (assoc-string file file-cache-alist |
01072e418fa4
(file-cache-ignore-case): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
761 file-cache-ignore-case)) |
18388 | 762 ) |
763 | |
50263
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
764 (defun file-cache-display () |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
765 "Display the file cache." |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
766 (interactive) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
767 (let ((buf "*File Cache Contents*")) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
768 (with-current-buffer |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
769 (get-buffer-create buf) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
770 (erase-buffer) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
771 (mapcar |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
772 (function |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
773 (lambda(item) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
774 (insert (nth 1 item) (nth 0 item) "\n"))) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
775 file-cache-alist) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
776 (pop-to-buffer buf) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
777 ))) |
1f6e75676769
Add file-cache-add-directory-recursively function
Peter Breton <pbreton@attbi.com>
parents:
49549
diff
changeset
|
778 |
18388 | 779 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
780 ;; Keybindings | |
781 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
782 | |
783 ;;;###autoload (define-key minibuffer-local-completion-map [C-tab] 'file-cache-minibuffer-complete) | |
784 ;;;###autoload (define-key minibuffer-local-map [C-tab] 'file-cache-minibuffer-complete) | |
785 ;;;###autoload (define-key minibuffer-local-must-match-map [C-tab] 'file-cache-minibuffer-complete) | |
786 | |
787 (provide 'filecache) | |
788 | |
52401 | 789 ;;; arch-tag: 433d3ca4-4af2-47ce-b2cf-1f727460f538 |
18388 | 790 ;;; filecache.el ends here |