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