Mercurial > emacs
annotate lisp/find-dired.el @ 91666:2229d6434820
(diff-add-change-log-entries-other-window): Avoid the
splitter in context hunks.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Fri, 08 Feb 2008 16:00:55 +0000 |
parents | 73661ddc7ac7 |
children | 9c783b1fabda 606f2d163a64 7587f0dc0aa9 |
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 |
74439 | 3 ;; Copyright (C) 1992, 1994, 1995, 2000, 2001, 2002, 2003, 2004, |
79721 | 4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
5 |
25278 | 6 ;; Author: Roland McGrath <roland@gnu.org>, |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
7 ;; Sebastian Kremer <sk@thp.uni-koeln.de> |
21057 | 8 ;; Maintainer: FSF |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
9 ;; Keywords: unix |
294 | 10 |
14169 | 11 ;; This file is part of GNU Emacs. |
12 | |
13 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
14 ;; it under the terms of the GNU General Public License as published by | |
78236
9355f9b7bbff
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
77619
diff
changeset
|
15 ;; the Free Software Foundation; either version 3, or (at your option) |
14169 | 16 ;; any later version. |
17 | |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64091 | 25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
26 ;; Boston, MA 02110-1301, USA. | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
27 |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
30455
diff
changeset
|
28 ;;; Commentary: |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
30455
diff
changeset
|
29 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
30 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
31 |
292 | 32 (require 'dired) |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
33 |
20597 | 34 (defgroup find-dired nil |
35 "Run a `find' command and dired the output." | |
36 :group 'dired | |
37 :prefix "find-") | |
38 | |
11035 | 39 ;; 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
|
40 ;; Note -b, at least GNU find quotes spaces etc. in filenames |
474 | 41 ;;;###autoload |
20597 | 42 (defcustom find-ls-option |
43 (if (eq system-type 'berkeley-unix) '("-ls" . "-gilsb") | |
44 '("-exec ls -ld {} \\;" . "-ld")) | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
45 "*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
|
46 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
|
47 gives the option (or options) to `find' that produce the desired output. |
20597 | 48 LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output." |
49 :type '(cons (string :tag "Find Option") | |
50 (string :tag "Ls Switches")) | |
51 :group 'find-dired) | |
474 | 52 |
53 ;;;###autoload | |
55940
793fa6e18e9d
(find-ls-subdir-switches): New user option.
Luc Teirlinck <teirllm@auburn.edu>
parents:
54316
diff
changeset
|
54 (defcustom find-ls-subdir-switches "-al" |
793fa6e18e9d
(find-ls-subdir-switches): New user option.
Luc Teirlinck <teirllm@auburn.edu>
parents:
54316
diff
changeset
|
55 "`ls' switches for inserting subdirectories in `*Find*' buffers. |
793fa6e18e9d
(find-ls-subdir-switches): New user option.
Luc Teirlinck <teirllm@auburn.edu>
parents:
54316
diff
changeset
|
56 This should contain the \"-l\" switch. |
793fa6e18e9d
(find-ls-subdir-switches): New user option.
Luc Teirlinck <teirllm@auburn.edu>
parents:
54316
diff
changeset
|
57 Use the \"-F\" or \"-b\" switches if and only if you also use |
793fa6e18e9d
(find-ls-subdir-switches): New user option.
Luc Teirlinck <teirllm@auburn.edu>
parents:
54316
diff
changeset
|
58 them for `find-ls-option'." |
793fa6e18e9d
(find-ls-subdir-switches): New user option.
Luc Teirlinck <teirllm@auburn.edu>
parents:
54316
diff
changeset
|
59 :type 'string |
793fa6e18e9d
(find-ls-subdir-switches): New user option.
Luc Teirlinck <teirllm@auburn.edu>
parents:
54316
diff
changeset
|
60 :group 'find-dired |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
55940
diff
changeset
|
61 :version "22.1") |
55940
793fa6e18e9d
(find-ls-subdir-switches): New user option.
Luc Teirlinck <teirllm@auburn.edu>
parents:
54316
diff
changeset
|
62 |
793fa6e18e9d
(find-ls-subdir-switches): New user option.
Luc Teirlinck <teirllm@auburn.edu>
parents:
54316
diff
changeset
|
63 ;;;###autoload |
20597 | 64 (defcustom find-grep-options |
16569
a3c07728832a
(find-grep-options): Treat solaris, irix like BSD.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
65 (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
|
66 (string-match "solaris2" system-configuration) |
a3c07728832a
(find-grep-options): Treat solaris, irix like BSD.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
67 (string-match "irix" system-configuration)) |
a3c07728832a
(find-grep-options): Treat solaris, irix like BSD.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
68 "-s" "-q") |
474 | 69 "*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
|
70 On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it. |
20597 | 71 On other systems, the closest you can come is to use `-l'." |
72 :type 'string | |
73 :group 'find-dired) | |
292 | 74 |
79588
7f97528cec7f
(find-name-arg): New custom variable.
Jason Rumney <jasonr@gnu.org>
parents:
78236
diff
changeset
|
75 ;;;###autoload |
7f97528cec7f
(find-name-arg): New custom variable.
Jason Rumney <jasonr@gnu.org>
parents:
78236
diff
changeset
|
76 (defcustom find-name-arg |
7f97528cec7f
(find-name-arg): New custom variable.
Jason Rumney <jasonr@gnu.org>
parents:
78236
diff
changeset
|
77 (if read-file-name-completion-ignore-case |
7f97528cec7f
(find-name-arg): New custom variable.
Jason Rumney <jasonr@gnu.org>
parents:
78236
diff
changeset
|
78 "-iname" |
7f97528cec7f
(find-name-arg): New custom variable.
Jason Rumney <jasonr@gnu.org>
parents:
78236
diff
changeset
|
79 "-name") |
7f97528cec7f
(find-name-arg): New custom variable.
Jason Rumney <jasonr@gnu.org>
parents:
78236
diff
changeset
|
80 "*Argument used to specify file name pattern. |
7f97528cec7f
(find-name-arg): New custom variable.
Jason Rumney <jasonr@gnu.org>
parents:
78236
diff
changeset
|
81 If `read-file-name-completion-ignore-case' is non-nil, -iname is used so that |
7f97528cec7f
(find-name-arg): New custom variable.
Jason Rumney <jasonr@gnu.org>
parents:
78236
diff
changeset
|
82 find also ignores case. Otherwise, -name is used." |
7f97528cec7f
(find-name-arg): New custom variable.
Jason Rumney <jasonr@gnu.org>
parents:
78236
diff
changeset
|
83 :type 'string |
7f97528cec7f
(find-name-arg): New custom variable.
Jason Rumney <jasonr@gnu.org>
parents:
78236
diff
changeset
|
84 :group 'find-dired |
7f97528cec7f
(find-name-arg): New custom variable.
Jason Rumney <jasonr@gnu.org>
parents:
78236
diff
changeset
|
85 :version "22.2") |
7f97528cec7f
(find-name-arg): New custom variable.
Jason Rumney <jasonr@gnu.org>
parents:
78236
diff
changeset
|
86 |
292 | 87 (defvar find-args nil |
88 "Last arguments given to `find' by \\[find-dired].") | |
89 | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
90 ;; 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
|
91 (defvar find-args-history nil) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
92 |
48490
3531509372aa
(find-dired): Set dired-sort-inhibit to t buffer-locally.
Richard M. Stallman <rms@gnu.org>
parents:
45382
diff
changeset
|
93 (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
|
94 |
292 | 95 ;;;###autoload |
96 (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
|
97 "Run `find' and go into Dired mode on a buffer of the output. |
474 | 98 The command run (after changing into DIR) is |
99 | |
16823 | 100 find . \\( ARGS \\) -ls |
101 | |
102 except that the variable `find-ls-option' specifies what to use | |
103 as the final argument." | |
292 | 104 (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
|
105 (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
|
106 '(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
|
107 (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
|
108 ;; 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
|
109 ;; trailing slash. |
55940
793fa6e18e9d
(find-ls-subdir-switches): New user option.
Luc Teirlinck <teirllm@auburn.edu>
parents:
54316
diff
changeset
|
110 (setq dir (file-name-as-directory (expand-file-name dir))) |
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
|
111 ;; 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
|
112 (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
|
113 (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
|
114 (switch-to-buffer (get-buffer-create "*Find*")) |
30455 | 115 |
116 ;; See if there's still a `find' running, and offer to kill | |
117 ;; it first, if it is. | |
118 (let ((find (get-buffer-process (current-buffer)))) | |
119 (when find | |
120 (if (or (not (eq (process-status find) 'run)) | |
121 (yes-or-no-p "A `find' process is running; kill it? ")) | |
122 (condition-case nil | |
123 (progn | |
124 (interrupt-process find) | |
125 (sit-for 1) | |
126 (delete-process find)) | |
127 (error nil)) | |
128 (error "Cannot have two processes in `%s' at once" (buffer-name))))) | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48490
diff
changeset
|
129 |
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
|
130 (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
|
131 (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
|
132 (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
|
133 (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
|
134 (setq default-directory dir |
55940
793fa6e18e9d
(find-ls-subdir-switches): New user option.
Luc Teirlinck <teirllm@auburn.edu>
parents:
54316
diff
changeset
|
135 find-args args ; save for next interactive call |
79588
7f97528cec7f
(find-name-arg): New custom variable.
Jason Rumney <jasonr@gnu.org>
parents:
78236
diff
changeset
|
136 args (concat 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
|
137 (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
|
138 "" |
72555
20f4483c11ca
(find-dired): Use shell-quote-argument to properly
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
139 (concat |
20f4483c11ca
(find-dired): Use shell-quote-argument to properly
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
140 (shell-quote-argument "(") |
20f4483c11ca
(find-dired): Use shell-quote-argument to properly
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
141 " " args " " |
20f4483c11ca
(find-dired): Use shell-quote-argument to properly
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
142 (shell-quote-argument ")") |
20f4483c11ca
(find-dired): Use shell-quote-argument to properly
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
143 " ")) |
20f4483c11ca
(find-dired): Use shell-quote-argument to properly
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
144 (if (equal (car find-ls-option) "-exec ls -ld {} \\;") |
20f4483c11ca
(find-dired): Use shell-quote-argument to properly
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
145 (concat "-exec ls -ld " |
20f4483c11ca
(find-dired): Use shell-quote-argument to properly
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
146 (shell-quote-argument "{}") |
20f4483c11ca
(find-dired): Use shell-quote-argument to properly
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
147 " " |
20f4483c11ca
(find-dired): Use shell-quote-argument to properly
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
148 (shell-quote-argument ";")) |
20f4483c11ca
(find-dired): Use shell-quote-argument to properly
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
149 (car find-ls-option)))) |
54316
0b81a282eca3
* find-dired.el (find-dired): Call `shell-command' instead of
Michael Albinus <michael.albinus@gmx.de>
parents:
53404
diff
changeset
|
150 ;; Start the find process. |
0b81a282eca3
* find-dired.el (find-dired): Call `shell-command' instead of
Michael Albinus <michael.albinus@gmx.de>
parents:
53404
diff
changeset
|
151 (shell-command (concat args "&") (current-buffer)) |
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
|
152 ;; 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
|
153 (dired-mode dir (cdr find-ls-option)) |
53404
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
154 (let ((map (make-sparse-keymap))) |
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
155 (set-keymap-parent map (current-local-map)) |
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
156 (define-key map "\C-c\C-k" 'kill-find) |
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
157 (use-local-map map)) |
48490
3531509372aa
(find-dired): Set dired-sort-inhibit to t buffer-locally.
Richard M. Stallman <rms@gnu.org>
parents:
45382
diff
changeset
|
158 (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
|
159 (setq dired-sort-inhibit t) |
45382
374dfaadcd0f
(find-dired): Implement revert-buffer-function.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
44847
diff
changeset
|
160 (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
|
161 `(lambda (ignore-auto noconfirm) |
374dfaadcd0f
(find-dired): Implement revert-buffer-function.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
44847
diff
changeset
|
162 (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
|
163 ;; 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
|
164 (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
|
165 ;; 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
|
166 ;; 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
|
167 (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
|
168 ;; else we have an ancient tree dired (or classic dired, where |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48490
diff
changeset
|
169 ;; this does no harm) |
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
|
170 (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
|
171 (list (cons default-directory (point-min-marker))))) |
55940
793fa6e18e9d
(find-ls-subdir-switches): New user option.
Luc Teirlinck <teirllm@auburn.edu>
parents:
54316
diff
changeset
|
172 (set (make-local-variable 'dired-subdir-switches) find-ls-subdir-switches) |
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
|
173 (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
|
174 ;; 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
|
175 ;; 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
|
176 (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
|
177 ;; Make second line a ``find'' line in analogy to the ``total'' or |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48490
diff
changeset
|
178 ;; ``wildcard'' line. |
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
|
179 (insert " " args "\n") |
53404
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
180 (setq buffer-read-only t) |
54316
0b81a282eca3
* find-dired.el (find-dired): Call `shell-command' instead of
Michael Albinus <michael.albinus@gmx.de>
parents:
53404
diff
changeset
|
181 (let ((proc (get-buffer-process (current-buffer)))) |
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
|
182 (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
|
183 (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
|
184 ;; 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
|
185 (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
|
186 (setq mode-line-process '(":%s")))) |
292 | 187 |
53404
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
188 (defun kill-find () |
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
189 "Kill the `find' process running in the current buffer." |
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
190 (interactive) |
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
191 (let ((find (get-buffer-process (current-buffer)))) |
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
192 (and find (eq (process-status find) 'run) |
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
193 (eq (process-filter find) (function find-dired-filter)) |
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
194 (condition-case nil |
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
195 (delete-process find) |
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
196 (error nil))))) |
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
197 |
292 | 198 ;;;###autoload |
199 (defun find-name-dired (dir pattern) | |
200 "Search DIR recursively for files matching the globbing pattern PATTERN, | |
474 | 201 and run dired on those files. |
202 PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted. | |
203 The command run (after changing into DIR) is | |
204 | |
205 find . -name 'PATTERN' -ls" | |
206 (interactive | |
207 "DFind-name (directory): \nsFind-name (filename wildcard): ") | |
79588
7f97528cec7f
(find-name-arg): New custom variable.
Jason Rumney <jasonr@gnu.org>
parents:
78236
diff
changeset
|
208 (find-dired dir (concat find-name-arg " " (shell-quote-argument pattern)))) |
292 | 209 |
474 | 210 ;; This functionality suggested by |
211 ;; From: oblanc@watcgl.waterloo.edu (Olivier Blanc) | |
212 ;; Subject: find-dired, lookfor-dired | |
213 ;; Date: 10 May 91 17:50:00 GMT | |
214 ;; Organization: University of Waterloo | |
215 | |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2230
diff
changeset
|
216 (defalias 'lookfor-dired 'find-grep-dired) |
474 | 217 ;;;###autoload |
43644
6046fb03f1af
(find-grep-dired): Rename arg to `regexp'.
Richard M. Stallman <rms@gnu.org>
parents:
43643
diff
changeset
|
218 (defun find-grep-dired (dir regexp) |
6046fb03f1af
(find-grep-dired): Rename arg to `regexp'.
Richard M. Stallman <rms@gnu.org>
parents:
43643
diff
changeset
|
219 "Find files in DIR containing a regexp REGEXP and start Dired on output. |
474 | 220 The command run (after changing into DIR) is |
221 | |
43644
6046fb03f1af
(find-grep-dired): Rename arg to `regexp'.
Richard M. Stallman <rms@gnu.org>
parents:
43643
diff
changeset
|
222 find . -exec grep -s -e REGEXP {} \\\; -ls |
474 | 223 |
224 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
|
225 (interactive "DFind-grep (directory): \nsFind-grep (grep regexp): ") |
474 | 226 ;; find -exec doesn't allow shell i/o redirections in the command, |
227 ;; 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
|
228 ;; 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
|
229 ;; 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
|
230 ;; about symlinks, so as far as I know this is not wrong. |
474 | 231 (find-dired dir |
79588
7f97528cec7f
(find-name-arg): New custom variable.
Jason Rumney <jasonr@gnu.org>
parents:
78236
diff
changeset
|
232 (concat "-type f -exec " grep-program " " find-grep-options " -e " |
43644
6046fb03f1af
(find-grep-dired): Rename arg to `regexp'.
Richard M. Stallman <rms@gnu.org>
parents:
43643
diff
changeset
|
233 (shell-quote-argument regexp) |
72555
20f4483c11ca
(find-dired): Use shell-quote-argument to properly
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
234 " " |
20f4483c11ca
(find-dired): Use shell-quote-argument to properly
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
235 (shell-quote-argument "{}") |
20f4483c11ca
(find-dired): Use shell-quote-argument to properly
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
236 " " |
20f4483c11ca
(find-dired): Use shell-quote-argument to properly
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
237 (shell-quote-argument ";")))) |
474 | 238 |
292 | 239 (defun find-dired-filter (proc string) |
240 ;; Filter for \\[find-dired] processes. | |
53404
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
241 (let ((buf (process-buffer proc)) |
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
242 (inhibit-read-only t)) |
294 | 243 (if (buffer-name buf) ; not killed? |
244 (save-excursion | |
245 (set-buffer buf) | |
246 (save-restriction | |
247 (widen) | |
248 (save-excursion | |
249 (let ((buffer-read-only nil) | |
250 (end (point-max))) | |
251 (goto-char end) | |
252 (insert string) | |
253 (goto-char end) | |
254 (or (looking-at "^") | |
255 (forward-line 1)) | |
256 (while (looking-at "^") | |
257 (insert " ") | |
474 | 258 (forward-line 1)) |
259 ;; Convert ` ./FILE' to ` FILE' | |
260 ;; 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
|
261 ;; starts or ends within the ` ./', so back up a bit: |
474 | 262 (goto-char (- end 3)) ; no error if < 0 |
263 (while (search-forward " ./" nil t) | |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
264 (delete-region (point) (- (point) 2))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
265 ;; 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
|
266 ;; output and process it to add text properties. |
77619
42a55193213f
(find-dired-filter): Propertize all text down to eob.
Richard M. Stallman <rms@gnu.org>
parents:
75347
diff
changeset
|
267 (goto-char (point-max)) |
10929
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
268 (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
|
269 (progn |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
270 (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
|
271 (1+ (point))) |
8102a6447ea0
(find-ls-option): Doc fix: now a cons.
Roland McGrath <roland@gnu.org>
parents:
10168
diff
changeset
|
272 (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
|
273 )))) |
294 | 274 ;; The buffer has been killed. |
275 (delete-process proc)))) | |
292 | 276 |
277 (defun find-dired-sentinel (proc state) | |
278 ;; Sentinel for \\[find-dired] processes. | |
53404
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
279 (let ((buf (process-buffer proc)) |
5e98e2525d62
(kill-find): New command.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
280 (inhibit-read-only t)) |
294 | 281 (if (buffer-name buf) |
282 (save-excursion | |
283 (set-buffer buf) | |
3189
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
284 (let ((buffer-read-only nil)) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
285 (save-excursion |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
286 (goto-char (point-max)) |
42359 | 287 (insert "\n find " state) |
3189
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
288 (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
|
289 (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
|
290 (forward-char 1) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
291 (setq mode-line-process |
7073
c662b47cda3f
(find-dired, find-dired-sentinel):
Richard M. Stallman <rms@gnu.org>
parents:
5460
diff
changeset
|
292 (concat ":" |
3189
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
293 (symbol-name (process-status proc)))) |
77efda0d2b31
(find-dired-sentinel): Write a line describing death.
Roland McGrath <roland@gnu.org>
parents:
2571
diff
changeset
|
294 ;; 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
|
295 ;; 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
|
296 ;; 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
|
297 (delete-process proc) |
11585
e28ae3856c1d
(find-dired-sentinel): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
11035
diff
changeset
|
298 (force-mode-line-update))) |
294 | 299 (message "find-dired %s finished." (current-buffer)))))) |
55940
793fa6e18e9d
(find-ls-subdir-switches): New user option.
Luc Teirlinck <teirllm@auburn.edu>
parents:
54316
diff
changeset
|
300 |
1225
e16f52a7c9f9
New version from sk. Further hacked:
Roland McGrath <roland@gnu.org>
parents:
1183
diff
changeset
|
301 |
584 | 302 (provide 'find-dired) |
303 | |
52401 | 304 ;;; arch-tag: 8edece95-af00-4221-bc74-a4bd2f75f9b0 |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
305 ;;; find-dired.el ends here |