Mercurial > emacs
annotate lisp/dired-aux.el @ 5341:2f4fab6070b8
Provide bytecomp as well as byte-compile.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 25 Dec 1993 00:32:37 +0000 |
parents | edd5fb2614b1 |
children | 9217f29851c2 |
rev | line source |
---|---|
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1756
diff
changeset
|
1 ;;; dired-aux.el --- all of dired except what people usually use |
724 | 2 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
4 |
794
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
724
diff
changeset
|
5 ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>. |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
794
diff
changeset
|
6 |
724 | 7 ;; This file is part of GNU Emacs. |
8 | |
9 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
10 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
794
diff
changeset
|
11 ;; the Free Software Foundation; either version 2, or (at your option) |
724 | 12 ;; any later version. |
13 | |
14 ;; GNU Emacs is distributed in the hope that it will be useful, | |
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 ;; GNU General Public License for more details. | |
18 | |
19 ;; You should have received a copy of the GNU General Public License | |
20 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
21 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
22 | |
794
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
724
diff
changeset
|
23 ;;; Commentary: |
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
724
diff
changeset
|
24 |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2229
diff
changeset
|
25 ;; The parts of dired mode not normally used. This is a space-saving hack |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2229
diff
changeset
|
26 ;; to avoid having to load a large mode when all that's wanted are a few |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2229
diff
changeset
|
27 ;; functions. |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2229
diff
changeset
|
28 |
724 | 29 ;; Rewritten in 1990/1991 to add tree features, file marking and |
30 ;; sorting by Sebastian Kremer <sk@thp.uni-koeln.de>. | |
31 ;; Finished up by rms in 1992. | |
32 | |
794
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
724
diff
changeset
|
33 ;;; Code: |
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
724
diff
changeset
|
34 |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
35 ;; We need macros in dired.el to compile properly. |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
36 (eval-when-compile (require 'dired)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
37 |
724 | 38 ;;; 15K |
39 ;;;###begin dired-cmd.el | |
40 ;; Diffing and compressing | |
41 | |
42 ;;;###autoload | |
43 (defun dired-diff (file &optional switches) | |
44 "Compare file at point with file FILE using `diff'. | |
45 FILE defaults to the file at the mark. | |
4478
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
46 The prompted-for file is the first file given to `diff'. |
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
47 With prefix arg, prompt for second argument SWITCHES, |
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
48 which is options for `diff'." |
724 | 49 (interactive |
3950
6e13c3b03b67
* dired-aux.el (dired-diff): Work even when the mark is inactive.
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
50 (let ((default (if (mark t) |
6e13c3b03b67
* dired-aux.el (dired-diff): Work even when the mark is inactive.
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
51 (save-excursion (goto-char (mark t)) |
724 | 52 (dired-get-filename t t))))) |
5144
9083db1526b4
(dired-diff): Require diff.
Richard M. Stallman <rms@gnu.org>
parents:
4580
diff
changeset
|
53 (require 'diff) |
724 | 54 (list (read-file-name (format "Diff %s with: %s" |
55 (dired-get-filename t) | |
56 (if default | |
57 (concat "(default " default ") ") | |
58 "")) | |
59 (dired-current-directory) default t) | |
4478
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
60 (if current-prefix-arg |
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
61 (read-string "Options for diff: " |
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
62 (if (stringp diff-switches) |
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
63 diff-switches |
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
64 (mapconcat 'identity diff-switches " "))))))) |
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
65 (diff file (dired-get-filename t) switches)) |
724 | 66 |
67 ;;;###autoload | |
68 (defun dired-backup-diff (&optional switches) | |
69 "Diff this file with its backup file or vice versa. | |
70 Uses the latest backup, if there are several numerical backups. | |
71 If this file is a backup, diff it with its original. | |
4478
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
72 The backup file is the first file given to `diff'. |
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
73 With prefix arg, prompt for argument SWITCHES which is options for `diff'." |
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
74 (interactive |
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
75 (if current-prefix-arg |
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
76 (list (read-string "Options for diff: " |
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
77 (if (stringp diff-switches) |
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
78 diff-switches |
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
79 (mapconcat 'identity diff-switches " ")))) |
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
80 nil)) |
f25a821aefb0
(dired-diff): Read options right here;
Richard M. Stallman <rms@gnu.org>
parents:
3950
diff
changeset
|
81 (diff-backup (dired-get-filename) switches)) |
724 | 82 |
83 (defun dired-do-chxxx (attribute-name program op-symbol arg) | |
84 ;; Change file attributes (mode, group, owner) of marked files and | |
85 ;; refresh their file lines. | |
86 ;; ATTRIBUTE-NAME is a string describing the attribute to the user. | |
87 ;; PROGRAM is the program used to change the attribute. | |
88 ;; OP-SYMBOL is the type of operation (for use in dired-mark-pop-up). | |
89 ;; ARG describes which files to use, as in dired-get-marked-files. | |
90 (let* ((files (dired-get-marked-files t arg)) | |
91 (new-attribute | |
92 (dired-mark-read-string | |
93 (concat "Change " attribute-name " of %s to: ") | |
94 nil op-symbol arg files)) | |
95 (operation (concat program " " new-attribute)) | |
96 failures) | |
97 (setq failures | |
98 (dired-bunch-files 10000 | |
99 (function dired-check-process) | |
100 (list operation program new-attribute) | |
101 files)) | |
102 (dired-do-redisplay arg);; moves point if ARG is an integer | |
103 (if failures | |
104 (dired-log-summary | |
105 (format "%s: error" operation) | |
106 nil)))) | |
107 | |
108 ;;;###autoload | |
109 (defun dired-do-chmod (&optional arg) | |
110 "Change the mode of the marked (or next ARG) files. | |
111 This calls chmod, thus symbolic modes like `g+w' are allowed." | |
112 (interactive "P") | |
113 (dired-do-chxxx "Mode" "chmod" 'chmod arg)) | |
114 | |
115 ;;;###autoload | |
116 (defun dired-do-chgrp (&optional arg) | |
117 "Change the group of the marked (or next ARG) files." | |
118 (interactive "P") | |
119 (dired-do-chxxx "Group" "chgrp" 'chgrp arg)) | |
120 | |
121 ;;;###autoload | |
122 (defun dired-do-chown (&optional arg) | |
123 "Change the owner of the marked (or next ARG) files." | |
124 (interactive "P") | |
125 (dired-do-chxxx "Owner" dired-chown-program 'chown arg)) | |
126 | |
127 ;; Process all the files in FILES in batches of a convenient size, | |
128 ;; by means of (FUNCALL FUNCTION ARGS... SOME-FILES...). | |
129 ;; Batches are chosen to need less than MAX chars for the file names, | |
130 ;; allowing 3 extra characters of separator per file name. | |
131 (defun dired-bunch-files (max function args files) | |
132 (let (pending | |
133 (pending-length 0) | |
134 failures) | |
135 ;; Accumulate files as long as they fit in MAX chars, | |
136 ;; then process the ones accumulated so far. | |
137 (while files | |
138 (let* ((thisfile (car files)) | |
139 (thislength (+ (length thisfile) 3)) | |
140 (rest (cdr files))) | |
141 ;; If we have at least 1 pending file | |
142 ;; and this file won't fit in the length limit, process now. | |
143 (if (and pending (> (+ thislength pending-length) max)) | |
144 (setq failures | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
145 (nconc (apply function (append args pending)) |
724 | 146 failures) |
147 pending nil | |
148 pending-length 0)) | |
149 ;; Do (setq pending (cons thisfile pending)) | |
150 ;; but reuse the cons that was in `files'. | |
151 (setcdr files pending) | |
152 (setq pending files) | |
153 (setq pending-length (+ thislength pending-length)) | |
154 (setq files rest))) | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
155 (nconc (apply function (append args pending)) |
724 | 156 failures))) |
157 | |
158 ;;;###autoload | |
159 (defun dired-do-print (&optional arg) | |
160 "Print the marked (or next ARG) files. | |
161 Uses the shell command coming from variables `lpr-command' and | |
162 `lpr-switches' as default." | |
163 (interactive "P") | |
164 (let* ((file-list (dired-get-marked-files t arg)) | |
165 (command (dired-mark-read-string | |
166 "Print %s with: " | |
167 (apply 'concat lpr-command " " lpr-switches) | |
168 'print arg file-list))) | |
169 (dired-run-shell-command (dired-shell-stuff-it command file-list nil)))) | |
170 | |
171 ;; Read arguments for a marked-files command that wants a string | |
172 ;; that is not a file name, | |
173 ;; perhaps popping up the list of marked files. | |
174 ;; ARG is the prefix arg and indicates whether the files came from | |
175 ;; marks (ARG=nil) or a repeat factor (integerp ARG). | |
176 ;; If the current file was used, the list has but one element and ARG | |
177 ;; does not matter. (It is non-nil, non-integer in that case, namely '(4)). | |
178 | |
179 (defun dired-mark-read-string (prompt initial op-symbol arg files) | |
180 ;; PROMPT for a string, with INITIAL input. | |
181 ;; Other args are used to give user feedback and pop-up: | |
182 ;; OP-SYMBOL of command, prefix ARG, marked FILES. | |
183 (dired-mark-pop-up | |
184 nil op-symbol files | |
185 (function read-string) | |
186 (format prompt (dired-mark-prompt arg files)) initial)) | |
187 | |
890
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
188 ;;; Cleaning a directory: flagging some backups for deletion. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
189 |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
190 (defvar dired-file-version-alist) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
191 |
890
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
192 (defun dired-clean-directory (keep) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
193 "Flag numerical backups for deletion. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
194 Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
195 Positive prefix arg KEEP overrides `dired-kept-versions'; |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
196 Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
197 |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
198 To clear the flags on these files, you can use \\[dired-flag-backup-files] |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
199 with a prefix argument." |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
200 (interactive "P") |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
201 (setq keep (if keep (prefix-numeric-value keep) dired-kept-versions)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
202 (let ((early-retention (if (< keep 0) (- keep) kept-old-versions)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
203 (late-retention (if (<= keep 0) dired-kept-versions keep)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
204 (dired-file-version-alist ())) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
205 (message "Cleaning numerical backups (keeping %d late, %d old)..." |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
206 late-retention early-retention) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
207 ;; Look at each file. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
208 ;; If the file has numeric backup versions, |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
209 ;; put on dired-file-version-alist an element of the form |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
210 ;; (FILENAME . VERSION-NUMBER-LIST) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
211 (dired-map-dired-file-lines (function dired-collect-file-versions)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
212 ;; Sort each VERSION-NUMBER-LIST, |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
213 ;; and remove the versions not to be deleted. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
214 (let ((fval dired-file-version-alist)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
215 (while fval |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
216 (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
217 (v-count (length sorted-v-list))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
218 (if (> v-count (+ early-retention late-retention)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
219 (rplacd (nthcdr early-retention sorted-v-list) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
220 (nthcdr (- v-count late-retention) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
221 sorted-v-list))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
222 (rplacd (car fval) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
223 (cdr sorted-v-list))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
224 (setq fval (cdr fval)))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
225 ;; Look at each file. If it is a numeric backup file, |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
226 ;; find it in a VERSION-NUMBER-LIST and maybe flag it for deletion. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
227 (dired-map-dired-file-lines (function dired-trample-file-versions)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
228 (message "Cleaning numerical backups...done"))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
229 |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
230 ;;; Subroutines of dired-clean-directory. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
231 |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
232 (defun dired-map-dired-file-lines (fun) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
233 ;; Perform FUN with point at the end of each non-directory line. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
234 ;; FUN takes one argument, the filename (complete pathname). |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
235 (save-excursion |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
236 (let (file buffer-read-only) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
237 (goto-char (point-min)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
238 (while (not (eobp)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
239 (save-excursion |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
240 (and (not (looking-at dired-re-dir)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
241 (not (eolp)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
242 (setq file (dired-get-filename nil t)) ; nil on non-file |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
243 (progn (end-of-line) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
244 (funcall fun file)))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
245 (forward-line 1))))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
246 |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
247 (defun dired-collect-file-versions (fn) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
248 ;; "If it looks like file FN has versions, return a list of the versions. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
249 ;;That is a list of strings which are file names. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
250 ;;The caller may want to flag some of these files for deletion." |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
251 (let* ((base-versions |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
252 (concat (file-name-nondirectory fn) ".~")) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
253 (bv-length (length base-versions)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
254 (possibilities (file-name-all-completions |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
255 base-versions |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
256 (file-name-directory fn))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
257 (versions (mapcar 'backup-extract-version possibilities))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
258 (if versions |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
259 (setq dired-file-version-alist (cons (cons fn versions) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
260 dired-file-version-alist))))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
261 |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
262 (defun dired-trample-file-versions (fn) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
263 (let* ((start-vn (string-match "\\.~[0-9]+~$" fn)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
264 base-version-list) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
265 (and start-vn |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
266 (setq base-version-list ; there was a base version to which |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
267 (assoc (substring fn 0 start-vn) ; this looks like a |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
268 dired-file-version-alist)) ; subversion |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
269 (not (memq (string-to-int (substring fn (+ 2 start-vn))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
270 base-version-list)) ; this one doesn't make the cut |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
271 (progn (beginning-of-line) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
272 (delete-char 1) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
273 (insert dired-del-marker))))) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
878
diff
changeset
|
274 |
724 | 275 ;;; Shell commands |
276 ;;>>> install (move this function into simple.el) | |
277 (defun dired-shell-quote (filename) | |
278 "Quote a file name for inferior shell (see variable `shell-file-name')." | |
279 ;; Quote everything except POSIX filename characters. | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3398
diff
changeset
|
280 ;; This should be safe enough even for really weird shells. |
724 | 281 (let ((result "") (start 0) end) |
282 (while (string-match "[^---0-9a-zA-Z_./]" filename start) | |
283 (setq end (match-beginning 0) | |
284 result (concat result (substring filename start end) | |
285 "\\" (substring filename end (1+ end))) | |
286 start (1+ end))) | |
287 (concat result (substring filename start)))) | |
288 | |
289 (defun dired-read-shell-command (prompt arg files) | |
290 ;; "Read a dired shell command prompting with PROMPT (using read-string). | |
291 ;;ARG is the prefix arg and may be used to indicate in the prompt which | |
292 ;; files are affected. | |
293 ;;This is an extra function so that you can redefine it, e.g., to use gmhist." | |
294 (dired-mark-pop-up | |
295 nil 'shell files | |
296 (function read-string) | |
297 (format prompt (dired-mark-prompt arg files)))) | |
298 | |
299 ;; The in-background argument is only needed in Emacs 18 where | |
300 ;; shell-command doesn't understand an appended ampersand `&'. | |
301 ;;;###autoload | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
302 (defun dired-do-shell-command (command &optional arg) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
303 "Run a shell command COMMAND on the marked files. |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
304 If no files are marked or a specific numeric prefix arg is given, |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
305 the next ARG files are used. Just \\[universal-argument] means the current file. |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
306 The prompt mentions the file(s) or the marker, as appropriate. |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
307 |
724 | 308 If there is output, it goes to a separate buffer. |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
309 |
724 | 310 Normally the command is run on each file individually. |
311 However, if there is a `*' in the command then it is run | |
312 just once with the entire file list substituted there. | |
313 | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
314 No automatic redisplay of dired buffers is attempted, as there's no |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
315 telling what files the command may have changed. Type |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
316 \\[dired-do-redisplay] to redisplay the marked files. |
724 | 317 |
318 The shell command has the top level directory as working directory, so | |
319 output files usually are created there instead of in a subdir." | |
320 ;;Functions dired-run-shell-command and dired-shell-stuff-it do the | |
321 ;;actual work and can be redefined for customization. | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
322 (interactive (list |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
323 ;; Want to give feedback whether this file or marked files are used: |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
324 (dired-read-shell-command (concat "! on " |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
325 "%s: ") |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
326 current-prefix-arg |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
327 (dired-get-marked-files |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
328 t current-prefix-arg)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
329 current-prefix-arg)) |
724 | 330 (let* ((on-each (not (string-match "\\*" command))) |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
331 (file-list (dired-get-marked-files t arg))) |
724 | 332 (if on-each |
333 (dired-bunch-files | |
334 (- 10000 (length command)) | |
335 (function (lambda (&rest files) | |
336 (dired-run-shell-command | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
337 (dired-shell-stuff-it command files t arg)))) |
724 | 338 nil |
339 file-list) | |
340 ;; execute the shell command | |
341 (dired-run-shell-command | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
342 (dired-shell-stuff-it command file-list nil arg))))) |
724 | 343 |
344 ;; Might use {,} for bash or csh: | |
345 (defvar dired-mark-prefix "" | |
346 "Prepended to marked files in dired shell commands.") | |
347 (defvar dired-mark-postfix "" | |
348 "Appended to marked files in dired shell commands.") | |
349 (defvar dired-mark-separator " " | |
350 "Separates marked files in dired shell commands.") | |
351 | |
352 (defun dired-shell-stuff-it (command file-list on-each &optional raw-arg) | |
353 ;; "Make up a shell command line from COMMAND and FILE-LIST. | |
354 ;; If ON-EACH is t, COMMAND should be applied to each file, else | |
355 ;; simply concat all files and apply COMMAND to this. | |
356 ;; FILE-LIST's elements will be quoted for the shell." | |
357 ;; Might be redefined for smarter things and could then use RAW-ARG | |
358 ;; (coming from interactive P and currently ignored) to decide what to do. | |
359 ;; Smart would be a way to access basename or extension of file names. | |
360 ;; See dired-trns.el for an approach to this. | |
361 ;; Bug: There is no way to quote a * | |
362 ;; On the other hand, you can never accidentally get a * into your cmd. | |
363 (let ((stuff-it | |
364 (if (string-match "\\*" command) | |
365 (function (lambda (x) | |
366 (dired-replace-in-string "\\*" x command))) | |
367 (function (lambda (x) (concat command " " x)))))) | |
368 (if on-each | |
369 (mapconcat stuff-it (mapcar 'dired-shell-quote file-list) ";") | |
370 (let ((fns (mapconcat 'dired-shell-quote | |
371 file-list dired-mark-separator))) | |
372 (if (> (length file-list) 1) | |
373 (setq fns (concat dired-mark-prefix fns dired-mark-postfix))) | |
374 (funcall stuff-it fns))))) | |
375 | |
376 ;; This is an extra function so that it can be redefined by ange-ftp. | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
377 (defun dired-run-shell-command (command) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
378 (shell-command command) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
379 ;; Return nil for sake of nconc in dired-bunch-files. |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
380 nil) |
724 | 381 |
382 ;; In Emacs 19 this will return program's exit status. | |
383 ;; This is a separate function so that ange-ftp can redefine it. | |
384 (defun dired-call-process (program discard &rest arguments) | |
385 ; "Run PROGRAM with output to current buffer unless DISCARD is t. | |
386 ;Remaining arguments are strings passed as command arguments to PROGRAM." | |
387 (apply 'call-process program nil (not discard) nil arguments)) | |
388 | |
389 (defun dired-check-process (msg program &rest arguments) | |
390 ; "Display MSG while running PROGRAM, and check for output. | |
391 ;Remaining arguments are strings passed as command arguments to PROGRAM. | |
392 ; On error, insert output | |
393 ; in a log buffer and return the offending ARGUMENTS or PROGRAM. | |
394 ; Caller can cons up a list of failed args. | |
395 ;Else returns nil for success." | |
396 (let (err-buffer err (dir default-directory)) | |
397 (message "%s..." msg) | |
398 (save-excursion | |
399 ;; Get a clean buffer for error output: | |
400 (setq err-buffer (get-buffer-create " *dired-check-process output*")) | |
401 (set-buffer err-buffer) | |
402 (erase-buffer) | |
403 (setq default-directory dir ; caller's default-directory | |
404 err (/= 0 | |
405 (apply (function dired-call-process) program nil arguments))) | |
406 (if err | |
407 (progn | |
408 (dired-log (concat program " " (prin1-to-string arguments) "\n")) | |
409 (dired-log err-buffer) | |
410 (or arguments program t)) | |
411 (kill-buffer err-buffer) | |
412 (message "%s...done" msg) | |
413 nil)))) | |
414 | |
415 ;; Commands that delete or redisplay part of the dired buffer. | |
416 | |
417 (defun dired-kill-line (&optional arg) | |
418 (interactive "P") | |
419 (setq arg (prefix-numeric-value arg)) | |
420 (let (buffer-read-only file) | |
421 (while (/= 0 arg) | |
422 (setq file (dired-get-filename nil t)) | |
423 (if (not file) | |
424 (error "Can only kill file lines.") | |
425 (save-excursion (and file | |
426 (dired-goto-subdir file) | |
427 (dired-kill-subdir))) | |
428 (delete-region (progn (beginning-of-line) (point)) | |
429 (progn (forward-line 1) (point))) | |
430 (if (> arg 0) | |
431 (setq arg (1- arg)) | |
432 (setq arg (1+ arg)) | |
433 (forward-line -1)))) | |
434 (dired-move-to-filename))) | |
435 | |
436 ;;;###autoload | |
437 (defun dired-do-kill-lines (&optional arg fmt) | |
438 "Kill all marked lines (not the files). | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
439 With a prefix argument, kill that many lines starting with the current line. |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
440 \(A negative argument kills lines before the current line.) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
441 To kill an entire subdirectory, go to its directory header line |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
442 and use this command with a prefix argument (the value does not matter)." |
724 | 443 ;; Returns count of killed lines. FMT="" suppresses message. |
444 (interactive "P") | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
445 (if arg |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
446 (if (dired-get-subdir) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
447 (dired-kill-subdir) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
448 (dired-kill-line arg)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
449 (save-excursion |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
450 (goto-char (point-min)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
451 (let (buffer-read-only (count 0)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
452 (if (not arg) ; kill marked lines |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
453 (let ((regexp (dired-marker-regexp))) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
454 (while (and (not (eobp)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
455 (re-search-forward regexp nil t)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
456 (setq count (1+ count)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
457 (delete-region (progn (beginning-of-line) (point)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
458 (progn (forward-line 1) (point))))) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
459 ;; else kill unmarked lines |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
460 (while (not (eobp)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
461 (if (or (dired-between-files) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
462 (not (looking-at "^ "))) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
463 (forward-line 1) |
724 | 464 (setq count (1+ count)) |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
465 (delete-region (point) (save-excursion |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
466 (forward-line 1) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
467 (point)))))) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
468 (or (equal "" fmt) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
469 (message (or fmt "Killed %d line%s.") count (dired-plural-s count))) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
470 count)))) |
724 | 471 |
472 ;;;###end dired-cmd.el | |
473 | |
474 ;;; 30K | |
475 ;;;###begin dired-cp.el | |
476 | |
477 (defun dired-compress () | |
478 ;; Compress or uncompress the current file. | |
479 ;; Return nil for success, offending filename else. | |
480 (let* (buffer-read-only | |
1110
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
481 (from-file (dired-get-filename)) |
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
482 (new-file (dired-compress-file from-file))) |
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
483 (if new-file |
4481
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
484 (let ((start (point))) |
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
485 ;; Remove any preexisting entry for the name NEW-FILE. |
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
486 (condition-case nil |
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
487 (dired-remove-entry new-file) |
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
488 (error nil)) |
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
489 (goto-char start) |
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
490 ;; Now replace the current line with an entry for NEW-FILE. |
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
491 (dired-update-file-line new-file) nil) |
1110
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
492 (dired-log (concat "Failed to compress" from-file)) |
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
493 from-file))) |
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
494 |
5281 | 495 ;;;###autoload |
1110
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
496 (defun dired-compress-file (file) |
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
497 ;; Compress or uncompress FILE. |
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
498 ;; Return the name of the compressed or uncompressed file. |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3398
diff
changeset
|
499 ;; Return nil if no change in files. |
1672
ecf43116a845
The find-file-name-handler function in ../src/fileio.c is now
Jim Blandy <jimb@redhat.com>
parents:
1538
diff
changeset
|
500 (let ((handler (find-file-name-handler file))) |
1110
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
501 (cond (handler |
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
502 (funcall handler 'dired-compress-file file)) |
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
503 ((file-symlink-p file) |
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
504 nil) |
3398
4fb117e74844
(dired-compress-file): Use gzip when proper/possible.
Richard M. Stallman <rms@gnu.org>
parents:
3089
diff
changeset
|
505 ((let (case-fold-search) |
4fb117e74844
(dired-compress-file): Use gzip when proper/possible.
Richard M. Stallman <rms@gnu.org>
parents:
3089
diff
changeset
|
506 (string-match "\\.Z$" file)) |
3088
0f6e6e56b403
(dired-compress-file): Test the return value of dired-check-process properly.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
507 (if (not (dired-check-process (concat "Uncompressing " file) |
0f6e6e56b403
(dired-compress-file): Test the return value of dired-check-process properly.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
508 "uncompress" file)) |
1110
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
509 (substring file 0 -2))) |
3398
4fb117e74844
(dired-compress-file): Use gzip when proper/possible.
Richard M. Stallman <rms@gnu.org>
parents:
3089
diff
changeset
|
510 ((let (case-fold-search) |
4fb117e74844
(dired-compress-file): Use gzip when proper/possible.
Richard M. Stallman <rms@gnu.org>
parents:
3089
diff
changeset
|
511 (string-match "\\.gz$" file)) |
4fb117e74844
(dired-compress-file): Use gzip when proper/possible.
Richard M. Stallman <rms@gnu.org>
parents:
3089
diff
changeset
|
512 (if (not (dired-check-process (concat "Uncompressing " file) |
4fb117e74844
(dired-compress-file): Use gzip when proper/possible.
Richard M. Stallman <rms@gnu.org>
parents:
3089
diff
changeset
|
513 "gunzip" file)) |
4fb117e74844
(dired-compress-file): Use gzip when proper/possible.
Richard M. Stallman <rms@gnu.org>
parents:
3089
diff
changeset
|
514 (substring file 0 -3))) |
4481
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
515 ;; For .z, try gunzip. It might be an old gzip file, |
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
516 ;; or it might be from compact? pack? (which?) but gunzip handles |
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
517 ;; both. |
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
518 ((let (case-fold-search) |
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
519 (string-match "\\.z$" file)) |
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
520 (if (not (dired-check-process (concat "Uncompressing " file) |
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
521 "gunzip" file)) |
4580
250f9c22ef74
(dired-compress-file): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
4481
diff
changeset
|
522 (substring file 0 -2))) |
724 | 523 (t |
3398
4fb117e74844
(dired-compress-file): Use gzip when proper/possible.
Richard M. Stallman <rms@gnu.org>
parents:
3089
diff
changeset
|
524 ;;; Try gzip; if we don't have that, use compress. |
4fb117e74844
(dired-compress-file): Use gzip when proper/possible.
Richard M. Stallman <rms@gnu.org>
parents:
3089
diff
changeset
|
525 (condition-case nil |
4fb117e74844
(dired-compress-file): Use gzip when proper/possible.
Richard M. Stallman <rms@gnu.org>
parents:
3089
diff
changeset
|
526 (if (not (dired-check-process (concat "Compressing " file) |
4fb117e74844
(dired-compress-file): Use gzip when proper/possible.
Richard M. Stallman <rms@gnu.org>
parents:
3089
diff
changeset
|
527 "gzip" "-f" file)) |
4481
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
528 (cond ((file-exists-p (concat file ".gz")) |
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
529 (concat file ".gz")) |
c40febdb9967
(dired-compress-file): For .z file, run gunzip.
Richard M. Stallman <rms@gnu.org>
parents:
4478
diff
changeset
|
530 (t (concat file ".z")))) |
3398
4fb117e74844
(dired-compress-file): Use gzip when proper/possible.
Richard M. Stallman <rms@gnu.org>
parents:
3089
diff
changeset
|
531 (file-error |
4fb117e74844
(dired-compress-file): Use gzip when proper/possible.
Richard M. Stallman <rms@gnu.org>
parents:
3089
diff
changeset
|
532 (if (not (dired-check-process (concat "Compressing " file) |
4fb117e74844
(dired-compress-file): Use gzip when proper/possible.
Richard M. Stallman <rms@gnu.org>
parents:
3089
diff
changeset
|
533 "compress" "-f" file)) |
4fb117e74844
(dired-compress-file): Use gzip when proper/possible.
Richard M. Stallman <rms@gnu.org>
parents:
3089
diff
changeset
|
534 (concat file ".Z")))))))) |
724 | 535 |
536 (defun dired-mark-confirm (op-symbol arg) | |
537 ;; Request confirmation from the user that the operation described | |
538 ;; by OP-SYMBOL is to be performed on the marked files. | |
539 ;; Confirmation consists in a y-or-n question with a file list | |
540 ;; pop-up unless OP-SYMBOL is a member of `dired-no-confirm'. | |
541 ;; The files used are determined by ARG (as in dired-get-marked-files). | |
542 (or (memq op-symbol dired-no-confirm) | |
1538
2d29bf379da3
(dired-mark-confirm): For `compress', say `Compress or uncompress'.
Richard M. Stallman <rms@gnu.org>
parents:
1381
diff
changeset
|
543 (let ((files (dired-get-marked-files t arg)) |
2d29bf379da3
(dired-mark-confirm): For `compress', say `Compress or uncompress'.
Richard M. Stallman <rms@gnu.org>
parents:
1381
diff
changeset
|
544 (string (if (eq op-symbol 'compress) "Compress or uncompress" |
2d29bf379da3
(dired-mark-confirm): For `compress', say `Compress or uncompress'.
Richard M. Stallman <rms@gnu.org>
parents:
1381
diff
changeset
|
545 (capitalize (symbol-name op-symbol))))) |
724 | 546 (dired-mark-pop-up nil op-symbol files (function y-or-n-p) |
1538
2d29bf379da3
(dired-mark-confirm): For `compress', say `Compress or uncompress'.
Richard M. Stallman <rms@gnu.org>
parents:
1381
diff
changeset
|
547 (concat string " " |
724 | 548 (dired-mark-prompt arg files) "? "))))) |
549 | |
550 (defun dired-map-over-marks-check (fun arg op-symbol &optional show-progress) | |
551 ; "Map FUN over marked files (with second ARG like in dired-map-over-marks) | |
552 ; and display failures. | |
553 | |
554 ; FUN takes zero args. It returns non-nil (the offending object, e.g. | |
555 ; the short form of the filename) for a failure and probably logs a | |
556 ; detailed error explanation using function `dired-log'. | |
557 | |
558 ; OP-SYMBOL is a symbol describing the operation performed (e.g. | |
559 ; `compress'). It is used with `dired-mark-pop-up' to prompt the user | |
560 ; (e.g. with `Compress * [2 files]? ') and to display errors (e.g. | |
561 ; `Failed to compress 1 of 2 files - type W to see why ("foo")') | |
562 | |
563 ; SHOW-PROGRESS if non-nil means redisplay dired after each file." | |
564 (if (dired-mark-confirm op-symbol arg) | |
565 (let* ((total-list;; all of FUN's return values | |
566 (dired-map-over-marks (funcall fun) arg show-progress)) | |
567 (total (length total-list)) | |
568 (failures (delq nil total-list)) | |
1538
2d29bf379da3
(dired-mark-confirm): For `compress', say `Compress or uncompress'.
Richard M. Stallman <rms@gnu.org>
parents:
1381
diff
changeset
|
569 (count (length failures)) |
2d29bf379da3
(dired-mark-confirm): For `compress', say `Compress or uncompress'.
Richard M. Stallman <rms@gnu.org>
parents:
1381
diff
changeset
|
570 (string (if (eq op-symbol 'compress) "Compress or uncompress" |
2d29bf379da3
(dired-mark-confirm): For `compress', say `Compress or uncompress'.
Richard M. Stallman <rms@gnu.org>
parents:
1381
diff
changeset
|
571 (capitalize (symbol-name op-symbol))))) |
724 | 572 (if (not failures) |
573 (message "%s: %d file%s." | |
1538
2d29bf379da3
(dired-mark-confirm): For `compress', say `Compress or uncompress'.
Richard M. Stallman <rms@gnu.org>
parents:
1381
diff
changeset
|
574 string total (dired-plural-s total)) |
724 | 575 ;; end this bunch of errors: |
576 (dired-log-summary | |
577 (format "Failed to %s %d of %d file%s" | |
1538
2d29bf379da3
(dired-mark-confirm): For `compress', say `Compress or uncompress'.
Richard M. Stallman <rms@gnu.org>
parents:
1381
diff
changeset
|
578 (downcase string) count total (dired-plural-s total)) |
724 | 579 failures))))) |
580 | |
581 (defvar dired-query-alist | |
582 '((?\y . y) (?\040 . y) ; `y' or SPC means accept once | |
583 (?n . n) (?\177 . n) ; `n' or DEL skips once | |
584 (?! . yes) ; `!' accepts rest | |
585 (?q. no) (?\e . no) ; `q' or ESC skips rest | |
586 ;; None of these keys quit - use C-g for that. | |
587 )) | |
588 | |
589 (defun dired-query (qs-var qs-prompt &rest qs-args) | |
590 ;; Query user and return nil or t. | |
591 ;; Store answer in symbol VAR (which must initially be bound to nil). | |
592 ;; Format PROMPT with ARGS. | |
917
d09aafad0e95
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
910
diff
changeset
|
593 ;; Binding variable help-form will help the user who types the help key. |
724 | 594 (let* ((char (symbol-value qs-var)) |
595 (action (cdr (assoc char dired-query-alist)))) | |
596 (cond ((eq 'yes action) | |
597 t) ; accept, and don't ask again | |
598 ((eq 'no action) | |
599 nil) ; skip, and don't ask again | |
600 (t;; no lasting effects from last time we asked - ask now | |
601 (let ((qprompt (concat qs-prompt | |
602 (if help-form | |
603 (format " [Type yn!q or %s] " | |
604 (key-description | |
605 (char-to-string help-char))) | |
606 " [Type y, n, q or !] "))) | |
607 result elt) | |
608 ;; Actually it looks nicer without cursor-in-echo-area - you can | |
609 ;; look at the dired buffer instead of at the prompt to decide. | |
610 (apply 'message qprompt qs-args) | |
611 (setq char (set qs-var (read-char))) | |
612 (while (not (setq elt (assoc char dired-query-alist))) | |
613 (message "Invalid char - type %c for help." help-char) | |
614 (ding) | |
615 (sit-for 1) | |
616 (apply 'message qprompt qs-args) | |
617 (setq char (set qs-var (read-char)))) | |
618 (memq (cdr elt) '(t y yes))))))) | |
619 | |
620 ;;;###autoload | |
621 (defun dired-do-compress (&optional arg) | |
622 "Compress or uncompress marked (or next ARG) files." | |
623 (interactive "P") | |
624 (dired-map-over-marks-check (function dired-compress) arg 'compress t)) | |
625 | |
626 ;; Commands for Emacs Lisp files - load and byte compile | |
627 | |
628 (defun dired-byte-compile () | |
629 ;; Return nil for success, offending file name else. | |
630 (let* ((filename (dired-get-filename)) | |
631 (elc-file | |
632 (if (eq system-type 'vax-vms) | |
633 (concat (substring filename 0 (string-match ";" filename)) "c") | |
634 (concat filename "c"))) | |
635 buffer-read-only failure) | |
636 (condition-case err | |
637 (save-excursion (byte-compile-file filename)) | |
638 (error | |
639 (setq failure err))) | |
640 (if failure | |
641 (progn | |
642 (dired-log "Byte compile error for %s:\n%s\n" filename failure) | |
643 (dired-make-relative filename)) | |
644 (dired-remove-file elc-file) | |
645 (forward-line) ; insert .elc after its .el file | |
646 (dired-add-file elc-file) | |
647 nil))) | |
648 | |
649 ;;;###autoload | |
650 (defun dired-do-byte-compile (&optional arg) | |
651 "Byte compile marked (or next ARG) Emacs Lisp files." | |
652 (interactive "P") | |
653 (dired-map-over-marks-check (function dired-byte-compile) arg 'byte-compile t)) | |
654 | |
655 (defun dired-load () | |
656 ;; Return nil for success, offending file name else. | |
657 (let ((file (dired-get-filename)) failure) | |
658 (condition-case err | |
659 (load file nil nil t) | |
660 (error (setq failure err))) | |
661 (if (not failure) | |
662 nil | |
663 (dired-log "Load error for %s:\n%s\n" file failure) | |
664 (dired-make-relative file)))) | |
665 | |
666 ;;;###autoload | |
667 (defun dired-do-load (&optional arg) | |
668 "Load the marked (or next ARG) Emacs Lisp files." | |
669 (interactive "P") | |
670 (dired-map-over-marks-check (function dired-load) arg 'load t)) | |
671 | |
672 ;;;###autoload | |
673 (defun dired-do-redisplay (&optional arg test-for-subdir) | |
674 "Redisplay all marked (or next ARG) files. | |
675 If on a subdir line, redisplay that subdirectory. In that case, | |
676 a prefix arg lets you edit the `ls' switches used for the new listing." | |
677 ;; Moves point if the next ARG files are redisplayed. | |
678 (interactive "P\np") | |
679 (if (and test-for-subdir (dired-get-subdir)) | |
680 (dired-insert-subdir | |
681 (dired-get-subdir) | |
682 (if arg (read-string "Switches for listing: " dired-actual-switches))) | |
683 (message "Redisplaying...") | |
684 ;; message much faster than making dired-map-over-marks show progress | |
685 (dired-map-over-marks (let ((fname (dired-get-filename))) | |
686 (message "Redisplaying... %s" fname) | |
687 (dired-update-file-line fname)) | |
688 arg) | |
689 (dired-move-to-filename) | |
690 (message "Redisplaying...done"))) | |
691 | |
692 (defun dired-update-file-line (file) | |
693 ;; Delete the current line, and insert an entry for FILE. | |
694 ;; If FILE is nil, then just delete the current line. | |
695 ;; Keeps any marks that may be present in column one (doing this | |
696 ;; here is faster than with dired-add-entry's optional arg). | |
697 ;; Does not update other dired buffers. Use dired-relist-entry for that. | |
698 (beginning-of-line) | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
699 (let ((char (following-char)) (opoint (point)) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
700 (buffer-read-only)) |
724 | 701 (delete-region (point) (progn (forward-line 1) (point))) |
702 (if file | |
703 (progn | |
704 (dired-add-entry file) | |
705 ;; Replace space by old marker without moving point. | |
706 ;; Faster than goto+insdel inside a save-excursion? | |
707 (subst-char-in-region opoint (1+ opoint) ?\040 char)))) | |
708 (dired-move-to-filename)) | |
709 | |
710 (defun dired-fun-in-all-buffers (directory fun &rest args) | |
711 ;; In all buffers dired'ing DIRECTORY, run FUN with ARGS. | |
712 ;; Return list of buffers where FUN succeeded (i.e., returned non-nil). | |
713 (let ((buf-list (dired-buffers-for-dir directory)) | |
714 (obuf (current-buffer)) | |
715 buf success-list) | |
716 (while buf-list | |
717 (setq buf (car buf-list) | |
718 buf-list (cdr buf-list)) | |
719 (unwind-protect | |
720 (progn | |
721 (set-buffer buf) | |
722 (if (apply fun args) | |
723 (setq success-list (cons (buffer-name buf) success-list)))) | |
724 (set-buffer obuf))) | |
725 success-list)) | |
726 | |
5281 | 727 ;;;###autoload |
724 | 728 (defun dired-add-file (filename &optional marker-char) |
729 (dired-fun-in-all-buffers | |
730 (file-name-directory filename) | |
731 (function dired-add-entry) filename marker-char)) | |
732 | |
733 (defun dired-add-entry (filename &optional marker-char) | |
734 ;; Add a new entry for FILENAME, optionally marking it | |
735 ;; with MARKER-CHAR (a character, else dired-marker-char is used). | |
736 ;; Note that this adds the entry `out of order' if files sorted by | |
737 ;; time, etc. | |
738 ;; At least this version inserts in the right subdirectory (if present). | |
739 ;; And it skips "." or ".." (see `dired-trivial-filenames'). | |
740 ;; Hidden subdirs are exposed if a file is added there. | |
741 (setq filename (directory-file-name filename)) | |
742 ;; Entry is always for files, even if they happen to also be directories | |
743 (let ((opoint (point)) | |
744 (cur-dir (dired-current-directory)) | |
745 (directory (file-name-directory filename)) | |
746 reason) | |
747 (setq filename (file-name-nondirectory filename) | |
748 reason | |
749 (catch 'not-found | |
750 (if (string= directory cur-dir) | |
751 (progn | |
752 (skip-chars-forward "^\r\n") | |
753 (if (eq (following-char) ?\r) | |
754 (dired-unhide-subdir)) | |
755 ;; We are already where we should be, except when | |
756 ;; point is before the subdir line or its total line. | |
757 (let ((p (dired-after-subdir-garbage cur-dir))) | |
758 (if (< (point) p) | |
759 (goto-char p)))) | |
760 ;; else try to find correct place to insert | |
761 (if (dired-goto-subdir directory) | |
762 (progn;; unhide if necessary | |
763 (if (looking-at "\r");; point is at end of subdir line | |
764 (dired-unhide-subdir)) | |
765 ;; found - skip subdir and `total' line | |
766 ;; and uninteresting files like . and .. | |
767 ;; This better not moves into the next subdir! | |
768 (dired-goto-next-nontrivial-file)) | |
769 ;; not found | |
770 (throw 'not-found "Subdir not found"))) | |
771 ;; found and point is at The Right Place: | |
772 (let (buffer-read-only) | |
773 (beginning-of-line) | |
774 (dired-add-entry-do-indentation marker-char) | |
1110
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
775 ;; don't expand `.' ! |
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
776 (insert-directory (dired-make-absolute filename directory) |
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
777 (concat dired-actual-switches "d")) |
724 | 778 (forward-line -1) |
779 ;; We want to have the non-directory part, only: | |
780 (let* ((beg (dired-move-to-filename t)) ; error for strange output | |
781 (end (dired-move-to-end-of-filename))) | |
782 (setq filename (buffer-substring beg end)) | |
783 (delete-region beg end) | |
784 (insert (file-name-nondirectory filename))) | |
785 (if dired-after-readin-hook;; the subdir-alist is not affected... | |
786 (save-excursion;; ...so we can run it right now: | |
787 (save-restriction | |
788 (beginning-of-line) | |
789 (narrow-to-region (point) (save-excursion | |
790 (forward-line 1) (point))) | |
791 (run-hooks 'dired-after-readin-hook)))) | |
792 (dired-move-to-filename)) | |
793 ;; return nil if all went well | |
794 nil)) | |
795 (if reason ; don't move away on failure | |
796 (goto-char opoint)) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3398
diff
changeset
|
797 (not reason))) ; return t on success, nil else |
724 | 798 |
799 ;; This is a separate function for the sake of nested dired format. | |
800 (defun dired-add-entry-do-indentation (marker-char) | |
801 ;; two spaces or a marker plus a space: | |
802 (insert (if marker-char | |
803 (if (integerp marker-char) marker-char dired-marker-char) | |
804 ?\040) | |
805 ?\040)) | |
806 | |
807 (defun dired-after-subdir-garbage (dir) | |
808 ;; Return pos of first file line of DIR, skipping header and total | |
809 ;; or wildcard lines. | |
810 ;; Important: never moves into the next subdir. | |
811 ;; DIR is assumed to be unhidden. | |
812 ;; Will probably be redefined for VMS etc. | |
813 (save-excursion | |
814 (or (dired-goto-subdir dir) (error "This cannot happen")) | |
815 (forward-line 1) | |
816 (while (and (not (eolp)) ; don't cross subdir boundary | |
817 (not (dired-move-to-filename))) | |
818 (forward-line 1)) | |
819 (point))) | |
820 | |
5281 | 821 ;;;###autoload |
724 | 822 (defun dired-remove-file (file) |
823 (dired-fun-in-all-buffers | |
824 (file-name-directory file) (function dired-remove-entry) file)) | |
825 | |
826 (defun dired-remove-entry (file) | |
827 (save-excursion | |
828 (and (dired-goto-file file) | |
829 (let (buffer-read-only) | |
830 (delete-region (progn (beginning-of-line) (point)) | |
831 (save-excursion (forward-line 1) (point))))))) | |
832 | |
5281 | 833 ;;;###autoload |
724 | 834 (defun dired-relist-file (file) |
835 (dired-fun-in-all-buffers (file-name-directory file) | |
836 (function dired-relist-entry) file)) | |
837 | |
838 (defun dired-relist-entry (file) | |
839 ;; Relist the line for FILE, or just add it if it did not exist. | |
840 ;; FILE must be an absolute pathname. | |
841 (let (buffer-read-only marker) | |
842 ;; If cursor is already on FILE's line delete-region will cause | |
843 ;; save-excursion to fail because of floating makers, | |
844 ;; moving point to beginning of line. Sigh. | |
845 (save-excursion | |
846 (and (dired-goto-file file) | |
847 (delete-region (progn (beginning-of-line) | |
848 (setq marker (following-char)) | |
849 (point)) | |
850 (save-excursion (forward-line 1) (point)))) | |
851 (setq file (directory-file-name file)) | |
852 (dired-add-entry file (if (eq ?\040 marker) nil marker))))) | |
853 | |
854 ;;; Copy, move/rename, making hard and symbolic links | |
855 | |
856 (defvar dired-backup-overwrite nil | |
857 "*Non-nil if Dired should ask about making backups before overwriting files. | |
858 Special value `always' suppresses confirmation.") | |
859 | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
860 (defvar dired-overwrite-confirmed) |
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
861 |
724 | 862 (defun dired-handle-overwrite (to) |
863 ;; Save old version of a to be overwritten file TO. | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
864 ;; `dired-overwrite-confirmed' and `overwrite-backup-query' are fluid vars |
724 | 865 ;; from dired-create-files. |
866 (if (and dired-backup-overwrite | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
867 dired-overwrite-confirmed |
724 | 868 (or (eq 'always dired-backup-overwrite) |
869 (dired-query 'overwrite-backup-query | |
870 (format "Make backup for existing file `%s'? " to)))) | |
871 (let ((backup (car (find-backup-file-name to)))) | |
872 (rename-file to backup 0) ; confirm overwrite of old backup | |
873 (dired-relist-entry backup)))) | |
874 | |
5281 | 875 ;;;###autoload |
724 | 876 (defun dired-copy-file (from to ok-flag) |
877 (dired-handle-overwrite to) | |
878 (copy-file from to ok-flag dired-copy-preserve-time)) | |
879 | |
5281 | 880 ;;;###autoload |
724 | 881 (defun dired-rename-file (from to ok-flag) |
882 (dired-handle-overwrite to) | |
883 (rename-file from to ok-flag) ; error is caught in -create-files | |
884 ;; Silently rename the visited file of any buffer visiting this file. | |
885 (and (get-file-buffer from) | |
886 (save-excursion | |
887 (set-buffer (get-file-buffer from)) | |
888 (let ((modflag (buffer-modified-p))) | |
889 (set-visited-file-name to) | |
890 (set-buffer-modified-p modflag)))) | |
891 (dired-remove-file from) | |
892 ;; See if it's an inserted subdir, and rename that, too. | |
893 (dired-rename-subdir from to)) | |
894 | |
895 (defun dired-rename-subdir (from-dir to-dir) | |
896 (setq from-dir (file-name-as-directory from-dir) | |
897 to-dir (file-name-as-directory to-dir)) | |
898 (dired-fun-in-all-buffers from-dir | |
899 (function dired-rename-subdir-1) from-dir to-dir) | |
900 ;; Update visited file name of all affected buffers | |
901 (let ((blist (buffer-list))) | |
902 (while blist | |
903 (save-excursion | |
904 (set-buffer (car blist)) | |
905 (if (and buffer-file-name | |
906 (dired-in-this-tree buffer-file-name from-dir)) | |
907 (let ((modflag (buffer-modified-p)) | |
908 (to-file (dired-replace-in-string | |
909 (concat "^" (regexp-quote from-dir)) | |
910 to-dir | |
911 buffer-file-name))) | |
912 (set-visited-file-name to-file) | |
913 (set-buffer-modified-p modflag)))) | |
914 (setq blist (cdr blist))))) | |
915 | |
916 (defun dired-rename-subdir-1 (dir to) | |
917 ;; Rename DIR to TO in headerlines and dired-subdir-alist, if DIR or | |
918 ;; one of its subdirectories is expanded in this buffer. | |
919 (let ((alist dired-subdir-alist) | |
920 (elt nil)) | |
921 (while alist | |
922 (setq elt (car alist) | |
923 alist (cdr alist)) | |
924 (if (dired-in-this-tree (car elt) dir) | |
925 ;; ELT's subdir is affected by the rename | |
926 (dired-rename-subdir-2 elt dir to))) | |
927 (if (equal dir default-directory) | |
928 ;; if top level directory was renamed, lots of things have to be | |
929 ;; updated: | |
930 (progn | |
931 (dired-unadvertise dir) ; we no longer dired DIR... | |
932 (setq default-directory to | |
933 dired-directory (expand-file-name;; this is correct | |
934 ;; with and without wildcards | |
935 (file-name-nondirectory dired-directory) | |
936 to)) | |
937 (let ((new-name (file-name-nondirectory | |
938 (directory-file-name dired-directory)))) | |
939 ;; try to rename buffer, but just leave old name if new | |
940 ;; name would already exist (don't try appending "<%d>") | |
941 (or (get-buffer new-name) | |
942 (rename-buffer new-name))) | |
943 ;; ... we dired TO now: | |
944 (dired-advertise))))) | |
945 | |
946 (defun dired-rename-subdir-2 (elt dir to) | |
947 ;; Update the headerline and dired-subdir-alist element of directory | |
948 ;; described by alist-element ELT to reflect the moving of DIR to TO. | |
949 ;; Thus, ELT describes either DIR itself or a subdir of DIR. | |
950 (save-excursion | |
951 (let ((regexp (regexp-quote (directory-file-name dir))) | |
952 (newtext (directory-file-name to)) | |
953 buffer-read-only) | |
954 (goto-char (dired-get-subdir-min elt)) | |
955 ;; Update subdir headerline in buffer | |
956 (if (not (looking-at dired-subdir-regexp)) | |
957 (error "%s not found where expected - dired-subdir-alist broken?" | |
958 dir) | |
959 (goto-char (match-beginning 1)) | |
960 (if (re-search-forward regexp (match-end 1) t) | |
961 (replace-match newtext t t) | |
962 (error "Expected to find `%s' in headerline of %s" dir (car elt)))) | |
963 ;; Update buffer-local dired-subdir-alist | |
964 (setcar elt | |
965 (dired-normalize-subdir | |
966 (dired-replace-in-string regexp newtext (car elt))))))) | |
967 | |
968 ;; Cloning replace-match to work on strings instead of in buffer: | |
969 ;; The FIXEDCASE parameter of replace-match is not implemented. | |
970 ;;;###autoload | |
971 (defun dired-string-replace-match (regexp string newtext | |
972 &optional literal global) | |
973 "Replace first match of REGEXP in STRING with NEWTEXT. | |
974 If it does not match, nil is returned instead of the new string. | |
975 Optional arg LITERAL means to take NEWTEXT literally. | |
976 Optional arg GLOBAL means to replace all matches." | |
977 (if global | |
978 (let ((result "") (start 0) mb me) | |
979 (while (string-match regexp string start) | |
980 (setq mb (match-beginning 0) | |
981 me (match-end 0) | |
982 result (concat result | |
983 (substring string start mb) | |
984 (if literal | |
985 newtext | |
986 (dired-expand-newtext string newtext))) | |
987 start me)) | |
988 (if mb ; matched at least once | |
989 (concat result (substring string start)) | |
990 nil)) | |
991 ;; not GLOBAL | |
992 (if (not (string-match regexp string 0)) | |
993 nil | |
994 (concat (substring string 0 (match-beginning 0)) | |
995 (if literal newtext (dired-expand-newtext string newtext)) | |
996 (substring string (match-end 0)))))) | |
997 | |
998 (defun dired-expand-newtext (string newtext) | |
999 ;; Expand \& and \1..\9 (referring to STRING) in NEWTEXT, using match data. | |
1000 ;; Note that in Emacs 18 match data are clipped to current buffer | |
1001 ;; size...so the buffer should better not be smaller than STRING. | |
1002 (let ((pos 0) | |
1003 (len (length newtext)) | |
1004 (expanded-newtext "")) | |
1005 (while (< pos len) | |
1006 (setq expanded-newtext | |
1007 (concat expanded-newtext | |
1008 (let ((c (aref newtext pos))) | |
1009 (if (= ?\\ c) | |
1010 (cond ((= ?\& (setq c | |
1011 (aref newtext | |
1012 (setq pos (1+ pos))))) | |
1013 (substring string | |
1014 (match-beginning 0) | |
1015 (match-end 0))) | |
1016 ((and (>= c ?1) (<= c ?9)) | |
1017 ;; return empty string if N'th | |
1018 ;; sub-regexp did not match: | |
1019 (let ((n (- c ?0))) | |
1020 (if (match-beginning n) | |
1021 (substring string | |
1022 (match-beginning n) | |
1023 (match-end n)) | |
1024 ""))) | |
1025 (t | |
1026 (char-to-string c))) | |
1027 (char-to-string c))))) | |
1028 (setq pos (1+ pos))) | |
1029 expanded-newtext)) | |
1030 | |
1031 ;; The basic function for half a dozen variations on cp/mv/ln/ln -s. | |
1032 (defun dired-create-files (file-creator operation fn-list name-constructor | |
1033 &optional marker-char) | |
1034 | |
1035 ;; Create a new file for each from a list of existing files. The user | |
1036 ;; is queried, dired buffers are updated, and at the end a success or | |
1037 ;; failure message is displayed | |
1038 | |
1039 ;; FILE-CREATOR must accept three args: oldfile newfile ok-if-already-exists | |
1040 | |
1041 ;; It is called for each file and must create newfile, the entry of | |
1042 ;; which will be added. The user will be queried if the file already | |
1043 ;; exists. If oldfile is removed by FILE-CREATOR (i.e, it is a | |
1044 ;; rename), it is FILE-CREATOR's responsibility to update dired | |
1045 ;; buffers. FILE-CREATOR must abort by signalling a file-error if it | |
1046 ;; could not create newfile. The error is caught and logged. | |
1047 | |
1048 ;; OPERATION (a capitalized string, e.g. `Copy') describes the | |
1049 ;; operation performed. It is used for error logging. | |
1050 | |
1051 ;; FN-LIST is the list of files to copy (full absolute pathnames). | |
1052 | |
1053 ;; NAME-CONSTRUCTOR returns a newfile for every oldfile, or nil to | |
1054 ;; skip. If it skips files for other reasons than a direct user | |
1055 ;; query, it is supposed to tell why (using dired-log). | |
1056 | |
1057 ;; Optional MARKER-CHAR is a character with which to mark every | |
1058 ;; newfile's entry, or t to use the current marker character if the | |
1059 ;; oldfile was marked. | |
1060 | |
1061 (let (failures skipped (success-count 0) (total (length fn-list))) | |
1062 (let (to overwrite-query | |
1063 overwrite-backup-query) ; for dired-handle-overwrite | |
1064 (mapcar | |
1065 (function | |
1066 (lambda (from) | |
1067 (setq to (funcall name-constructor from)) | |
1068 (if (equal to from) | |
1069 (progn | |
1070 (setq to nil) | |
1071 (dired-log "Cannot %s to same file: %s\n" | |
1072 (downcase operation) from))) | |
1073 (if (not to) | |
1074 (setq skipped (cons (dired-make-relative from) skipped)) | |
1075 (let* ((overwrite (file-exists-p to)) | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
1076 (dired-overwrite-confirmed ; for dired-handle-overwrite |
724 | 1077 (and overwrite |
1078 (let ((help-form '(format "\ | |
1079 Type SPC or `y' to overwrite file `%s', | |
1080 DEL or `n' to skip to next, | |
1081 ESC or `q' to not overwrite any of the remaining files, | |
1082 `!' to overwrite all remaining files with no more questions." to))) | |
1083 (dired-query 'overwrite-query | |
1084 "Overwrite `%s'?" to)))) | |
1085 ;; must determine if FROM is marked before file-creator | |
1086 ;; gets a chance to delete it (in case of a move). | |
1087 (actual-marker-char | |
1088 (cond ((integerp marker-char) marker-char) | |
1089 (marker-char (dired-file-marker from)) ; slow | |
1090 (t nil)))) | |
1091 (condition-case err | |
1092 (progn | |
910
4fba6d4b6a28
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
890
diff
changeset
|
1093 (funcall file-creator from to dired-overwrite-confirmed) |
724 | 1094 (if overwrite |
1095 ;; If we get here, file-creator hasn't been aborted | |
1096 ;; and the old entry (if any) has to be deleted | |
1097 ;; before adding the new entry. | |
1098 (dired-remove-file to)) | |
1099 (setq success-count (1+ success-count)) | |
1100 (message "%s: %d of %d" operation success-count total) | |
1101 (dired-add-file to actual-marker-char)) | |
1102 (file-error ; FILE-CREATOR aborted | |
1103 (progn | |
1104 (setq failures (cons (dired-make-relative from) failures)) | |
1105 (dired-log "%s `%s' to `%s' failed:\n%s\n" | |
1106 operation from to err)))))))) | |
1107 fn-list)) | |
1108 (cond | |
1109 (failures | |
1110 (dired-log-summary | |
1111 (format "%s failed for %d of %d file%s" | |
1112 operation (length failures) total | |
1113 (dired-plural-s total)) | |
1114 failures)) | |
1115 (skipped | |
1116 (dired-log-summary | |
1117 (format "%s: %d of %d file%s skipped" | |
1118 operation (length skipped) total | |
1119 (dired-plural-s total)) | |
1120 skipped)) | |
1121 (t | |
1122 (message "%s: %s file%s" | |
1123 operation success-count (dired-plural-s success-count))))) | |
1124 (dired-move-to-filename)) | |
1125 | |
1126 (defun dired-do-create-files (op-symbol file-creator operation arg | |
1127 &optional marker-char op1 | |
1128 how-to) | |
1129 ;; Create a new file for each marked file. | |
1130 ;; Prompts user for target, which is a directory in which to create | |
1131 ;; the new files. Target may be a plain file if only one marked | |
1132 ;; file exists. | |
1133 ;; OP-SYMBOL is the symbol for the operation. Function `dired-mark-pop-up' | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3398
diff
changeset
|
1134 ;; will determine whether pop-ups are appropriate for this OP-SYMBOL. |
724 | 1135 ;; FILE-CREATOR and OPERATION as in dired-create-files. |
1136 ;; ARG as in dired-get-marked-files. | |
1137 ;; Optional arg OP1 is an alternate form for OPERATION if there is | |
1138 ;; only one file. | |
1139 ;; Optional arg MARKER-CHAR as in dired-create-files. | |
1140 ;; Optional arg HOW-TO determines how to treat target: | |
1141 ;; If HOW-TO is not given (or nil), and target is a directory, the | |
1142 ;; file(s) are created inside the target directory. If target | |
1143 ;; is not a directory, there must be exactly one marked file, | |
1144 ;; else error. | |
1145 ;; If HOW-TO is t, then target is not modified. There must be | |
1146 ;; exactly one marked file, else error. | |
1147 ;; Else HOW-TO is assumed to be a function of one argument, target, | |
1148 ;; that looks at target and returns a value for the into-dir | |
1149 ;; variable. The function dired-into-dir-with-symlinks is provided | |
1150 ;; for the case (common when creating symlinks) that symbolic | |
1151 ;; links to directories are not to be considered as directories | |
1152 ;; (as file-directory-p would if HOW-TO had been nil). | |
1153 (or op1 (setq op1 operation)) | |
1154 (let* ((fn-list (dired-get-marked-files nil arg)) | |
1155 (fn-count (length fn-list)) | |
1156 (target (expand-file-name | |
1157 (dired-mark-read-file-name | |
1158 (concat (if (= 1 fn-count) op1 operation) " %s to: ") | |
1159 (dired-dwim-target-directory) | |
1160 op-symbol arg (mapcar (function dired-make-relative) fn-list)))) | |
1161 (into-dir (cond ((null how-to) (file-directory-p target)) | |
1162 ((eq how-to t) nil) | |
1163 (t (funcall how-to target))))) | |
1164 (if (and (> fn-count 1) | |
1165 (not into-dir)) | |
1166 (error "Marked %s: target must be a directory: %s" operation target)) | |
1167 ;; rename-file bombs when moving directories unless we do this: | |
1168 (or into-dir (setq target (directory-file-name target))) | |
1169 (dired-create-files | |
1170 file-creator operation fn-list | |
1171 (if into-dir ; target is a directory | |
1172 ;; This function uses fluid vars into-dir and target when called | |
1173 ;; inside dired-create-files: | |
1174 (function (lambda (from) | |
1175 (expand-file-name (file-name-nondirectory from) target))) | |
1176 (function (lambda (from) target))) | |
1177 marker-char))) | |
1178 | |
1179 ;; Read arguments for a marked-files command that wants a file name, | |
1180 ;; perhaps popping up the list of marked files. | |
1181 ;; ARG is the prefix arg and indicates whether the files came from | |
1182 ;; marks (ARG=nil) or a repeat factor (integerp ARG). | |
1183 ;; If the current file was used, the list has but one element and ARG | |
1184 ;; does not matter. (It is non-nil, non-integer in that case, namely '(4)). | |
1185 | |
1186 (defun dired-mark-read-file-name (prompt dir op-symbol arg files) | |
1187 (dired-mark-pop-up | |
1188 nil op-symbol files | |
1189 (function read-file-name) | |
1190 (format prompt (dired-mark-prompt arg files)) dir)) | |
1191 | |
1192 (defun dired-dwim-target-directory () | |
1193 ;; Try to guess which target directory the user may want. | |
1194 ;; If there is a dired buffer displayed in the next window, use | |
1195 ;; its current subdir, else use current subdir of this dired buffer. | |
1196 (let ((this-dir (and (eq major-mode 'dired-mode) | |
1197 (dired-current-directory)))) | |
1198 ;; non-dired buffer may want to profit from this function, e.g. vm-uudecode | |
1199 (if dired-dwim-target | |
1200 (let* ((other-buf (window-buffer (next-window))) | |
1201 (other-dir (save-excursion | |
1202 (set-buffer other-buf) | |
1203 (and (eq major-mode 'dired-mode) | |
1204 (dired-current-directory))))) | |
1205 (or other-dir this-dir)) | |
1206 this-dir))) | |
1207 | |
1208 ;;;###autoload | |
1209 (defun dired-create-directory (directory) | |
1210 "Create a directory called DIRECTORY." | |
1211 (interactive | |
1212 (list (read-file-name "Create directory: " (dired-current-directory)))) | |
1213 (let ((expanded (directory-file-name (expand-file-name directory)))) | |
1214 (make-directory expanded) | |
1215 (dired-add-file expanded) | |
1216 (dired-move-to-filename))) | |
1217 | |
1218 (defun dired-into-dir-with-symlinks (target) | |
1219 (and (file-directory-p target) | |
1220 (not (file-symlink-p target)))) | |
1221 ;; This may not always be what you want, especially if target is your | |
1222 ;; home directory and it happens to be a symbolic link, as is often the | |
1223 ;; case with NFS and automounters. Or if you want to make symlinks | |
1224 ;; into directories that themselves are only symlinks, also quite | |
1225 ;; common. | |
1226 | |
1227 ;; So we don't use this function as value for HOW-TO in | |
1228 ;; dired-do-symlink, which has the minor disadvantage of | |
1229 ;; making links *into* a symlinked-dir, when you really wanted to | |
1230 ;; *overwrite* that symlink. In that (rare, I guess) case, you'll | |
1231 ;; just have to remove that symlink by hand before making your marked | |
1232 ;; symlinks. | |
1233 | |
1234 ;;;###autoload | |
1235 (defun dired-do-copy (&optional arg) | |
1236 "Copy all marked (or next ARG) files, or copy the current file. | |
1237 This normally preserves the last-modified date when copying. | |
1238 When operating on just the current file, you specify the new name. | |
1239 When operating on multiple or marked files, you specify a directory | |
1240 and new symbolic links are made in that directory | |
1241 with the same names that the files currently have." | |
1242 (interactive "P") | |
1243 (dired-do-create-files 'copy (function dired-copy-file) | |
1244 (if dired-copy-preserve-time "Copy [-p]" "Copy") | |
1245 arg dired-keep-marker-copy)) | |
1246 | |
1247 ;;;###autoload | |
1248 (defun dired-do-symlink (&optional arg) | |
1249 "Make symbolic links to current file or all marked (or next ARG) files. | |
1250 When operating on just the current file, you specify the new name. | |
1251 When operating on multiple or marked files, you specify a directory | |
1252 and new symbolic links are made in that directory | |
1253 with the same names that the files currently have." | |
1254 (interactive "P") | |
1255 (dired-do-create-files 'symlink (function make-symbolic-link) | |
1256 "Symlink" arg dired-keep-marker-symlink)) | |
1257 | |
1258 ;;;###autoload | |
1259 (defun dired-do-hardlink (&optional arg) | |
1260 "Add names (hard links) current file or all marked (or next ARG) files. | |
1261 When operating on just the current file, you specify the new name. | |
1262 When operating on multiple or marked files, you specify a directory | |
1263 and new hard links are made in that directory | |
1264 with the same names that the files currently have." | |
1265 (interactive "P") | |
1266 (dired-do-create-files 'hardlink (function add-name-to-file) | |
1267 "Hardlink" arg dired-keep-marker-hardlink)) | |
1268 | |
1269 ;;;###autoload | |
1270 (defun dired-do-rename (&optional arg) | |
1271 "Rename current file or all marked (or next ARG) files. | |
1272 When renaming just the current file, you specify the new name. | |
1273 When renaming multiple or marked files, you specify a directory." | |
1274 (interactive "P") | |
1275 (dired-do-create-files 'move (function dired-rename-file) | |
1276 "Move" arg dired-keep-marker-rename "Rename")) | |
1277 ;;;###end dired-cp.el | |
1278 | |
1279 ;;; 5K | |
1280 ;;;###begin dired-re.el | |
1281 (defun dired-do-create-files-regexp | |
1282 (file-creator operation arg regexp newname &optional whole-path marker-char) | |
1283 ;; Create a new file for each marked file using regexps. | |
1284 ;; FILE-CREATOR and OPERATION as in dired-create-files. | |
1285 ;; ARG as in dired-get-marked-files. | |
1286 ;; Matches each marked file against REGEXP and constructs the new | |
1287 ;; filename from NEWNAME (like in function replace-match). | |
1288 ;; Optional arg WHOLE-PATH means match/replace the whole pathname | |
1289 ;; instead of only the non-directory part of the file. | |
1290 ;; Optional arg MARKER-CHAR as in dired-create-files. | |
1291 (let* ((fn-list (dired-get-marked-files nil arg)) | |
1292 (fn-count (length fn-list)) | |
1293 (operation-prompt (concat operation " `%s' to `%s'?")) | |
1294 (rename-regexp-help-form (format "\ | |
1295 Type SPC or `y' to %s one match, DEL or `n' to skip to next, | |
1296 `!' to %s all remaining matches with no more questions." | |
1297 (downcase operation) | |
1298 (downcase operation))) | |
1299 (regexp-name-constructor | |
1300 ;; Function to construct new filename using REGEXP and NEWNAME: | |
1301 (if whole-path ; easy (but rare) case | |
1302 (function | |
1303 (lambda (from) | |
1304 (let ((to (dired-string-replace-match regexp from newname)) | |
1305 ;; must bind help-form directly around call to | |
1306 ;; dired-query | |
1307 (help-form rename-regexp-help-form)) | |
1308 (if to | |
1309 (and (dired-query 'rename-regexp-query | |
1310 operation-prompt | |
1311 from | |
1312 to) | |
1313 to) | |
1314 (dired-log "%s: %s did not match regexp %s\n" | |
1315 operation from regexp))))) | |
1316 ;; not whole-path, replace non-directory part only | |
1317 (function | |
1318 (lambda (from) | |
1319 (let* ((new (dired-string-replace-match | |
1320 regexp (file-name-nondirectory from) newname)) | |
1321 (to (and new ; nil means there was no match | |
1322 (expand-file-name new | |
1323 (file-name-directory from)))) | |
1324 (help-form rename-regexp-help-form)) | |
1325 (if to | |
1326 (and (dired-query 'rename-regexp-query | |
1327 operation-prompt | |
1328 (dired-make-relative from) | |
1329 (dired-make-relative to)) | |
1330 to) | |
1331 (dired-log "%s: %s did not match regexp %s\n" | |
1332 operation (file-name-nondirectory from) regexp))))))) | |
1333 rename-regexp-query) | |
1334 (dired-create-files | |
1335 file-creator operation fn-list regexp-name-constructor marker-char))) | |
1336 | |
1337 (defun dired-mark-read-regexp (operation) | |
1338 ;; Prompt user about performing OPERATION. | |
1339 ;; Read and return list of: regexp newname arg whole-path. | |
1340 (let* ((whole-path | |
1341 (equal 0 (prefix-numeric-value current-prefix-arg))) | |
1342 (arg | |
1343 (if whole-path nil current-prefix-arg)) | |
1344 (regexp | |
1345 (dired-read-regexp | |
1756
ffef0718ef6b
(dired-mark-read-regexp): Give dired-read-regexp 1 arg.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
1346 (concat (if whole-path "Path " "") operation " from (regexp): "))) |
724 | 1347 (newname |
1348 (read-string | |
1349 (concat (if whole-path "Path " "") operation " " regexp " to: ")))) | |
1350 (list regexp newname arg whole-path))) | |
1351 | |
1352 ;;;###autoload | |
1353 (defun dired-do-rename-regexp (regexp newname &optional arg whole-path) | |
1354 "Rename marked files containing REGEXP to NEWNAME. | |
1355 As each match is found, the user must type a character saying | |
1356 what to do with it. For directions, type \\[help-command] at that time. | |
1357 NEWNAME may contain \\=\\<n> or \\& as in `query-replace-regexp'. | |
1358 REGEXP defaults to the last regexp used. | |
1359 With a zero prefix arg, renaming by regexp affects the complete | |
1360 pathname - usually only the non-directory part of file names is used | |
1361 and changed." | |
1362 (interactive (dired-mark-read-regexp "Rename")) | |
1363 (dired-do-create-files-regexp | |
1364 (function dired-rename-file) | |
1365 "Rename" arg regexp newname whole-path dired-keep-marker-rename)) | |
1366 | |
1367 ;;;###autoload | |
1368 (defun dired-do-copy-regexp (regexp newname &optional arg whole-path) | |
1369 "Copy all marked files containing REGEXP to NEWNAME. | |
1370 See function `dired-rename-regexp' for more info." | |
1371 (interactive (dired-mark-read-regexp "Copy")) | |
1372 (dired-do-create-files-regexp | |
1373 (function dired-copy-file) | |
1374 (if dired-copy-preserve-time "Copy [-p]" "Copy") | |
1375 arg regexp newname whole-path dired-keep-marker-copy)) | |
1376 | |
1377 ;;;###autoload | |
1378 (defun dired-do-hardlink-regexp (regexp newname &optional arg whole-path) | |
1379 "Hardlink all marked files containing REGEXP to NEWNAME. | |
1380 See function `dired-rename-regexp' for more info." | |
1381 (interactive (dired-mark-read-regexp "HardLink")) | |
1382 (dired-do-create-files-regexp | |
1383 (function add-name-to-file) | |
1384 "HardLink" arg regexp newname whole-path dired-keep-marker-hardlink)) | |
1385 | |
1386 ;;;###autoload | |
1387 (defun dired-do-symlink-regexp (regexp newname &optional arg whole-path) | |
1388 "Symlink all marked files containing REGEXP to NEWNAME. | |
1389 See function `dired-rename-regexp' for more info." | |
1390 (interactive (dired-mark-read-regexp "SymLink")) | |
1391 (dired-do-create-files-regexp | |
1392 (function make-symbolic-link) | |
1393 "SymLink" arg regexp newname whole-path dired-keep-marker-symlink)) | |
1394 | |
1395 (defun dired-create-files-non-directory | |
1396 (file-creator basename-constructor operation arg) | |
1397 ;; Perform FILE-CREATOR on the non-directory part of marked files | |
1398 ;; using function BASENAME-CONSTRUCTOR, with query for each file. | |
1399 ;; OPERATION like in dired-create-files, ARG as in dired-get-marked-files. | |
1400 (let (rename-non-directory-query) | |
1401 (dired-create-files | |
1402 file-creator | |
1403 operation | |
1404 (dired-get-marked-files nil arg) | |
1405 (function | |
1406 (lambda (from) | |
1407 (let ((to (concat (file-name-directory from) | |
1408 (funcall basename-constructor | |
1409 (file-name-nondirectory from))))) | |
1410 (and (let ((help-form (format "\ | |
1411 Type SPC or `y' to %s one file, DEL or `n' to skip to next, | |
1412 `!' to %s all remaining matches with no more questions." | |
1413 (downcase operation) | |
1414 (downcase operation)))) | |
1415 (dired-query 'rename-non-directory-query | |
1416 (concat operation " `%s' to `%s'") | |
1417 (dired-make-relative from) | |
1418 (dired-make-relative to))) | |
1419 to)))) | |
1420 dired-keep-marker-rename))) | |
1421 | |
1422 (defun dired-rename-non-directory (basename-constructor operation arg) | |
1423 (dired-create-files-non-directory | |
1424 (function dired-rename-file) | |
1425 basename-constructor operation arg)) | |
1426 | |
1427 ;;;###autoload | |
1428 (defun dired-upcase (&optional arg) | |
1429 "Rename all marked (or next ARG) files to upper case." | |
1430 (interactive "P") | |
1431 (dired-rename-non-directory (function upcase) "Rename upcase" arg)) | |
1432 | |
1433 ;;;###autoload | |
1434 (defun dired-downcase (&optional arg) | |
1435 "Rename all marked (or next ARG) files to lower case." | |
1436 (interactive "P") | |
1437 (dired-rename-non-directory (function downcase) "Rename downcase" arg)) | |
1438 | |
1439 ;;;###end dired-re.el | |
1440 | |
1441 ;;; 13K | |
1442 ;;;###begin dired-ins.el | |
1443 | |
1444 ;;;###autoload | |
1445 (defun dired-maybe-insert-subdir (dirname &optional | |
1446 switches no-error-if-not-dir-p) | |
1447 "Insert this subdirectory into the same dired buffer. | |
1448 If it is already present, just move to it (type \\[dired-do-redisplay] to refresh), | |
1449 else inserts it at its natural place (as `ls -lR' would have done). | |
1450 With a prefix arg, you may edit the ls switches used for this listing. | |
1451 You can add `R' to the switches to expand the whole tree starting at | |
1452 this subdirectory. | |
1453 This function takes some pains to conform to `ls -lR' output." | |
1454 (interactive | |
1455 (list (dired-get-filename) | |
1456 (if current-prefix-arg | |
1457 (read-string "Switches for listing: " dired-actual-switches)))) | |
1458 (let ((opoint (point))) | |
1459 ;; We don't need a marker for opoint as the subdir is always | |
1460 ;; inserted *after* opoint. | |
1461 (setq dirname (file-name-as-directory dirname)) | |
1462 (or (and (not switches) | |
1463 (dired-goto-subdir dirname)) | |
1464 (dired-insert-subdir dirname switches no-error-if-not-dir-p)) | |
1465 ;; Push mark so that it's easy to find back. Do this after the | |
1466 ;; insert message so that the user sees the `Mark set' message. | |
1467 (push-mark opoint))) | |
1468 | |
1469 (defun dired-insert-subdir (dirname &optional switches no-error-if-not-dir-p) | |
1470 "Insert this subdirectory into the same dired buffer. | |
1471 If it is already present, overwrites previous entry, | |
1472 else inserts it at its natural place (as `ls -lR' would have done). | |
1473 With a prefix arg, you may edit the `ls' switches used for this listing. | |
1474 You can add `R' to the switches to expand the whole tree starting at | |
1475 this subdirectory. | |
1476 This function takes some pains to conform to `ls -lR' output." | |
1477 ;; NO-ERROR-IF-NOT-DIR-P needed for special filesystems like | |
1478 ;; Prospero where dired-ls does the right thing, but | |
1479 ;; file-directory-p has not been redefined. | |
1480 (interactive | |
1481 (list (dired-get-filename) | |
1482 (if current-prefix-arg | |
1483 (read-string "Switches for listing: " dired-actual-switches)))) | |
1484 (setq dirname (file-name-as-directory (expand-file-name dirname))) | |
1485 (dired-insert-subdir-validate dirname switches) | |
1486 (or no-error-if-not-dir-p | |
1487 (file-directory-p dirname) | |
1488 (error "Attempt to insert a non-directory: %s" dirname)) | |
1489 (let ((elt (assoc dirname dired-subdir-alist)) | |
1490 switches-have-R mark-alist case-fold-search buffer-read-only) | |
1491 ;; case-fold-search is nil now, so we can test for capital `R': | |
1492 (if (setq switches-have-R (and switches (string-match "R" switches))) | |
1493 ;; avoid duplicated subdirs | |
1494 (setq mark-alist (dired-kill-tree dirname t))) | |
1495 (if elt | |
1496 ;; If subdir is already present, remove it and remember its marks | |
1497 (setq mark-alist (nconc (dired-insert-subdir-del elt) mark-alist)) | |
1498 (dired-insert-subdir-newpos dirname)) ; else compute new position | |
1499 (dired-insert-subdir-doupdate | |
1500 dirname elt (dired-insert-subdir-doinsert dirname switches)) | |
1501 (if switches-have-R (dired-build-subdir-alist)) | |
1502 (dired-initial-position dirname) | |
1503 (save-excursion (dired-mark-remembered mark-alist)))) | |
1504 | |
1505 ;; This is a separate function for dired-vms. | |
1506 (defun dired-insert-subdir-validate (dirname &optional switches) | |
1507 ;; Check that it is valid to insert DIRNAME with SWITCHES. | |
1508 ;; Signal an error if invalid (e.g. user typed `i' on `..'). | |
5281 | 1509 (or (dired-in-this-tree dirname (expand-file-name default-directory)) |
724 | 1510 (error "%s: not in this directory tree" dirname)) |
1511 (if switches | |
1512 (let (case-fold-search) | |
1513 (mapcar | |
1514 (function | |
1515 (lambda (x) | |
1516 (or (eq (null (string-match x switches)) | |
1517 (null (string-match x dired-actual-switches))) | |
1518 (error "Can't have dirs with and without -%s switches together" | |
1519 x)))) | |
1520 ;; all switches that make a difference to dired-get-filename: | |
1521 '("F" "b"))))) | |
1522 | |
1523 (defun dired-alist-add (dir new-marker) | |
1524 ;; Add new DIR at NEW-MARKER. Sort alist. | |
1525 (dired-alist-add-1 dir new-marker) | |
1526 (dired-alist-sort)) | |
1527 | |
1528 (defun dired-alist-sort () | |
1529 ;; Keep the alist sorted on buffer position. | |
1530 (setq dired-subdir-alist | |
1531 (sort dired-subdir-alist | |
1532 (function (lambda (elt1 elt2) | |
1533 (> (dired-get-subdir-min elt1) | |
1534 (dired-get-subdir-min elt2))))))) | |
1535 | |
1536 (defun dired-kill-tree (dirname &optional remember-marks) | |
1537 ;;"Kill all proper subdirs of DIRNAME, excluding DIRNAME itself. | |
1538 ;; With optional arg REMEMBER-MARKS, return an alist of marked files." | |
1539 (interactive "DKill tree below directory: ") | |
1540 (let ((s-alist dired-subdir-alist) dir m-alist) | |
1541 (while s-alist | |
1542 (setq dir (car (car s-alist)) | |
1543 s-alist (cdr s-alist)) | |
1544 (if (and (not (string-equal dir dirname)) | |
1545 (dired-in-this-tree dir dirname) | |
1546 (dired-goto-subdir dir)) | |
1547 (setq m-alist (nconc (dired-kill-subdir remember-marks) m-alist)))) | |
1548 m-alist)) | |
1549 | |
1550 (defun dired-insert-subdir-newpos (new-dir) | |
1551 ;; Find pos for new subdir, according to tree order. | |
1552 ;;(goto-char (point-max)) | |
1553 (let ((alist dired-subdir-alist) elt dir pos new-pos) | |
1554 (while alist | |
1555 (setq elt (car alist) | |
1556 alist (cdr alist) | |
1557 dir (car elt) | |
1558 pos (dired-get-subdir-min elt)) | |
1559 (if (dired-tree-lessp dir new-dir) | |
1560 ;; Insert NEW-DIR after DIR | |
1561 (setq new-pos (dired-get-subdir-max elt) | |
1562 alist nil))) | |
1563 (goto-char new-pos)) | |
1564 ;; want a separating newline between subdirs | |
1565 (or (eobp) | |
1566 (forward-line -1)) | |
1567 (insert "\n") | |
1568 (point)) | |
1569 | |
1570 (defun dired-insert-subdir-del (element) | |
1571 ;; Erase an already present subdir (given by ELEMENT) from buffer. | |
1572 ;; Move to that buffer position. Return a mark-alist. | |
1573 (let ((begin-marker (dired-get-subdir-min element))) | |
1574 (goto-char begin-marker) | |
1575 ;; Are at beginning of subdir (and inside it!). Now determine its end: | |
1576 (goto-char (dired-subdir-max)) | |
1577 (or (eobp);; want a separating newline _between_ subdirs: | |
1578 (forward-char -1)) | |
1579 (prog1 | |
1580 (dired-remember-marks begin-marker (point)) | |
1581 (delete-region begin-marker (point))))) | |
1582 | |
1583 (defun dired-insert-subdir-doinsert (dirname switches) | |
1584 ;; Insert ls output after point and put point on the correct | |
1585 ;; position for the subdir alist. | |
1586 ;; Return the boundary of the inserted text (as list of BEG and END). | |
1587 (let ((begin (point)) end) | |
1588 (message "Reading directory %s..." dirname) | |
1589 (let ((dired-actual-switches | |
1590 (or switches | |
1591 (dired-replace-in-string "R" "" dired-actual-switches)))) | |
1592 (if (equal dirname (car (car (reverse dired-subdir-alist)))) | |
1593 ;; top level directory may contain wildcards: | |
1594 (dired-readin-insert dired-directory) | |
1110
f165d900e06e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
917
diff
changeset
|
1595 (insert-directory dirname dired-actual-switches nil t))) |
724 | 1596 (message "Reading directory %s...done" dirname) |
1597 (setq end (point-marker)) | |
1598 (indent-rigidly begin end 2) | |
1599 ;; call dired-insert-headerline afterwards, as under VMS dired-ls | |
1600 ;; does insert the headerline itself and the insert function just | |
1601 ;; moves point. | |
1602 ;; Need a marker for END as this inserts text. | |
1603 (goto-char begin) | |
1604 (dired-insert-headerline dirname) | |
1605 ;; point is now like in dired-build-subdir-alist | |
1606 (prog1 | |
1607 (list begin (marker-position end)) | |
1608 (set-marker end nil)))) | |
1609 | |
1610 (defun dired-insert-subdir-doupdate (dirname elt beg-end) | |
1611 ;; Point is at the correct subdir alist position for ELT, | |
1612 ;; BEG-END is the subdir-region (as list of begin and end). | |
1613 (if elt ; subdir was already present | |
1614 ;; update its position (should actually be unchanged) | |
1615 (set-marker (dired-get-subdir-min elt) (point-marker)) | |
1616 (dired-alist-add dirname (point-marker))) | |
1617 ;; The hook may depend on the subdir-alist containing the just | |
1618 ;; inserted subdir, so run it after dired-alist-add: | |
1619 (if dired-after-readin-hook | |
1620 (save-excursion | |
1621 (let ((begin (nth 0 beg-end)) | |
1622 (end (nth 1 beg-end))) | |
1623 (goto-char begin) | |
1624 (save-restriction | |
1625 (narrow-to-region begin end) | |
1626 ;; hook may add or delete lines, but the subdir boundary | |
1627 ;; marker floats | |
1628 (run-hooks 'dired-after-readin-hook)))))) | |
1629 | |
1630 (defun dired-tree-lessp (dir1 dir2) | |
1631 ;; Lexicographic order on pathname components, like `ls -lR': | |
1632 ;; DIR1 < DIR2 iff DIR1 comes *before* DIR2 in an `ls -lR' listing, | |
1633 ;; i.e., iff DIR1 is a (grand)parent dir of DIR2, | |
1634 ;; or DIR1 and DIR2 are in the same parentdir and their last | |
1635 ;; components are string-lessp. | |
1636 ;; Thus ("/usr/" "/usr/bin") and ("/usr/a/" "/usr/b/") are tree-lessp. | |
1637 ;; string-lessp could arguably be replaced by file-newer-than-file-p | |
1638 ;; if dired-actual-switches contained `t'. | |
1639 (setq dir1 (file-name-as-directory dir1) | |
1640 dir2 (file-name-as-directory dir2)) | |
1641 (let ((components-1 (dired-split "/" dir1)) | |
1642 (components-2 (dired-split "/" dir2))) | |
1643 (while (and components-1 | |
1644 components-2 | |
1645 (equal (car components-1) (car components-2))) | |
1646 (setq components-1 (cdr components-1) | |
1647 components-2 (cdr components-2))) | |
1648 (let ((c1 (car components-1)) | |
1649 (c2 (car components-2))) | |
1650 | |
1651 (cond ((and c1 c2) | |
1652 (string-lessp c1 c2)) | |
1653 ((and (null c1) (null c2)) | |
1654 nil) ; they are equal, not lessp | |
1655 ((null c1) ; c2 is a subdir of c1: c1<c2 | |
1656 t) | |
1657 ((null c2) ; c1 is a subdir of c2: c1>c2 | |
1658 nil) | |
1659 (t (error "This can't happen")))))) | |
1660 | |
1661 ;; There should be a builtin split function - inverse to mapconcat. | |
1662 (defun dired-split (pat str &optional limit) | |
1663 "Splitting on regexp PAT, turn string STR into a list of substrings. | |
1664 Optional third arg LIMIT (>= 1) is a limit to the length of the | |
1665 resulting list. | |
1666 Thus, if SEP is a regexp that only matches itself, | |
1667 | |
1668 (mapconcat 'identity (dired-split SEP STRING) SEP) | |
1669 | |
1670 is always equal to STRING." | |
1671 (let* ((start (string-match pat str)) | |
1672 (result (list (substring str 0 start))) | |
1673 (count 1) | |
1674 (end (if start (match-end 0)))) | |
1675 (if end ; else nothing left | |
1676 (while (and (or (not (integerp limit)) | |
1677 (< count limit)) | |
1678 (string-match pat str end)) | |
1679 (setq start (match-beginning 0) | |
1680 count (1+ count) | |
1681 result (cons (substring str end start) result) | |
1682 end (match-end 0) | |
1683 start end) | |
1684 )) | |
1685 (if (and (or (not (integerp limit)) | |
1686 (< count limit)) | |
1687 end) ; else nothing left | |
1688 (setq result | |
1689 (cons (substring str end) result))) | |
1690 (nreverse result))) | |
1691 | |
1692 ;;; moving by subdirectories | |
1693 | |
1694 ;;;###autoload | |
1695 (defun dired-prev-subdir (arg &optional no-error-if-not-found no-skip) | |
1696 "Go to previous subdirectory, regardless of level. | |
1697 When called interactively and not on a subdir line, go to this subdir's line." | |
1698 ;;(interactive "p") | |
1699 (interactive | |
1700 (list (if current-prefix-arg | |
1701 (prefix-numeric-value current-prefix-arg) | |
1702 ;; if on subdir start already, don't stay there! | |
1703 (if (dired-get-subdir) 1 0)))) | |
1704 (dired-next-subdir (- arg) no-error-if-not-found no-skip)) | |
1705 | |
1706 (defun dired-subdir-min () | |
1707 (save-excursion | |
1708 (if (not (dired-prev-subdir 0 t t)) | |
1709 (error "Not in a subdir!") | |
1710 (point)))) | |
1711 | |
1712 ;;;###autoload | |
1713 (defun dired-goto-subdir (dir) | |
1714 "Go to end of header line of DIR in this dired buffer. | |
1715 Return value of point on success, otherwise return nil. | |
1716 The next char is either \\n, or \\r if DIR is hidden." | |
1717 (interactive | |
1718 (prog1 ; let push-mark display its message | |
1719 (list (expand-file-name | |
1720 (completing-read "Goto in situ directory: " ; prompt | |
1721 dired-subdir-alist ; table | |
1722 nil ; predicate | |
1723 t ; require-match | |
1724 (dired-current-directory)))) | |
1725 (push-mark))) | |
1726 (setq dir (file-name-as-directory dir)) | |
1727 (let ((elt (assoc dir dired-subdir-alist))) | |
1728 (and elt | |
1729 (goto-char (dired-get-subdir-min elt)) | |
1730 ;; dired-subdir-hidden-p and dired-add-entry depend on point being | |
1731 ;; at either \r or \n after this function succeeds. | |
1732 (progn (skip-chars-forward "^\r\n") | |
1733 (point))))) | |
1734 | |
1735 ;;;###autoload | |
1736 (defun dired-mark-subdir-files () | |
1737 "Mark all files except `.' and `..'." | |
1738 (interactive "P") | |
1739 (let ((p-min (dired-subdir-min))) | |
1740 (dired-mark-files-in-region p-min (dired-subdir-max)))) | |
1741 | |
1742 ;;;###autoload | |
1743 (defun dired-kill-subdir (&optional remember-marks) | |
1744 "Remove all lines of current subdirectory. | |
1745 Lower levels are unaffected." | |
1746 ;; With optional REMEMBER-MARKS, return a mark-alist. | |
1747 (interactive) | |
1748 (let ((beg (dired-subdir-min)) | |
1749 (end (dired-subdir-max)) | |
1750 buffer-read-only cur-dir) | |
1751 (setq cur-dir (dired-current-directory)) | |
1752 (if (equal cur-dir default-directory) | |
1753 (error "Attempt to kill top level directory")) | |
1754 (prog1 | |
1755 (if remember-marks (dired-remember-marks beg end)) | |
1756 (delete-region beg end) | |
1757 (if (eobp) ; don't leave final blank line | |
1758 (delete-char -1)) | |
1759 (dired-unsubdir cur-dir)))) | |
1760 | |
1761 (defun dired-unsubdir (dir) | |
1762 ;; Remove DIR from the alist | |
1763 (setq dired-subdir-alist | |
1764 (delq (assoc dir dired-subdir-alist) dired-subdir-alist))) | |
1765 | |
1766 ;;;###autoload | |
1767 (defun dired-tree-up (arg) | |
1768 "Go up ARG levels in the dired tree." | |
1769 (interactive "p") | |
1770 (let ((dir (dired-current-directory))) | |
1771 (while (>= arg 1) | |
1772 (setq arg (1- arg) | |
1773 dir (file-name-directory (directory-file-name dir)))) | |
1774 ;;(setq dir (expand-file-name dir)) | |
1775 (or (dired-goto-subdir dir) | |
1776 (error "Cannot go up to %s - not in this tree." dir)))) | |
1777 | |
1778 ;;;###autoload | |
1779 (defun dired-tree-down () | |
1780 "Go down in the dired tree." | |
1781 (interactive) | |
1782 (let ((dir (dired-current-directory)) ; has slash | |
1783 pos case-fold-search) ; filenames are case sensitive | |
1784 (let ((rest (reverse dired-subdir-alist)) elt) | |
1785 (while rest | |
1786 (setq elt (car rest) | |
1787 rest (cdr rest)) | |
1788 (if (dired-in-this-tree (directory-file-name (car elt)) dir) | |
1789 (setq rest nil | |
1790 pos (dired-goto-subdir (car elt)))))) | |
1791 (if pos | |
1792 (goto-char pos) | |
1793 (error "At the bottom")))) | |
1794 | |
1795 ;;; hiding | |
1796 | |
1797 (defun dired-unhide-subdir () | |
1798 (let (buffer-read-only) | |
1799 (subst-char-in-region (dired-subdir-min) (dired-subdir-max) ?\r ?\n))) | |
1800 | |
1801 (defun dired-hide-check () | |
1802 (or selective-display | |
1803 (error "selective-display must be t for subdir hiding to work!"))) | |
1804 | |
1805 (defun dired-subdir-hidden-p (dir) | |
1806 (and selective-display | |
1807 (save-excursion | |
1808 (dired-goto-subdir dir) | |
1809 (looking-at "\r")))) | |
1810 | |
1811 ;;;###autoload | |
1812 (defun dired-hide-subdir (arg) | |
1813 "Hide or unhide the current subdirectory and move to next directory. | |
1814 Optional prefix arg is a repeat factor. | |
1815 Use \\[dired-hide-all] to (un)hide all directories." | |
1816 (interactive "p") | |
1817 (dired-hide-check) | |
1818 (while (>= (setq arg (1- arg)) 0) | |
1819 (let* ((cur-dir (dired-current-directory)) | |
1820 (hidden-p (dired-subdir-hidden-p cur-dir)) | |
1821 (elt (assoc cur-dir dired-subdir-alist)) | |
1822 (end-pos (1- (dired-get-subdir-max elt))) | |
1823 buffer-read-only) | |
1824 ;; keep header line visible, hide rest | |
1825 (goto-char (dired-get-subdir-min elt)) | |
1826 (skip-chars-forward "^\n\r") | |
1827 (if hidden-p | |
1828 (subst-char-in-region (point) end-pos ?\r ?\n) | |
1829 (subst-char-in-region (point) end-pos ?\n ?\r))) | |
1830 (dired-next-subdir 1 t))) | |
1831 | |
1832 ;;;###autoload | |
1833 (defun dired-hide-all (arg) | |
1834 "Hide all subdirectories, leaving only their header lines. | |
1835 If there is already something hidden, make everything visible again. | |
1836 Use \\[dired-hide-subdir] to (un)hide a particular subdirectory." | |
1837 (interactive "P") | |
1838 (dired-hide-check) | |
1839 (let (buffer-read-only) | |
1840 (if (save-excursion | |
1841 (goto-char (point-min)) | |
1842 (search-forward "\r" nil t)) | |
1843 ;; unhide - bombs on \r in filenames | |
1844 (subst-char-in-region (point-min) (point-max) ?\r ?\n) | |
1845 ;; hide | |
1846 (let ((pos (point-max)) ; pos of end of last directory | |
1847 (alist dired-subdir-alist)) | |
1848 (while alist ; while there are dirs before pos | |
1849 (subst-char-in-region (dired-get-subdir-min (car alist)) ; pos of prev dir | |
1850 (save-excursion | |
1851 (goto-char pos) ; current dir | |
1852 ;; we're somewhere on current dir's line | |
1853 (forward-line -1) | |
1854 (point)) | |
1855 ?\n ?\r) | |
1856 (setq pos (dired-get-subdir-min (car alist))) ; prev dir gets current dir | |
1857 (setq alist (cdr alist))))))) | |
1858 | |
1859 ;;;###end dired-ins.el | |
794
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
724
diff
changeset
|
1860 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
794
diff
changeset
|
1861 ;;; dired-aux.el ends here |