*** empty log message ***
[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.
480 (let (handler (handlers file-name-handler-alist))
481 (while (and (consp handlers) (null handler))
482 (if (and (consp (car handlers))
483 (stringp (car (car handlers)))
484 (string-match (car (car handlers)) file))
485 (setq handler (cdr (car handlers))))
486 (setq handlers (cdr handlers)))
487 (cond (handler
488 (funcall handler 'dired-compress-file file))
489 ((file-symlink-p file)
490 nil)
491 ((string-match "\\.Z$" file)
dd87891b
RS
492 (if (dired-check-process (concat "Uncompressing " from-file)
493 "uncompress" from-file)
bfe81e78 494 (substring file 0 -2)))
dd87891b
RS
495 (t
496 (if (dired-check-process (concat "Compressing " from-file)
497 "compress" "-f" from-file)
bfe81e78 498 (concat name ".Z"))))))
dd87891b
RS
499\f
500(defun dired-mark-confirm (op-symbol arg)
501 ;; Request confirmation from the user that the operation described
502 ;; by OP-SYMBOL is to be performed on the marked files.
503 ;; Confirmation consists in a y-or-n question with a file list
504 ;; pop-up unless OP-SYMBOL is a member of `dired-no-confirm'.
505 ;; The files used are determined by ARG (as in dired-get-marked-files).
506 (or (memq op-symbol dired-no-confirm)
507 (let ((files (dired-get-marked-files t arg)))
508 (dired-mark-pop-up nil op-symbol files (function y-or-n-p)
509 (concat (capitalize (symbol-name op-symbol)) " "
510 (dired-mark-prompt arg files) "? ")))))
511
512(defun dired-map-over-marks-check (fun arg op-symbol &optional show-progress)
513; "Map FUN over marked files (with second ARG like in dired-map-over-marks)
514; and display failures.
515
516; FUN takes zero args. It returns non-nil (the offending object, e.g.
517; the short form of the filename) for a failure and probably logs a
518; detailed error explanation using function `dired-log'.
519
520; OP-SYMBOL is a symbol describing the operation performed (e.g.
521; `compress'). It is used with `dired-mark-pop-up' to prompt the user
522; (e.g. with `Compress * [2 files]? ') and to display errors (e.g.
523; `Failed to compress 1 of 2 files - type W to see why ("foo")')
524
525; SHOW-PROGRESS if non-nil means redisplay dired after each file."
526 (if (dired-mark-confirm op-symbol arg)
527 (let* ((total-list;; all of FUN's return values
528 (dired-map-over-marks (funcall fun) arg show-progress))
529 (total (length total-list))
530 (failures (delq nil total-list))
531 (count (length failures)))
532 (if (not failures)
533 (message "%s: %d file%s."
534 (capitalize (symbol-name op-symbol))
535 total (dired-plural-s total))
536 ;; end this bunch of errors:
537 (dired-log-summary
538 (format "Failed to %s %d of %d file%s"
539 (symbol-name op-symbol) count total (dired-plural-s total))
540 failures)))))
541
542(defvar dired-query-alist
543 '((?\y . y) (?\040 . y) ; `y' or SPC means accept once
544 (?n . n) (?\177 . n) ; `n' or DEL skips once
545 (?! . yes) ; `!' accepts rest
546 (?q. no) (?\e . no) ; `q' or ESC skips rest
547 ;; None of these keys quit - use C-g for that.
548 ))
549
550(defun dired-query (qs-var qs-prompt &rest qs-args)
551 ;; Query user and return nil or t.
552 ;; Store answer in symbol VAR (which must initially be bound to nil).
553 ;; Format PROMPT with ARGS.
c3aef019 554 ;; Binding variable help-form will help the user who types the help key.
dd87891b
RS
555 (let* ((char (symbol-value qs-var))
556 (action (cdr (assoc char dired-query-alist))))
557 (cond ((eq 'yes action)
558 t) ; accept, and don't ask again
559 ((eq 'no action)
560 nil) ; skip, and don't ask again
561 (t;; no lasting effects from last time we asked - ask now
562 (let ((qprompt (concat qs-prompt
563 (if help-form
564 (format " [Type yn!q or %s] "
565 (key-description
566 (char-to-string help-char)))
567 " [Type y, n, q or !] ")))
568 result elt)
569 ;; Actually it looks nicer without cursor-in-echo-area - you can
570 ;; look at the dired buffer instead of at the prompt to decide.
571 (apply 'message qprompt qs-args)
572 (setq char (set qs-var (read-char)))
573 (while (not (setq elt (assoc char dired-query-alist)))
574 (message "Invalid char - type %c for help." help-char)
575 (ding)
576 (sit-for 1)
577 (apply 'message qprompt qs-args)
578 (setq char (set qs-var (read-char))))
579 (memq (cdr elt) '(t y yes)))))))
580\f
581;;;###autoload
582(defun dired-do-compress (&optional arg)
583 "Compress or uncompress marked (or next ARG) files."
584 (interactive "P")
585 (dired-map-over-marks-check (function dired-compress) arg 'compress t))
586
587;; Commands for Emacs Lisp files - load and byte compile
588
589(defun dired-byte-compile ()
590 ;; Return nil for success, offending file name else.
591 (let* ((filename (dired-get-filename))
592 (elc-file
593 (if (eq system-type 'vax-vms)
594 (concat (substring filename 0 (string-match ";" filename)) "c")
595 (concat filename "c")))
596 buffer-read-only failure)
597 (condition-case err
598 (save-excursion (byte-compile-file filename))
599 (error
600 (setq failure err)))
601 (if failure
602 (progn
603 (dired-log "Byte compile error for %s:\n%s\n" filename failure)
604 (dired-make-relative filename))
605 (dired-remove-file elc-file)
606 (forward-line) ; insert .elc after its .el file
607 (dired-add-file elc-file)
608 nil)))
609
610;;;###autoload
611(defun dired-do-byte-compile (&optional arg)
612 "Byte compile marked (or next ARG) Emacs Lisp files."
613 (interactive "P")
614 (dired-map-over-marks-check (function dired-byte-compile) arg 'byte-compile t))
615
616(defun dired-load ()
617 ;; Return nil for success, offending file name else.
618 (let ((file (dired-get-filename)) failure)
619 (condition-case err
620 (load file nil nil t)
621 (error (setq failure err)))
622 (if (not failure)
623 nil
624 (dired-log "Load error for %s:\n%s\n" file failure)
625 (dired-make-relative file))))
626
627;;;###autoload
628(defun dired-do-load (&optional arg)
629 "Load the marked (or next ARG) Emacs Lisp files."
630 (interactive "P")
631 (dired-map-over-marks-check (function dired-load) arg 'load t))
632
633;;;###autoload
634(defun dired-do-redisplay (&optional arg test-for-subdir)
635 "Redisplay all marked (or next ARG) files.
636If on a subdir line, redisplay that subdirectory. In that case,
637a prefix arg lets you edit the `ls' switches used for the new listing."
638 ;; Moves point if the next ARG files are redisplayed.
639 (interactive "P\np")
640 (if (and test-for-subdir (dired-get-subdir))
641 (dired-insert-subdir
642 (dired-get-subdir)
643 (if arg (read-string "Switches for listing: " dired-actual-switches)))
644 (message "Redisplaying...")
645 ;; message much faster than making dired-map-over-marks show progress
646 (dired-map-over-marks (let ((fname (dired-get-filename)))
647 (message "Redisplaying... %s" fname)
648 (dired-update-file-line fname))
649 arg)
650 (dired-move-to-filename)
651 (message "Redisplaying...done")))
652\f
653(defun dired-update-file-line (file)
654 ;; Delete the current line, and insert an entry for FILE.
655 ;; If FILE is nil, then just delete the current line.
656 ;; Keeps any marks that may be present in column one (doing this
657 ;; here is faster than with dired-add-entry's optional arg).
658 ;; Does not update other dired buffers. Use dired-relist-entry for that.
659 (beginning-of-line)
6482fcac
RS
660 (let ((char (following-char)) (opoint (point))
661 (buffer-read-only))
dd87891b
RS
662 (delete-region (point) (progn (forward-line 1) (point)))
663 (if file
664 (progn
665 (dired-add-entry file)
666 ;; Replace space by old marker without moving point.
667 ;; Faster than goto+insdel inside a save-excursion?
668 (subst-char-in-region opoint (1+ opoint) ?\040 char))))
669 (dired-move-to-filename))
670
671(defun dired-fun-in-all-buffers (directory fun &rest args)
672 ;; In all buffers dired'ing DIRECTORY, run FUN with ARGS.
673 ;; Return list of buffers where FUN succeeded (i.e., returned non-nil).
674 (let ((buf-list (dired-buffers-for-dir directory))
675 (obuf (current-buffer))
676 buf success-list)
677 (while buf-list
678 (setq buf (car buf-list)
679 buf-list (cdr buf-list))
680 (unwind-protect
681 (progn
682 (set-buffer buf)
683 (if (apply fun args)
684 (setq success-list (cons (buffer-name buf) success-list))))
685 (set-buffer obuf)))
686 success-list))
687
688(defun dired-add-file (filename &optional marker-char)
689 (dired-fun-in-all-buffers
690 (file-name-directory filename)
691 (function dired-add-entry) filename marker-char))
692
693(defun dired-add-entry (filename &optional marker-char)
694 ;; Add a new entry for FILENAME, optionally marking it
695 ;; with MARKER-CHAR (a character, else dired-marker-char is used).
696 ;; Note that this adds the entry `out of order' if files sorted by
697 ;; time, etc.
698 ;; At least this version inserts in the right subdirectory (if present).
699 ;; And it skips "." or ".." (see `dired-trivial-filenames').
700 ;; Hidden subdirs are exposed if a file is added there.
701 (setq filename (directory-file-name filename))
702 ;; Entry is always for files, even if they happen to also be directories
703 (let ((opoint (point))
704 (cur-dir (dired-current-directory))
705 (directory (file-name-directory filename))
706 reason)
707 (setq filename (file-name-nondirectory filename)
708 reason
709 (catch 'not-found
710 (if (string= directory cur-dir)
711 (progn
712 (skip-chars-forward "^\r\n")
713 (if (eq (following-char) ?\r)
714 (dired-unhide-subdir))
715 ;; We are already where we should be, except when
716 ;; point is before the subdir line or its total line.
717 (let ((p (dired-after-subdir-garbage cur-dir)))
718 (if (< (point) p)
719 (goto-char p))))
720 ;; else try to find correct place to insert
721 (if (dired-goto-subdir directory)
722 (progn;; unhide if necessary
723 (if (looking-at "\r");; point is at end of subdir line
724 (dired-unhide-subdir))
725 ;; found - skip subdir and `total' line
726 ;; and uninteresting files like . and ..
727 ;; This better not moves into the next subdir!
728 (dired-goto-next-nontrivial-file))
729 ;; not found
730 (throw 'not-found "Subdir not found")))
731 ;; found and point is at The Right Place:
732 (let (buffer-read-only)
733 (beginning-of-line)
734 (dired-add-entry-do-indentation marker-char)
bfe81e78
RS
735 ;; don't expand `.' !
736 (insert-directory (dired-make-absolute filename directory)
737 (concat dired-actual-switches "d"))
dd87891b
RS
738 (forward-line -1)
739 ;; We want to have the non-directory part, only:
740 (let* ((beg (dired-move-to-filename t)) ; error for strange output
741 (end (dired-move-to-end-of-filename)))
742 (setq filename (buffer-substring beg end))
743 (delete-region beg end)
744 (insert (file-name-nondirectory filename)))
745 (if dired-after-readin-hook;; the subdir-alist is not affected...
746 (save-excursion;; ...so we can run it right now:
747 (save-restriction
748 (beginning-of-line)
749 (narrow-to-region (point) (save-excursion
750 (forward-line 1) (point)))
751 (run-hooks 'dired-after-readin-hook))))
752 (dired-move-to-filename))
753 ;; return nil if all went well
754 nil))
755 (if reason ; don't move away on failure
756 (goto-char opoint))
757 (not reason))) ; return t on succes, nil else
758
759;; This is a separate function for the sake of nested dired format.
760(defun dired-add-entry-do-indentation (marker-char)
761 ;; two spaces or a marker plus a space:
762 (insert (if marker-char
763 (if (integerp marker-char) marker-char dired-marker-char)
764 ?\040)
765 ?\040))
766
767(defun dired-after-subdir-garbage (dir)
768 ;; Return pos of first file line of DIR, skipping header and total
769 ;; or wildcard lines.
770 ;; Important: never moves into the next subdir.
771 ;; DIR is assumed to be unhidden.
772 ;; Will probably be redefined for VMS etc.
773 (save-excursion
774 (or (dired-goto-subdir dir) (error "This cannot happen"))
775 (forward-line 1)
776 (while (and (not (eolp)) ; don't cross subdir boundary
777 (not (dired-move-to-filename)))
778 (forward-line 1))
779 (point)))
780
781(defun dired-remove-file (file)
782 (dired-fun-in-all-buffers
783 (file-name-directory file) (function dired-remove-entry) file))
784
785(defun dired-remove-entry (file)
786 (save-excursion
787 (and (dired-goto-file file)
788 (let (buffer-read-only)
789 (delete-region (progn (beginning-of-line) (point))
790 (save-excursion (forward-line 1) (point)))))))
791
792(defun dired-relist-file (file)
793 (dired-fun-in-all-buffers (file-name-directory file)
794 (function dired-relist-entry) file))
795
796(defun dired-relist-entry (file)
797 ;; Relist the line for FILE, or just add it if it did not exist.
798 ;; FILE must be an absolute pathname.
799 (let (buffer-read-only marker)
800 ;; If cursor is already on FILE's line delete-region will cause
801 ;; save-excursion to fail because of floating makers,
802 ;; moving point to beginning of line. Sigh.
803 (save-excursion
804 (and (dired-goto-file file)
805 (delete-region (progn (beginning-of-line)
806 (setq marker (following-char))
807 (point))
808 (save-excursion (forward-line 1) (point))))
809 (setq file (directory-file-name file))
810 (dired-add-entry file (if (eq ?\040 marker) nil marker)))))
811\f
812;;; Copy, move/rename, making hard and symbolic links
813
814(defvar dired-backup-overwrite nil
815 "*Non-nil if Dired should ask about making backups before overwriting files.
816Special value `always' suppresses confirmation.")
817
6482fcac
RS
818(defvar dired-overwrite-confirmed)
819
dd87891b
RS
820(defun dired-handle-overwrite (to)
821 ;; Save old version of a to be overwritten file TO.
6482fcac 822 ;; `dired-overwrite-confirmed' and `overwrite-backup-query' are fluid vars
dd87891b
RS
823 ;; from dired-create-files.
824 (if (and dired-backup-overwrite
6482fcac 825 dired-overwrite-confirmed
dd87891b
RS
826 (or (eq 'always dired-backup-overwrite)
827 (dired-query 'overwrite-backup-query
828 (format "Make backup for existing file `%s'? " to))))
829 (let ((backup (car (find-backup-file-name to))))
830 (rename-file to backup 0) ; confirm overwrite of old backup
831 (dired-relist-entry backup))))
832
833(defun dired-copy-file (from to ok-flag)
834 (dired-handle-overwrite to)
835 (copy-file from to ok-flag dired-copy-preserve-time))
836
837(defun dired-rename-file (from to ok-flag)
838 (dired-handle-overwrite to)
839 (rename-file from to ok-flag) ; error is caught in -create-files
840 ;; Silently rename the visited file of any buffer visiting this file.
841 (and (get-file-buffer from)
842 (save-excursion
843 (set-buffer (get-file-buffer from))
844 (let ((modflag (buffer-modified-p)))
845 (set-visited-file-name to)
846 (set-buffer-modified-p modflag))))
847 (dired-remove-file from)
848 ;; See if it's an inserted subdir, and rename that, too.
849 (dired-rename-subdir from to))
850
851(defun dired-rename-subdir (from-dir to-dir)
852 (setq from-dir (file-name-as-directory from-dir)
853 to-dir (file-name-as-directory to-dir))
854 (dired-fun-in-all-buffers from-dir
855 (function dired-rename-subdir-1) from-dir to-dir)
856 ;; Update visited file name of all affected buffers
857 (let ((blist (buffer-list)))
858 (while blist
859 (save-excursion
860 (set-buffer (car blist))
861 (if (and buffer-file-name
862 (dired-in-this-tree buffer-file-name from-dir))
863 (let ((modflag (buffer-modified-p))
864 (to-file (dired-replace-in-string
865 (concat "^" (regexp-quote from-dir))
866 to-dir
867 buffer-file-name)))
868 (set-visited-file-name to-file)
869 (set-buffer-modified-p modflag))))
870 (setq blist (cdr blist)))))
871
872(defun dired-rename-subdir-1 (dir to)
873 ;; Rename DIR to TO in headerlines and dired-subdir-alist, if DIR or
874 ;; one of its subdirectories is expanded in this buffer.
875 (let ((alist dired-subdir-alist)
876 (elt nil))
877 (while alist
878 (setq elt (car alist)
879 alist (cdr alist))
880 (if (dired-in-this-tree (car elt) dir)
881 ;; ELT's subdir is affected by the rename
882 (dired-rename-subdir-2 elt dir to)))
883 (if (equal dir default-directory)
884 ;; if top level directory was renamed, lots of things have to be
885 ;; updated:
886 (progn
887 (dired-unadvertise dir) ; we no longer dired DIR...
888 (setq default-directory to
889 dired-directory (expand-file-name;; this is correct
890 ;; with and without wildcards
891 (file-name-nondirectory dired-directory)
892 to))
893 (let ((new-name (file-name-nondirectory
894 (directory-file-name dired-directory))))
895 ;; try to rename buffer, but just leave old name if new
896 ;; name would already exist (don't try appending "<%d>")
897 (or (get-buffer new-name)
898 (rename-buffer new-name)))
899 ;; ... we dired TO now:
900 (dired-advertise)))))
901
902(defun dired-rename-subdir-2 (elt dir to)
903 ;; Update the headerline and dired-subdir-alist element of directory
904 ;; described by alist-element ELT to reflect the moving of DIR to TO.
905 ;; Thus, ELT describes either DIR itself or a subdir of DIR.
906 (save-excursion
907 (let ((regexp (regexp-quote (directory-file-name dir)))
908 (newtext (directory-file-name to))
909 buffer-read-only)
910 (goto-char (dired-get-subdir-min elt))
911 ;; Update subdir headerline in buffer
912 (if (not (looking-at dired-subdir-regexp))
913 (error "%s not found where expected - dired-subdir-alist broken?"
914 dir)
915 (goto-char (match-beginning 1))
916 (if (re-search-forward regexp (match-end 1) t)
917 (replace-match newtext t t)
918 (error "Expected to find `%s' in headerline of %s" dir (car elt))))
919 ;; Update buffer-local dired-subdir-alist
920 (setcar elt
921 (dired-normalize-subdir
922 (dired-replace-in-string regexp newtext (car elt)))))))
923\f
924;; Cloning replace-match to work on strings instead of in buffer:
925;; The FIXEDCASE parameter of replace-match is not implemented.
926;;;###autoload
927(defun dired-string-replace-match (regexp string newtext
928 &optional literal global)
929 "Replace first match of REGEXP in STRING with NEWTEXT.
930If it does not match, nil is returned instead of the new string.
931Optional arg LITERAL means to take NEWTEXT literally.
932Optional arg GLOBAL means to replace all matches."
933 (if global
934 (let ((result "") (start 0) mb me)
935 (while (string-match regexp string start)
936 (setq mb (match-beginning 0)
937 me (match-end 0)
938 result (concat result
939 (substring string start mb)
940 (if literal
941 newtext
942 (dired-expand-newtext string newtext)))
943 start me))
944 (if mb ; matched at least once
945 (concat result (substring string start))
946 nil))
947 ;; not GLOBAL
948 (if (not (string-match regexp string 0))
949 nil
950 (concat (substring string 0 (match-beginning 0))
951 (if literal newtext (dired-expand-newtext string newtext))
952 (substring string (match-end 0))))))
953
954(defun dired-expand-newtext (string newtext)
955 ;; Expand \& and \1..\9 (referring to STRING) in NEWTEXT, using match data.
956 ;; Note that in Emacs 18 match data are clipped to current buffer
957 ;; size...so the buffer should better not be smaller than STRING.
958 (let ((pos 0)
959 (len (length newtext))
960 (expanded-newtext ""))
961 (while (< pos len)
962 (setq expanded-newtext
963 (concat expanded-newtext
964 (let ((c (aref newtext pos)))
965 (if (= ?\\ c)
966 (cond ((= ?\& (setq c
967 (aref newtext
968 (setq pos (1+ pos)))))
969 (substring string
970 (match-beginning 0)
971 (match-end 0)))
972 ((and (>= c ?1) (<= c ?9))
973 ;; return empty string if N'th
974 ;; sub-regexp did not match:
975 (let ((n (- c ?0)))
976 (if (match-beginning n)
977 (substring string
978 (match-beginning n)
979 (match-end n))
980 "")))
981 (t
982 (char-to-string c)))
983 (char-to-string c)))))
984 (setq pos (1+ pos)))
985 expanded-newtext))
986\f
987;; The basic function for half a dozen variations on cp/mv/ln/ln -s.
988(defun dired-create-files (file-creator operation fn-list name-constructor
989 &optional marker-char)
990
991;; Create a new file for each from a list of existing files. The user
992;; is queried, dired buffers are updated, and at the end a success or
993;; failure message is displayed
994
995;; FILE-CREATOR must accept three args: oldfile newfile ok-if-already-exists
996
997;; It is called for each file and must create newfile, the entry of
998;; which will be added. The user will be queried if the file already
999;; exists. If oldfile is removed by FILE-CREATOR (i.e, it is a
1000;; rename), it is FILE-CREATOR's responsibility to update dired
1001;; buffers. FILE-CREATOR must abort by signalling a file-error if it
1002;; could not create newfile. The error is caught and logged.
1003
1004;; OPERATION (a capitalized string, e.g. `Copy') describes the
1005;; operation performed. It is used for error logging.
1006
1007;; FN-LIST is the list of files to copy (full absolute pathnames).
1008
1009;; NAME-CONSTRUCTOR returns a newfile for every oldfile, or nil to
1010;; skip. If it skips files for other reasons than a direct user
1011;; query, it is supposed to tell why (using dired-log).
1012
1013;; Optional MARKER-CHAR is a character with which to mark every
1014;; newfile's entry, or t to use the current marker character if the
1015;; oldfile was marked.
1016
1017 (let (failures skipped (success-count 0) (total (length fn-list)))
1018 (let (to overwrite-query
1019 overwrite-backup-query) ; for dired-handle-overwrite
1020 (mapcar
1021 (function
1022 (lambda (from)
1023 (setq to (funcall name-constructor from))
1024 (if (equal to from)
1025 (progn
1026 (setq to nil)
1027 (dired-log "Cannot %s to same file: %s\n"
1028 (downcase operation) from)))
1029 (if (not to)
1030 (setq skipped (cons (dired-make-relative from) skipped))
1031 (let* ((overwrite (file-exists-p to))
6482fcac 1032 (dired-overwrite-confirmed ; for dired-handle-overwrite
dd87891b
RS
1033 (and overwrite
1034 (let ((help-form '(format "\
1035Type SPC or `y' to overwrite file `%s',
1036DEL or `n' to skip to next,
1037ESC or `q' to not overwrite any of the remaining files,
1038`!' to overwrite all remaining files with no more questions." to)))
1039 (dired-query 'overwrite-query
1040 "Overwrite `%s'?" to))))
1041 ;; must determine if FROM is marked before file-creator
1042 ;; gets a chance to delete it (in case of a move).
1043 (actual-marker-char
1044 (cond ((integerp marker-char) marker-char)
1045 (marker-char (dired-file-marker from)) ; slow
1046 (t nil))))
1047 (condition-case err
1048 (progn
6482fcac 1049 (funcall file-creator from to dired-overwrite-confirmed)
dd87891b
RS
1050 (if overwrite
1051 ;; If we get here, file-creator hasn't been aborted
1052 ;; and the old entry (if any) has to be deleted
1053 ;; before adding the new entry.
1054 (dired-remove-file to))
1055 (setq success-count (1+ success-count))
1056 (message "%s: %d of %d" operation success-count total)
1057 (dired-add-file to actual-marker-char))
1058 (file-error ; FILE-CREATOR aborted
1059 (progn
1060 (setq failures (cons (dired-make-relative from) failures))
1061 (dired-log "%s `%s' to `%s' failed:\n%s\n"
1062 operation from to err))))))))
1063 fn-list))
1064 (cond
1065 (failures
1066 (dired-log-summary
1067 (format "%s failed for %d of %d file%s"
1068 operation (length failures) total
1069 (dired-plural-s total))
1070 failures))
1071 (skipped
1072 (dired-log-summary
1073 (format "%s: %d of %d file%s skipped"
1074 operation (length skipped) total
1075 (dired-plural-s total))
1076 skipped))
1077 (t
1078 (message "%s: %s file%s"
1079 operation success-count (dired-plural-s success-count)))))
1080 (dired-move-to-filename))
1081\f
1082(defun dired-do-create-files (op-symbol file-creator operation arg
1083 &optional marker-char op1
1084 how-to)
1085 ;; Create a new file for each marked file.
1086 ;; Prompts user for target, which is a directory in which to create
1087 ;; the new files. Target may be a plain file if only one marked
1088 ;; file exists.
1089 ;; OP-SYMBOL is the symbol for the operation. Function `dired-mark-pop-up'
1090 ;; will determine wether pop-ups are appropriate for this OP-SYMBOL.
1091 ;; FILE-CREATOR and OPERATION as in dired-create-files.
1092 ;; ARG as in dired-get-marked-files.
1093 ;; Optional arg OP1 is an alternate form for OPERATION if there is
1094 ;; only one file.
1095 ;; Optional arg MARKER-CHAR as in dired-create-files.
1096 ;; Optional arg HOW-TO determines how to treat target:
1097 ;; If HOW-TO is not given (or nil), and target is a directory, the
1098 ;; file(s) are created inside the target directory. If target
1099 ;; is not a directory, there must be exactly one marked file,
1100 ;; else error.
1101 ;; If HOW-TO is t, then target is not modified. There must be
1102 ;; exactly one marked file, else error.
1103 ;; Else HOW-TO is assumed to be a function of one argument, target,
1104 ;; that looks at target and returns a value for the into-dir
1105 ;; variable. The function dired-into-dir-with-symlinks is provided
1106 ;; for the case (common when creating symlinks) that symbolic
1107 ;; links to directories are not to be considered as directories
1108 ;; (as file-directory-p would if HOW-TO had been nil).
1109 (or op1 (setq op1 operation))
1110 (let* ((fn-list (dired-get-marked-files nil arg))
1111 (fn-count (length fn-list))
1112 (target (expand-file-name
1113 (dired-mark-read-file-name
1114 (concat (if (= 1 fn-count) op1 operation) " %s to: ")
1115 (dired-dwim-target-directory)
1116 op-symbol arg (mapcar (function dired-make-relative) fn-list))))
1117 (into-dir (cond ((null how-to) (file-directory-p target))
1118 ((eq how-to t) nil)
1119 (t (funcall how-to target)))))
1120 (if (and (> fn-count 1)
1121 (not into-dir))
1122 (error "Marked %s: target must be a directory: %s" operation target))
1123 ;; rename-file bombs when moving directories unless we do this:
1124 (or into-dir (setq target (directory-file-name target)))
1125 (dired-create-files
1126 file-creator operation fn-list
1127 (if into-dir ; target is a directory
1128 ;; This function uses fluid vars into-dir and target when called
1129 ;; inside dired-create-files:
1130 (function (lambda (from)
1131 (expand-file-name (file-name-nondirectory from) target)))
1132 (function (lambda (from) target)))
1133 marker-char)))
1134
1135;; Read arguments for a marked-files command that wants a file name,
1136;; perhaps popping up the list of marked files.
1137;; ARG is the prefix arg and indicates whether the files came from
1138;; marks (ARG=nil) or a repeat factor (integerp ARG).
1139;; If the current file was used, the list has but one element and ARG
1140;; does not matter. (It is non-nil, non-integer in that case, namely '(4)).
1141
1142(defun dired-mark-read-file-name (prompt dir op-symbol arg files)
1143 (dired-mark-pop-up
1144 nil op-symbol files
1145 (function read-file-name)
1146 (format prompt (dired-mark-prompt arg files)) dir))
1147
1148(defun dired-dwim-target-directory ()
1149 ;; Try to guess which target directory the user may want.
1150 ;; If there is a dired buffer displayed in the next window, use
1151 ;; its current subdir, else use current subdir of this dired buffer.
1152 (let ((this-dir (and (eq major-mode 'dired-mode)
1153 (dired-current-directory))))
1154 ;; non-dired buffer may want to profit from this function, e.g. vm-uudecode
1155 (if dired-dwim-target
1156 (let* ((other-buf (window-buffer (next-window)))
1157 (other-dir (save-excursion
1158 (set-buffer other-buf)
1159 (and (eq major-mode 'dired-mode)
1160 (dired-current-directory)))))
1161 (or other-dir this-dir))
1162 this-dir)))
1163\f
1164;;;###autoload
1165(defun dired-create-directory (directory)
1166 "Create a directory called DIRECTORY."
1167 (interactive
1168 (list (read-file-name "Create directory: " (dired-current-directory))))
1169 (let ((expanded (directory-file-name (expand-file-name directory))))
1170 (make-directory expanded)
1171 (dired-add-file expanded)
1172 (dired-move-to-filename)))
1173
1174(defun dired-into-dir-with-symlinks (target)
1175 (and (file-directory-p target)
1176 (not (file-symlink-p target))))
1177;; This may not always be what you want, especially if target is your
1178;; home directory and it happens to be a symbolic link, as is often the
1179;; case with NFS and automounters. Or if you want to make symlinks
1180;; into directories that themselves are only symlinks, also quite
1181;; common.
1182
1183;; So we don't use this function as value for HOW-TO in
1184;; dired-do-symlink, which has the minor disadvantage of
1185;; making links *into* a symlinked-dir, when you really wanted to
1186;; *overwrite* that symlink. In that (rare, I guess) case, you'll
1187;; just have to remove that symlink by hand before making your marked
1188;; symlinks.
1189
1190;;;###autoload
1191(defun dired-do-copy (&optional arg)
1192 "Copy all marked (or next ARG) files, or copy the current file.
1193This normally preserves the last-modified date when copying.
1194When operating on just the current file, you specify the new name.
1195When operating on multiple or marked files, you specify a directory
1196and new symbolic links are made in that directory
1197with the same names that the files currently have."
1198 (interactive "P")
1199 (dired-do-create-files 'copy (function dired-copy-file)
1200 (if dired-copy-preserve-time "Copy [-p]" "Copy")
1201 arg dired-keep-marker-copy))
1202
1203;;;###autoload
1204(defun dired-do-symlink (&optional arg)
1205 "Make symbolic links to current file or all marked (or next ARG) files.
1206When operating on just the current file, you specify the new name.
1207When operating on multiple or marked files, you specify a directory
1208and new symbolic links are made in that directory
1209with the same names that the files currently have."
1210 (interactive "P")
1211 (dired-do-create-files 'symlink (function make-symbolic-link)
1212 "Symlink" arg dired-keep-marker-symlink))
1213
1214;;;###autoload
1215(defun dired-do-hardlink (&optional arg)
1216 "Add names (hard links) current file or all marked (or next ARG) files.
1217When operating on just the current file, you specify the new name.
1218When operating on multiple or marked files, you specify a directory
1219and new hard links are made in that directory
1220with the same names that the files currently have."
1221 (interactive "P")
1222 (dired-do-create-files 'hardlink (function add-name-to-file)
1223 "Hardlink" arg dired-keep-marker-hardlink))
1224
1225;;;###autoload
1226(defun dired-do-rename (&optional arg)
1227 "Rename current file or all marked (or next ARG) files.
1228When renaming just the current file, you specify the new name.
1229When renaming multiple or marked files, you specify a directory."
1230 (interactive "P")
1231 (dired-do-create-files 'move (function dired-rename-file)
1232 "Move" arg dired-keep-marker-rename "Rename"))
1233;;;###end dired-cp.el
1234\f
1235;;; 5K
1236;;;###begin dired-re.el
1237(defun dired-do-create-files-regexp
1238 (file-creator operation arg regexp newname &optional whole-path marker-char)
1239 ;; Create a new file for each marked file using regexps.
1240 ;; FILE-CREATOR and OPERATION as in dired-create-files.
1241 ;; ARG as in dired-get-marked-files.
1242 ;; Matches each marked file against REGEXP and constructs the new
1243 ;; filename from NEWNAME (like in function replace-match).
1244 ;; Optional arg WHOLE-PATH means match/replace the whole pathname
1245 ;; instead of only the non-directory part of the file.
1246 ;; Optional arg MARKER-CHAR as in dired-create-files.
1247 (let* ((fn-list (dired-get-marked-files nil arg))
1248 (fn-count (length fn-list))
1249 (operation-prompt (concat operation " `%s' to `%s'?"))
1250 (rename-regexp-help-form (format "\
1251Type SPC or `y' to %s one match, DEL or `n' to skip to next,
1252`!' to %s all remaining matches with no more questions."
1253 (downcase operation)
1254 (downcase operation)))
1255 (regexp-name-constructor
1256 ;; Function to construct new filename using REGEXP and NEWNAME:
1257 (if whole-path ; easy (but rare) case
1258 (function
1259 (lambda (from)
1260 (let ((to (dired-string-replace-match regexp from newname))
1261 ;; must bind help-form directly around call to
1262 ;; dired-query
1263 (help-form rename-regexp-help-form))
1264 (if to
1265 (and (dired-query 'rename-regexp-query
1266 operation-prompt
1267 from
1268 to)
1269 to)
1270 (dired-log "%s: %s did not match regexp %s\n"
1271 operation from regexp)))))
1272 ;; not whole-path, replace non-directory part only
1273 (function
1274 (lambda (from)
1275 (let* ((new (dired-string-replace-match
1276 regexp (file-name-nondirectory from) newname))
1277 (to (and new ; nil means there was no match
1278 (expand-file-name new
1279 (file-name-directory from))))
1280 (help-form rename-regexp-help-form))
1281 (if to
1282 (and (dired-query 'rename-regexp-query
1283 operation-prompt
1284 (dired-make-relative from)
1285 (dired-make-relative to))
1286 to)
1287 (dired-log "%s: %s did not match regexp %s\n"
1288 operation (file-name-nondirectory from) regexp)))))))
1289 rename-regexp-query)
1290 (dired-create-files
1291 file-creator operation fn-list regexp-name-constructor marker-char)))
1292
1293(defun dired-mark-read-regexp (operation)
1294 ;; Prompt user about performing OPERATION.
1295 ;; Read and return list of: regexp newname arg whole-path.
1296 (let* ((whole-path
1297 (equal 0 (prefix-numeric-value current-prefix-arg)))
1298 (arg
1299 (if whole-path nil current-prefix-arg))
1300 (regexp
1301 (dired-read-regexp
1302 (concat (if whole-path "Path " "") operation " from (regexp): ")
1303 dired-flagging-regexp))
1304 (newname
1305 (read-string
1306 (concat (if whole-path "Path " "") operation " " regexp " to: "))))
1307 (list regexp newname arg whole-path)))
1308
1309;;;###autoload
1310(defun dired-do-rename-regexp (regexp newname &optional arg whole-path)
1311 "Rename marked files containing REGEXP to NEWNAME.
1312As each match is found, the user must type a character saying
1313 what to do with it. For directions, type \\[help-command] at that time.
1314NEWNAME may contain \\=\\<n> or \\& as in `query-replace-regexp'.
1315REGEXP defaults to the last regexp used.
1316With a zero prefix arg, renaming by regexp affects the complete
1317 pathname - usually only the non-directory part of file names is used
1318 and changed."
1319 (interactive (dired-mark-read-regexp "Rename"))
1320 (dired-do-create-files-regexp
1321 (function dired-rename-file)
1322 "Rename" arg regexp newname whole-path dired-keep-marker-rename))
1323
1324;;;###autoload
1325(defun dired-do-copy-regexp (regexp newname &optional arg whole-path)
1326 "Copy all marked files containing REGEXP to NEWNAME.
1327See function `dired-rename-regexp' for more info."
1328 (interactive (dired-mark-read-regexp "Copy"))
1329 (dired-do-create-files-regexp
1330 (function dired-copy-file)
1331 (if dired-copy-preserve-time "Copy [-p]" "Copy")
1332 arg regexp newname whole-path dired-keep-marker-copy))
1333
1334;;;###autoload
1335(defun dired-do-hardlink-regexp (regexp newname &optional arg whole-path)
1336 "Hardlink all marked files containing REGEXP to NEWNAME.
1337See function `dired-rename-regexp' for more info."
1338 (interactive (dired-mark-read-regexp "HardLink"))
1339 (dired-do-create-files-regexp
1340 (function add-name-to-file)
1341 "HardLink" arg regexp newname whole-path dired-keep-marker-hardlink))
1342
1343;;;###autoload
1344(defun dired-do-symlink-regexp (regexp newname &optional arg whole-path)
1345 "Symlink all marked files containing REGEXP to NEWNAME.
1346See function `dired-rename-regexp' for more info."
1347 (interactive (dired-mark-read-regexp "SymLink"))
1348 (dired-do-create-files-regexp
1349 (function make-symbolic-link)
1350 "SymLink" arg regexp newname whole-path dired-keep-marker-symlink))
1351
1352(defun dired-create-files-non-directory
1353 (file-creator basename-constructor operation arg)
1354 ;; Perform FILE-CREATOR on the non-directory part of marked files
1355 ;; using function BASENAME-CONSTRUCTOR, with query for each file.
1356 ;; OPERATION like in dired-create-files, ARG as in dired-get-marked-files.
1357 (let (rename-non-directory-query)
1358 (dired-create-files
1359 file-creator
1360 operation
1361 (dired-get-marked-files nil arg)
1362 (function
1363 (lambda (from)
1364 (let ((to (concat (file-name-directory from)
1365 (funcall basename-constructor
1366 (file-name-nondirectory from)))))
1367 (and (let ((help-form (format "\
1368Type SPC or `y' to %s one file, DEL or `n' to skip to next,
1369`!' to %s all remaining matches with no more questions."
1370 (downcase operation)
1371 (downcase operation))))
1372 (dired-query 'rename-non-directory-query
1373 (concat operation " `%s' to `%s'")
1374 (dired-make-relative from)
1375 (dired-make-relative to)))
1376 to))))
1377 dired-keep-marker-rename)))
1378
1379(defun dired-rename-non-directory (basename-constructor operation arg)
1380 (dired-create-files-non-directory
1381 (function dired-rename-file)
1382 basename-constructor operation arg))
1383
1384;;;###autoload
1385(defun dired-upcase (&optional arg)
1386 "Rename all marked (or next ARG) files to upper case."
1387 (interactive "P")
1388 (dired-rename-non-directory (function upcase) "Rename upcase" arg))
1389
1390;;;###autoload
1391(defun dired-downcase (&optional arg)
1392 "Rename all marked (or next ARG) files to lower case."
1393 (interactive "P")
1394 (dired-rename-non-directory (function downcase) "Rename downcase" arg))
1395
1396;;;###end dired-re.el
1397\f
1398;;; 13K
1399;;;###begin dired-ins.el
1400
1401;;;###autoload
1402(defun dired-maybe-insert-subdir (dirname &optional
1403 switches no-error-if-not-dir-p)
1404 "Insert this subdirectory into the same dired buffer.
1405If it is already present, just move to it (type \\[dired-do-redisplay] to refresh),
1406 else inserts it at its natural place (as `ls -lR' would have done).
1407With a prefix arg, you may edit the ls switches used for this listing.
1408 You can add `R' to the switches to expand the whole tree starting at
1409 this subdirectory.
1410This function takes some pains to conform to `ls -lR' output."
1411 (interactive
1412 (list (dired-get-filename)
1413 (if current-prefix-arg
1414 (read-string "Switches for listing: " dired-actual-switches))))
1415 (let ((opoint (point)))
1416 ;; We don't need a marker for opoint as the subdir is always
1417 ;; inserted *after* opoint.
1418 (setq dirname (file-name-as-directory dirname))
1419 (or (and (not switches)
1420 (dired-goto-subdir dirname))
1421 (dired-insert-subdir dirname switches no-error-if-not-dir-p))
1422 ;; Push mark so that it's easy to find back. Do this after the
1423 ;; insert message so that the user sees the `Mark set' message.
1424 (push-mark opoint)))
1425
1426(defun dired-insert-subdir (dirname &optional switches no-error-if-not-dir-p)
1427 "Insert this subdirectory into the same dired buffer.
1428If it is already present, overwrites previous entry,
1429 else inserts it at its natural place (as `ls -lR' would have done).
1430With a prefix arg, you may edit the `ls' switches used for this listing.
1431 You can add `R' to the switches to expand the whole tree starting at
1432 this subdirectory.
1433This function takes some pains to conform to `ls -lR' output."
1434 ;; NO-ERROR-IF-NOT-DIR-P needed for special filesystems like
1435 ;; Prospero where dired-ls does the right thing, but
1436 ;; file-directory-p has not been redefined.
1437 (interactive
1438 (list (dired-get-filename)
1439 (if current-prefix-arg
1440 (read-string "Switches for listing: " dired-actual-switches))))
1441 (setq dirname (file-name-as-directory (expand-file-name dirname)))
1442 (dired-insert-subdir-validate dirname switches)
1443 (or no-error-if-not-dir-p
1444 (file-directory-p dirname)
1445 (error "Attempt to insert a non-directory: %s" dirname))
1446 (let ((elt (assoc dirname dired-subdir-alist))
1447 switches-have-R mark-alist case-fold-search buffer-read-only)
1448 ;; case-fold-search is nil now, so we can test for capital `R':
1449 (if (setq switches-have-R (and switches (string-match "R" switches)))
1450 ;; avoid duplicated subdirs
1451 (setq mark-alist (dired-kill-tree dirname t)))
1452 (if elt
1453 ;; If subdir is already present, remove it and remember its marks
1454 (setq mark-alist (nconc (dired-insert-subdir-del elt) mark-alist))
1455 (dired-insert-subdir-newpos dirname)) ; else compute new position
1456 (dired-insert-subdir-doupdate
1457 dirname elt (dired-insert-subdir-doinsert dirname switches))
1458 (if switches-have-R (dired-build-subdir-alist))
1459 (dired-initial-position dirname)
1460 (save-excursion (dired-mark-remembered mark-alist))))
1461
1462;; This is a separate function for dired-vms.
1463(defun dired-insert-subdir-validate (dirname &optional switches)
1464 ;; Check that it is valid to insert DIRNAME with SWITCHES.
1465 ;; Signal an error if invalid (e.g. user typed `i' on `..').
1466 (or (dired-in-this-tree dirname default-directory)
1467 (error "%s: not in this directory tree" dirname))
1468 (if switches
1469 (let (case-fold-search)
1470 (mapcar
1471 (function
1472 (lambda (x)
1473 (or (eq (null (string-match x switches))
1474 (null (string-match x dired-actual-switches)))
1475 (error "Can't have dirs with and without -%s switches together"
1476 x))))
1477 ;; all switches that make a difference to dired-get-filename:
1478 '("F" "b")))))
1479
1480(defun dired-alist-add (dir new-marker)
1481 ;; Add new DIR at NEW-MARKER. Sort alist.
1482 (dired-alist-add-1 dir new-marker)
1483 (dired-alist-sort))
1484
1485(defun dired-alist-sort ()
1486 ;; Keep the alist sorted on buffer position.
1487 (setq dired-subdir-alist
1488 (sort dired-subdir-alist
1489 (function (lambda (elt1 elt2)
1490 (> (dired-get-subdir-min elt1)
1491 (dired-get-subdir-min elt2)))))))
1492
1493(defun dired-kill-tree (dirname &optional remember-marks)
1494 ;;"Kill all proper subdirs of DIRNAME, excluding DIRNAME itself.
1495 ;; With optional arg REMEMBER-MARKS, return an alist of marked files."
1496 (interactive "DKill tree below directory: ")
1497 (let ((s-alist dired-subdir-alist) dir m-alist)
1498 (while s-alist
1499 (setq dir (car (car s-alist))
1500 s-alist (cdr s-alist))
1501 (if (and (not (string-equal dir dirname))
1502 (dired-in-this-tree dir dirname)
1503 (dired-goto-subdir dir))
1504 (setq m-alist (nconc (dired-kill-subdir remember-marks) m-alist))))
1505 m-alist))
1506
1507(defun dired-insert-subdir-newpos (new-dir)
1508 ;; Find pos for new subdir, according to tree order.
1509 ;;(goto-char (point-max))
1510 (let ((alist dired-subdir-alist) elt dir pos new-pos)
1511 (while alist
1512 (setq elt (car alist)
1513 alist (cdr alist)
1514 dir (car elt)
1515 pos (dired-get-subdir-min elt))
1516 (if (dired-tree-lessp dir new-dir)
1517 ;; Insert NEW-DIR after DIR
1518 (setq new-pos (dired-get-subdir-max elt)
1519 alist nil)))
1520 (goto-char new-pos))
1521 ;; want a separating newline between subdirs
1522 (or (eobp)
1523 (forward-line -1))
1524 (insert "\n")
1525 (point))
1526
1527(defun dired-insert-subdir-del (element)
1528 ;; Erase an already present subdir (given by ELEMENT) from buffer.
1529 ;; Move to that buffer position. Return a mark-alist.
1530 (let ((begin-marker (dired-get-subdir-min element)))
1531 (goto-char begin-marker)
1532 ;; Are at beginning of subdir (and inside it!). Now determine its end:
1533 (goto-char (dired-subdir-max))
1534 (or (eobp);; want a separating newline _between_ subdirs:
1535 (forward-char -1))
1536 (prog1
1537 (dired-remember-marks begin-marker (point))
1538 (delete-region begin-marker (point)))))
1539
1540(defun dired-insert-subdir-doinsert (dirname switches)
1541 ;; Insert ls output after point and put point on the correct
1542 ;; position for the subdir alist.
1543 ;; Return the boundary of the inserted text (as list of BEG and END).
1544 (let ((begin (point)) end)
1545 (message "Reading directory %s..." dirname)
1546 (let ((dired-actual-switches
1547 (or switches
1548 (dired-replace-in-string "R" "" dired-actual-switches))))
1549 (if (equal dirname (car (car (reverse dired-subdir-alist))))
1550 ;; top level directory may contain wildcards:
1551 (dired-readin-insert dired-directory)
bfe81e78 1552 (insert-directory dirname dired-actual-switches nil t)))
dd87891b
RS
1553 (message "Reading directory %s...done" dirname)
1554 (setq end (point-marker))
1555 (indent-rigidly begin end 2)
1556 ;; call dired-insert-headerline afterwards, as under VMS dired-ls
1557 ;; does insert the headerline itself and the insert function just
1558 ;; moves point.
1559 ;; Need a marker for END as this inserts text.
1560 (goto-char begin)
1561 (dired-insert-headerline dirname)
1562 ;; point is now like in dired-build-subdir-alist
1563 (prog1
1564 (list begin (marker-position end))
1565 (set-marker end nil))))
1566
1567(defun dired-insert-subdir-doupdate (dirname elt beg-end)
1568 ;; Point is at the correct subdir alist position for ELT,
1569 ;; BEG-END is the subdir-region (as list of begin and end).
1570 (if elt ; subdir was already present
1571 ;; update its position (should actually be unchanged)
1572 (set-marker (dired-get-subdir-min elt) (point-marker))
1573 (dired-alist-add dirname (point-marker)))
1574 ;; The hook may depend on the subdir-alist containing the just
1575 ;; inserted subdir, so run it after dired-alist-add:
1576 (if dired-after-readin-hook
1577 (save-excursion
1578 (let ((begin (nth 0 beg-end))
1579 (end (nth 1 beg-end)))
1580 (goto-char begin)
1581 (save-restriction
1582 (narrow-to-region begin end)
1583 ;; hook may add or delete lines, but the subdir boundary
1584 ;; marker floats
1585 (run-hooks 'dired-after-readin-hook))))))
1586
1587(defun dired-tree-lessp (dir1 dir2)
1588 ;; Lexicographic order on pathname components, like `ls -lR':
1589 ;; DIR1 < DIR2 iff DIR1 comes *before* DIR2 in an `ls -lR' listing,
1590 ;; i.e., iff DIR1 is a (grand)parent dir of DIR2,
1591 ;; or DIR1 and DIR2 are in the same parentdir and their last
1592 ;; components are string-lessp.
1593 ;; Thus ("/usr/" "/usr/bin") and ("/usr/a/" "/usr/b/") are tree-lessp.
1594 ;; string-lessp could arguably be replaced by file-newer-than-file-p
1595 ;; if dired-actual-switches contained `t'.
1596 (setq dir1 (file-name-as-directory dir1)
1597 dir2 (file-name-as-directory dir2))
1598 (let ((components-1 (dired-split "/" dir1))
1599 (components-2 (dired-split "/" dir2)))
1600 (while (and components-1
1601 components-2
1602 (equal (car components-1) (car components-2)))
1603 (setq components-1 (cdr components-1)
1604 components-2 (cdr components-2)))
1605 (let ((c1 (car components-1))
1606 (c2 (car components-2)))
1607
1608 (cond ((and c1 c2)
1609 (string-lessp c1 c2))
1610 ((and (null c1) (null c2))
1611 nil) ; they are equal, not lessp
1612 ((null c1) ; c2 is a subdir of c1: c1<c2
1613 t)
1614 ((null c2) ; c1 is a subdir of c2: c1>c2
1615 nil)
1616 (t (error "This can't happen"))))))
1617
1618;; There should be a builtin split function - inverse to mapconcat.
1619(defun dired-split (pat str &optional limit)
1620 "Splitting on regexp PAT, turn string STR into a list of substrings.
1621Optional third arg LIMIT (>= 1) is a limit to the length of the
1622resulting list.
1623Thus, if SEP is a regexp that only matches itself,
1624
1625 (mapconcat 'identity (dired-split SEP STRING) SEP)
1626
1627is always equal to STRING."
1628 (let* ((start (string-match pat str))
1629 (result (list (substring str 0 start)))
1630 (count 1)
1631 (end (if start (match-end 0))))
1632 (if end ; else nothing left
1633 (while (and (or (not (integerp limit))
1634 (< count limit))
1635 (string-match pat str end))
1636 (setq start (match-beginning 0)
1637 count (1+ count)
1638 result (cons (substring str end start) result)
1639 end (match-end 0)
1640 start end)
1641 ))
1642 (if (and (or (not (integerp limit))
1643 (< count limit))
1644 end) ; else nothing left
1645 (setq result
1646 (cons (substring str end) result)))
1647 (nreverse result)))
1648\f
1649;;; moving by subdirectories
1650
dd87891b
RS
1651;;;###autoload
1652(defun dired-prev-subdir (arg &optional no-error-if-not-found no-skip)
1653 "Go to previous subdirectory, regardless of level.
1654When called interactively and not on a subdir line, go to this subdir's line."
1655 ;;(interactive "p")
1656 (interactive
1657 (list (if current-prefix-arg
1658 (prefix-numeric-value current-prefix-arg)
1659 ;; if on subdir start already, don't stay there!
1660 (if (dired-get-subdir) 1 0))))
1661 (dired-next-subdir (- arg) no-error-if-not-found no-skip))
1662
1663(defun dired-subdir-min ()
1664 (save-excursion
1665 (if (not (dired-prev-subdir 0 t t))
1666 (error "Not in a subdir!")
1667 (point))))
1668
1669;;;###autoload
1670(defun dired-goto-subdir (dir)
1671 "Go to end of header line of DIR in this dired buffer.
1672Return value of point on success, otherwise return nil.
1673The next char is either \\n, or \\r if DIR is hidden."
1674 (interactive
1675 (prog1 ; let push-mark display its message
1676 (list (expand-file-name
1677 (completing-read "Goto in situ directory: " ; prompt
1678 dired-subdir-alist ; table
1679 nil ; predicate
1680 t ; require-match
1681 (dired-current-directory))))
1682 (push-mark)))
1683 (setq dir (file-name-as-directory dir))
1684 (let ((elt (assoc dir dired-subdir-alist)))
1685 (and elt
1686 (goto-char (dired-get-subdir-min elt))
1687 ;; dired-subdir-hidden-p and dired-add-entry depend on point being
1688 ;; at either \r or \n after this function succeeds.
1689 (progn (skip-chars-forward "^\r\n")
1690 (point)))))
1691\f
1692;;;###autoload
1693(defun dired-mark-subdir-files ()
1694 "Mark all files except `.' and `..'."
1695 (interactive "P")
1696 (let ((p-min (dired-subdir-min)))
1697 (dired-mark-files-in-region p-min (dired-subdir-max))))
1698
1699;;;###autoload
1700(defun dired-kill-subdir (&optional remember-marks)
1701 "Remove all lines of current subdirectory.
1702Lower levels are unaffected."
1703 ;; With optional REMEMBER-MARKS, return a mark-alist.
1704 (interactive)
1705 (let ((beg (dired-subdir-min))
1706 (end (dired-subdir-max))
1707 buffer-read-only cur-dir)
1708 (setq cur-dir (dired-current-directory))
1709 (if (equal cur-dir default-directory)
1710 (error "Attempt to kill top level directory"))
1711 (prog1
1712 (if remember-marks (dired-remember-marks beg end))
1713 (delete-region beg end)
1714 (if (eobp) ; don't leave final blank line
1715 (delete-char -1))
1716 (dired-unsubdir cur-dir))))
1717
1718(defun dired-unsubdir (dir)
1719 ;; Remove DIR from the alist
1720 (setq dired-subdir-alist
1721 (delq (assoc dir dired-subdir-alist) dired-subdir-alist)))
1722
1723;;;###autoload
1724(defun dired-tree-up (arg)
1725 "Go up ARG levels in the dired tree."
1726 (interactive "p")
1727 (let ((dir (dired-current-directory)))
1728 (while (>= arg 1)
1729 (setq arg (1- arg)
1730 dir (file-name-directory (directory-file-name dir))))
1731 ;;(setq dir (expand-file-name dir))
1732 (or (dired-goto-subdir dir)
1733 (error "Cannot go up to %s - not in this tree." dir))))
1734
1735;;;###autoload
1736(defun dired-tree-down ()
1737 "Go down in the dired tree."
1738 (interactive)
1739 (let ((dir (dired-current-directory)) ; has slash
1740 pos case-fold-search) ; filenames are case sensitive
1741 (let ((rest (reverse dired-subdir-alist)) elt)
1742 (while rest
1743 (setq elt (car rest)
1744 rest (cdr rest))
1745 (if (dired-in-this-tree (directory-file-name (car elt)) dir)
1746 (setq rest nil
1747 pos (dired-goto-subdir (car elt))))))
1748 (if pos
1749 (goto-char pos)
1750 (error "At the bottom"))))
1751\f
1752;;; hiding
1753
1754(defun dired-unhide-subdir ()
1755 (let (buffer-read-only)
1756 (subst-char-in-region (dired-subdir-min) (dired-subdir-max) ?\r ?\n)))
1757
1758(defun dired-hide-check ()
1759 (or selective-display
1760 (error "selective-display must be t for subdir hiding to work!")))
1761
1762(defun dired-subdir-hidden-p (dir)
1763 (and selective-display
1764 (save-excursion
1765 (dired-goto-subdir dir)
1766 (looking-at "\r"))))
1767
1768;;;###autoload
1769(defun dired-hide-subdir (arg)
1770 "Hide or unhide the current subdirectory and move to next directory.
1771Optional prefix arg is a repeat factor.
1772Use \\[dired-hide-all] to (un)hide all directories."
1773 (interactive "p")
1774 (dired-hide-check)
1775 (while (>= (setq arg (1- arg)) 0)
1776 (let* ((cur-dir (dired-current-directory))
1777 (hidden-p (dired-subdir-hidden-p cur-dir))
1778 (elt (assoc cur-dir dired-subdir-alist))
1779 (end-pos (1- (dired-get-subdir-max elt)))
1780 buffer-read-only)
1781 ;; keep header line visible, hide rest
1782 (goto-char (dired-get-subdir-min elt))
1783 (skip-chars-forward "^\n\r")
1784 (if hidden-p
1785 (subst-char-in-region (point) end-pos ?\r ?\n)
1786 (subst-char-in-region (point) end-pos ?\n ?\r)))
1787 (dired-next-subdir 1 t)))
1788
1789;;;###autoload
1790(defun dired-hide-all (arg)
1791 "Hide all subdirectories, leaving only their header lines.
1792If there is already something hidden, make everything visible again.
1793Use \\[dired-hide-subdir] to (un)hide a particular subdirectory."
1794 (interactive "P")
1795 (dired-hide-check)
1796 (let (buffer-read-only)
1797 (if (save-excursion
1798 (goto-char (point-min))
1799 (search-forward "\r" nil t))
1800 ;; unhide - bombs on \r in filenames
1801 (subst-char-in-region (point-min) (point-max) ?\r ?\n)
1802 ;; hide
1803 (let ((pos (point-max)) ; pos of end of last directory
1804 (alist dired-subdir-alist))
1805 (while alist ; while there are dirs before pos
1806 (subst-char-in-region (dired-get-subdir-min (car alist)) ; pos of prev dir
1807 (save-excursion
1808 (goto-char pos) ; current dir
1809 ;; we're somewhere on current dir's line
1810 (forward-line -1)
1811 (point))
1812 ?\n ?\r)
1813 (setq pos (dired-get-subdir-min (car alist))) ; prev dir gets current dir
1814 (setq alist (cdr alist)))))))
1815
1816;;;###end dired-ins.el
2f14b48d 1817
e5167999 1818;;; dired-aux.el ends here