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