Mercurial > emacs
annotate lisp/locate.el @ 29953:dad7b11391a3
(Fplist_member): Renamed from Fwidget_plist_member.
(Fwidget_get): Use it.
(syms_of_fns): Defsubr it.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Mon, 26 Jun 2000 21:53:57 +0000 |
parents | af5c31a82586 |
children | 0c53ed643c7c |
rev | line source |
---|---|
17517 | 1 ;;; locate.el --- interface to the locate command |
16781 | 2 |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
3 ;; Copyright (C) 1996, 1998 Free Software Foundation, Inc. |
16781 | 4 |
21184
aba31b37562b
(locate-current-line-number): No longer interactive.
Richard M. Stallman <rms@gnu.org>
parents:
21056
diff
changeset
|
5 ;; Author: Peter Breton <pbreton@cs.umb.edu> |
29156 | 6 ;; Keywords: unix files |
16781 | 7 |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
24 | |
25 ;;; Commentary: | |
26 | |
27 ;; Search a database of files and use dired commands on | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
28 ;; the result. |
16781 | 29 ;; |
30 | |
31 ;;;;; Building a database of files ;;;;;;;;; | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
32 ;; |
16781 | 33 ;; You can create a simple files database with a port of the Unix find command |
34 ;; and one of the various Windows NT various scheduling utilities, | |
35 ;; for example the AT command from the NT Resource Kit, WinCron which is | |
36 ;; included with Microsoft FrontPage, or the shareware NTCron program. | |
37 ;; | |
38 ;; To set up a function which searches the files database, do something | |
39 ;; like this: | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
40 ;; |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
41 ;; (defvar locate-fcodes-file "c:/users/peter/fcodes") |
16781 | 42 ;; (defvar locate-make-command-line 'nt-locate-make-command-line) |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
43 ;; |
16781 | 44 ;; (defun nt-locate-make-command-line (arg) |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
45 ;; (list "grep" "-i" arg locate-fcodes-file)) |
16781 | 46 ;; |
47 ;;;;;;;; ADVICE For dired-make-relative: ;;;;;;;;; | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
48 ;; |
16781 | 49 ;; For certain dired commands to work right, you should also include the |
50 ;; following in your _emacs/.emacs: | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
51 ;; |
16781 | 52 ;; (defadvice dired-make-relative (before set-no-error activate) |
53 ;; "For locate mode and Windows, don't return errors" | |
54 ;; (if (and (eq major-mode 'locate-mode) | |
55 ;; (memq system-type (list 'windows-nt 'ms-dos))) | |
56 ;; (ad-set-arg 2 t) | |
57 ;; )) | |
58 ;; | |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
59 ;; Otherwise, `dired-make-relative' will give error messages like |
16781 | 60 ;; "FILENAME: not in directory tree growing at /" |
61 | |
62 ;;; Commentary: | |
63 ;; | |
64 ;; Locate.el provides an interface to a program which searches a | |
65 ;; database of file names. By default, this program is the GNU locate | |
66 ;; command, but it could also be the BSD-style find command, or even a | |
67 ;; user specified command. | |
68 ;; | |
69 ;; To use the BSD-style "fast find", or any other shell command of the | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
70 ;; form |
16781 | 71 ;; |
72 ;; SHELLPROGRAM Name-to-find | |
73 ;; | |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
74 ;; set the variable `locate-command' in your .emacs file. |
16781 | 75 ;; |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
76 ;; To use a more complicated expression, create a function which |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
77 ;; takes a string (the name to find) as input and returns a list. |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
78 ;; The first element should be the command to be executed, the remaining |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
79 ;; elements should be the arguments (including the name to find). Then put |
16781 | 80 ;; |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
81 ;; (setq locate-make-command-line 'my-locate-command-line) |
16781 | 82 ;; |
83 ;; in your .emacs, using the name of your function in place of | |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
84 ;; my-locate-command-line. |
16781 | 85 ;; |
86 ;; You should make sure that whichever command you use works correctly | |
87 ;; from a shell prompt. GNU locate and BSD find expect the file databases | |
88 ;; to either be in standard places or located via environment variables. | |
89 ;; If the latter, make sure these environment variables are set in | |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
90 ;; your emacs process. |
16781 | 91 ;; |
92 ;; Locate-mode assumes that each line output from the locate-command | |
93 ;; consists exactly of a file name, possibly preceded or trailed by | |
94 ;; whitespace. If your file database has other information on the line (for | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
95 ;; example, the file size), you will need to redefine the function |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
96 ;; `locate-get-file-positions' to return a list consisting of the first |
16781 | 97 ;; character in the file name and the last character in the file name. |
98 ;; | |
99 ;; To use locate-mode, simply type M-x locate and then the string | |
100 ;; you wish to find. You can use almost all of the dired commands in | |
101 ;; the resulting *Locate* buffer. It is worth noting that your commands | |
102 ;; do not, of course, affect the file database. For example, if you | |
103 ;; compress a file in the locate buffer, the actual file will be | |
104 ;; compressed, but the entry in the file database will not be | |
105 ;; affected. Consequently, the database and the filesystem will be out | |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
106 ;; of sync until the next time the database is updated. |
16781 | 107 ;; |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
108 ;; The command `locate-with-filter' keeps only lines matching a |
16781 | 109 ;; regular expression; this is often useful to constrain a big search. |
110 ;; | |
111 | |
112 ;;; Code: | |
113 | |
114 (eval-when-compile | |
115 (require 'dired)) | |
116 | |
117 ;; Variables | |
20845 | 118 |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
119 (defvar locate-current-filter nil) |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
120 |
20845 | 121 (defgroup locate nil |
122 "Interface to the locate command." | |
123 :prefix "locate-" | |
124 :group 'external) | |
125 | |
126 (defcustom locate-command "locate" | |
127 "*The executable program used to search a database of files." | |
128 :type 'string | |
129 :group 'locate) | |
16781 | 130 |
131 (defvar locate-history-list nil | |
132 "The history list used by the \\[locate] command.") | |
133 | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
134 (defvar locate-grep-history-list nil |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
135 "The history list used by the \\[locate-with-filter] command.") |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
136 |
20845 | 137 (defcustom locate-make-command-line 'locate-default-make-command-line |
138 "*Function used to create the locate command line." | |
139 :type 'function | |
140 :group 'locate) | |
16781 | 141 |
20845 | 142 (defcustom locate-buffer-name "*Locate*" |
143 "*Name of the buffer to show results from the \\[locate] command." | |
144 :type 'string | |
145 :group 'locate) | |
16781 | 146 |
20845 | 147 (defcustom locate-fcodes-file nil |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
148 "*File name for the database of file names." |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
149 :type '(choice file (const nil)) |
20845 | 150 :group 'locate) |
16781 | 151 |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
152 (defcustom locate-header-face nil |
20845 | 153 "*Face used to highlight the locate header." |
154 :type 'face | |
155 :group 'locate) | |
16781 | 156 |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
157 (defcustom locate-update-command "updatedb" |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
158 "The command used to update the locate database." |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
159 :type 'string |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
160 :group 'locate) |
16781 | 161 |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
162 (defcustom locate-prompt-for-command nil |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
163 "If non-nil, the default behavior of the locate command is to prompt for a command to run. |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
164 Otherwise, that behavior is invoked via a prefix argument." |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
165 :group 'locate |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
166 :type 'boolean |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
167 ) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
168 |
16781 | 169 ;; Functions |
170 | |
171 (defun locate-default-make-command-line (search-string) | |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
172 (list locate-command search-string)) |
16781 | 173 |
28413
abd1f2362ae0
Add locate-word-at-point function
Peter Breton <pbreton@attbi.com>
parents:
26578
diff
changeset
|
174 (defun locate-word-at-point () |
abd1f2362ae0
Add locate-word-at-point function
Peter Breton <pbreton@attbi.com>
parents:
26578
diff
changeset
|
175 (let ((pt (point))) |
abd1f2362ae0
Add locate-word-at-point function
Peter Breton <pbreton@attbi.com>
parents:
26578
diff
changeset
|
176 (buffer-substring-no-properties |
abd1f2362ae0
Add locate-word-at-point function
Peter Breton <pbreton@attbi.com>
parents:
26578
diff
changeset
|
177 (save-excursion |
abd1f2362ae0
Add locate-word-at-point function
Peter Breton <pbreton@attbi.com>
parents:
26578
diff
changeset
|
178 (skip-chars-backward "-a-zA-Z0-9.") |
abd1f2362ae0
Add locate-word-at-point function
Peter Breton <pbreton@attbi.com>
parents:
26578
diff
changeset
|
179 (point)) |
abd1f2362ae0
Add locate-word-at-point function
Peter Breton <pbreton@attbi.com>
parents:
26578
diff
changeset
|
180 (save-excursion |
abd1f2362ae0
Add locate-word-at-point function
Peter Breton <pbreton@attbi.com>
parents:
26578
diff
changeset
|
181 (skip-chars-forward "-a-zA-Z0-9.") |
abd1f2362ae0
Add locate-word-at-point function
Peter Breton <pbreton@attbi.com>
parents:
26578
diff
changeset
|
182 (skip-chars-backward "." pt) |
abd1f2362ae0
Add locate-word-at-point function
Peter Breton <pbreton@attbi.com>
parents:
26578
diff
changeset
|
183 (point))))) |
abd1f2362ae0
Add locate-word-at-point function
Peter Breton <pbreton@attbi.com>
parents:
26578
diff
changeset
|
184 |
22346
63a521c6f816
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21584
diff
changeset
|
185 ;;;###autoload |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
186 (defun locate (arg search-string &optional filter) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
187 "Run the program `locate', putting results in `*Locate*' buffer. |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
188 With prefix arg, prompt for the locate command to run." |
16781 | 189 (interactive |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
190 (list |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
191 current-prefix-arg |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
192 (if (or (and current-prefix-arg (not locate-prompt-for-command)) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
193 (and (not current-prefix-arg) locate-prompt-for-command)) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
194 (read-from-minibuffer "Run locate command: " |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
195 nil nil nil 'locate-history-list) |
28413
abd1f2362ae0
Add locate-word-at-point function
Peter Breton <pbreton@attbi.com>
parents:
26578
diff
changeset
|
196 (read-from-minibuffer "Locate: " (locate-word-at-point) nil |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
197 nil 'locate-history-list) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
198 ))) |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
199 (let* ((locate-cmd-list (funcall locate-make-command-line search-string)) |
16781 | 200 (locate-cmd (car locate-cmd-list)) |
201 (locate-cmd-args (cdr locate-cmd-list)) | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
202 (run-locate-command |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
203 (or (and arg (not locate-prompt-for-command)) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
204 (and (not arg) locate-prompt-for-command))) |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
205 ) |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
206 |
16781 | 207 ;; Find the Locate buffer |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
208 (save-window-excursion |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
209 (set-buffer (get-buffer-create locate-buffer-name)) |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
210 (locate-mode) |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
211 (erase-buffer) |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
212 |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
213 (setq locate-current-filter filter) |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
214 |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
215 (if run-locate-command |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
216 (shell-command search-string locate-buffer-name) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
217 (apply 'call-process locate-cmd nil t nil locate-cmd-args)) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
218 |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
219 (and filter |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
220 (locate-filter-output filter)) |
16781 | 221 |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
222 (locate-do-setup) |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
223 ) |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
224 (and (not (string-equal (buffer-name) locate-buffer-name)) |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
225 (switch-to-buffer-other-window locate-buffer-name)) |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
226 |
28413
abd1f2362ae0
Add locate-word-at-point function
Peter Breton <pbreton@attbi.com>
parents:
26578
diff
changeset
|
227 (run-hooks 'dired-mode-hook) |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
228 (run-hooks 'locate-post-command-hook) |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
229 ) |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
230 ) |
16781 | 231 |
22347
f53740d7d40d
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22346
diff
changeset
|
232 ;;;###autoload |
16781 | 233 (defun locate-with-filter (search-string filter) |
26578
8ea5bfbb88f8
(locate-with-filter): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
26043
diff
changeset
|
234 "Run the locate command with a filter. |
8ea5bfbb88f8
(locate-with-filter): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
26043
diff
changeset
|
235 |
8ea5bfbb88f8
(locate-with-filter): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
26043
diff
changeset
|
236 The filter is a regular expression. Only results matching the filter are |
8ea5bfbb88f8
(locate-with-filter): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
26043
diff
changeset
|
237 shown; this is often useful to constrain a big search." |
16781 | 238 (interactive |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
239 (list (read-from-minibuffer "Locate: " nil nil |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
240 nil 'locate-history-list) |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
241 (read-from-minibuffer "Filter: " nil nil |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
242 nil 'locate-grep-history-list))) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
243 (locate nil search-string filter)) |
16781 | 244 |
245 (defun locate-filter-output (filter) | |
246 "Filter output from the locate command." | |
247 (goto-char (point-min)) | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
248 (delete-non-matching-lines filter)) |
16781 | 249 |
250 (defvar locate-mode-map nil | |
251 "Local keymap for Locate mode buffers.") | |
252 (if locate-mode-map | |
253 nil | |
254 | |
255 (require 'dired) | |
256 | |
257 (setq locate-mode-map (copy-keymap dired-mode-map)) | |
258 | |
259 ;; Undefine Useless Dired Menu bars | |
260 (define-key locate-mode-map [menu-bar Dired] 'undefined) | |
261 (define-key locate-mode-map [menu-bar subdir] 'undefined) | |
262 | |
263 (define-key locate-mode-map [menu-bar mark executables] 'undefined) | |
264 (define-key locate-mode-map [menu-bar mark directory] 'undefined) | |
265 (define-key locate-mode-map [menu-bar mark directories] 'undefined) | |
266 (define-key locate-mode-map [menu-bar mark symlinks] 'undefined) | |
267 | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
268 (define-key locate-mode-map [mouse-2] 'locate-mouse-view-file) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
269 (define-key locate-mode-map "\C-c\C-t" 'locate-tags) |
16781 | 270 |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
271 (define-key locate-mode-map "U" 'dired-unmark-all-files) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
272 (define-key locate-mode-map "V" 'locate-find-directory) |
16781 | 273 ) |
274 | |
275 ;; This variable is used to indent the lines and then to search for | |
276 ;; the file name | |
277 (defconst locate-filename-indentation 4 | |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
278 "The amount of indentation for each file.") |
16781 | 279 |
280 (defun locate-get-file-positions () | |
281 (save-excursion | |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
282 (end-of-line) |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
283 (let ((eol (point))) |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
284 (beginning-of-line) |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
285 |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
286 ;; Assumes names end at the end of the line |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
287 (forward-char locate-filename-indentation) |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
288 (list (point) eol)))) |
16781 | 289 |
290 ;; From SQL-mode | |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
291 (defun locate-current-line-number () |
16781 | 292 "Return the current line number, as an integer." |
293 (+ (count-lines (point-min) (point)) | |
294 (if (eq (current-column) 0) | |
295 1 | |
296 0))) | |
297 | |
298 (defun locate-get-filename () | |
299 (let ((pos (locate-get-file-positions)) | |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
300 (lineno (locate-current-line-number))) |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
301 (and (not (eq lineno 1)) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
302 (not (eq lineno 2)) |
16781 | 303 (buffer-substring (elt pos 0) (elt pos 1))))) |
304 | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
305 (defun locate-mouse-view-file (event) |
16781 | 306 "In Locate mode, view a file, using the mouse." |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
307 (interactive "@e") |
16781 | 308 (save-excursion |
309 (goto-char (posn-point (event-start event))) | |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
310 (view-file (locate-get-filename)))) |
16781 | 311 |
312 ;; Define a mode for locate | |
313 ;; Default directory is set to "/" so that dired commands, which | |
314 ;; expect to be in a tree, will work properly | |
315 (defun locate-mode () | |
316 "Major mode for the `*Locate*' buffer made by \\[locate]." | |
317 (kill-all-local-variables) | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
318 ;; Avoid clobbering this variables |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
319 (make-local-variable 'dired-subdir-alist) |
16781 | 320 (use-local-map locate-mode-map) |
321 (setq major-mode 'locate-mode | |
322 mode-name "Locate" | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
323 default-directory "/") |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
324 (dired-alist-add-1 default-directory (point-min-marker)) |
16795
2a9ae2be61ae
(locate-mode): Locally set dired-move-to-filename-regexp,
Richard M. Stallman <rms@gnu.org>
parents:
16781
diff
changeset
|
325 (make-local-variable 'dired-move-to-filename-regexp) |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
326 ;; This should support both Unix and Windoze style names |
16795
2a9ae2be61ae
(locate-mode): Locally set dired-move-to-filename-regexp,
Richard M. Stallman <rms@gnu.org>
parents:
16781
diff
changeset
|
327 (setq dired-move-to-filename-regexp |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
328 (concat "." |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
329 (make-string (1- locate-filename-indentation) ?\ ) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
330 "\\(/\\|[A-Za-z]:\\)")) |
16795
2a9ae2be61ae
(locate-mode): Locally set dired-move-to-filename-regexp,
Richard M. Stallman <rms@gnu.org>
parents:
16781
diff
changeset
|
331 (make-local-variable 'dired-actual-switches) |
2a9ae2be61ae
(locate-mode): Locally set dired-move-to-filename-regexp,
Richard M. Stallman <rms@gnu.org>
parents:
16781
diff
changeset
|
332 (setq dired-actual-switches "") |
2a9ae2be61ae
(locate-mode): Locally set dired-move-to-filename-regexp,
Richard M. Stallman <rms@gnu.org>
parents:
16781
diff
changeset
|
333 (make-local-variable 'dired-permission-flags-regexp) |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
334 (setq dired-permission-flags-regexp |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
335 (concat "^.\\(" |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
336 (make-string (1- locate-filename-indentation) ?\ ) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
337 "\\)")) |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
338 (make-local-variable 'revert-buffer-function) |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
339 (setq revert-buffer-function 'locate-update) |
16781 | 340 (run-hooks 'locate-mode-hook)) |
341 | |
342 (defun locate-do-setup () | |
343 (let ((search-string (car locate-history-list))) | |
344 (goto-char (point-min)) | |
345 (save-excursion | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
346 |
16781 | 347 ;; Nothing returned from locate command? |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
348 (and (eobp) |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
349 (progn |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
350 (kill-buffer locate-buffer-name) |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
351 (if locate-current-filter |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
352 (error "Locate: no match for %s in database using filter %s" |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
353 search-string locate-current-filter) |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
354 (error "Locate: no match for %s in database" search-string)))) |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
355 |
16781 | 356 (locate-insert-header search-string) |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
357 |
16795
2a9ae2be61ae
(locate-mode): Locally set dired-move-to-filename-regexp,
Richard M. Stallman <rms@gnu.org>
parents:
16781
diff
changeset
|
358 (while (not (eobp)) |
2a9ae2be61ae
(locate-mode): Locally set dired-move-to-filename-regexp,
Richard M. Stallman <rms@gnu.org>
parents:
16781
diff
changeset
|
359 (insert-char ?\ locate-filename-indentation t) |
2a9ae2be61ae
(locate-mode): Locally set dired-move-to-filename-regexp,
Richard M. Stallman <rms@gnu.org>
parents:
16781
diff
changeset
|
360 (locate-set-properties) |
2a9ae2be61ae
(locate-mode): Locally set dired-move-to-filename-regexp,
Richard M. Stallman <rms@gnu.org>
parents:
16781
diff
changeset
|
361 (forward-line 1))))) |
16781 | 362 |
363 (defun locate-set-properties () | |
364 (save-excursion | |
365 (let ((pos (locate-get-file-positions))) | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
366 (dired-insert-set-properties (elt pos 0) (elt pos 1))))) |
16781 | 367 |
368 (defun locate-insert-header (search-string) | |
369 (let ((locate-format-string "Matches for %s") | |
370 (locate-regexp-match | |
371 (concat " *Matches for \\(" (regexp-quote search-string) "\\)")) | |
372 (locate-format-args (list search-string)) | |
373 ) | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
374 |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
375 (and locate-fcodes-file |
16781 | 376 (setq locate-format-string |
377 (concat locate-format-string " in %s") | |
378 locate-regexp-match | |
379 (concat locate-regexp-match | |
380 " in \\(" | |
381 (regexp-quote locate-fcodes-file) | |
382 "\\)") | |
383 locate-format-args | |
384 (append (list locate-fcodes-file) locate-format-args))) | |
385 | |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
386 (and locate-current-filter |
16781 | 387 (setq locate-format-string |
388 (concat locate-format-string " using filter %s") | |
389 locate-regexp-match | |
390 (concat locate-regexp-match | |
391 " using filter " | |
392 "\\(" | |
393 (regexp-quote locate-current-filter) | |
394 "\\)") | |
395 locate-format-args | |
396 (append (list locate-current-filter) locate-format-args))) | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
397 |
16781 | 398 (setq locate-format-string |
399 (concat locate-format-string ": \n\n") | |
400 locate-regexp-match | |
401 (concat locate-regexp-match ": \n")) | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
402 |
16795
2a9ae2be61ae
(locate-mode): Locally set dired-move-to-filename-regexp,
Richard M. Stallman <rms@gnu.org>
parents:
16781
diff
changeset
|
403 (insert (apply 'format locate-format-string (reverse locate-format-args))) |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
404 |
16781 | 405 (save-excursion |
406 (goto-char (point-min)) | |
407 (if (not (looking-at locate-regexp-match)) | |
408 nil | |
409 (add-text-properties (match-beginning 1) (match-end 1) | |
410 (list 'face locate-header-face)) | |
411 (and (match-beginning 2) | |
412 (add-text-properties (match-beginning 2) (match-end 2) | |
413 (list 'face locate-header-face))) | |
414 (and (match-beginning 3) | |
415 (add-text-properties (match-beginning 3) (match-end 3) | |
416 (list 'face locate-header-face))) | |
417 )))) | |
418 | |
419 (defun locate-tags () | |
420 "Visit a tags table in `*Locate*' mode." | |
421 (interactive) | |
422 (let ((tags-table (locate-get-filename))) | |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
423 (and (y-or-n-p (format "Visit tags table %s? " tags-table)) |
21056
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
424 (visit-tags-table tags-table)))) |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
425 |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
426 ;; From Stephen Eglen <stephen@cns.ed.ac.uk> |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
427 (defun locate-update (ignore1 ignore2) |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
428 "Update the locate database. |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
429 Database is updated using the shell command in `locate-update-command'." |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
430 (let ((str (car locate-history-list))) |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
431 (cond ((yes-or-no-p "Update locate database (may take a few seconds)? ") |
124580b805a3
(locate-update): New function.
Richard M. Stallman <rms@gnu.org>
parents:
20845
diff
changeset
|
432 (shell-command locate-update-command) |
26043
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
433 (locate nil str))))) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
434 |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
435 ;;; Modified three functions from `dired.el': |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
436 ;;; dired-find-directory, |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
437 ;;; dired-find-directory-other-window |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
438 ;;; dired-get-filename |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
439 |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
440 (defun locate-find-directory () |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
441 "Visit the directory of the file mentioned on this line." |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
442 (interactive) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
443 (let ((directory-name (locate-get-dirname))) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
444 (if (file-directory-p directory-name) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
445 (find-file directory-name) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
446 (if (file-symlink-p directory-name) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
447 (error "Directory is a symlink to a nonexistent target") |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
448 (error "Directory no longer exists; run `updatedb' to update database"))))) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
449 |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
450 (defun locate-find-directory-other-window () |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
451 "Visit the directory of the file named on this line in other window." |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
452 (interactive) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
453 (find-file-other-window (locate-get-dirname))) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
454 |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
455 (defun locate-get-dirname () |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
456 "Return the directory name of the file mentioned on this line." |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
457 (let (file (filepos (locate-get-file-positions))) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
458 (if (setq file (buffer-substring (nth 0 filepos) (nth 1 filepos))) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
459 (progn |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
460 ;; Get rid of the mouse-face property that file names have. |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
461 (set-text-properties 0 (length file) nil file) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
462 (setq file (file-name-directory file)) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
463 ;; Unquote names quoted by ls or by dired-insert-directory. |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
464 ;; Using read to unquote is much faster than substituting |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
465 ;; \007 (4 chars) -> ^G (1 char) etc. in a lisp loop. |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
466 (setq file |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
467 (read |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
468 (concat "\"" |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
469 ;; some ls -b don't escape quotes, argh! |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
470 ;; This is not needed for GNU ls, though. |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
471 (or (dired-string-replace-match |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
472 "\\([^\\]\\|\\`\\)\"" file "\\1\\\\\"" nil t) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
473 file) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
474 "\""))))) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
475 (and file buffer-file-coding-system |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
476 (not file-name-coding-system) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
477 (setq file (encode-coding-string file buffer-file-coding-system))) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
478 file)) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
479 |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
480 ;; Only for GNU locate |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
481 (defun locate-in-alternate-database (search-string database) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
482 "Run the GNU locate command, using an alternate database." |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
483 (interactive |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
484 (list |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
485 (progn |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
486 ;; (require 'locate) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
487 (read-from-minibuffer "Locate: " nil nil |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
488 nil 'locate-history-list)) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
489 (read-file-name "Locate using Database: " ) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
490 )) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
491 (or (file-exists-p database) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
492 (error "Database file %s does not exist" database)) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
493 (let ((locate-make-command-line |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
494 (function (lambda (string) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
495 (cons locate-command |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
496 (list (concat "--database=" |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
497 (expand-file-name database)) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
498 string)))))) |
255f19f33b82
(locate-in-alternate-database): Added this function
Peter Breton <pbreton@attbi.com>
parents:
22347
diff
changeset
|
499 (locate nil search-string))) |
16781 | 500 |
501 (provide 'locate) | |
502 | |
503 ;;; locate.el ends here |