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