Mercurial > emacs
annotate lisp/filecache.el @ 28923:dcafe3c9cd6c
(sh-while-getopts) <sh>: Handle case that
user-specified option string is empty.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Mon, 15 May 2000 20:14:39 +0000 |
| parents | 10d0bb886b1e |
| children | 5102c4c410c2 |
| rev | line source |
|---|---|
| 18388 | 1 ;;; filecache.el --- Find files using a pre-loaded cache |
| 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 |
|
21886
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
6 ;; Time-stamp: <1998-04-29 22:38:56 pbreton> |
| 18388 | 7 ;; |
|
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
8 ;; Copyright (C) 1996 Free Software Foundation, Inc. |
|
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 |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
24 ;; 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
|
25 ;; Boston, MA 02111-1307, USA. |
|
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: | |
| 46 ;; | |
| 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: | |
| 53 ;; | |
| 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 ;; | |
| 67 ;; Use the function `file-cache-clear-cache' to remove all items from the | |
| 68 ;; cache. There are a number of `file-cache-delete' functions provided | |
| 69 ;; as well, but in general it is probably better to not worry too much | |
| 70 ;; about extra files in the cache. | |
| 71 ;; | |
| 72 ;; 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
|
73 ;; `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
|
74 ;; AUTOMATICALLY section. |
| 18388 | 75 ;; |
| 76 ;; FINDING FILES USING THE CACHE: | |
| 77 ;; | |
| 78 ;; You can use the file-cache with any function that expects a filename as | |
| 79 ;; an argument. For example: | |
| 80 ;; | |
| 81 ;; 1) Invoke a function which expects a filename as an argument: | |
| 82 ;; M-x find-file | |
| 83 ;; | |
| 84 ;; 2) Begin typing a file name. | |
| 85 ;; | |
| 86 ;; 3) Invoke `file-cache-minibuffer-complete' (bound by default to | |
| 87 ;; C-TAB) to complete on the filename using the cache. | |
| 88 ;; | |
| 89 ;; 4) When you have found a unique completion, the minibuffer contents | |
| 90 ;; will change to the full name of that file. | |
| 91 ;; | |
| 92 ;; If there are a number of directories which contain the completion, | |
| 93 ;; invoking `file-cache-minibuffer-complete' repeatedly will cycle through | |
| 94 ;; them. | |
| 95 ;; | |
| 96 ;; 5) You can then edit the minibuffer contents, or press RETURN. | |
| 97 ;; | |
| 98 ;; It is much easier to simply try it than trying to explain it :) | |
| 99 ;; | |
|
21886
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
100 ;;; ADDING FILES AUTOMATICALLY |
| 18388 | 101 ;; |
| 102 ;; For maximum utility, you should probably define an `eval-after-load' | |
| 103 ;; form which loads your favorite files: | |
| 104 ;; | |
| 105 ;; (eval-after-load | |
| 106 ;; "filecache" | |
| 107 ;; '(progn | |
| 108 ;; (message "Loading file cache...") | |
| 109 ;; (file-cache-add-directory-using-find "~/projects") | |
| 110 ;; (file-cache-add-directory-list load-path) | |
| 111 ;; (file-cache-add-directory "~/") | |
| 112 ;; (file-cache-add-file-list (list "~/foo/bar" "~/baz/bar")) | |
| 113 ;; )) | |
| 114 ;; | |
| 115 ;; If you clear and reload the cache frequently, it is probably easiest | |
| 116 ;; to put your initializations in a function: | |
| 117 ;; | |
| 118 ;; (eval-after-load | |
| 119 ;; "filecache" | |
| 120 ;; '(my-file-cache-initialize)) | |
| 121 ;; | |
| 122 ;; (defun my-file-cache-initialize () | |
| 123 ;; (interactive) | |
| 124 ;; (message "Loading file cache...") | |
| 125 ;; (file-cache-add-directory-using-find "~/projects") | |
| 126 ;; (file-cache-add-directory-list load-path) | |
| 127 ;; (file-cache-add-directory "~/") | |
| 128 ;; (file-cache-add-file-list (list "~/foo/bar" "~/baz/bar")) | |
| 129 ;; )) | |
| 130 ;; | |
| 131 ;; Of course, you can still add files to the cache afterwards, via | |
| 132 ;; Lisp functions. | |
| 133 ;; | |
| 134 ;; RELATED WORK: | |
| 135 ;; | |
| 136 ;; This package is a distant relative of Noah Friedman's fff utilities. | |
| 137 ;; Our goal is pretty similar, but the implementation strategies are | |
| 138 ;; different. | |
|
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
139 |
| 18388 | 140 ;;; Code: |
| 141 | |
| 20597 | 142 (defgroup file-cache nil |
| 143 "Find files using a pre-loaded cache." | |
| 144 :group 'files | |
|
22250
a77d473867b8
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21886
diff
changeset
|
145 :group 'convenience |
| 20597 | 146 :prefix "file-cache-") |
| 147 | |
| 18388 | 148 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|
21886
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
149 ;; Customization Variables |
| 18388 | 150 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 151 | |
| 152 ;; User-modifiable variables | |
| 20597 | 153 (defcustom file-cache-filter-regexps |
| 18388 | 154 (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
|
155 "\\.$" "#$" "\\.class$") |
| 18388 | 156 "*List of regular expressions used as filters by the file cache. |
| 157 File names which match these expressions will not be added to the cache. | |
| 158 Note that the functions `file-cache-add-file' and `file-cache-add-file-list' | |
| 20597 | 159 do not use this variable." |
| 160 :type '(repeat regexp) | |
| 161 :group 'file-cache) | |
| 18388 | 162 |
| 20597 | 163 (defcustom file-cache-find-command "find" |
| 164 "*External program used by `file-cache-add-directory-using-find'." | |
| 165 :type 'string | |
| 166 :group 'file-cache) | |
| 18388 | 167 |
| 20597 | 168 (defcustom file-cache-locate-command "locate" |
| 169 "*External program used by `file-cache-add-directory-using-locate'." | |
| 170 :type 'string | |
| 171 :group 'file-cache) | |
| 18388 | 172 |
| 173 ;; Minibuffer messages | |
| 20597 | 174 (defcustom file-cache-no-match-message " [File Cache: No match]" |
| 175 "Message to display when there is no completion." | |
| 176 :type 'string | |
| 177 :group 'file-cache) | |
| 18388 | 178 |
| 20597 | 179 (defcustom file-cache-sole-match-message " [File Cache: sole completion]" |
| 180 "Message to display when there is only one completion." | |
| 181 :type 'string | |
| 182 :group 'file-cache) | |
| 18388 | 183 |
| 20597 | 184 (defcustom file-cache-non-unique-message |
| 185 " [File Cache: complete but not unique]" | |
| 186 "Message to display when there is a non-unique completion." | |
| 187 :type 'string | |
| 188 :group 'file-cache) | |
| 18388 | 189 |
|
25907
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
190 (defcustom file-cache-completion-ignore-case completion-ignore-case |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
191 "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
|
192 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
|
193 :type 'sexp |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
194 :group 'file-cache |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
195 ) |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
196 |
| 18388 | 197 (defvar file-cache-multiple-directory-message nil) |
| 198 | |
| 199 ;; Internal variables | |
| 200 ;; This should be named *Completions* because that's what the function | |
| 201 ;; switch-to-completions in simple.el expects | |
| 20597 | 202 (defcustom file-cache-completions-buffer "*Completions*" |
| 203 "Buffer to display completions when using the file cache." | |
| 204 :type 'string | |
| 205 :group 'file-cache) | |
| 18388 | 206 |
| 20597 | 207 (defcustom file-cache-buffer "*File Cache*" |
| 208 "Buffer to hold the cache of file names." | |
| 209 :type 'string | |
| 210 :group 'file-cache) | |
| 18388 | 211 |
| 20597 | 212 (defcustom file-cache-buffer-default-regexp "^.+$" |
| 213 "Regexp to match files in `file-cache-buffer'." | |
| 214 :type 'regexp | |
| 215 :group 'file-cache) | |
| 18388 | 216 |
| 217 (defvar file-cache-last-completion nil) | |
| 218 | |
| 219 (defvar file-cache-alist nil | |
| 220 "Internal data structure to hold cache of file names.") | |
| 221 | |
| 222 (defvar file-cache-completions-keymap nil | |
| 223 "Keymap for file cache completions buffer.") | |
| 224 | |
| 225 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 226 ;; Functions to add files to the cache | |
| 227 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 228 | |
| 229 (defun file-cache-add-directory (directory &optional regexp) | |
| 230 "Add DIRECTORY to the file cache. | |
| 231 If the optional REGEXP argument is non-nil, only files which match it will | |
| 232 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
|
233 (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
|
234 ;; 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
|
235 ;; 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
|
236 (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
|
237 (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
|
238 (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
|
239 (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
|
240 ) |
|
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
241 ;; 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
|
242 (mapcar |
|
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
243 '(lambda (file) |
| 18388 | 244 (mapcar |
| 245 '(lambda (regexp) | |
| 246 (if (string-match regexp file) | |
| 247 (setq dir-files (delq file dir-files)))) | |
| 248 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
|
249 dir-files) |
|
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
250 (file-cache-add-file-list dir-files)))) |
| 18388 | 251 |
| 252 (defun file-cache-add-directory-list (directory-list &optional regexp) | |
| 253 "Add DIRECTORY-LIST (a list of directory names) to the file cache. | |
| 254 If the optional REGEXP argument is non-nil, only files which match it | |
| 255 will be added to the cache. Note that the REGEXP is applied to the files | |
| 256 in each directory, not to the directory list itself." | |
| 257 (interactive "XAdd files from directory list: ") | |
| 258 (mapcar | |
| 259 '(lambda (dir) (file-cache-add-directory dir regexp)) | |
| 260 directory-list)) | |
| 261 | |
| 262 (defun file-cache-add-file-list (file-list) | |
| 263 "Add FILE-LIST (a list of files names) to the file cache." | |
| 264 (interactive "XFile List: ") | |
| 265 (mapcar 'file-cache-add-file file-list)) | |
| 266 | |
| 267 ;; Workhorse function | |
| 268 (defun file-cache-add-file (file) | |
| 269 "Add FILE to the file cache." | |
| 270 (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
|
271 (if (not (file-exists-p file)) |
|
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
272 (message "File %s does not exist" file) |
|
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
273 (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
|
274 (dir-name (file-name-directory file)) |
|
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
275 (the-entry (assoc file-name file-cache-alist)) |
|
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
276 ) |
|
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
277 ;; 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
|
278 (if the-entry |
|
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
279 (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
|
280 (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
|
281 (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
|
282 (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
|
283 nil |
|
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
284 (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
|
285 ) |
|
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
286 ;; 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
|
287 (setq file-cache-alist |
|
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
288 (cons (cons file-name (list dir-name)) |
|
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
289 file-cache-alist))) |
|
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
290 ))) |
|
ca7b274a97d9
(file-cache-add-file): Checks to see if file exists
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
291 |
| 18388 | 292 (defun file-cache-add-directory-using-find (directory) |
| 293 "Use the `find' command to add files to the file cache. | |
| 294 Find is run in DIRECTORY." | |
| 295 (interactive "DAdd files under directory: ") | |
| 296 (let ((dir (expand-file-name directory))) | |
| 297 (set-buffer (get-buffer-create file-cache-buffer)) | |
| 298 (erase-buffer) | |
| 299 (call-process file-cache-find-command nil | |
| 300 (get-buffer file-cache-buffer) nil | |
| 301 dir "-name" | |
| 302 (if (memq system-type | |
| 303 (list 'windows-nt 'ms-dos)) "'*'" "*") | |
| 304 "-print") | |
| 305 (file-cache-add-from-file-cache-buffer))) | |
| 306 | |
| 307 (defun file-cache-add-directory-using-locate (string) | |
| 308 "Use the `locate' command to add files to the file cache. | |
| 309 STRING is passed as an argument to the locate command." | |
| 310 (interactive "sAdd files using locate string: ") | |
| 311 (set-buffer (get-buffer-create file-cache-buffer)) | |
| 312 (erase-buffer) | |
| 313 (call-process file-cache-locate-command nil | |
| 314 (get-buffer file-cache-buffer) nil | |
| 315 string) | |
| 316 (file-cache-add-from-file-cache-buffer)) | |
| 317 | |
| 318 (defun file-cache-add-from-file-cache-buffer (&optional regexp) | |
| 319 "Add any entries found in the file cache buffer. | |
| 320 Each entry matches the regular expression `file-cache-buffer-default-regexp' | |
| 321 or the optional REGEXP argument." | |
| 322 (set-buffer file-cache-buffer) | |
| 323 (mapcar | |
| 324 (function (lambda (elt) | |
| 325 (goto-char (point-min)) | |
| 326 (delete-matching-lines elt))) | |
| 327 file-cache-filter-regexps) | |
| 328 (goto-char (point-min)) | |
| 329 (let ((full-filename)) | |
| 330 (while (re-search-forward | |
| 331 (or regexp file-cache-buffer-default-regexp) | |
| 332 (point-max) t) | |
| 333 (setq full-filename (buffer-substring-no-properties | |
| 334 (match-beginning 0) (match-end 0))) | |
| 335 (file-cache-add-file full-filename)))) | |
| 336 | |
| 337 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 338 ;; Functions to delete from the cache | |
| 339 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 340 | |
| 341 (defun file-cache-clear-cache () | |
| 342 "Clear the file cache." | |
| 343 (interactive) | |
| 344 (setq file-cache-alist nil)) | |
| 345 | |
| 346 ;; This clears *all* files with the given name | |
| 347 (defun file-cache-delete-file (file) | |
| 348 "Delete FILE from the file cache." | |
| 349 (interactive | |
| 350 (list (completing-read "Delete file from cache: " file-cache-alist))) | |
| 351 (setq file-cache-alist | |
| 352 (delq (assoc file file-cache-alist) file-cache-alist))) | |
| 353 | |
| 354 (defun file-cache-delete-file-list (file-list) | |
| 355 "Delete FILE-LIST (a list of files) from the file cache." | |
| 356 (interactive "XFile List: ") | |
| 357 (mapcar 'file-cache-delete-file file-list)) | |
| 358 | |
| 359 (defun file-cache-delete-file-regexp (regexp) | |
| 360 "Delete files matching REGEXP from the file cache." | |
| 361 (interactive "sRegexp: ") | |
| 362 (let ((delete-list)) | |
| 363 (mapcar '(lambda (elt) | |
| 364 (and (string-match regexp (car elt)) | |
| 365 (setq delete-list (cons (car elt) delete-list)))) | |
| 366 file-cache-alist) | |
| 367 (file-cache-delete-file-list delete-list) | |
| 368 (message "Deleted %d files from file cache" (length delete-list)))) | |
| 369 | |
| 370 (defun file-cache-delete-directory (directory) | |
| 371 "Delete DIRECTORY from the file cache." | |
| 372 (interactive "DDelete directory from file cache: ") | |
| 373 (let ((dir (expand-file-name directory)) | |
| 374 (result 0)) | |
| 375 (mapcar | |
| 376 '(lambda (entry) | |
| 377 (if (file-cache-do-delete-directory dir entry) | |
| 378 (setq result (1+ result)))) | |
| 379 file-cache-alist) | |
| 380 (if (zerop result) | |
| 381 (error "No entries containing %s found in cache" directory) | |
| 382 (message "Deleted %d entries" result)))) | |
| 383 | |
| 384 (defun file-cache-do-delete-directory (dir entry) | |
| 385 (let ((directory-list (cdr entry)) | |
| 386 (directory (file-cache-canonical-directory dir)) | |
| 387 ) | |
| 388 (and (member directory directory-list) | |
| 389 (if (equal 1 (length directory-list)) | |
| 390 (setq file-cache-alist | |
| 391 (delq entry file-cache-alist)) | |
| 392 (setcdr entry (delete directory directory-list))) | |
| 393 ) | |
| 394 )) | |
| 395 | |
| 396 (defun file-cache-delete-directory-list (directory-list) | |
| 397 "Delete DIRECTORY-LIST (a list of directories) from the file cache." | |
| 398 (interactive "XDirectory List: ") | |
| 399 (mapcar 'file-cache-delete-directory directory-list)) | |
| 400 | |
| 401 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 402 ;; Utility functions | |
| 403 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 404 | |
| 405 ;; Returns the name of a directory for a file in the cache | |
| 406 (defun file-cache-directory-name (file) | |
| 407 (let* ((directory-list (cdr (assoc file file-cache-alist))) | |
| 408 (len (length directory-list)) | |
| 409 (directory) | |
| 410 (num) | |
| 411 ) | |
| 412 (if (not (listp directory-list)) | |
| 413 (error "Unknown type in file-cache-alist for key %s" file)) | |
| 414 (cond | |
| 415 ;; Single element | |
| 416 ((eq 1 len) | |
| 417 (setq directory (elt directory-list 0))) | |
| 418 ;; No elements | |
| 419 ((eq 0 len) | |
| 420 (error "No directory found for key %s" file)) | |
| 421 ;; Multiple elements | |
| 422 (t | |
| 423 (let* ((minibuffer-dir (file-name-directory (buffer-string))) | |
| 424 (dir-list (member minibuffer-dir directory-list)) | |
| 425 ) | |
| 426 (setq directory | |
| 427 ;; If the directory is in the list, return the next element | |
| 428 ;; Otherwise, return the first element | |
| 429 (if dir-list | |
| 430 (or (elt directory-list | |
| 431 (setq num (1+ (- len (length dir-list))))) | |
| 432 (elt directory-list (setq num 0))) | |
| 433 (elt directory-list (setq num 0)))) | |
| 434 ) | |
| 435 ) | |
| 436 ) | |
| 437 ;; If there were multiple directories, set up a minibuffer message | |
| 438 (setq file-cache-multiple-directory-message | |
| 439 (and num (format " [%d of %d]" (1+ num) len))) | |
| 440 directory)) | |
| 441 | |
| 442 ;; Returns the name of a file in the cache | |
| 443 (defun file-cache-file-name (file) | |
| 444 (let ((directory (file-cache-directory-name file))) | |
| 445 (concat directory file))) | |
| 446 | |
| 447 ;; Return a canonical directory for comparison purposes. | |
| 448 ;; Such a directory ends with a forward slash. | |
| 449 (defun file-cache-canonical-directory (dir) | |
| 450 (let ((directory dir)) | |
| 451 (if (not (char-equal ?/ (string-to-char (substring directory -1)))) | |
| 452 (concat directory "/") | |
| 453 directory))) | |
| 454 | |
| 455 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 456 ;; Minibuffer functions | |
| 457 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 458 | |
|
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
459 ;; 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
|
460 ;; The completion function doesn't distinguish between the states: |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
461 ;; |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
462 ;; "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
|
463 ;; "Name available in multiple directories" (/tmp/Makefile, ~me/Makefile) |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
464 ;; |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
465 ;; 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
|
466 |
| 18388 | 467 ;;;###autoload |
|
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
468 (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
|
469 "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
|
470 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
|
471 the cache, and, once it has found a unique name, it cycles through |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
472 the directories that the name is available in. With a prefix argument, |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
473 the name is considered already unique; only the second substitution |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
474 \(directories) is done." |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
475 (interactive "P") |
| 18388 | 476 (let* |
| 477 ( | |
|
25907
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
478 (completion-ignore-case file-cache-completion-ignore-case) |
| 18388 | 479 (case-fold-search nil) |
|
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
480 (string (file-name-nondirectory (buffer-string))) |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
481 (completion-string (try-completion string file-cache-alist)) |
| 18388 | 482 (completion-list) |
| 483 (len) | |
| 484 (file-cache-string) | |
| 485 ) | |
| 486 (cond | |
|
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
487 ;; 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
|
488 ((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
|
489 (setq file-cache-string (file-cache-file-name string)) |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
490 (if (string= file-cache-string (buffer-string)) |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
491 (file-cache-temp-minibuffer-message file-cache-sole-match-message) |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
492 (erase-buffer) |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
493 (insert-string file-cache-string) |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
494 (if file-cache-multiple-directory-message |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
495 (file-cache-temp-minibuffer-message |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
496 file-cache-multiple-directory-message)) |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
497 )) |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
498 |
| 18388 | 499 ;; If it's the longest match, insert it |
| 500 ((stringp completion-string) | |
| 501 ;; If we've already inserted a unique string, see if the user | |
| 502 ;; wants to use that one | |
| 503 (if (and (string= string completion-string) | |
| 504 (assoc string file-cache-alist)) | |
| 505 (if (and (eq last-command this-command) | |
| 506 (string= file-cache-last-completion completion-string)) | |
| 507 (progn | |
| 508 (erase-buffer) | |
| 509 (insert-string (file-cache-file-name completion-string)) | |
| 510 (setq file-cache-last-completion nil) | |
| 511 ) | |
| 512 (file-cache-temp-minibuffer-message file-cache-non-unique-message) | |
| 513 (setq file-cache-last-completion string) | |
| 514 ) | |
| 515 (setq file-cache-last-completion string) | |
| 516 (setq completion-list (all-completions string file-cache-alist) | |
| 517 len (length completion-list)) | |
| 518 (if (> len 1) | |
| 519 (progn | |
| 520 (goto-char (point-max)) | |
| 521 (insert-string | |
| 522 (substring completion-string (length string))) | |
| 523 ;; Add our own setup function to the Completions Buffer | |
| 524 (let ((completion-setup-hook | |
| 525 (reverse | |
| 526 (append (list 'file-cache-completion-setup-function) | |
| 527 completion-setup-hook))) | |
| 528 ) | |
| 529 (with-output-to-temp-buffer file-cache-completions-buffer | |
| 530 (display-completion-list completion-list)) | |
| 531 ) | |
| 532 ) | |
| 533 (setq file-cache-string (file-cache-file-name completion-string)) | |
| 534 (if (string= file-cache-string (buffer-string)) | |
|
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
535 (file-cache-temp-minibuffer-message |
|
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
536 file-cache-sole-match-message) |
| 18388 | 537 (erase-buffer) |
| 538 (insert-string file-cache-string) | |
| 539 (if file-cache-multiple-directory-message | |
| 540 (file-cache-temp-minibuffer-message | |
| 541 file-cache-multiple-directory-message))) | |
| 542 ))) | |
|
20578
7eb29ad824eb
(file-cache-minibuffer-complete): Accept a prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
543 |
| 18388 | 544 ;; No match |
| 545 ((eq completion-string nil) | |
| 546 (file-cache-temp-minibuffer-message file-cache-no-match-message)) | |
| 547 ) | |
| 548 )) | |
| 549 | |
| 550 ;; Lifted from "complete.el" | |
| 551 (defun file-cache-temp-minibuffer-message (msg) | |
| 552 "A Lisp version of `temp_minibuffer_message' from minibuf.c." | |
| 553 (let ((savemax (point-max))) | |
| 554 (save-excursion | |
| 555 (goto-char (point-max)) | |
| 556 (insert msg)) | |
| 557 (let ((inhibit-quit t)) | |
| 558 (sit-for 2) | |
| 559 (delete-region savemax (point-max)) | |
| 560 (if quit-flag | |
| 561 (setq quit-flag nil | |
| 562 unread-command-events (list 7)))))) | |
| 563 | |
| 564 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 565 ;; Completion functions | |
| 566 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 567 | |
| 568 (defun file-cache-completion-setup-function () | |
| 569 (set-buffer file-cache-completions-buffer) | |
| 570 | |
| 571 (if file-cache-completions-keymap | |
| 572 nil | |
| 573 (setq file-cache-completions-keymap | |
| 574 (copy-keymap completion-list-mode-map)) | |
| 575 (define-key file-cache-completions-keymap [mouse-2] | |
| 576 'file-cache-mouse-choose-completion) | |
| 577 (define-key file-cache-completions-keymap "\C-m" | |
| 578 'file-cache-choose-completion)) | |
| 579 | |
| 580 (use-local-map file-cache-completions-keymap) | |
| 581 ) | |
| 582 | |
| 583 (defun file-cache-choose-completion () | |
| 584 "Choose a completion in the `*Completions*' buffer." | |
| 585 (interactive) | |
| 586 (let ((completion-no-auto-exit t)) | |
| 587 (choose-completion) | |
| 588 (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
|
589 (file-cache-minibuffer-complete nil) |
| 18388 | 590 ) |
| 591 ) | |
| 592 | |
| 593 (defun file-cache-mouse-choose-completion (event) | |
| 594 "Choose a completion with the mouse." | |
| 595 (interactive "e") | |
| 596 (let ((completion-no-auto-exit t)) | |
| 597 (mouse-choose-completion event) | |
| 598 (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
|
599 (file-cache-minibuffer-complete nil) |
| 18388 | 600 ) |
| 601 ) | |
| 602 | |
| 603 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
|
25907
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
604 ;; Show parts of the cache |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
605 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
606 |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
607 (defun file-cache-files-matching-internal (regexp) |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
608 "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
|
609 match REGEXP." |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
610 (let ((results)) |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
611 (mapcar |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
612 (function |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
613 (lambda(cache-element) |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
614 (and (string-match regexp |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
615 (elt cache-element 0)) |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
616 (if results |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
617 (nconc results (list (elt cache-element 0))) |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
618 (setq results (list (elt cache-element 0))))))) |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
619 file-cache-alist) |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
620 results)) |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
621 |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
622 (defun file-cache-files-matching (regexp) |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
623 "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
|
624 match REGEXP." |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
625 (interactive "sFind files matching regexp: ") |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
626 (let ((results |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
627 (file-cache-files-matching-internal regexp)) |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
628 buf) |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
629 (set-buffer |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
630 (setq buf (get-buffer-create |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
631 "*File Cache Files Matching*"))) |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
632 (erase-buffer) |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
633 (insert |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
634 (mapconcat |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
635 'identity |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
636 results |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
637 "\n")) |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
638 (goto-char (point-min)) |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
639 (display-buffer buf))) |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
640 |
|
10d0bb886b1e
(file-cache-completion-ignore-case): New variable,
Gerd Moellmann <gerd@gnu.org>
parents:
24340
diff
changeset
|
641 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 18388 | 642 ;; Debugging functions |
| 643 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 644 | |
| 645 (defun file-cache-debug-read-from-minibuffer (file) | |
| 646 "Debugging function." | |
| 647 (interactive | |
| 648 (list (completing-read "File Cache: " file-cache-alist))) | |
| 649 (message "%s" (assoc file file-cache-alist)) | |
| 650 ) | |
| 651 | |
| 652 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 653 ;; Keybindings | |
| 654 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 655 | |
| 656 ;;;###autoload (define-key minibuffer-local-completion-map [C-tab] 'file-cache-minibuffer-complete) | |
| 657 ;;;###autoload (define-key minibuffer-local-map [C-tab] 'file-cache-minibuffer-complete) | |
| 658 ;;;###autoload (define-key minibuffer-local-must-match-map [C-tab] 'file-cache-minibuffer-complete) | |
| 659 | |
| 660 (provide 'filecache) | |
| 661 | |
| 662 ;;; filecache.el ends here |
