Mercurial > emacs
annotate lisp/find-dired.el @ 48625:b696e2bae8da
2002-12-02 Andrew Choi <akochoi@shaw.ca>
* macmenu.c (add_menu_item, fill_menubar): Truncate menu item
names to 255 characters.
* macterm.c (XTread_socket): If all frames have been collapsed,
expand the first one before handling drag-and-drop events.
* s/darwin.h (GETPGRP_NO_ARG): Delete. Replaced by GETPGRP_VOID,
which is detected by autoconf.
author | Andrew Choi <akochoi@shaw.ca> |
---|---|
date | Mon, 02 Dec 2002 17:13:46 +0000 |
parents | 3531509372aa |
children | 37645a051842 |
rev | line source |
---|---|
2230
6314334d7c2b
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1225
diff
changeset
|
1 ;;; find-dired.el --- run a `find' command and dired the output |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
44847
f19c8ff457df
(find-name-dired): Don't quote pattern twice.
Andreas Schwab <schwab@suse.de>
parents:
43775
diff
changeset
|
3 ;; Copyright (C) 1992, 1994, 1995, 2000, 2002 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 |
25278 | 5 ;; Author: Roland McGrath <roland@gnu.org>, |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
6 ;; Sebastian Kremer <sk@thp.uni-koeln.de> |
21057 | 7 ;; Maintainer: FSF |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
8 ;; Keywords: unix |
294 | 9 |
14169 | 10 ;; This file is part of GNU Emacs. |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
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. | |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
26 |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
30455
diff
changeset
|
27 ;;; Commentary: |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
30455
diff
changeset
|
28 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
29 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
30 |
292 | 31 (require 'dired) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
32 |
20597 | 33 (defgroup find-dired nil |
34 "Run a `find' command and dired the output." | |
35 :group 'dired | |
36 :prefix "find-") | |
37 | |
26042
1eb2f529058f
(find-dired-find-program): Added this variable.
Peter Breton <pbreton@attbi.com>
parents:
25278
diff
changeset
|
38 (defcustom find-dired-find-program "find" |
1eb2f529058f
(find-dired-find-program): Added this variable.
Peter Breton <pbreton@attbi.com>
parents:
25278
diff
changeset
|
39 "Program used to find files." |
1eb2f529058f
(find-dired-find-program): Added this variable.
Peter Breton <pbreton@attbi.com>
parents:
25278
diff
changeset
|
40 :group 'dired |
30455 | 41 :type 'file) |
26042
1eb2f529058f
(find-dired-find-program): Added this variable.
Peter Breton <pbreton@attbi.com>
parents:
25278
diff
changeset
|
42 |
11035 | 43 ;; find's -ls corresponds to these switches. |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
44 ;; Note -b, at least GNU find quotes spaces etc. in filenames |
474 | 45 ;;;###autoload |
20597 | 46 (defcustom find-ls-option |
47 (if (eq system-type 'berkeley-unix) '("-ls" . "-gilsb") | |
48 '("-exec ls -ld {} \\;" . "-ld")) | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
49 "*Description of the option to `find' to produce an `ls -l'-type listing. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
50 This is a cons of two strings (FIND-OPTION . LS-SWITCHES). FIND-OPTION |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
51 gives the option (or options) to `find' that produce the desired output. |
20597 | 52 LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output." |
53 :type '(cons (string :tag "Find Option") | |
54 (string :tag "Ls Switches")) | |
55 :group 'find-dired) | |
474 | 56 |
57 ;;;###autoload | |
20597 | 58 (defcustom find-grep-options |
16569
a3c07728832a
(find-grep-options): Treat solaris, irix like BSD.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
59 (if (or (eq system-type 'berkeley-unix) |
a3c07728832a
(find-grep-options): Treat solaris, irix like BSD.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
60 (string-match "solaris2" system-configuration) |
a3c07728832a
(find-grep-options): Treat solaris, irix like BSD.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
61 (string-match "irix" system-configuration)) |
a3c07728832a
(find-grep-options): Treat solaris, irix like BSD.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
62 "-s" "-q") |
474 | 63 "*Option to grep to be as silent as possible. |
10168
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
64 On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it. |
20597 | 65 On other systems, the closest you can come is to use `-l'." |
66 :type 'string | |
67 :group 'find-dired) | |
292 | 68 |
69 (defvar find-args nil | |
70 "Last arguments given to `find' by \\[find-dired].") | |
71 | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
72 ;; History of find-args values entered in the minibuffer. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
73 (defvar find-args-history nil) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
74 |
48490
3531509372aa
(find-dired): Set dired-sort-inhibit to t buffer-locally.
Richard M. Stallman <rms@gnu.org>
parents:
45382
diff
changeset
|
75 (defvar dired-sort-inhibit) |
3531509372aa
(find-dired): Set dired-sort-inhibit to t buffer-locally.
Richard M. Stallman <rms@gnu.org>
parents:
45382
diff
changeset
|
76 |
292 | 77 ;;;###autoload |
78 (defun find-dired (dir args) | |
22630
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
79 "Run `find' and go into Dired mode on a buffer of the output. |
474 | 80 The command run (after changing into DIR) is |
81 | |
16823 | 82 find . \\( ARGS \\) -ls |
83 | |
84 except that the variable `find-ls-option' specifies what to use | |
85 as the final argument." | |
292 | 86 (interactive (list (read-file-name "Run find in directory: " nil "" t) |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
87 (read-string "Run find (with args): " find-args |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
88 '(find-args-history . 1)))) |
22630
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
89 (let ((dired-buffers dired-buffers)) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
90 ;; Expand DIR ("" means default-directory), and make sure it has a |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
91 ;; trailing slash. |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
92 (setq dir (abbreviate-file-name |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
93 (file-name-as-directory (expand-file-name dir)))) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
94 ;; Check that it's really a directory. |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
95 (or (file-directory-p dir) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
96 (error "find-dired needs a directory: %s" dir)) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
97 (switch-to-buffer (get-buffer-create "*Find*")) |
30455 | 98 |
99 ;; See if there's still a `find' running, and offer to kill | |
100 ;; it first, if it is. | |
101 (let ((find (get-buffer-process (current-buffer)))) | |
102 (when find | |
103 (if (or (not (eq (process-status find) 'run)) | |
104 (yes-or-no-p "A `find' process is running; kill it? ")) | |
105 (condition-case nil | |
106 (progn | |
107 (interrupt-process find) | |
108 (sit-for 1) | |
109 (delete-process find)) | |
110 (error nil)) | |
111 (error "Cannot have two processes in `%s' at once" (buffer-name))))) | |
112 | |
22630
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
113 (widen) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
114 (kill-all-local-variables) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
115 (setq buffer-read-only nil) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
116 (erase-buffer) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
117 (setq default-directory dir |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
118 find-args args ; save for next interactive call |
26042
1eb2f529058f
(find-dired-find-program): Added this variable.
Peter Breton <pbreton@attbi.com>
parents:
25278
diff
changeset
|
119 args (concat find-dired-find-program " . " |
22630
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
120 (if (string= args "") |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
121 "" |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
122 (concat "\\( " args " \\) ")) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
123 (car find-ls-option))) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
124 ;; The next statement will bomb in classic dired (no optional arg allowed) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
125 (dired-mode dir (cdr find-ls-option)) |
48490
3531509372aa
(find-dired): Set dired-sort-inhibit to t buffer-locally.
Richard M. Stallman <rms@gnu.org>
parents:
45382
diff
changeset
|
126 (make-local-variable 'dired-sort-inhibit) |
3531509372aa
(find-dired): Set dired-sort-inhibit to t buffer-locally.
Richard M. Stallman <rms@gnu.org>
parents:
45382
diff
changeset
|
127 (setq dired-sort-inhibit t) |
45382
374dfaadcd0f
(find-dired): Implement revert-buffer-function.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
44847
diff
changeset
|
128 (set (make-local-variable 'revert-buffer-function) |
374dfaadcd0f
(find-dired): Implement revert-buffer-function.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
44847
diff
changeset
|
129 `(lambda (ignore-auto noconfirm) |
374dfaadcd0f
(find-dired): Implement revert-buffer-function.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
44847
diff
changeset
|
130 (find-dired ,dir ,find-args))) |
22630
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
131 ;; Set subdir-alist so that Tree Dired will work: |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
132 (if (fboundp 'dired-simple-subdir-alist) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
133 ;; will work even with nested dired format (dired-nstd.el,v 1.15 |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
134 ;; and later) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
135 (dired-simple-subdir-alist) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
136 ;; else we have an ancient tree dired (or classic dired, where |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
137 ;; this does no harm) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
138 (set (make-local-variable 'dired-subdir-alist) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
139 (list (cons default-directory (point-min-marker))))) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
140 (setq buffer-read-only nil) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
141 ;; Subdir headlerline must come first because the first marker in |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
142 ;; subdir-alist points there. |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
143 (insert " " dir ":\n") |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
144 ;; Make second line a ``find'' line in analogy to the ``total'' or |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
145 ;; ``wildcard'' line. |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
146 (insert " " args "\n") |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
147 ;; Start the find process. |
26042
1eb2f529058f
(find-dired-find-program): Added this variable.
Peter Breton <pbreton@attbi.com>
parents:
25278
diff
changeset
|
148 (let ((proc (start-process-shell-command find-dired-find-program (current-buffer) args))) |
22630
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
149 (set-process-filter proc (function find-dired-filter)) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
150 (set-process-sentinel proc (function find-dired-sentinel)) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
151 ;; Initialize the process marker; it is used by the filter. |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
152 (move-marker (process-mark proc) 1 (current-buffer))) |
e4a895537576
(find-dired): Bind dired-buffers so it can't change. Use abbreviate-file-name.
Richard M. Stallman <rms@gnu.org>
parents:
21057
diff
changeset
|
153 (setq mode-line-process '(":%s")))) |
292 | 154 |
155 ;;;###autoload | |
156 (defun find-name-dired (dir pattern) | |
157 "Search DIR recursively for files matching the globbing pattern PATTERN, | |
474 | 158 and run dired on those files. |
159 PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted. | |
160 The command run (after changing into DIR) is | |
161 | |
162 find . -name 'PATTERN' -ls" | |
163 (interactive | |
164 "DFind-name (directory): \nsFind-name (filename wildcard): ") | |
44847
f19c8ff457df
(find-name-dired): Don't quote pattern twice.
Andreas Schwab <schwab@suse.de>
parents:
43775
diff
changeset
|
165 (find-dired dir (concat "-name " (shell-quote-argument pattern)))) |
292 | 166 |
474 | 167 ;; This functionality suggested by |
168 ;; From: oblanc@watcgl.waterloo.edu (Olivier Blanc) | |
169 ;; Subject: find-dired, lookfor-dired | |
170 ;; Date: 10 May 91 17:50:00 GMT | |
171 ;; Organization: University of Waterloo | |
172 | |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2230
diff
changeset
|
173 (defalias 'lookfor-dired 'find-grep-dired) |
474 | 174 ;;;###autoload |
43644
6046fb03f1af
(find-grep-dired): Rename arg to `regexp'.
Richard M. Stallman <rms@gnu.org>
parents:
43643
diff
changeset
|
175 (defun find-grep-dired (dir regexp) |
6046fb03f1af
(find-grep-dired): Rename arg to `regexp'.
Richard M. Stallman <rms@gnu.org>
parents:
43643
diff
changeset
|
176 "Find files in DIR containing a regexp REGEXP and start Dired on output. |
474 | 177 The command run (after changing into DIR) is |
178 | |
43644
6046fb03f1af
(find-grep-dired): Rename arg to `regexp'.
Richard M. Stallman <rms@gnu.org>
parents:
43643
diff
changeset
|
179 find . -exec grep -s -e REGEXP {} \\\; -ls |
474 | 180 |
181 Thus ARG can also contain additional grep options." | |
10168
64163654c255
(find-grep-options): Use -q on non-BSD systems.
Richard M. Stallman <rms@gnu.org>
parents:
10024
diff
changeset
|
182 (interactive "DFind-grep (directory): \nsFind-grep (grep regexp): ") |
474 | 183 ;; find -exec doesn't allow shell i/o redirections in the command, |
184 ;; or we could use `grep -l >/dev/null' | |
18580
717e09103d06
(find-grep-dired): Use -type f.
Richard M. Stallman <rms@gnu.org>
parents:
16823
diff
changeset
|
185 ;; We use -type f, not ! -type d, to avoid getting screwed |
717e09103d06
(find-grep-dired): Use -type f.
Richard M. Stallman <rms@gnu.org>
parents:
16823
diff
changeset
|
186 ;; by FIFOs and devices. I'm not sure what's best to do |
717e09103d06
(find-grep-dired): Use -type f.
Richard M. Stallman <rms@gnu.org>
parents:
16823
diff
changeset
|
187 ;; about symlinks, so as far as I know this is not wrong. |
474 | 188 (find-dired dir |
43643
54f8be735591
(find-grep-dired): Call shell-quote-argument. Specify the -e option.
Richard M. Stallman <rms@gnu.org>
parents:
42359
diff
changeset
|
189 (concat "-type f -exec grep " find-grep-options " -e " |
43644
6046fb03f1af
(find-grep-dired): Rename arg to `regexp'.
Richard M. Stallman <rms@gnu.org>
parents:
43643
diff
changeset
|
190 (shell-quote-argument regexp) |
43648
cc5a0eac67cf
(find-dired-filter): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
43644
diff
changeset
|
191 " {} \\\; "))) |
474 | 192 |
292 | 193 (defun find-dired-filter (proc string) |
194 ;; Filter for \\[find-dired] processes. | |
294 | 195 (let ((buf (process-buffer proc))) |
196 (if (buffer-name buf) ; not killed? | |
197 (save-excursion | |
198 (set-buffer buf) | |
199 (save-restriction | |
200 (widen) | |
201 (save-excursion | |
202 (let ((buffer-read-only nil) | |
203 (end (point-max))) | |
204 (goto-char end) | |
205 (insert string) | |
206 (goto-char end) | |
207 (or (looking-at "^") | |
208 (forward-line 1)) | |
209 (while (looking-at "^") | |
210 (insert " ") | |
474 | 211 (forward-line 1)) |
212 ;; Convert ` ./FILE' to ` FILE' | |
213 ;; This would lose if the current chunk of output | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
214 ;; starts or ends within the ` ./', so back up a bit: |
474 | 215 (goto-char (- end 3)) ; no error if < 0 |
216 (while (search-forward " ./" nil t) | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
217 (delete-region (point) (- (point) 2))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
218 ;; Find all the complete lines in the unprocessed |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
219 ;; output and process it to add text properties. |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
220 (goto-char end) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
221 (if (search-backward "\n" (process-mark proc) t) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
222 (progn |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
223 (dired-insert-set-properties (process-mark proc) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
224 (1+ (point))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
225 (move-marker (process-mark proc) (1+ (point))))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
226 )))) |
294 | 227 ;; The buffer has been killed. |
228 (delete-process proc)))) | |
292 | 229 |
230 (defun find-dired-sentinel (proc state) | |
231 ;; Sentinel for \\[find-dired] processes. | |
294 | 232 (let ((buf (process-buffer proc))) |
233 (if (buffer-name buf) | |
234 (save-excursion | |
235 (set-buffer buf) | |
3189
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
236 (let ((buffer-read-only nil)) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
237 (save-excursion |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
238 (goto-char (point-max)) |
42359 | 239 (insert "\n find " state) |
3189
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
240 (forward-char -1) ;Back up before \n at end of STATE. |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
241 (insert " at " (substring (current-time-string) 0 19)) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
242 (forward-char 1) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
243 (setq mode-line-process |
7073
c662b47cda3f
(find-dired, find-dired-sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
5460
diff
changeset
|
244 (concat ":" |
3189
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
245 (symbol-name (process-status proc)))) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
246 ;; Since the buffer and mode line will show that the |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
247 ;; process is dead, we can delete it now. Otherwise it |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
248 ;; will stay around until M-x list-processes. |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
249 (delete-process proc) |
11585
e28ae3856c1d
(find-dired-sentinel): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
11035
diff
changeset
|
250 (force-mode-line-update))) |
294 | 251 (message "find-dired %s finished." (current-buffer)))))) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
252 |
584 | 253 (provide 'find-dired) |
254 | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
255 ;;; find-dired.el ends here |