Require 'cl.
[bpt/emacs.git] / lisp / dired.el
1 ;;; dired.el --- directory-browsing commands
2
3 ;; Copyright (C) 1985, 1986, 1992, 1993, 1994, 1995, 1996, 1997, 2000,
4 ;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5
6 ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>
7 ;; Maintainer: FSF
8 ;; Keywords: files
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 3, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
26
27 ;;; Commentary:
28
29 ;; This is a major mode for directory browsing and editing. It is
30 ;; documented in the Emacs manual.
31
32 ;; Rewritten in 1990/1991 to add tree features, file marking and
33 ;; sorting by Sebastian Kremer <sk@thp.uni-koeln.de>.
34 ;; Finished up by rms in 1992.
35
36 ;;; Code:
37
38 (eval-when-compile (require 'cl))
39
40 ;;; Customizable variables
41
42 (defgroup dired nil
43 "Directory editing."
44 :link '(custom-manual "(emacs)Dired")
45 :group 'files)
46
47 (defgroup dired-mark nil
48 "Handling marks in Dired."
49 :prefix "dired-"
50 :group 'dired)
51
52
53 ;;;###autoload
54 (defcustom dired-listing-switches "-al"
55 "*Switches passed to `ls' for Dired. MUST contain the `l' option.
56 May contain all other options that don't contradict `-l';
57 may contain even `F', `b', `i' and `s'. See also the variable
58 `dired-ls-F-marks-symlinks' concerning the `F' switch.
59 On systems such as MS-DOS and MS-Windows, which use `ls' emulation in Lisp,
60 some of the `ls' switches are not supported; see the doc string of
61 `insert-directory' in `ls-lisp.el' for more details."
62 :type 'string
63 :group 'dired)
64
65 (defvar dired-subdir-switches nil
66 "If non-nil, switches passed to `ls' for inserting subdirectories.
67 If nil, `dired-listing-switches' is used.")
68
69 ; Don't use absolute file names as /bin should be in any PATH and people
70 ; may prefer /usr/local/gnu/bin or whatever. However, chown is
71 ; usually not in PATH.
72
73 ;;;###autoload
74 (defvar dired-chown-program
75 (if (memq system-type '(hpux usg-unix-v irix linux gnu/linux cygwin))
76 "chown"
77 (if (file-exists-p "/usr/sbin/chown")
78 "/usr/sbin/chown"
79 "/etc/chown"))
80 "Name of chown command (usually `chown' or `/etc/chown').")
81
82 (defvar dired-use-ls-dired (not (not (string-match "gnu" system-configuration)))
83 "Non-nil means Dired should use `ls --dired'.")
84
85 (defvar dired-chmod-program "chmod"
86 "Name of chmod command (usually `chmod').")
87
88 (defvar dired-touch-program "touch"
89 "Name of touch command (usually `touch').")
90
91 ;;;###autoload
92 (defcustom dired-ls-F-marks-symlinks nil
93 "*Informs Dired about how `ls -lF' marks symbolic links.
94 Set this to t if `ls' (or whatever program is specified by
95 `insert-directory-program') with `-lF' marks the symbolic link
96 itself with a trailing @ (usually the case under Ultrix).
97
98 Example: if `ln -s foo bar; ls -F bar' gives `bar -> foo', set it to
99 nil (the default), if it gives `bar@ -> foo', set it to t.
100
101 Dired checks if there is really a @ appended. Thus, if you have a
102 marking `ls' program on one host and a non-marking on another host, and
103 don't care about symbolic links which really end in a @, you can
104 always set this variable to t."
105 :type 'boolean
106 :group 'dired-mark)
107
108 ;;;###autoload
109 (defcustom dired-trivial-filenames "^\\.\\.?$\\|^#"
110 "*Regexp of files to skip when finding first file of a directory.
111 A value of nil means move to the subdir line.
112 A value of t means move to first file."
113 :type '(choice (const :tag "Move to subdir" nil)
114 (const :tag "Move to first" t)
115 regexp)
116 :group 'dired)
117
118 ;;;###autoload
119 (defcustom dired-keep-marker-rename t
120 ;; Use t as default so that moved files "take their markers with them".
121 "*Controls marking of renamed files.
122 If t, files keep their previous marks when they are renamed.
123 If a character, renamed files (whether previously marked or not)
124 are afterward marked with that character."
125 :type '(choice (const :tag "Keep" t)
126 (character :tag "Mark"))
127 :group 'dired-mark)
128
129 ;;;###autoload
130 (defcustom dired-keep-marker-copy ?C
131 "*Controls marking of copied files.
132 If t, copied files are marked if and as the corresponding original files were.
133 If a character, copied files are unconditionally marked with that character."
134 :type '(choice (const :tag "Keep" t)
135 (character :tag "Mark"))
136 :group 'dired-mark)
137
138 ;;;###autoload
139 (defcustom dired-keep-marker-hardlink ?H
140 "*Controls marking of newly made hard links.
141 If t, they are marked if and as the files linked to were marked.
142 If a character, new links are unconditionally marked with that character."
143 :type '(choice (const :tag "Keep" t)
144 (character :tag "Mark"))
145 :group 'dired-mark)
146
147 ;;;###autoload
148 (defcustom dired-keep-marker-symlink ?Y
149 "*Controls marking of newly made symbolic links.
150 If t, they are marked if and as the files linked to were marked.
151 If a character, new links are unconditionally marked with that character."
152 :type '(choice (const :tag "Keep" t)
153 (character :tag "Mark"))
154 :group 'dired-mark)
155
156 ;;;###autoload
157 (defcustom dired-dwim-target nil
158 "*If non-nil, Dired tries to guess a default target directory.
159 This means: if there is a dired buffer displayed in the next window,
160 use its current subdir, instead of the current subdir of this dired buffer.
161
162 The target is used in the prompt for file copy, rename etc."
163 :type 'boolean
164 :group 'dired)
165
166 ;;;###autoload
167 (defcustom dired-copy-preserve-time t
168 "*If non-nil, Dired preserves the last-modified time in a file copy.
169 \(This works on only some systems.)"
170 :type 'boolean
171 :group 'dired)
172
173 ; These variables were deleted and the replacements are on files.el.
174 ; We leave aliases behind for back-compatibility.
175 (defvaralias 'dired-free-space-program 'directory-free-space-program)
176 (defvaralias 'dired-free-space-args 'directory-free-space-args)
177
178 ;;; Hook variables
179
180 (defcustom dired-load-hook nil
181 "Run after loading Dired.
182 You can customize key bindings or load extensions with this."
183 :group 'dired
184 :type 'hook)
185
186 (defcustom dired-mode-hook nil
187 "Run at the very end of `dired-mode'."
188 :group 'dired
189 :type 'hook)
190
191 (defcustom dired-before-readin-hook nil
192 "This hook is run before a dired buffer is read in (created or reverted)."
193 :group 'dired
194 :type 'hook)
195
196 (defcustom dired-after-readin-hook nil
197 "Hook run after each time a file or directory is read by Dired.
198 After each listing of a file or directory, this hook is run
199 with the buffer narrowed to the listing."
200 :group 'dired
201 :type 'hook)
202 ;; Note this can't simply be run inside function `dired-ls' as the hook
203 ;; functions probably depend on the dired-subdir-alist to be OK.
204
205 (defcustom dired-dnd-protocol-alist
206 '(("^file:///" . dired-dnd-handle-local-file)
207 ("^file://" . dired-dnd-handle-file)
208 ("^file:" . dired-dnd-handle-local-file))
209 "The functions to call when a drop in `dired-mode' is made.
210 See `dnd-protocol-alist' for more information. When nil, behave
211 as in other buffers. Changing this option is effective only for
212 new dired buffers."
213 :type '(choice (repeat (cons (regexp) (function)))
214 (const :tag "Behave as in other buffers" nil))
215 :version "22.1"
216 :group 'dired)
217
218 ;; Internal variables
219
220 (defvar dired-marker-char ?* ; the answer is 42
221 ;; so that you can write things like
222 ;; (let ((dired-marker-char ?X))
223 ;; ;; great code using X markers ...
224 ;; )
225 ;; For example, commands operating on two sets of files, A and B.
226 ;; Or marking files with digits 0-9. This could implicate
227 ;; concentric sets or an order for the marked files.
228 ;; The code depends on dynamic scoping on the marker char.
229 "In Dired, the current mark character.
230 This is what the do-commands look for, and what the mark-commands store.")
231
232 (defvar dired-del-marker ?D
233 "Character used to flag files for deletion.")
234
235 (defvar dired-shrink-to-fit t
236 ;; I see no reason ever to make this nil -- rms.
237 ;; (> baud-rate search-slow-speed)
238 "Non-nil means Dired shrinks the display buffer to fit the marked files.")
239
240 (defvar dired-flagging-regexp nil);; Last regexp used to flag files.
241
242 (defvar dired-file-version-alist)
243
244 ;;;###autoload
245 (defvar dired-directory nil
246 "The directory name or wildcard spec that this dired directory lists.
247 Local to each dired buffer. May be a list, in which case the car is the
248 directory name and the cdr is the list of files to mention.
249 The directory name must be absolute, but need not be fully expanded.")
250
251 (defvar dired-actual-switches nil
252 "The value of `dired-listing-switches' used to make this buffer's text.")
253
254 (defvar dired-re-inode-size "[0-9 \t]*"
255 "Regexp for optional initial inode and file size as made by `ls -i -s'.")
256
257 ;; These regexps must be tested at beginning-of-line, but are also
258 ;; used to search for next matches, so neither omitting "^" nor
259 ;; replacing "^" by "\n" (to make it slightly faster) will work.
260
261 (defvar dired-re-mark "^[^ \n]")
262 ;; "Regexp matching a marked line.
263 ;; Important: the match ends just after the marker."
264 (defvar dired-re-maybe-mark "^. ")
265 ;; The [^:] part after "d" and "l" is to avoid confusion with the
266 ;; DOS/Windows-style drive letters in directory names, like in "d:/foo".
267 (defvar dired-re-dir (concat dired-re-maybe-mark dired-re-inode-size "d[^:]"))
268 (defvar dired-re-sym (concat dired-re-maybe-mark dired-re-inode-size "l[^:]"))
269 (defvar dired-re-exe;; match ls permission string of an executable file
270 (mapconcat (function
271 (lambda (x)
272 (concat dired-re-maybe-mark dired-re-inode-size x)))
273 '("-[-r][-w][xs][-r][-w].[-r][-w]."
274 "-[-r][-w].[-r][-w][xs][-r][-w]."
275 "-[-r][-w].[-r][-w].[-r][-w][xst]")
276 "\\|"))
277 (defvar dired-re-perms "[-bcdlps][-r][-w].[-r][-w].[-r][-w].")
278 (defvar dired-re-dot "^.* \\.\\.?/?$")
279
280 ;; The subdirectory names in the next two lists are expanded.
281 (defvar dired-subdir-alist nil
282 "Association list of subdirectories and their buffer positions.
283 Each subdirectory has an element: (DIRNAME . STARTMARKER).
284 The order of elements is the reverse of the order in the buffer.
285 In simple cases, this list contains one element.")
286
287 (defvar dired-switches-alist nil
288 "Keeps track of which switches to use for inserted subdirectories.
289 This is an alist of the form (SUBDIR . SWITCHES).")
290 (make-variable-buffer-local 'dired-switches-alist)
291
292 (defvaralias 'dired-move-to-filename-regexp
293 'directory-listing-before-filename-regexp)
294
295 (defvar dired-subdir-regexp "^. \\([^\n\r]+\\)\\(:\\)[\n\r]"
296 "Regexp matching a maybe hidden subdirectory line in `ls -lR' output.
297 Subexpression 1 is the subdirectory proper, no trailing colon.
298 The match starts at the beginning of the line and ends after the end
299 of the line (\\n or \\r).
300 Subexpression 2 must end right before the \\n or \\r.")
301
302 (defgroup dired-faces nil
303 "Faces used by Dired."
304 :group 'dired
305 :group 'faces)
306
307 (defface dired-header
308 '((t (:inherit font-lock-type-face)))
309 "Face used for directory headers."
310 :group 'dired-faces
311 :version "22.1")
312 (defvar dired-header-face 'dired-header
313 "Face name used for directory headers.")
314
315 (defface dired-mark
316 '((t (:inherit font-lock-constant-face)))
317 "Face used for dired marks."
318 :group 'dired-faces
319 :version "22.1")
320 (defvar dired-mark-face 'dired-mark
321 "Face name used for dired marks.")
322
323 (defface dired-marked
324 '((t (:inherit font-lock-warning-face)))
325 "Face used for marked files."
326 :group 'dired-faces
327 :version "22.1")
328 (defvar dired-marked-face 'dired-marked
329 "Face name used for marked files.")
330
331 (defface dired-flagged
332 '((t (:inherit font-lock-warning-face)))
333 "Face used for flagged files."
334 :group 'dired-faces
335 :version "22.1")
336 (defvar dired-flagged-face 'dired-flagged
337 "Face name used for flagged files.")
338
339 (defface dired-warning
340 ;; Inherit from font-lock-warning-face since with min-colors 8
341 ;; font-lock-comment-face is not colored any more.
342 '((t (:inherit font-lock-warning-face)))
343 "Face used to highlight a part of a buffer that needs user attention."
344 :group 'dired-faces
345 :version "22.1")
346 (defvar dired-warning-face 'dired-warning
347 "Face name used for a part of a buffer that needs user attention.")
348
349 (defface dired-perm-write
350 '((((type w32 pc)) :inherit default) ;; These default to rw-rw-rw.
351 ;; Inherit from font-lock-comment-delimiter-face since with min-colors 8
352 ;; font-lock-comment-face is not colored any more.
353 (t (:inherit font-lock-comment-delimiter-face)))
354 "Face used to highlight permissions of group- and world-writable files."
355 :group 'dired-faces
356 :version "22.2")
357 (defvar dired-perm-write-face 'dired-perm-write
358 "Face name used for permissions of group- and world-writable files.")
359
360 (defface dired-directory
361 '((t (:inherit font-lock-function-name-face)))
362 "Face used for subdirectories."
363 :group 'dired-faces
364 :version "22.1")
365 (defvar dired-directory-face 'dired-directory
366 "Face name used for subdirectories.")
367
368 (defface dired-symlink
369 '((t (:inherit font-lock-keyword-face)))
370 "Face used for symbolic links."
371 :group 'dired-faces
372 :version "22.1")
373 (defvar dired-symlink-face 'dired-symlink
374 "Face name used for symbolic links.")
375
376 (defface dired-ignored
377 '((t (:inherit shadow)))
378 "Face used for files suffixed with `completion-ignored-extensions'."
379 :group 'dired-faces
380 :version "22.1")
381 (defvar dired-ignored-face 'dired-ignored
382 "Face name used for files suffixed with `completion-ignored-extensions'.")
383
384 (defvar dired-font-lock-keywords
385 (list
386 ;;
387 ;; Directory headers.
388 (list dired-subdir-regexp '(1 dired-header-face))
389 ;;
390 ;; Dired marks.
391 (list dired-re-mark '(0 dired-mark-face))
392 ;;
393 ;; We make heavy use of MATCH-ANCHORED, since the regexps don't identify the
394 ;; file name itself. We search for Dired defined regexps, and then use the
395 ;; Dired defined function `dired-move-to-filename' before searching for the
396 ;; simple regexp ".+". It is that regexp which matches the file name.
397 ;;
398 ;; Marked files.
399 (list (concat "^[" (char-to-string dired-marker-char) "]")
400 '(".+" (dired-move-to-filename) nil (0 dired-marked-face)))
401 ;;
402 ;; Flagged files.
403 (list (concat "^[" (char-to-string dired-del-marker) "]")
404 '(".+" (dired-move-to-filename) nil (0 dired-flagged-face)))
405 ;; People who are paranoid about security would consider this more
406 ;; important than other things such as whether it is a directory.
407 ;; But we don't want to encourage paranoia, so our default
408 ;; should be what's most useful for non-paranoids. -- rms.
409 ;;; ;;
410 ;;; ;; Files that are group or world writable.
411 ;;; (list (concat dired-re-maybe-mark dired-re-inode-size
412 ;;; "\\([-d]\\(....w....\\|.......w.\\)\\)")
413 ;;; '(1 dired-warning-face)
414 ;;; '(".+" (dired-move-to-filename) nil (0 dired-warning-face)))
415 ;; However, we don't need to highlight the file name, only the
416 ;; permissions, to win generally. -- fx.
417 ;; Fixme: we could also put text properties on the permission
418 ;; fields with keymaps to frob the permissions, somewhat a la XEmacs.
419 (list (concat dired-re-maybe-mark dired-re-inode-size
420 "[-d]....\\(w\\)....") ; group writable
421 '(1 dired-perm-write-face))
422 (list (concat dired-re-maybe-mark dired-re-inode-size
423 "[-d].......\\(w\\).") ; world writable
424 '(1 dired-perm-write-face))
425 ;;
426 ;; Subdirectories.
427 (list dired-re-dir
428 '(".+" (dired-move-to-filename) nil (0 dired-directory-face)))
429 ;;
430 ;; Symbolic links.
431 (list dired-re-sym
432 '(".+" (dired-move-to-filename) nil (0 dired-symlink-face)))
433 ;;
434 ;; Files suffixed with `completion-ignored-extensions'.
435 '(eval .
436 ;; It is quicker to first find just an extension, then go back to the
437 ;; start of that file name. So we do this complex MATCH-ANCHORED form.
438 (list (concat "\\(" (regexp-opt completion-ignored-extensions) "\\|#\\)$")
439 '(".+" (dired-move-to-filename) nil (0 dired-ignored-face))))
440 ;;
441 ;; Files suffixed with `completion-ignored-extensions'
442 ;; plus a character put in by -F.
443 '(eval .
444 (list (concat "\\(" (regexp-opt completion-ignored-extensions)
445 "\\|#\\)[*=|]$")
446 '(".+" (progn
447 (end-of-line)
448 ;; If the last character is not part of the filename,
449 ;; move back to the start of the filename
450 ;; so it can be fontified.
451 ;; Otherwise, leave point at the end of the line;
452 ;; that way, nothing is fontified.
453 (unless (get-text-property (1- (point)) 'mouse-face)
454 (dired-move-to-filename)))
455 nil (0 dired-ignored-face))))
456 )
457 "Additional expressions to highlight in Dired mode.")
458
459 (defvar dnd-protocol-alist)
460 \f
461 ;;; Macros must be defined before they are used, for the byte compiler.
462
463 (defmacro dired-mark-if (predicate msg)
464 "Mark all files for which PREDICATE evals to non-nil.
465 PREDICATE is evaluated on each line, with point at beginning of line.
466 MSG is a noun phrase for the type of files being marked.
467 It should end with a noun that can be pluralized by adding `s'.
468 Return value is the number of files marked, or nil if none were marked."
469 `(let (buffer-read-only count)
470 (save-excursion
471 (setq count 0)
472 (if ,msg (message "Marking %ss..." ,msg))
473 (goto-char (point-min))
474 (while (not (eobp))
475 (if ,predicate
476 (progn
477 (delete-char 1)
478 (insert dired-marker-char)
479 (setq count (1+ count))))
480 (forward-line 1))
481 (if ,msg (message "%s %s%s %s%s."
482 count
483 ,msg
484 (dired-plural-s count)
485 (if (eq dired-marker-char ?\040) "un" "")
486 (if (eq dired-marker-char dired-del-marker)
487 "flagged" "marked"))))
488 (and (> count 0) count)))
489
490 (defmacro dired-map-over-marks (body arg &optional show-progress
491 distinguish-one-marked)
492 "Eval BODY with point on each marked line. Return a list of BODY's results.
493 If no marked file could be found, execute BODY on the current line.
494 If ARG is an integer, use the next ARG (or previous -ARG, if ARG<0)
495 files instead of the marked files.
496 In that case point is dragged along. This is so that commands on
497 the next ARG (instead of the marked) files can be chained easily.
498 If ARG is otherwise non-nil, use current file instead.
499 If optional third arg SHOW-PROGRESS evaluates to non-nil,
500 redisplay the dired buffer after each file is processed.
501 No guarantee is made about the position on the marked line.
502 BODY must ensure this itself if it depends on this.
503 Search starts at the beginning of the buffer, thus the car of the list
504 corresponds to the line nearest to the buffer's bottom. This
505 is also true for (positive and negative) integer values of ARG.
506 BODY should not be too long as it is expanded four times.
507
508 If DISTINGUISH-ONE-MARKED is non-nil, then if we find just one marked file,
509 return (t FILENAME) instead of (FILENAME)."
510 ;;
511 ;;Warning: BODY must not add new lines before point - this may cause an
512 ;;endless loop.
513 ;;This warning should not apply any longer, sk 2-Sep-1991 14:10.
514 `(prog1
515 (let (buffer-read-only case-fold-search found results)
516 (if ,arg
517 (if (integerp ,arg)
518 (progn ;; no save-excursion, want to move point.
519 (dired-repeat-over-lines
520 ,arg
521 (function (lambda ()
522 (if ,show-progress (sit-for 0))
523 (setq results (cons ,body results)))))
524 (if (< ,arg 0)
525 (nreverse results)
526 results))
527 ;; non-nil, non-integer ARG means use current file:
528 (list ,body))
529 (let ((regexp (dired-marker-regexp)) next-position)
530 (save-excursion
531 (goto-char (point-min))
532 ;; remember position of next marked file before BODY
533 ;; can insert lines before the just found file,
534 ;; confusing us by finding the same marked file again
535 ;; and again and...
536 (setq next-position (and (re-search-forward regexp nil t)
537 (point-marker))
538 found (not (null next-position)))
539 (while next-position
540 (goto-char next-position)
541 (if ,show-progress (sit-for 0))
542 (setq results (cons ,body results))
543 ;; move after last match
544 (goto-char next-position)
545 (forward-line 1)
546 (set-marker next-position nil)
547 (setq next-position (and (re-search-forward regexp nil t)
548 (point-marker)))))
549 (if (and ,distinguish-one-marked (= (length results) 1))
550 (setq results (cons t results)))
551 (if found
552 results
553 (list ,body)))))
554 ;; save-excursion loses, again
555 (dired-move-to-filename)))
556
557 (defun dired-get-marked-files (&optional localp arg filter distinguish-one-marked)
558 "Return the marked files' names as list of strings.
559 The list is in the same order as the buffer, that is, the car is the
560 first marked file.
561 Values returned are normally absolute file names.
562 Optional arg LOCALP as in `dired-get-filename'.
563 Optional second argument ARG specifies files near point
564 instead of marked files. If ARG is an integer, use the next ARG files.
565 If ARG is otherwise non-nil, use file. Usually ARG comes from
566 the command's prefix arg.
567 Optional third argument FILTER, if non-nil, is a function to select
568 some of the files--those for which (funcall FILTER FILENAME) is non-nil.
569
570 If DISTINGUISH-ONE-MARKED is non-nil, then if we find just one marked file,
571 return (t FILENAME) instead of (FILENAME).
572 Don't use that together with FILTER."
573 (let* ((all-of-them
574 (save-excursion
575 (dired-map-over-marks
576 (dired-get-filename localp)
577 arg nil distinguish-one-marked)))
578 result)
579 (if (not filter)
580 (if (and distinguish-one-marked (eq (car all-of-them) t))
581 all-of-them
582 (nreverse all-of-them))
583 (dolist (file all-of-them)
584 (if (funcall filter file)
585 (push file result)))
586 result)))
587 \f
588 ;; The dired command
589
590 (defun dired-read-dir-and-switches (str)
591 ;; For use in interactive.
592 (reverse (list
593 (if current-prefix-arg
594 (read-string "Dired listing switches: "
595 dired-listing-switches))
596 ;; If a dialog is about to be used, call read-directory-name so
597 ;; the dialog code knows we want directories. Some dialogs can
598 ;; only select directories or files when popped up, not both.
599 (if (next-read-file-uses-dialog-p)
600 (read-directory-name (format "Dired %s(directory): " str)
601 nil default-directory nil)
602 (lexical-let ((default (and buffer-file-name
603 (abbreviate-file-name buffer-file-name)))
604 (defdir default-directory))
605 (minibuffer-with-setup-hook
606 (lambda ()
607 (setq minibuffer-default default)
608 (setq default-directory defdir))
609 (completing-read
610 (format "Dired %s(directory): " str)
611 ;; We need a mix of read-file-name and read-directory-name
612 ;; so that completion to directories is preferred, but if
613 ;; the user wants to enter a global pattern, he can still
614 ;; use completion on filenames to help him write the pattern.
615 ;; Essentially, we want to use
616 ;; (completion-table-with-predicate
617 ;; 'read-file-name-internal 'file-directory-p nil)
618 ;; but that doesn't work because read-file-name-internal
619 ;; does not obey its `predicate' argument.
620 (completion-table-in-turn
621 (lambda (str pred action)
622 (let ((read-file-name-predicate 'file-directory-p))
623 (complete-with-action
624 action 'read-file-name-internal str nil)))
625 'read-file-name-internal)
626 nil nil (abbreviate-file-name defdir) 'file-name-history)))))))
627
628 ;;;###autoload (define-key ctl-x-map "d" 'dired)
629 ;;;###autoload
630 (defun dired (dirname &optional switches)
631 "\"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it.
632 Optional second argument SWITCHES specifies the `ls' options used.
633 \(Interactively, use a prefix argument to be able to specify SWITCHES.)
634 Dired displays a list of files in DIRNAME (which may also have
635 shell wildcards appended to select certain files). If DIRNAME is a cons,
636 its first element is taken as the directory name and the rest as an explicit
637 list of files to make directory entries for.
638 \\<dired-mode-map>\
639 You can move around in it with the usual commands.
640 You can flag files for deletion with \\[dired-flag-file-deletion] and then
641 delete them by typing \\[dired-do-flagged-delete].
642 Type \\[describe-mode] after entering Dired for more info.
643
644 If DIRNAME is already in a dired buffer, that buffer is used without refresh."
645 ;; Cannot use (interactive "D") because of wildcards.
646 (interactive (dired-read-dir-and-switches ""))
647 (switch-to-buffer (dired-noselect dirname switches)))
648
649 ;;;###autoload (define-key ctl-x-4-map "d" 'dired-other-window)
650 ;;;###autoload
651 (defun dired-other-window (dirname &optional switches)
652 "\"Edit\" directory DIRNAME. Like `dired' but selects in another window."
653 (interactive (dired-read-dir-and-switches "in other window "))
654 (switch-to-buffer-other-window (dired-noselect dirname switches)))
655
656 ;;;###autoload (define-key ctl-x-5-map "d" 'dired-other-frame)
657 ;;;###autoload
658 (defun dired-other-frame (dirname &optional switches)
659 "\"Edit\" directory DIRNAME. Like `dired' but makes a new frame."
660 (interactive (dired-read-dir-and-switches "in other frame "))
661 (switch-to-buffer-other-frame (dired-noselect dirname switches)))
662
663 ;;;###autoload
664 (defun dired-noselect (dir-or-list &optional switches)
665 "Like `dired' but returns the dired buffer as value, does not select it."
666 (or dir-or-list (setq dir-or-list default-directory))
667 ;; This loses the distinction between "/foo/*/" and "/foo/*" that
668 ;; some shells make:
669 (let (dirname initially-was-dirname)
670 (if (consp dir-or-list)
671 (setq dirname (car dir-or-list))
672 (setq dirname dir-or-list))
673 (setq initially-was-dirname
674 (string= (file-name-as-directory dirname) dirname))
675 (setq dirname (abbreviate-file-name
676 (expand-file-name (directory-file-name dirname))))
677 (if find-file-visit-truename
678 (setq dirname (file-truename dirname)))
679 ;; If the argument was syntactically a directory name not a file name,
680 ;; or if it happens to name a file that is a directory,
681 ;; convert it syntactically to a directory name.
682 ;; The reason for checking initially-was-dirname
683 ;; and not just file-directory-p
684 ;; is that file-directory-p is slow over ftp.
685 (if (or initially-was-dirname (file-directory-p dirname))
686 (setq dirname (file-name-as-directory dirname)))
687 (if (consp dir-or-list)
688 (setq dir-or-list (cons dirname (cdr dir-or-list)))
689 (setq dir-or-list dirname))
690 (dired-internal-noselect dir-or-list switches)))
691
692 ;; The following is an internal dired function. It returns non-nil if
693 ;; the directory visited by the current dired buffer has changed on
694 ;; disk. DIRNAME should be the directory name of that directory.
695 (defun dired-directory-changed-p (dirname)
696 (not (let ((attributes (file-attributes dirname))
697 (modtime (visited-file-modtime)))
698 (or (eq modtime 0)
699 (not (eq (car attributes) t))
700 (equal (nth 5 attributes) modtime)))))
701
702 (defun dired-buffer-stale-p (&optional noconfirm)
703 "Return non-nil if current dired buffer needs updating.
704 If NOCONFIRM is non-nil, then this function always returns nil
705 for a remote directory. This feature is used by Auto Revert Mode."
706 (let ((dirname
707 (if (consp dired-directory) (car dired-directory) dired-directory)))
708 (and (stringp dirname)
709 (not (when noconfirm (file-remote-p dirname)))
710 (file-readable-p dirname)
711 (dired-directory-changed-p dirname))))
712
713 ;; Separate function from dired-noselect for the sake of dired-vms.el.
714 (defun dired-internal-noselect (dir-or-list &optional switches mode)
715 ;; If there is an existing dired buffer for DIRNAME, just leave
716 ;; buffer as it is (don't even call dired-revert).
717 ;; This saves time especially for deep trees or with ange-ftp.
718 ;; The user can type `g' easily, and it is more consistent with find-file.
719 ;; But if SWITCHES are given they are probably different from the
720 ;; buffer's old value, so call dired-sort-other, which does
721 ;; revert the buffer.
722 ;; A pity we can't possibly do "Directory has changed - refresh? "
723 ;; like find-file does.
724 ;; Optional argument MODE is passed to dired-find-buffer-nocreate,
725 ;; see there.
726 (let* (dirname
727 buffer
728 ;; note that buffer already is in dired-mode, if found
729 new-buffer-p
730 (old-buf (current-buffer)))
731 (if (consp dir-or-list)
732 (setq dirname (car dir-or-list))
733 (setq dirname dir-or-list))
734 ;; Look for an existing buffer.
735 (setq buffer (dired-find-buffer-nocreate dirname mode)
736 new-buffer-p (null buffer))
737 (or buffer
738 (let ((default-major-mode 'fundamental-mode))
739 ;; We don't want default-major-mode to run hooks and set auto-fill
740 ;; or whatever, now that dired-mode does not
741 ;; kill-all-local-variables any longer.
742 (setq buffer (create-file-buffer (directory-file-name dirname)))))
743 (set-buffer buffer)
744 (if (not new-buffer-p) ; existing buffer ...
745 (cond (switches ; ... but new switches
746 ;; file list may have changed
747 (setq dired-directory dir-or-list)
748 ;; this calls dired-revert
749 (dired-sort-other switches))
750 ;; If directory has changed on disk, offer to revert.
751 ((when (dired-directory-changed-p dirname)
752 (message "%s"
753 (substitute-command-keys
754 "Directory has changed on disk; type \\[revert-buffer] to update Dired")))))
755 ;; Else a new buffer
756 (setq default-directory
757 ;; We can do this unconditionally
758 ;; because dired-noselect ensures that the name
759 ;; is passed in directory name syntax
760 ;; if it was the name of a directory at all.
761 (file-name-directory dirname))
762 (or switches (setq switches dired-listing-switches))
763 (if mode (funcall mode)
764 (dired-mode dir-or-list switches))
765 ;; default-directory and dired-actual-switches are set now
766 ;; (buffer-local), so we can call dired-readin:
767 (let ((failed t))
768 (unwind-protect
769 (progn (dired-readin)
770 (setq failed nil))
771 ;; dired-readin can fail if parent directories are inaccessible.
772 ;; Don't leave an empty buffer around in that case.
773 (if failed (kill-buffer buffer))))
774 (goto-char (point-min))
775 (dired-initial-position dirname))
776 (set-buffer old-buf)
777 buffer))
778
779 (defvar dired-buffers nil
780 ;; Enlarged by dired-advertise
781 ;; Queried by function dired-buffers-for-dir. When this detects a
782 ;; killed buffer, it is removed from this list.
783 "Alist of expanded directories and their associated dired buffers.")
784
785 (defun dired-find-buffer-nocreate (dirname &optional mode)
786 ;; This differs from dired-buffers-for-dir in that it does not consider
787 ;; subdirs of default-directory and searches for the first match only.
788 ;; Also, the major mode must be MODE.
789 (setq dirname (expand-file-name dirname))
790 (let (found (blist dired-buffers)) ; was (buffer-list)
791 (or mode (setq mode 'dired-mode))
792 (while blist
793 (if (null (buffer-name (cdr (car blist))))
794 (setq blist (cdr blist))
795 (save-excursion
796 (set-buffer (cdr (car blist)))
797 (if (and (eq major-mode mode)
798 dired-directory ;; nil during find-alternate-file
799 (equal dirname
800 (expand-file-name
801 (if (consp dired-directory)
802 (car dired-directory)
803 dired-directory))))
804 (setq found (cdr (car blist))
805 blist nil)
806 (setq blist (cdr blist))))))
807 found))
808
809 \f
810 ;; Read in a new dired buffer
811
812 (defun dired-readin ()
813 "Read in a new dired buffer.
814 Differs from `dired-insert-subdir' in that it accepts
815 wildcards, erases the buffer, and builds the subdir-alist anew
816 \(including making it buffer-local and clearing it first)."
817
818 ;; default-directory and dired-actual-switches must be buffer-local
819 ;; and initialized by now.
820 (let (dirname)
821 (if (consp dired-directory)
822 (setq dirname (car dired-directory))
823 (setq dirname dired-directory))
824 (setq dirname (expand-file-name dirname))
825 (save-excursion
826 ;; This hook which may want to modify dired-actual-switches
827 ;; based on dired-directory, e.g. with ange-ftp to a SysV host
828 ;; where ls won't understand -Al switches.
829 (run-hooks 'dired-before-readin-hook)
830 (if (consp buffer-undo-list)
831 (setq buffer-undo-list nil))
832 (make-local-variable 'file-name-coding-system)
833 (setq file-name-coding-system
834 (or coding-system-for-read file-name-coding-system))
835 (let (buffer-read-only
836 ;; Don't make undo entries for readin.
837 (buffer-undo-list t))
838 (widen)
839 (erase-buffer)
840 (dired-readin-insert))
841 (goto-char (point-min))
842 ;; Must first make alist buffer local and set it to nil because
843 ;; dired-build-subdir-alist will call dired-clear-alist first
844 (set (make-local-variable 'dired-subdir-alist) nil)
845 (dired-build-subdir-alist)
846 (let ((attributes (file-attributes dirname)))
847 (if (eq (car attributes) t)
848 (set-visited-file-modtime (nth 5 attributes))))
849 (set-buffer-modified-p nil)
850 ;; No need to narrow since the whole buffer contains just
851 ;; dired-readin's output, nothing else. The hook can
852 ;; successfully use dired functions (e.g. dired-get-filename)
853 ;; as the subdir-alist has been built in dired-readin.
854 (run-hooks 'dired-after-readin-hook))))
855
856 ;; Subroutines of dired-readin
857
858 (defun dired-readin-insert ()
859 ;; Insert listing for the specified dir (and maybe file list)
860 ;; already in dired-directory, assuming a clean buffer.
861 (let (dir file-list)
862 (if (consp dired-directory)
863 (setq dir (car dired-directory)
864 file-list (cdr dired-directory))
865 (setq dir dired-directory
866 file-list nil))
867 (setq dir (expand-file-name dir))
868 (if (and (equal "" (file-name-nondirectory dir))
869 (not file-list))
870 ;; If we are reading a whole single directory...
871 (dired-insert-directory dir dired-actual-switches nil nil t)
872 (if (not (file-readable-p
873 (directory-file-name (file-name-directory dir))))
874 (error "Directory %s inaccessible or nonexistent" dir)
875 ;; Else treat it as a wildcard spec
876 ;; unless we have an explicit list of files.
877 (dired-insert-directory dir dired-actual-switches
878 file-list (not file-list) t)))))
879
880 (defun dired-align-file (beg end)
881 "Align the fields of a file to the ones of surrounding lines.
882 BEG..END is the line where the file info is located."
883 ;; Some versions of ls try to adjust the size of each field so as to just
884 ;; hold the largest element ("largest" in the current invocation, of
885 ;; course). So when a single line is output, the size of each field is
886 ;; just big enough for that one output. Thus when dired refreshes one
887 ;; line, the alignment if this line w.r.t the rest is messed up because
888 ;; the fields of that one line will generally be smaller.
889 ;;
890 ;; To work around this problem, we here add spaces to try and
891 ;; re-align the fields as needed. Since this is purely aesthetic,
892 ;; it is of utmost importance that it doesn't mess up anything like
893 ;; `dired-move-to-filename'. To this end, we limit ourselves to
894 ;; adding spaces only, and to only add them at places where there
895 ;; was already at least one space. This way, as long as
896 ;; `directory-listing-before-filename-regexp' always matches spaces
897 ;; with "*" or "+", we know we haven't made anything worse. There
898 ;; is one spot where the exact number of spaces is important, which
899 ;; is just before the actual filename, so we refrain from adding
900 ;; spaces there (and within the filename as well, of course).
901 (save-excursion
902 (let (file file-col other other-col)
903 ;; Check the there is indeed a file, and that there is anoter adjacent
904 ;; file with which to align, and that additional spaces are needed to
905 ;; align the filenames.
906 (when (and (setq file (progn (goto-char beg)
907 (dired-move-to-filename nil end)))
908 (setq file-col (current-column))
909 (setq other
910 (or (and (goto-char beg)
911 (zerop (forward-line -1))
912 (dired-move-to-filename))
913 (and (goto-char beg)
914 (zerop (forward-line 1))
915 (dired-move-to-filename))))
916 (setq other-col (current-column))
917 (/= file other)
918 ;; Make sure there is some work left to do.
919 (> other-col file-col))
920 ;; If we've only looked at the line above, check to see if the line
921 ;; below exists as well and if so, align with the shorter one.
922 (when (and (< other file)
923 (goto-char beg)
924 (zerop (forward-line 1))
925 (dired-move-to-filename))
926 (let ((alt-col (current-column)))
927 (when (< alt-col other-col)
928 (setq other-col alt-col)
929 (setq other (point)))))
930 ;; Keep positions uptodate when we insert stuff.
931 (if (> other file) (setq other (copy-marker other)))
932 (setq file (copy-marker file))
933 ;; Main loop.
934 (goto-char beg)
935 (skip-chars-forward " ") ;Skip to the first field.
936 (while (and (> other-col file-col)
937 ;; Don't touch anything just before (and after) the
938 ;; beginning of the filename.
939 (> file (point)))
940 ;; We're now just in front of a field, with a space behind us.
941 (let* ((curcol (current-column))
942 ;; Nums are right-aligned.
943 (num-align (looking-at "[0-9]"))
944 ;; Let's look at the other line, in the same column: we
945 ;; should be either near the end of the previous field, or
946 ;; in the space between that field and the next.
947 ;; [ Of course, it's also possible that we're already within
948 ;; the next field or even past it, but that's unlikely since
949 ;; other-col > file-col. ]
950 ;; Let's find the distance to the alignment-point (either
951 ;; the beginning or the end of the next field, depending on
952 ;; whether this field is left or right aligned).
953 (align-pt-offset
954 (save-excursion
955 (goto-char other)
956 (move-to-column curcol)
957 (when (looking-at
958 (concat
959 (if (eq (char-before) ?\s) " *" "[^ ]* *")
960 (if num-align "[0-9][^ ]*")))
961 (- (match-end 0) (match-beginning 0)))))
962 ;; Now, the number of spaces to insert is align-pt-offset
963 ;; minus the distance to the equivalent point on the
964 ;; current line.
965 (spaces
966 (if (not num-align)
967 align-pt-offset
968 (and align-pt-offset
969 (save-excursion
970 (skip-chars-forward "^ ")
971 (- align-pt-offset (- (current-column) curcol)))))))
972 (when (and spaces (> spaces 0))
973 (setq file-col (+ spaces file-col))
974 (if (> file-col other-col)
975 (setq spaces (- spaces (- file-col other-col))))
976 (insert-char ?\s spaces)
977 ;; Let's just make really sure we did not mess up.
978 (unless (save-excursion
979 (eq (dired-move-to-filename) (marker-position file)))
980 ;; Damn! We messed up: let's revert the change.
981 (delete-char (- spaces)))))
982 ;; Now skip to next field.
983 (skip-chars-forward "^ ") (skip-chars-forward " "))
984 (set-marker file nil)))))
985
986
987 (defun dired-insert-directory (dir switches &optional file-list wildcard hdr)
988 "Insert a directory listing of DIR, Dired style.
989 Use SWITCHES to make the listings.
990 If FILE-LIST is non-nil, list only those files.
991 Otherwise, if WILDCARD is non-nil, expand wildcards;
992 in that case, DIR should be a file name that uses wildcards.
993 In other cases, DIR should be a directory name or a directory filename.
994 If HDR is non-nil, insert a header line with the directory name."
995 (let ((opoint (point))
996 (process-environment (copy-sequence process-environment))
997 end)
998 (if (or dired-use-ls-dired (file-remote-p dir))
999 (setq switches (concat "--dired " switches)))
1000 ;; We used to specify the C locale here, to force English month names;
1001 ;; but this should not be necessary any more,
1002 ;; with the new value of `directory-listing-before-filename-regexp'.
1003 (if file-list
1004 (dolist (f file-list)
1005 (let ((beg (point)))
1006 (insert-directory f switches nil nil)
1007 ;; Re-align fields, if necessary.
1008 (dired-align-file beg (point))))
1009 (insert-directory dir switches wildcard (not wildcard)))
1010 ;; Quote certain characters, unless ls quoted them for us.
1011 (if (not (string-match "b" dired-actual-switches))
1012 (save-excursion
1013 (setq end (point-marker))
1014 (goto-char opoint)
1015 (while (search-forward "\\" end t)
1016 (replace-match (apply #'propertize
1017 "\\\\"
1018 (text-properties-at (match-beginning 0)))
1019 nil t))
1020 (goto-char opoint)
1021 (while (search-forward "\^m" end t)
1022 (replace-match (apply #'propertize
1023 "\\015"
1024 (text-properties-at (match-beginning 0)))
1025 nil t))
1026 (set-marker end nil)))
1027 (dired-insert-set-properties opoint (point))
1028 ;; If we used --dired and it worked, the lines are already indented.
1029 ;; Otherwise, indent them.
1030 (unless (save-excursion
1031 (goto-char opoint)
1032 (looking-at " "))
1033 (let ((indent-tabs-mode nil))
1034 (indent-rigidly opoint (point) 2)))
1035 ;; Insert text at the beginning to standardize things.
1036 (save-excursion
1037 (goto-char opoint)
1038 (if (and (or hdr wildcard) (not (looking-at "^ /.*:$")))
1039 ;; Note that dired-build-subdir-alist will replace the name
1040 ;; by its expansion, so it does not matter whether what we insert
1041 ;; here is fully expanded, but it should be absolute.
1042 (insert " " (directory-file-name (file-name-directory dir)) ":\n"))
1043 (when wildcard
1044 ;; Insert "wildcard" line where "total" line would be for a full dir.
1045 (insert " wildcard " (file-name-nondirectory dir) "\n")))))
1046
1047 (defun dired-insert-set-properties (beg end)
1048 "Make the file names highlight when the mouse is on them."
1049 (save-excursion
1050 (goto-char beg)
1051 (while (< (point) end)
1052 (condition-case nil
1053 (if (dired-move-to-filename)
1054 (add-text-properties
1055 (point)
1056 (save-excursion
1057 (dired-move-to-end-of-filename)
1058 (point))
1059 '(mouse-face highlight
1060 help-echo "mouse-2: visit this file in other window")))
1061 (error nil))
1062 (forward-line 1))))
1063 \f
1064 ;; Reverting a dired buffer
1065
1066 (defun dired-revert (&optional arg noconfirm)
1067 "Reread the dired buffer.
1068 Must also be called after `dired-actual-switches' have changed.
1069 Should not fail even on completely garbaged buffers.
1070 Preserves old cursor, marks/flags, hidden-p."
1071 (widen) ; just in case user narrowed
1072 (let ((modflag (buffer-modified-p))
1073 (opoint (point))
1074 (ofile (dired-get-filename nil t))
1075 (mark-alist nil) ; save marked files
1076 (hidden-subdirs (dired-remember-hidden))
1077 (old-subdir-alist (cdr (reverse dired-subdir-alist))) ; except pwd
1078 (case-fold-search nil) ; we check for upper case ls flags
1079 buffer-read-only)
1080 (goto-char (point-min))
1081 (setq mark-alist;; only after dired-remember-hidden since this unhides:
1082 (dired-remember-marks (point-min) (point-max)))
1083 ;; treat top level dir extra (it may contain wildcards)
1084 (dired-uncache
1085 (if (consp dired-directory) (car dired-directory) dired-directory))
1086 ;; Run dired-after-readin-hook just once, below.
1087 (let ((dired-after-readin-hook nil))
1088 (dired-readin)
1089 (dired-insert-old-subdirs old-subdir-alist))
1090 (dired-mark-remembered mark-alist) ; mark files that were marked
1091 ;; ... run the hook for the whole buffer, and only after markers
1092 ;; have been reinserted (else omitting in dired-x would omit marked files)
1093 (run-hooks 'dired-after-readin-hook) ; no need to narrow
1094 (or (and ofile (dired-goto-file ofile)) ; move cursor to where it
1095 (goto-char opoint)) ; was before
1096 (dired-move-to-filename)
1097 (save-excursion ; hide subdirs that were hidden
1098 (dolist (dir hidden-subdirs)
1099 (if (dired-goto-subdir dir)
1100 (dired-hide-subdir 1))))
1101 (unless modflag (restore-buffer-modified-p nil)))
1102 ;; outside of the let scope
1103 ;;; Might as well not override the user if the user changed this.
1104 ;;; (setq buffer-read-only t)
1105 )
1106
1107 ;; Subroutines of dired-revert
1108 ;; Some of these are also used when inserting subdirs.
1109
1110 (defun dired-remember-marks (beg end)
1111 "Return alist of files and their marks, from BEG to END."
1112 (if selective-display ; must unhide to make this work.
1113 (let (buffer-read-only)
1114 (subst-char-in-region beg end ?\r ?\n)))
1115 (let (fil chr alist)
1116 (save-excursion
1117 (goto-char beg)
1118 (while (re-search-forward dired-re-mark end t)
1119 (if (setq fil (dired-get-filename nil t))
1120 (setq chr (preceding-char)
1121 alist (cons (cons fil chr) alist)))))
1122 alist))
1123
1124 (defun dired-mark-remembered (alist)
1125 "Mark all files remembered in ALIST.
1126 Each element of ALIST looks like (FILE . MARKERCHAR)."
1127 (let (elt fil chr)
1128 (while alist
1129 (setq elt (car alist)
1130 alist (cdr alist)
1131 fil (car elt)
1132 chr (cdr elt))
1133 (if (dired-goto-file fil)
1134 (save-excursion
1135 (beginning-of-line)
1136 (delete-char 1)
1137 (insert chr))))))
1138
1139 (defun dired-remember-hidden ()
1140 "Return a list of names of subdirs currently hidden."
1141 (let ((l dired-subdir-alist) dir pos result)
1142 (while l
1143 (setq dir (car (car l))
1144 pos (cdr (car l))
1145 l (cdr l))
1146 (goto-char pos)
1147 (skip-chars-forward "^\r\n")
1148 (if (eq (following-char) ?\r)
1149 (setq result (cons dir result))))
1150 result))
1151
1152 (defun dired-insert-old-subdirs (old-subdir-alist)
1153 "Try to insert all subdirs that were displayed before.
1154 Do so according to the former subdir alist OLD-SUBDIR-ALIST."
1155 (or (string-match "R" dired-actual-switches)
1156 (let (elt dir)
1157 (while old-subdir-alist
1158 (setq elt (car old-subdir-alist)
1159 old-subdir-alist (cdr old-subdir-alist)
1160 dir (car elt))
1161 (condition-case ()
1162 (progn
1163 (dired-uncache dir)
1164 (dired-insert-subdir dir))
1165 (error nil))))))
1166
1167 (defun dired-uncache (dir)
1168 "Remove directory DIR from any directory cache."
1169 (let ((handler (find-file-name-handler dir 'dired-uncache)))
1170 (if handler
1171 (funcall handler 'dired-uncache dir))))
1172 \f
1173 ;; dired mode key bindings and initialization
1174
1175 (defvar dired-mode-map
1176 ;; This looks ugly when substitute-command-keys uses C-d instead d:
1177 ;; (define-key dired-mode-map "\C-d" 'dired-flag-file-deletion)
1178 (let ((map (make-keymap)))
1179 (suppress-keymap map)
1180 (define-key map [mouse-2] 'dired-mouse-find-file-other-window)
1181 (define-key map [follow-link] 'mouse-face)
1182 ;; Commands to mark or flag certain categories of files
1183 (define-key map "#" 'dired-flag-auto-save-files)
1184 (define-key map "." 'dired-clean-directory)
1185 (define-key map "~" 'dired-flag-backup-files)
1186 (define-key map "&" 'dired-flag-garbage-files)
1187 ;; Upper case keys (except !) for operating on the marked files
1188 (define-key map "A" 'dired-do-search)
1189 (define-key map "C" 'dired-do-copy)
1190 (define-key map "B" 'dired-do-byte-compile)
1191 (define-key map "D" 'dired-do-delete)
1192 (define-key map "G" 'dired-do-chgrp)
1193 (define-key map "H" 'dired-do-hardlink)
1194 (define-key map "L" 'dired-do-load)
1195 (define-key map "M" 'dired-do-chmod)
1196 (define-key map "O" 'dired-do-chown)
1197 (define-key map "P" 'dired-do-print)
1198 (define-key map "Q" 'dired-do-query-replace-regexp)
1199 (define-key map "R" 'dired-do-rename)
1200 (define-key map "S" 'dired-do-symlink)
1201 (define-key map "T" 'dired-do-touch)
1202 (define-key map "X" 'dired-do-shell-command)
1203 (define-key map "Z" 'dired-do-compress)
1204 (define-key map "!" 'dired-do-shell-command)
1205 ;; Comparison commands
1206 (define-key map "=" 'dired-diff)
1207 (define-key map "\M-=" 'dired-backup-diff)
1208 ;; Tree Dired commands
1209 (define-key map "\M-\C-?" 'dired-unmark-all-files)
1210 (define-key map "\M-\C-d" 'dired-tree-down)
1211 (define-key map "\M-\C-u" 'dired-tree-up)
1212 (define-key map "\M-\C-n" 'dired-next-subdir)
1213 (define-key map "\M-\C-p" 'dired-prev-subdir)
1214 ;; move to marked files
1215 (define-key map "\M-{" 'dired-prev-marked-file)
1216 (define-key map "\M-}" 'dired-next-marked-file)
1217 ;; Make all regexp commands share a `%' prefix:
1218 ;; We used to get to the submap via a symbol dired-regexp-prefix,
1219 ;; but that seems to serve little purpose, and copy-keymap
1220 ;; does a better job without it.
1221 (define-key map "%" nil)
1222 (define-key map "%u" 'dired-upcase)
1223 (define-key map "%l" 'dired-downcase)
1224 (define-key map "%d" 'dired-flag-files-regexp)
1225 (define-key map "%g" 'dired-mark-files-containing-regexp)
1226 (define-key map "%m" 'dired-mark-files-regexp)
1227 (define-key map "%r" 'dired-do-rename-regexp)
1228 (define-key map "%C" 'dired-do-copy-regexp)
1229 (define-key map "%H" 'dired-do-hardlink-regexp)
1230 (define-key map "%R" 'dired-do-rename-regexp)
1231 (define-key map "%S" 'dired-do-symlink-regexp)
1232 ;; Commands for marking and unmarking.
1233 (define-key map "*" nil)
1234 (define-key map "**" 'dired-mark-executables)
1235 (define-key map "*/" 'dired-mark-directories)
1236 (define-key map "*@" 'dired-mark-symlinks)
1237 (define-key map "*%" 'dired-mark-files-regexp)
1238 (define-key map "*c" 'dired-change-marks)
1239 (define-key map "*s" 'dired-mark-subdir-files)
1240 (define-key map "*m" 'dired-mark)
1241 (define-key map "*u" 'dired-unmark)
1242 (define-key map "*?" 'dired-unmark-all-files)
1243 (define-key map "*!" 'dired-unmark-all-marks)
1244 (define-key map "U" 'dired-unmark-all-marks)
1245 (define-key map "*\177" 'dired-unmark-backward)
1246 (define-key map "*\C-n" 'dired-next-marked-file)
1247 (define-key map "*\C-p" 'dired-prev-marked-file)
1248 (define-key map "*t" 'dired-toggle-marks)
1249 ;; Lower keys for commands not operating on all the marked files
1250 (define-key map "a" 'dired-find-alternate-file)
1251 (define-key map "d" 'dired-flag-file-deletion)
1252 (define-key map "e" 'dired-find-file)
1253 (define-key map "f" 'dired-find-file)
1254 (define-key map "\C-m" 'dired-advertised-find-file)
1255 (define-key map "g" 'revert-buffer)
1256 (define-key map "h" 'describe-mode)
1257 (define-key map "i" 'dired-maybe-insert-subdir)
1258 (define-key map "j" 'dired-goto-file)
1259 (define-key map "k" 'dired-do-kill-lines)
1260 (define-key map "l" 'dired-do-redisplay)
1261 (define-key map "m" 'dired-mark)
1262 (define-key map "n" 'dired-next-line)
1263 (define-key map "o" 'dired-find-file-other-window)
1264 (define-key map "\C-o" 'dired-display-file)
1265 (define-key map "p" 'dired-previous-line)
1266 (define-key map "q" 'quit-window)
1267 (define-key map "s" 'dired-sort-toggle-or-edit)
1268 (define-key map "t" 'dired-toggle-marks)
1269 (define-key map "u" 'dired-unmark)
1270 (define-key map "v" 'dired-view-file)
1271 (define-key map "w" 'dired-copy-filename-as-kill)
1272 (define-key map "x" 'dired-do-flagged-delete)
1273 (define-key map "y" 'dired-show-file-type)
1274 (define-key map "+" 'dired-create-directory)
1275 ;; moving
1276 (define-key map "<" 'dired-prev-dirline)
1277 (define-key map ">" 'dired-next-dirline)
1278 (define-key map "^" 'dired-up-directory)
1279 (define-key map " " 'dired-next-line)
1280 (define-key map "\C-n" 'dired-next-line)
1281 (define-key map "\C-p" 'dired-previous-line)
1282 (define-key map [down] 'dired-next-line)
1283 (define-key map [up] 'dired-previous-line)
1284 ;; hiding
1285 (define-key map "$" 'dired-hide-subdir)
1286 (define-key map "\M-$" 'dired-hide-all)
1287 ;; misc
1288 (define-key map "\C-x\C-q" 'dired-toggle-read-only)
1289 (define-key map "?" 'dired-summary)
1290 (define-key map "\177" 'dired-unmark-backward)
1291 (define-key map [remap undo] 'dired-undo)
1292 (define-key map [remap advertised-undo] 'dired-undo)
1293 ;; thumbnail manipulation (image-dired)
1294 (define-key map "\C-td" 'image-dired-display-thumbs)
1295 (define-key map "\C-tt" 'image-dired-tag-files)
1296 (define-key map "\C-tr" 'image-dired-delete-tag)
1297 (define-key map "\C-tj" 'image-dired-jump-thumbnail-buffer)
1298 (define-key map "\C-ti" 'image-dired-dired-display-image)
1299 (define-key map "\C-tx" 'image-dired-dired-display-external)
1300 (define-key map "\C-ta" 'image-dired-display-thumbs-append)
1301 (define-key map "\C-t." 'image-dired-display-thumb)
1302 (define-key map "\C-tc" 'image-dired-dired-comment-files)
1303 (define-key map "\C-tf" 'image-dired-mark-tagged-files)
1304 (define-key map "\C-t\C-t" 'image-dired-dired-insert-marked-thumbs)
1305 (define-key map "\C-te" 'image-dired-dired-edit-comment-and-tags)
1306 ;; encryption and decryption (epa-dired)
1307 (define-key map ":d" 'epa-dired-do-decrypt)
1308 (define-key map ":v" 'epa-dired-do-verify)
1309 (define-key map ":s" 'epa-dired-do-sign)
1310 (define-key map ":e" 'epa-dired-do-encrypt)
1311
1312 ;; Make menu bar items.
1313
1314 ;; No need to fo this, now that top-level items are fewer.
1315 ;;;;
1316 ;; Get rid of the Edit menu bar item to save space.
1317 ;(define-key map [menu-bar edit] 'undefined)
1318
1319 (define-key map [menu-bar subdir]
1320 (cons "Subdir" (make-sparse-keymap "Subdir")))
1321
1322 (define-key map [menu-bar subdir hide-all]
1323 '(menu-item "Hide All" dired-hide-all
1324 :help "Hide all subdirectories, leave only header lines"))
1325 (define-key map [menu-bar subdir hide-subdir]
1326 '(menu-item "Hide/UnHide Subdir" dired-hide-subdir
1327 :help "Hide or unhide current directory listing"))
1328 (define-key map [menu-bar subdir tree-down]
1329 '(menu-item "Tree Down" dired-tree-down
1330 :help "Go to first subdirectory header down the tree"))
1331 (define-key map [menu-bar subdir tree-up]
1332 '(menu-item "Tree Up" dired-tree-up
1333 :help "Go to first subdirectory header up the tree"))
1334 (define-key map [menu-bar subdir up]
1335 '(menu-item "Up Directory" dired-up-directory
1336 :help "Edit the parent directory"))
1337 (define-key map [menu-bar subdir prev-subdir]
1338 '(menu-item "Prev Subdir" dired-prev-subdir
1339 :help "Go to previous subdirectory header line"))
1340 (define-key map [menu-bar subdir next-subdir]
1341 '(menu-item "Next Subdir" dired-next-subdir
1342 :help "Go to next subdirectory header line"))
1343 (define-key map [menu-bar subdir prev-dirline]
1344 '(menu-item "Prev Dirline" dired-prev-dirline
1345 :help "Move to next directory-file line"))
1346 (define-key map [menu-bar subdir next-dirline]
1347 '(menu-item "Next Dirline" dired-next-dirline
1348 :help "Move to previous directory-file line"))
1349 (define-key map [menu-bar subdir insert]
1350 '(menu-item "Insert This Subdir" dired-maybe-insert-subdir
1351 :help "Insert contents of subdirectory"))
1352
1353 (define-key map [menu-bar immediate]
1354 (cons "Immediate" (make-sparse-keymap "Immediate")))
1355
1356 (define-key map
1357 [menu-bar immediate epa-dired-do-decrypt]
1358 '(menu-item "Decrypt" epa-dired-do-decrypt
1359 :help "Decrypt file at cursor"))
1360
1361 (define-key map
1362 [menu-bar immediate epa-dired-do-verify]
1363 '(menu-item "Verify" epa-dired-do-verify
1364 :help "Verify digital signature of file at cursor"))
1365
1366 (define-key map
1367 [menu-bar immediate epa-dired-do-sign]
1368 '(menu-item "Sign" epa-dired-do-sign
1369 :help "Create digital signature of file at cursor"))
1370
1371 (define-key map
1372 [menu-bar immediate epa-dired-do-encrypt]
1373 '(menu-item "Encrypt" epa-dired-do-encrypt
1374 :help "Encrypt file at cursor"))
1375
1376 (define-key map [menu-bar immediate dashes-4]
1377 '("--"))
1378
1379 (define-key map
1380 [menu-bar immediate image-dired-dired-display-external]
1381 '(menu-item "Display Image Externally" image-dired-dired-display-external
1382 :help "Display image in external viewer"))
1383 (define-key map
1384 [menu-bar immediate image-dired-dired-display-image]
1385 '(menu-item "Display Image" image-dired-dired-display-image
1386 :help "Display sized image in a separate window"))
1387
1388 (define-key map [menu-bar immediate dashes-4]
1389 '("--"))
1390
1391 (define-key map [menu-bar immediate revert-buffer]
1392 '(menu-item "Refresh" revert-buffer
1393 :help "Update contents of shown directories"))
1394
1395 (define-key map [menu-bar immediate dashes]
1396 '("--"))
1397
1398 (define-key map [menu-bar immediate compare-directories]
1399 '(menu-item "Compare Directories..." dired-compare-directories
1400 :help "Mark files with different attributes in two dired buffers"))
1401 (define-key map [menu-bar immediate backup-diff]
1402 '(menu-item "Compare with Backup" dired-backup-diff
1403 :help "Diff file at cursor with its latest backup"))
1404 (define-key map [menu-bar immediate diff]
1405 '(menu-item "Diff..." dired-diff
1406 :help "Compare file at cursor with another file"))
1407 (define-key map [menu-bar immediate view]
1408 '(menu-item "View This File" dired-view-file
1409 :help "Examine file at cursor in read-only mode"))
1410 (define-key map [menu-bar immediate display]
1411 '(menu-item "Display in Other Window" dired-display-file
1412 :help "Display file at cursor in other window"))
1413 (define-key map [menu-bar immediate find-file-other-window]
1414 '(menu-item "Find in Other Window" dired-find-file-other-window
1415 :help "Edit file at cursor in other window"))
1416 (define-key map [menu-bar immediate find-file]
1417 '(menu-item "Find This File" dired-find-file
1418 :help "Edit file at cursor"))
1419 (define-key map [menu-bar immediate create-directory]
1420 '(menu-item "Create Directory..." dired-create-directory))
1421 (define-key map [menu-bar immediate wdired-mode]
1422 '(menu-item "Edit File Names" wdired-change-to-wdired-mode
1423 :filter (lambda (x) (if (eq major-mode 'dired-mode) x))))
1424
1425 (define-key map [menu-bar regexp]
1426 (cons "Regexp" (make-sparse-keymap "Regexp")))
1427
1428 (define-key map
1429 [menu-bar regexp image-dired-mark-tagged-files]
1430 '(menu-item "Mark From Image Tag..." image-dired-mark-tagged-files
1431 :help "Mark files whose image tags matches regexp"))
1432
1433 (define-key map [menu-bar regexp dashes-1]
1434 '("--"))
1435
1436 (define-key map [menu-bar regexp downcase]
1437 '(menu-item "Downcase" dired-downcase
1438 ;; When running on plain MS-DOS, there's only one
1439 ;; letter-case for file names.
1440 :enable (or (not (fboundp 'msdos-long-file-names))
1441 (msdos-long-file-names))
1442 :help "Rename marked files to lower-case name"))
1443 (define-key map [menu-bar regexp upcase]
1444 '(menu-item "Upcase" dired-upcase
1445 :enable (or (not (fboundp 'msdos-long-file-names))
1446 (msdos-long-file-names))
1447 :help "Rename marked files to upper-case name"))
1448 (define-key map [menu-bar regexp hardlink]
1449 '(menu-item "Hardlink..." dired-do-hardlink-regexp
1450 :help "Make hard links for files matching regexp"))
1451 (define-key map [menu-bar regexp symlink]
1452 '(menu-item "Symlink..." dired-do-symlink-regexp
1453 :visible (fboundp 'make-symbolic-link)
1454 :help "Make symbolic links for files matching regexp"))
1455 (define-key map [menu-bar regexp rename]
1456 '(menu-item "Rename..." dired-do-rename-regexp
1457 :help "Rename marked files matching regexp"))
1458 (define-key map [menu-bar regexp copy]
1459 '(menu-item "Copy..." dired-do-copy-regexp
1460 :help "Copy marked files matching regexp"))
1461 (define-key map [menu-bar regexp flag]
1462 '(menu-item "Flag..." dired-flag-files-regexp
1463 :help "Flag files matching regexp for deletion"))
1464 (define-key map [menu-bar regexp mark]
1465 '(menu-item "Mark..." dired-mark-files-regexp
1466 :help "Mark files matching regexp for future operations"))
1467 (define-key map [menu-bar regexp mark-cont]
1468 '(menu-item "Mark Containing..." dired-mark-files-containing-regexp
1469 :help "Mark files whose contents matches regexp"))
1470
1471 (define-key map [menu-bar mark]
1472 (cons "Mark" (make-sparse-keymap "Mark")))
1473
1474 (define-key map [menu-bar mark prev]
1475 '(menu-item "Previous Marked" dired-prev-marked-file
1476 :help "Move to previous marked file"))
1477 (define-key map [menu-bar mark next]
1478 '(menu-item "Next Marked" dired-next-marked-file
1479 :help "Move to next marked file"))
1480 (define-key map [menu-bar mark marks]
1481 '(menu-item "Change Marks..." dired-change-marks
1482 :help "Replace marker with another character"))
1483 (define-key map [menu-bar mark unmark-all]
1484 '(menu-item "Unmark All" dired-unmark-all-marks))
1485 (define-key map [menu-bar mark symlinks]
1486 '(menu-item "Mark Symlinks" dired-mark-symlinks
1487 :visible (fboundp 'make-symbolic-link)
1488 :help "Mark all symbolic links"))
1489 (define-key map [menu-bar mark directories]
1490 '(menu-item "Mark Directories" dired-mark-directories
1491 :help "Mark all directories except `.' and `..'"))
1492 (define-key map [menu-bar mark directory]
1493 '(menu-item "Mark Old Backups" dired-clean-directory
1494 :help "Flag old numbered backups for deletion"))
1495 (define-key map [menu-bar mark executables]
1496 '(menu-item "Mark Executables" dired-mark-executables
1497 :help "Mark all executable files"))
1498 (define-key map [menu-bar mark garbage-files]
1499 '(menu-item "Flag Garbage Files" dired-flag-garbage-files
1500 :help "Flag unneeded files for deletion"))
1501 (define-key map [menu-bar mark backup-files]
1502 '(menu-item "Flag Backup Files" dired-flag-backup-files
1503 :help "Flag all backup files for deletion"))
1504 (define-key map [menu-bar mark auto-save-files]
1505 '(menu-item "Flag Auto-save Files" dired-flag-auto-save-files
1506 :help "Flag auto-save files for deletion"))
1507 (define-key map [menu-bar mark deletion]
1508 '(menu-item "Flag" dired-flag-file-deletion
1509 :help "Flag current line's file for deletion"))
1510 (define-key map [menu-bar mark unmark]
1511 '(menu-item "Unmark" dired-unmark
1512 :help "Unmark or unflag current line's file"))
1513 (define-key map [menu-bar mark mark]
1514 '(menu-item "Mark" dired-mark
1515 :help "Mark current line's file for future operations"))
1516 (define-key map [menu-bar mark toggle-marks]
1517 '(menu-item "Toggle Marks" dired-toggle-marks
1518 :help "Mark unmarked files, unmark marked ones"))
1519
1520 (define-key map [menu-bar operate]
1521 (cons "Operate" (make-sparse-keymap "Operate")))
1522
1523 (define-key map
1524 [menu-bar operate image-dired-delete-tag]
1525 '(menu-item "Delete Image Tag..." image-dired-delete-tag
1526 :help "Delete image tag from current or marked files"))
1527 (define-key map
1528 [menu-bar operate image-dired-tag-files]
1529 '(menu-item "Add Image Tags..." image-dired-tag-files
1530 :help "Add image tags to current or marked files"))
1531 (define-key map
1532 [menu-bar operate image-dired-dired-comment-files]
1533 '(menu-item "Add Image Comment..." image-dired-dired-comment-files
1534 :help "Add image comment to current or marked files"))
1535 (define-key map
1536 [menu-bar operate image-dired-display-thumbs]
1537 '(menu-item "Display Image-Dired" image-dired-display-thumbs
1538 :help "Display image-dired for current or marked image files"))
1539
1540 (define-key map [menu-bar operate dashes-3]
1541 '("--"))
1542
1543 (define-key map [menu-bar operate query-replace]
1544 '(menu-item "Query Replace in Files..." dired-do-query-replace-regexp
1545 :help "Replace regexp in marked files"))
1546 (define-key map [menu-bar operate search]
1547 '(menu-item "Search Files..." dired-do-search
1548 :help "Search marked files for regexp"))
1549 (define-key map [menu-bar operate chown]
1550 '(menu-item "Change Owner..." dired-do-chown
1551 :visible (not (memq system-type '(ms-dos windows-nt)))
1552 :help "Change the owner of marked files"))
1553 (define-key map [menu-bar operate chgrp]
1554 '(menu-item "Change Group..." dired-do-chgrp
1555 :visible (not (memq system-type '(ms-dos windows-nt)))
1556 :help "Change the group of marked files"))
1557 (define-key map [menu-bar operate chmod]
1558 '(menu-item "Change Mode..." dired-do-chmod
1559 :help "Change mode (attributes) of marked files"))
1560 (define-key map [menu-bar operate touch]
1561 '(menu-item "Change Timestamp..." dired-do-touch
1562 :help "Change timestamp of marked files"))
1563 (define-key map [menu-bar operate load]
1564 '(menu-item "Load" dired-do-load
1565 :help "Load marked Emacs Lisp files"))
1566 (define-key map [menu-bar operate compile]
1567 '(menu-item "Byte-compile" dired-do-byte-compile
1568 :help "Byte-compile marked Emacs Lisp files"))
1569 (define-key map [menu-bar operate compress]
1570 '(menu-item "Compress" dired-do-compress
1571 :help "Compress/uncompress marked files"))
1572 (define-key map [menu-bar operate print]
1573 '(menu-item "Print..." dired-do-print
1574 :help "Ask for print command and print marked files"))
1575 (define-key map [menu-bar operate hardlink]
1576 '(menu-item "Hardlink to..." dired-do-hardlink
1577 :help "Make hard links for current or marked files"))
1578 (define-key map [menu-bar operate symlink]
1579 '(menu-item "Symlink to..." dired-do-symlink
1580 :visible (fboundp 'make-symbolic-link)
1581 :help "Make symbolic links for current or marked files"))
1582 (define-key map [menu-bar operate command]
1583 '(menu-item "Shell Command..." dired-do-shell-command
1584 :help "Run a shell command on each of marked files"))
1585 (define-key map [menu-bar operate delete]
1586 '(menu-item "Delete" dired-do-delete
1587 :help "Delete current file or all marked files"))
1588 (define-key map [menu-bar operate rename]
1589 '(menu-item "Rename to..." dired-do-rename
1590 :help "Rename current file or move marked files"))
1591 (define-key map [menu-bar operate copy]
1592 '(menu-item "Copy to..." dired-do-copy
1593 :help "Copy current file or all marked files"))
1594
1595 map)
1596 "Local keymap for `dired-mode' buffers.")
1597 \f
1598 ;; Dired mode is suitable only for specially formatted data.
1599 (put 'dired-mode 'mode-class 'special)
1600
1601 ;; Autoload cookie needed by desktop.el
1602 ;;;###autoload
1603 (defun dired-mode (&optional dirname switches)
1604 "\
1605 Mode for \"editing\" directory listings.
1606 In Dired, you are \"editing\" a list of the files in a directory and
1607 \(optionally) its subdirectories, in the format of `ls -lR'.
1608 Each directory is a page: use \\[backward-page] and \\[forward-page] to move pagewise.
1609 \"Editing\" means that you can run shell commands on files, visit,
1610 compress, load or byte-compile them, change their file attributes
1611 and insert subdirectories into the same buffer. You can \"mark\"
1612 files for later commands or \"flag\" them for deletion, either file
1613 by file or all files matching certain criteria.
1614 You can move using the usual cursor motion commands.\\<dired-mode-map>
1615 Letters no longer insert themselves. Digits are prefix arguments.
1616 Instead, type \\[dired-flag-file-deletion] to flag a file for Deletion.
1617 Type \\[dired-mark] to Mark a file or subdirectory for later commands.
1618 Most commands operate on the marked files and use the current file
1619 if no files are marked. Use a numeric prefix argument to operate on
1620 the next ARG (or previous -ARG if ARG<0) files, or just `1'
1621 to operate on the current file only. Prefix arguments override marks.
1622 Mark-using commands display a list of failures afterwards. Type \\[dired-summary]
1623 to see why something went wrong.
1624 Type \\[dired-unmark] to Unmark a file or all files of a subdirectory.
1625 Type \\[dired-unmark-backward] to back up one line and unflag.
1626 Type \\[dired-do-flagged-delete] to eXecute the deletions requested.
1627 Type \\[dired-advertised-find-file] to Find the current line's file
1628 (or dired it in another buffer, if it is a directory).
1629 Type \\[dired-find-file-other-window] to find file or dired directory in Other window.
1630 Type \\[dired-maybe-insert-subdir] to Insert a subdirectory in this buffer.
1631 Type \\[dired-do-rename] to Rename a file or move the marked files to another directory.
1632 Type \\[dired-do-copy] to Copy files.
1633 Type \\[dired-sort-toggle-or-edit] to toggle Sorting by name/date or change the `ls' switches.
1634 Type \\[revert-buffer] to read all currently expanded directories aGain.
1635 This retains all marks and hides subdirs again that were hidden before.
1636 SPC and DEL can be used to move down and up by lines.
1637
1638 If Dired ever gets confused, you can either type \\[revert-buffer] \
1639 to read the
1640 directories again, type \\[dired-do-redisplay] \
1641 to relist a single or the marked files or a
1642 subdirectory, or type \\[dired-build-subdir-alist] to parse the buffer
1643 again for the directory tree.
1644
1645 Customization variables (rename this buffer and type \\[describe-variable] on each line
1646 for more info):
1647
1648 `dired-listing-switches'
1649 `dired-trivial-filenames'
1650 `dired-shrink-to-fit'
1651 `dired-marker-char'
1652 `dired-del-marker'
1653 `dired-keep-marker-rename'
1654 `dired-keep-marker-copy'
1655 `dired-keep-marker-hardlink'
1656 `dired-keep-marker-symlink'
1657
1658 Hooks (use \\[describe-variable] to see their documentation):
1659
1660 `dired-before-readin-hook'
1661 `dired-after-readin-hook'
1662 `dired-mode-hook'
1663 `dired-load-hook'
1664
1665 Keybindings:
1666 \\{dired-mode-map}"
1667 ;; Not to be called interactively (e.g. dired-directory will be set
1668 ;; to default-directory, which is wrong with wildcards).
1669 (kill-all-local-variables)
1670 (use-local-map dired-mode-map)
1671 (dired-advertise) ; default-directory is already set
1672 (setq major-mode 'dired-mode
1673 mode-name "Dired"
1674 ;; case-fold-search nil
1675 buffer-read-only t
1676 selective-display t ; for subdirectory hiding
1677 mode-line-buffer-identification
1678 (propertized-buffer-identification "%17b"))
1679 (set (make-local-variable 'revert-buffer-function)
1680 (function dired-revert))
1681 (set (make-local-variable 'buffer-stale-function)
1682 (function dired-buffer-stale-p))
1683 (set (make-local-variable 'page-delimiter)
1684 "\n\n")
1685 (set (make-local-variable 'dired-directory)
1686 (or dirname default-directory))
1687 ;; list-buffers uses this to display the dir being edited in this buffer.
1688 (set (make-local-variable 'list-buffers-directory)
1689 (expand-file-name (if (listp dired-directory)
1690 (car dired-directory)
1691 dired-directory)))
1692 (set (make-local-variable 'dired-actual-switches)
1693 (or switches dired-listing-switches))
1694 (set (make-local-variable 'font-lock-defaults)
1695 '(dired-font-lock-keywords t nil nil beginning-of-line))
1696 (set (make-local-variable 'desktop-save-buffer)
1697 'dired-desktop-buffer-misc-data)
1698 (setq dired-switches-alist nil)
1699 (dired-sort-other dired-actual-switches t)
1700 (when (featurep 'dnd)
1701 (set (make-local-variable 'dnd-protocol-alist)
1702 (append dired-dnd-protocol-alist dnd-protocol-alist)))
1703 (run-mode-hooks 'dired-mode-hook))
1704 \f
1705 ;; Idiosyncratic dired commands that don't deal with marks.
1706
1707 (defun dired-summary ()
1708 "Summarize basic Dired commands and show recent dired errors."
1709 (interactive)
1710 (dired-why)
1711 ;>> this should check the key-bindings and use substitute-command-keys if non-standard
1712 (message
1713 "d-elete, u-ndelete, x-punge, f-ind, o-ther window, R-ename, C-opy, h-elp"))
1714
1715 (defun dired-undo ()
1716 "Undo in a dired buffer.
1717 This doesn't recover lost files, it just undoes changes in the buffer itself.
1718 You can use it to recover marks, killed lines or subdirs."
1719 (interactive)
1720 (let (buffer-read-only)
1721 (undo))
1722 (dired-build-subdir-alist)
1723 (message "Change in dired buffer undone.
1724 Actual changes in files cannot be undone by Emacs."))
1725
1726 (defun dired-toggle-read-only ()
1727 "Edit dired buffer with Wdired, or set it read-only.
1728 Call `wdired-change-to-wdired-mode' in dired buffers whose editing is
1729 supported by Wdired (the major mode of the dired buffer is `dired-mode').
1730 Otherwise, for buffers inheriting from dired-mode, call `toggle-read-only'."
1731 (interactive)
1732 (if (eq major-mode 'dired-mode)
1733 (wdired-change-to-wdired-mode)
1734 (toggle-read-only)))
1735
1736 (defun dired-next-line (arg)
1737 "Move down lines then position at filename.
1738 Optional prefix ARG says how many lines to move; default is one line."
1739 (interactive "p")
1740 (forward-line arg)
1741 (dired-move-to-filename))
1742
1743 (defun dired-previous-line (arg)
1744 "Move up lines then position at filename.
1745 Optional prefix ARG says how many lines to move; default is one line."
1746 (interactive "p")
1747 (forward-line (- arg))
1748 (dired-move-to-filename))
1749
1750 (defun dired-next-dirline (arg &optional opoint)
1751 "Goto ARG'th next directory file line."
1752 (interactive "p")
1753 (or opoint (setq opoint (point)))
1754 (if (if (> arg 0)
1755 (re-search-forward dired-re-dir nil t arg)
1756 (beginning-of-line)
1757 (re-search-backward dired-re-dir nil t (- arg)))
1758 (dired-move-to-filename) ; user may type `i' or `f'
1759 (goto-char opoint)
1760 (error "No more subdirectories")))
1761
1762 (defun dired-prev-dirline (arg)
1763 "Goto ARG'th previous directory file line."
1764 (interactive "p")
1765 (dired-next-dirline (- arg)))
1766
1767 (defun dired-up-directory (&optional other-window)
1768 "Run Dired on parent directory of current directory.
1769 Find the parent directory either in this buffer or another buffer.
1770 Creates a buffer if necessary."
1771 (interactive "P")
1772 (let* ((dir (dired-current-directory))
1773 (up (file-name-directory (directory-file-name dir))))
1774 (or (dired-goto-file (directory-file-name dir))
1775 ;; Only try dired-goto-subdir if buffer has more than one dir.
1776 (and (cdr dired-subdir-alist)
1777 (dired-goto-subdir up))
1778 (progn
1779 (if other-window
1780 (dired-other-window up)
1781 (dired up))
1782 (dired-goto-file dir)))))
1783
1784 (defun dired-get-file-for-visit ()
1785 "Get the current line's file name, with an error if file does not exist."
1786 (interactive)
1787 ;; We pass t for second arg so that we don't get error for `.' and `..'.
1788 (let ((raw (dired-get-filename nil t))
1789 file-name)
1790 (if (null raw)
1791 (error "No file on this line"))
1792 (setq file-name (file-name-sans-versions raw t))
1793 (if (file-exists-p file-name)
1794 file-name
1795 (if (file-symlink-p file-name)
1796 (error "File is a symlink to a nonexistent target")
1797 (error "File no longer exists; type `g' to update dired buffer")))))
1798
1799 ;; Force `f' rather than `e' in the mode doc:
1800 (defalias 'dired-advertised-find-file 'dired-find-file)
1801 (defun dired-find-file ()
1802 "In Dired, visit the file or directory named on this line."
1803 (interactive)
1804 ;; Bind `find-file-run-dired' so that the command works on directories
1805 ;; too, independent of the user's setting.
1806 (let ((find-file-run-dired t))
1807 (find-file (dired-get-file-for-visit))))
1808
1809 (defun dired-find-alternate-file ()
1810 "In Dired, visit this file or directory instead of the dired buffer."
1811 (interactive)
1812 (set-buffer-modified-p nil)
1813 (find-alternate-file (dired-get-file-for-visit)))
1814 ;; Don't override the setting from .emacs.
1815 ;;;###autoload (put 'dired-find-alternate-file 'disabled t)
1816
1817 (defun dired-mouse-find-file-other-window (event)
1818 "In Dired, visit the file or directory name you click on."
1819 (interactive "e")
1820 (let (window pos file)
1821 (save-excursion
1822 (setq window (posn-window (event-end event))
1823 pos (posn-point (event-end event)))
1824 (if (not (windowp window))
1825 (error "No file chosen"))
1826 (set-buffer (window-buffer window))
1827 (goto-char pos)
1828 (setq file (dired-get-file-for-visit)))
1829 (if (file-directory-p file)
1830 (or (and (cdr dired-subdir-alist)
1831 (dired-goto-subdir file))
1832 (progn
1833 (select-window window)
1834 (dired-other-window file)))
1835 (select-window window)
1836 (find-file-other-window (file-name-sans-versions file t)))))
1837
1838 (defun dired-view-file ()
1839 "In Dired, examine a file in view mode, returning to Dired when done.
1840 When file is a directory, show it in this buffer if it is inserted.
1841 Otherwise, display it in another buffer."
1842 (interactive)
1843 (let ((file (dired-get-file-for-visit)))
1844 (if (file-directory-p file)
1845 (or (and (cdr dired-subdir-alist)
1846 (dired-goto-subdir file))
1847 (dired file))
1848 (view-file file))))
1849
1850 (defun dired-find-file-other-window ()
1851 "In Dired, visit this file or directory in another window."
1852 (interactive)
1853 (find-file-other-window (dired-get-file-for-visit)))
1854
1855 (defun dired-display-file ()
1856 "In Dired, display this file or directory in another window."
1857 (interactive)
1858 (display-buffer (find-file-noselect (dired-get-file-for-visit))))
1859 \f
1860 ;;; Functions for extracting and manipulating file names in Dired buffers.
1861
1862 (defun dired-get-filename (&optional localp no-error-if-not-filep)
1863 "In Dired, return name of file mentioned on this line.
1864 Value returned normally includes the directory name.
1865 Optional arg LOCALP with value `no-dir' means don't include directory
1866 name in result. A value of `verbatim' means to return the name exactly as
1867 it occurs in the buffer, and a value of t means construct name relative to
1868 `default-directory', which still may contain slashes if in a subdirectory.
1869 Optional arg NO-ERROR-IF-NOT-FILEP means treat `.' and `..' as
1870 regular filenames and return nil if no filename on this line.
1871 Otherwise, an error occurs in these cases."
1872 (let (case-fold-search file p1 p2 already-absolute)
1873 (save-excursion
1874 (if (setq p1 (dired-move-to-filename (not no-error-if-not-filep)))
1875 (setq p2 (dired-move-to-end-of-filename no-error-if-not-filep))))
1876 ;; nil if no file on this line, but no-error-if-not-filep is t:
1877 (if (setq file (and p1 p2 (buffer-substring p1 p2)))
1878 (progn
1879 ;; Get rid of the mouse-face property that file names have.
1880 (set-text-properties 0 (length file) nil file)
1881 ;; Unquote names quoted by ls or by dired-insert-directory.
1882 ;; Using read to unquote is much faster than substituting
1883 ;; \007 (4 chars) -> ^G (1 char) etc. in a lisp loop.
1884 (setq file
1885 (read
1886 (concat "\""
1887 ;; Some ls -b don't escape quotes, argh!
1888 ;; This is not needed for GNU ls, though.
1889 (or (dired-string-replace-match
1890 "\\([^\\]\\|\\`\\)\"" file "\\1\\\\\"" nil t)
1891 file)
1892 "\"")))
1893 ;; The above `read' will return a unibyte string if FILE
1894 ;; contains eight-bit-control/graphic characters.
1895 (if (and enable-multibyte-characters
1896 (not (multibyte-string-p file)))
1897 (setq file (string-to-multibyte file)))))
1898 (and file (file-name-absolute-p file)
1899 ;; A relative file name can start with ~.
1900 ;; Don't treat it as absolute in this context.
1901 (not (eq (aref file 0) ?~))
1902 (setq already-absolute t))
1903 (cond
1904 ((null file)
1905 nil)
1906 ((eq localp 'verbatim)
1907 file)
1908 ((and (not no-error-if-not-filep)
1909 (member file '("." "..")))
1910 (error "Cannot operate on `.' or `..'"))
1911 ((and (eq localp 'no-dir) already-absolute)
1912 (file-name-nondirectory file))
1913 (already-absolute
1914 (let ((handler (find-file-name-handler file nil)))
1915 ;; check for safe-magic property so that we won't
1916 ;; put /: for names that don't really need them.
1917 ;; For instance, .gz files when auto-compression-mode is on.
1918 (if (and handler (not (get handler 'safe-magic)))
1919 (concat "/:" file)
1920 file)))
1921 ((eq localp 'no-dir)
1922 file)
1923 ((equal (dired-current-directory) "/")
1924 (setq file (concat (dired-current-directory localp) file))
1925 (let ((handler (find-file-name-handler file nil)))
1926 ;; check for safe-magic property so that we won't
1927 ;; put /: for names that don't really need them.
1928 ;; For instance, .gz files when auto-compression-mode is on.
1929 (if (and handler (not (get handler 'safe-magic)))
1930 (concat "/:" file)
1931 file)))
1932 (t
1933 (concat (dired-current-directory localp) file)))))
1934
1935 (defun dired-string-replace-match (regexp string newtext
1936 &optional literal global)
1937 "Replace first match of REGEXP in STRING with NEWTEXT.
1938 If it does not match, nil is returned instead of the new string.
1939 Optional arg LITERAL means to take NEWTEXT literally.
1940 Optional arg GLOBAL means to replace all matches."
1941 (if global
1942 (let ((start 0) ret)
1943 (while (string-match regexp string start)
1944 (let ((from-end (- (length string) (match-end 0))))
1945 (setq ret (setq string (replace-match newtext t literal string)))
1946 (setq start (- (length string) from-end))))
1947 ret)
1948 (if (not (string-match regexp string 0))
1949 nil
1950 (replace-match newtext t literal string))))
1951
1952 (defun dired-make-absolute (file &optional dir)
1953 ;;"Convert FILE (a file name relative to DIR) to an absolute file name."
1954 ;; We can't always use expand-file-name as this would get rid of `.'
1955 ;; or expand in / instead default-directory if DIR=="".
1956 ;; This should be good enough for ange-ftp, but might easily be
1957 ;; redefined (for VMS?).
1958 ;; It should be reasonably fast, though, as it is called in
1959 ;; dired-get-filename.
1960 (concat (or dir default-directory) file))
1961
1962 (defun dired-make-relative (file &optional dir ignore)
1963 "Convert FILE (an absolute file name) to a name relative to DIR.
1964 If this is impossible, return FILE unchanged.
1965 DIR must be a directory name, not a file name."
1966 (or dir (setq dir default-directory))
1967 ;; This case comes into play if default-directory is set to
1968 ;; use ~.
1969 (if (and (> (length dir) 0) (= (aref dir 0) ?~))
1970 (setq dir (expand-file-name dir)))
1971 (if (string-match (concat "^" (regexp-quote dir)) file)
1972 (substring file (match-end 0))
1973 ;;; (or no-error
1974 ;;; (error "%s: not in directory tree growing at %s" file dir))
1975 file))
1976 \f
1977 ;;; Functions for finding the file name in a dired buffer line.
1978
1979 (defvar dired-permission-flags-regexp
1980 "\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)"
1981 "Regular expression to match the permission flags in `ls -l'.")
1982
1983 ;; Move to first char of filename on this line.
1984 ;; Returns position (point) or nil if no filename on this line."
1985 (defun dired-move-to-filename (&optional raise-error eol)
1986 "Move to the beginning of the filename on the current line.
1987 Return the position of the beginning of the filename, or nil if none found."
1988 ;; This is the UNIX version.
1989 (or eol (setq eol (line-end-position)))
1990 (beginning-of-line)
1991 ;; First try assuming `ls --dired' was used.
1992 (let ((change (next-single-property-change (point) 'dired-filename nil eol)))
1993 (cond
1994 ((and change (< change eol))
1995 (goto-char change))
1996 ((re-search-forward directory-listing-before-filename-regexp eol t)
1997 (goto-char (match-end 0)))
1998 ((re-search-forward dired-permission-flags-regexp eol t)
1999 ;; Ha! There *is* a file. Our regexp-from-hell just failed to find it.
2000 (if raise-error
2001 (error "Unrecognized line! Check directory-listing-before-filename-regexp"))
2002 (beginning-of-line)
2003 nil)
2004 (raise-error
2005 (error "No file on this line")))))
2006
2007 (defun dired-move-to-end-of-filename (&optional no-error)
2008 ;; Assumes point is at beginning of filename,
2009 ;; thus the rwx bit re-search-backward below will succeed in *this*
2010 ;; line if at all. So, it should be called only after
2011 ;; (dired-move-to-filename t).
2012 ;; On failure, signals an error (with non-nil NO-ERROR just returns nil).
2013 ;; This is the UNIX version.
2014 (if (get-text-property (point) 'dired-filename)
2015 (goto-char (next-single-property-change (point) 'dired-filename))
2016 (let (opoint file-type executable symlink hidden case-fold-search used-F eol)
2017 ;; case-fold-search is nil now, so we can test for capital F:
2018 (setq used-F (string-match "F" dired-actual-switches)
2019 opoint (point)
2020 eol (save-excursion (end-of-line) (point))
2021 hidden (and selective-display
2022 (save-excursion (search-forward "\r" eol t))))
2023 (if hidden
2024 nil
2025 (save-excursion ;; Find out what kind of file this is:
2026 ;; Restrict perm bits to be non-blank,
2027 ;; otherwise this matches one char to early (looking backward):
2028 ;; "l---------" (some systems make symlinks that way)
2029 ;; "----------" (plain file with zero perms)
2030 (if (re-search-backward
2031 dired-permission-flags-regexp nil t)
2032 (setq file-type (char-after (match-beginning 1))
2033 symlink (eq file-type ?l)
2034 ;; Only with -F we need to know whether it's an executable
2035 executable (and
2036 used-F
2037 (string-match
2038 "[xst]" ;; execute bit set anywhere?
2039 (concat
2040 (match-string 2)
2041 (match-string 3)
2042 (match-string 4)))))
2043 (or no-error (error "No file on this line"))))
2044 ;; Move point to end of name:
2045 (if symlink
2046 (if (search-forward " -> " eol t)
2047 (progn
2048 (forward-char -4)
2049 (and used-F
2050 dired-ls-F-marks-symlinks
2051 (eq (preceding-char) ?@) ;; did ls really mark the link?
2052 (forward-char -1))))
2053 (goto-char eol) ;; else not a symbolic link
2054 ;; ls -lF marks dirs, sockets, fifos and executables with exactly
2055 ;; one trailing character. (Executable bits on symlinks ain't mean
2056 ;; a thing, even to ls, but we know it's not a symlink.)
2057 (and used-F
2058 (or (memq file-type '(?d ?s ?p))
2059 executable)
2060 (forward-char -1))))
2061 (or no-error
2062 (not (eq opoint (point)))
2063 (error "%s" (if hidden
2064 (substitute-command-keys
2065 "File line is hidden, type \\[dired-hide-subdir] to unhide")
2066 "No file on this line")))
2067 (if (eq opoint (point))
2068 nil
2069 (point)))))
2070
2071 \f
2072 ;;; COPY NAMES OF MARKED FILES INTO KILL-RING.
2073
2074 (defun dired-copy-filename-as-kill (&optional arg)
2075 "Copy names of marked (or next ARG) files into the kill ring.
2076 The names are separated by a space.
2077 With a zero prefix arg, use the absolute file name of each marked file.
2078 With \\[universal-argument], use the file name relative to the dired buffer's
2079 `default-directory'. (This still may contain slashes if in a subdirectory.)
2080
2081 If on a subdir headerline, use absolute subdirname instead;
2082 prefix arg and marked files are ignored in this case.
2083
2084 You can then feed the file name(s) to other commands with \\[yank]."
2085 (interactive "P")
2086 (let ((string
2087 (or (dired-get-subdir)
2088 (mapconcat (function identity)
2089 (if arg
2090 (cond ((zerop (prefix-numeric-value arg))
2091 (dired-get-marked-files))
2092 ((consp arg)
2093 (dired-get-marked-files t))
2094 (t
2095 (dired-get-marked-files
2096 'no-dir (prefix-numeric-value arg))))
2097 (dired-get-marked-files 'no-dir))
2098 " "))))
2099 (if (eq last-command 'kill-region)
2100 (kill-append string nil)
2101 (kill-new string))
2102 (message "%s" string)))
2103
2104 \f
2105 ;; Keeping Dired buffers in sync with the filesystem and with each other
2106
2107 (defun dired-buffers-for-dir (dir &optional file)
2108 ;; Return a list of buffers that dired DIR (top level or in-situ subdir).
2109 ;; If FILE is non-nil, include only those whose wildcard pattern (if any)
2110 ;; matches FILE.
2111 ;; The list is in reverse order of buffer creation, most recent last.
2112 ;; As a side effect, killed dired buffers for DIR are removed from
2113 ;; dired-buffers.
2114 (setq dir (file-name-as-directory dir))
2115 (let ((alist dired-buffers) result elt buf)
2116 (while alist
2117 (setq elt (car alist)
2118 buf (cdr elt))
2119 (if (buffer-name buf)
2120 (if (dired-in-this-tree dir (car elt))
2121 (with-current-buffer buf
2122 (and (assoc dir dired-subdir-alist)
2123 (or (null file)
2124 (let ((wildcards
2125 (file-name-nondirectory dired-directory)))
2126 (or (= 0 (length wildcards))
2127 (string-match (dired-glob-regexp wildcards)
2128 file))))
2129 (setq result (cons buf result)))))
2130 ;; else buffer is killed - clean up:
2131 (setq dired-buffers (delq elt dired-buffers)))
2132 (setq alist (cdr alist)))
2133 result))
2134
2135 (defun dired-glob-regexp (pattern)
2136 "Convert glob-pattern PATTERN to a regular expression."
2137 (let ((matched-in-pattern 0) ;; How many chars of PATTERN we've handled.
2138 regexp)
2139 (while (string-match "[[?*]" pattern matched-in-pattern)
2140 (let ((op-end (match-end 0))
2141 (next-op (aref pattern (match-beginning 0))))
2142 (setq regexp (concat regexp
2143 (regexp-quote
2144 (substring pattern matched-in-pattern
2145 (match-beginning 0)))))
2146 (cond ((= next-op ??)
2147 (setq regexp (concat regexp "."))
2148 (setq matched-in-pattern op-end))
2149 ((= next-op ?\[)
2150 ;; Fails to handle ^ yet ????
2151 (let* ((set-start (match-beginning 0))
2152 (set-cont
2153 (if (= (aref pattern (1+ set-start)) ?^)
2154 (+ 3 set-start)
2155 (+ 2 set-start)))
2156 (set-end (string-match "]" pattern set-cont))
2157 (set (substring pattern set-start (1+ set-end))))
2158 (setq regexp (concat regexp set))
2159 (setq matched-in-pattern (1+ set-end))))
2160 ((= next-op ?*)
2161 (setq regexp (concat regexp ".*"))
2162 (setq matched-in-pattern op-end)))))
2163 (concat "\\`"
2164 regexp
2165 (regexp-quote
2166 (substring pattern matched-in-pattern))
2167 "\\'")))
2168
2169
2170
2171 (defun dired-advertise ()
2172 ;;"Advertise in variable `dired-buffers' that we dired `default-directory'."
2173 ;; With wildcards we actually advertise too much.
2174 (let ((expanded-default (expand-file-name default-directory)))
2175 (if (memq (current-buffer) (dired-buffers-for-dir expanded-default))
2176 t ; we have already advertised ourselves
2177 (setq dired-buffers
2178 (cons (cons expanded-default (current-buffer))
2179 dired-buffers)))))
2180
2181 (defun dired-unadvertise (dir)
2182 ;; Remove DIR from the buffer alist in variable dired-buffers.
2183 ;; This has the effect of removing any buffer whose main directory is DIR.
2184 ;; It does not affect buffers in which DIR is a subdir.
2185 ;; Removing is also done as a side-effect in dired-buffer-for-dir.
2186 (setq dired-buffers
2187 (delq (assoc (expand-file-name dir) dired-buffers) dired-buffers)))
2188 \f
2189 ;; Tree Dired
2190
2191 ;;; utility functions
2192
2193 (defun dired-in-this-tree (file dir)
2194 ;;"Is FILE part of the directory tree starting at DIR?"
2195 (let (case-fold-search)
2196 (string-match (concat "^" (regexp-quote dir)) file)))
2197
2198 (defun dired-normalize-subdir (dir)
2199 ;; Prepend default-directory to DIR if relative file name.
2200 ;; dired-get-filename must be able to make a valid file name from a
2201 ;; file and its directory DIR.
2202 (file-name-as-directory
2203 (if (file-name-absolute-p dir)
2204 dir
2205 (expand-file-name dir default-directory))))
2206
2207 (defun dired-get-subdir ()
2208 ;;"Return the subdir name on this line, or nil if not on a headerline."
2209 ;; Look up in the alist whether this is a headerline.
2210 (save-excursion
2211 (let ((cur-dir (dired-current-directory)))
2212 (beginning-of-line) ; alist stores b-o-l positions
2213 (and (zerop (- (point)
2214 (dired-get-subdir-min (assoc cur-dir
2215 dired-subdir-alist))))
2216 cur-dir))))
2217
2218 ;(defun dired-get-subdir-min (elt)
2219 ; (cdr elt))
2220 ;; can't use macro, must be redefinable for other alist format in dired-nstd.
2221 (defalias 'dired-get-subdir-min 'cdr)
2222
2223 (defun dired-get-subdir-max (elt)
2224 (save-excursion
2225 (goto-char (dired-get-subdir-min elt))
2226 (dired-subdir-max)))
2227
2228 (defun dired-clear-alist ()
2229 (while dired-subdir-alist
2230 (set-marker (dired-get-subdir-min (car dired-subdir-alist)) nil)
2231 (setq dired-subdir-alist (cdr dired-subdir-alist))))
2232
2233 (defun dired-subdir-index (dir)
2234 ;; Return an index into alist for use with nth
2235 ;; for the sake of subdir moving commands.
2236 (let (found (index 0) (alist dired-subdir-alist))
2237 (while alist
2238 (if (string= dir (car (car alist)))
2239 (setq alist nil found t)
2240 (setq alist (cdr alist) index (1+ index))))
2241 (if found index nil)))
2242
2243 (defun dired-next-subdir (arg &optional no-error-if-not-found no-skip)
2244 "Go to next subdirectory, regardless of level."
2245 ;; Use 0 arg to go to this directory's header line.
2246 ;; NO-SKIP prevents moving to end of header line, returning whatever
2247 ;; position was found in dired-subdir-alist.
2248 (interactive "p")
2249 (let ((this-dir (dired-current-directory))
2250 pos index)
2251 ;; nth with negative arg does not return nil but the first element
2252 (setq index (- (dired-subdir-index this-dir) arg))
2253 (setq pos (if (>= index 0)
2254 (dired-get-subdir-min (nth index dired-subdir-alist))))
2255 (if pos
2256 (progn
2257 (goto-char pos)
2258 (or no-skip (skip-chars-forward "^\n\r"))
2259 (point))
2260 (if no-error-if-not-found
2261 nil ; return nil if not found
2262 (error "%s directory" (if (> arg 0) "Last" "First"))))))
2263
2264 (defun dired-build-subdir-alist (&optional switches)
2265 "Build `dired-subdir-alist' by parsing the buffer.
2266 Returns the new value of the alist.
2267 If optional arg SWITCHES is non-nil, use its value
2268 instead of `dired-actual-switches'."
2269 (interactive)
2270 (dired-clear-alist)
2271 (save-excursion
2272 (let* ((count 0)
2273 (buffer-read-only nil)
2274 (buffer-undo-list t)
2275 (switches (or switches dired-actual-switches))
2276 new-dir-name
2277 (R-ftp-base-dir-regex
2278 ;; Used to expand subdirectory names correctly in recursive
2279 ;; ange-ftp listings.
2280 (and (string-match "R" switches)
2281 (string-match "\\`/.*:\\(/.*\\)" default-directory)
2282 (concat "\\`" (match-string 1 default-directory)))))
2283 (goto-char (point-min))
2284 (setq dired-subdir-alist nil)
2285 (while (re-search-forward dired-subdir-regexp nil t)
2286 ;; Avoid taking a file name ending in a colon
2287 ;; as a subdir name.
2288 (unless (save-excursion
2289 (goto-char (match-beginning 0))
2290 (beginning-of-line)
2291 (forward-char 2)
2292 (save-match-data (looking-at dired-re-perms)))
2293 (save-excursion
2294 (goto-char (match-beginning 1))
2295 (setq new-dir-name
2296 (buffer-substring-no-properties (point) (match-end 1))
2297 new-dir-name
2298 (save-match-data
2299 (if (and R-ftp-base-dir-regex
2300 (not (string= new-dir-name default-directory))
2301 (string-match R-ftp-base-dir-regex new-dir-name))
2302 (concat default-directory
2303 (substring new-dir-name (match-end 0)))
2304 (expand-file-name new-dir-name))))
2305 (delete-region (point) (match-end 1))
2306 (insert new-dir-name))
2307 (setq count (1+ count))
2308 (dired-alist-add-1 new-dir-name
2309 ;; Place a sub directory boundary between lines.
2310 (save-excursion
2311 (goto-char (match-beginning 0))
2312 (beginning-of-line)
2313 (point-marker)))))
2314 (if (and (> count 1) (interactive-p))
2315 (message "Buffer includes %d directories" count)))
2316 ;; We don't need to sort it because it is in buffer order per
2317 ;; constructionem. Return new alist:
2318 dired-subdir-alist))
2319
2320 (defun dired-alist-add-1 (dir new-marker)
2321 ;; Add new DIR at NEW-MARKER. Don't sort.
2322 (setq dired-subdir-alist
2323 (cons (cons (dired-normalize-subdir dir) new-marker)
2324 dired-subdir-alist)))
2325
2326 (defun dired-goto-next-nontrivial-file ()
2327 ;; Position point on first nontrivial file after point.
2328 (dired-goto-next-file);; so there is a file to compare with
2329 (if (stringp dired-trivial-filenames)
2330 (while (and (not (eobp))
2331 (string-match dired-trivial-filenames
2332 (file-name-nondirectory
2333 (or (dired-get-filename nil t) ""))))
2334 (forward-line 1)
2335 (dired-move-to-filename))))
2336
2337 (defun dired-goto-next-file ()
2338 (let ((max (1- (dired-subdir-max))))
2339 (while (and (not (dired-move-to-filename)) (< (point) max))
2340 (forward-line 1))))
2341
2342 (defun dired-goto-file (file)
2343 "Go to line describing file FILE in this dired buffer."
2344 ;; Return value of point on success, else nil.
2345 ;; FILE must be an absolute file name.
2346 ;; Loses if FILE contains control chars like "\007" for which ls
2347 ;; either inserts "?" or "\\007" into the buffer, so we won't find
2348 ;; it in the buffer.
2349 (interactive
2350 (prog1 ; let push-mark display its message
2351 (list (expand-file-name
2352 (read-file-name "Goto file: "
2353 (dired-current-directory))))
2354 (push-mark)))
2355 (setq file (directory-file-name file)) ; does no harm if no directory
2356 (let (found case-fold-search dir)
2357 (setq dir (or (file-name-directory file)
2358 (error "File name `%s' is not absolute" file)))
2359 (save-excursion
2360 ;; The hair here is to get the result of dired-goto-subdir
2361 ;; without really calling it if we don't have any subdirs.
2362 (if (if (string= dir (expand-file-name default-directory))
2363 (goto-char (point-min))
2364 (and (cdr dired-subdir-alist)
2365 (dired-goto-subdir dir)))
2366 (let ((base (file-name-nondirectory file))
2367 search-string
2368 (boundary (dired-subdir-max)))
2369 (setq search-string
2370 (replace-regexp-in-string "\^m" "\\^m" base nil t))
2371 (setq search-string
2372 (replace-regexp-in-string "\\\\" "\\\\" search-string nil t))
2373 (while (and (not found)
2374 ;; filenames are preceded by SPC, this makes
2375 ;; the search faster (e.g. for the filename "-"!).
2376 (search-forward (concat " " search-string)
2377 boundary 'move))
2378 ;; Match could have BASE just as initial substring or
2379 ;; or in permission bits or date or
2380 ;; not be a proper filename at all:
2381 (if (equal base (dired-get-filename 'no-dir t))
2382 ;; Must move to filename since an (actually
2383 ;; correct) match could have been elsewhere on the
2384 ;; ;; line (e.g. "-" would match somewhere in the
2385 ;; permission bits).
2386 (setq found (dired-move-to-filename))
2387 ;; If this isn't the right line, move forward to avoid
2388 ;; trying this line again.
2389 (forward-line 1))))))
2390 (and found
2391 ;; return value of point (i.e., FOUND):
2392 (goto-char found))))
2393
2394 (defun dired-initial-position (dirname)
2395 ;; Where point should go in a new listing of DIRNAME.
2396 ;; Point assumed at beginning of new subdir line.
2397 ;; You may redefine this function as you wish, e.g. like in dired-x.el.
2398 (end-of-line)
2399 (if dired-trivial-filenames (dired-goto-next-nontrivial-file)))
2400 \f
2401 ;; These are hooks which make tree dired work.
2402 ;; They are in this file because other parts of dired need to call them.
2403 ;; But they don't call the rest of tree dired unless there are subdirs loaded.
2404
2405 ;; This function is called for each retrieved filename.
2406 ;; It could stand to be faster, though it's mostly function call
2407 ;; overhead. Avoiding the function call seems to save about 10% in
2408 ;; dired-get-filename. Make it a defsubst?
2409 (defun dired-current-directory (&optional localp)
2410 "Return the name of the subdirectory to which this line belongs.
2411 This returns a string with trailing slash, like `default-directory'.
2412 Optional argument means return a file name relative to `default-directory'."
2413 (let ((here (point))
2414 (alist (or dired-subdir-alist
2415 ;; probably because called in a non-dired buffer
2416 (error "No subdir-alist in %s" (current-buffer))))
2417 elt dir)
2418 (while alist
2419 (setq elt (car alist)
2420 dir (car elt)
2421 ;; use `<=' (not `<') as subdir line is part of subdir
2422 alist (if (<= (dired-get-subdir-min elt) here)
2423 nil ; found
2424 (cdr alist))))
2425 (if localp
2426 (dired-make-relative dir default-directory)
2427 dir)))
2428
2429 ;; Subdirs start at the beginning of their header lines and end just
2430 ;; before the beginning of the next header line (or end of buffer).
2431
2432 (defun dired-subdir-max ()
2433 (save-excursion
2434 (if (or (null (cdr dired-subdir-alist)) (not (dired-next-subdir 1 t t)))
2435 (point-max)
2436 (point))))
2437 \f
2438 ;; Deleting files
2439
2440 (defcustom dired-recursive-deletes 'top
2441 "*Decide whether recursive deletes are allowed.
2442 A value of nil means no recursive deletes.
2443 `always' means delete recursively without asking. This is DANGEROUS!
2444 `top' means ask for each directory at top level, but delete its subdirectories
2445 without asking.
2446 Anything else means ask for each directory."
2447 :type '(choice :tag "Delete non-empty directories"
2448 (const :tag "Yes" always)
2449 (const :tag "No--only delete empty directories" nil)
2450 (const :tag "Confirm for each directory" t)
2451 (const :tag "Confirm for each top directory only" top))
2452 :group 'dired)
2453
2454 ;; Match anything but `.' and `..'.
2455 (defvar dired-re-no-dot "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*")
2456
2457 ;; Delete file, possibly delete a directory and all its files.
2458 ;; This function is usefull outside of dired. One could change it's name
2459 ;; to e.g. recursive-delete-file and put it somewhere else.
2460 (defun dired-delete-file (file &optional recursive) "\
2461 Delete FILE or directory (possibly recursively if optional RECURSIVE is true.)
2462 RECURSIVE determines what to do with a non-empty directory. If RECURSIVE is:
2463 nil, do not delete.
2464 `always', delete recursively without asking.
2465 `top', ask for each directory at top level.
2466 Anything else, ask for each sub-directory."
2467 (let (files)
2468 ;; This test is equivalent to
2469 ;; (and (file-directory-p fn) (not (file-symlink-p fn)))
2470 ;; but more efficient
2471 (if (not (eq t (car (file-attributes file))))
2472 (delete-file file)
2473 (when (and recursive
2474 (setq files
2475 (directory-files file t dired-re-no-dot)) ; Not empty.
2476 (or (eq recursive 'always)
2477 (yes-or-no-p (format "Recursive delete of %s? "
2478 (dired-make-relative file)))))
2479 (if (eq recursive 'top) (setq recursive 'always)) ; Don't ask again.
2480 (while files ; Recursively delete (possibly asking).
2481 (dired-delete-file (car files) recursive)
2482 (setq files (cdr files))))
2483 (delete-directory file))))
2484
2485 (defun dired-do-flagged-delete (&optional nomessage)
2486 "In Dired, delete the files flagged for deletion.
2487 If NOMESSAGE is non-nil, we don't display any message
2488 if there are no flagged files.
2489 `dired-recursive-deletes' controls whether deletion of
2490 non-empty directories is allowed."
2491 (interactive)
2492 (let* ((dired-marker-char dired-del-marker)
2493 (regexp (dired-marker-regexp))
2494 case-fold-search)
2495 (if (save-excursion (goto-char (point-min))
2496 (re-search-forward regexp nil t))
2497 (dired-internal-do-deletions
2498 ;; this can't move point since ARG is nil
2499 (dired-map-over-marks (cons (dired-get-filename) (point))
2500 nil)
2501 nil)
2502 (or nomessage
2503 (message "(No deletions requested)")))))
2504
2505 (defun dired-do-delete (&optional arg)
2506 "Delete all marked (or next ARG) files.
2507 `dired-recursive-deletes' controls whether deletion of
2508 non-empty directories is allowed."
2509 ;; This is more consistent with the file marking feature than
2510 ;; dired-do-flagged-delete.
2511 (interactive "P")
2512 (dired-internal-do-deletions
2513 ;; this may move point if ARG is an integer
2514 (dired-map-over-marks (cons (dired-get-filename) (point))
2515 arg)
2516 arg))
2517
2518 (defvar dired-deletion-confirmer 'yes-or-no-p) ; or y-or-n-p?
2519
2520 (defun dired-internal-do-deletions (l arg)
2521 ;; L is an alist of files to delete, with their buffer positions.
2522 ;; ARG is the prefix arg.
2523 ;; Filenames are absolute (VMS needs this for logical search paths).
2524 ;; (car L) *must* be the *last* (bottommost) file in the dired buffer.
2525 ;; That way as changes are made in the buffer they do not shift the
2526 ;; lines still to be changed, so the (point) values in L stay valid.
2527 ;; Also, for subdirs in natural order, a subdir's files are deleted
2528 ;; before the subdir itself - the other way around would not work.
2529 (let ((files (mapcar (function car) l))
2530 (count (length l))
2531 (succ 0))
2532 ;; canonicalize file list for pop up
2533 (setq files (nreverse (mapcar (function dired-make-relative) files)))
2534 (if (dired-mark-pop-up
2535 " *Deletions*" 'delete files dired-deletion-confirmer
2536 (format "Delete %s " (dired-mark-prompt arg files)))
2537 (save-excursion
2538 (let (failures);; files better be in reverse order for this loop!
2539 (while l
2540 (goto-char (cdr (car l)))
2541 (let (buffer-read-only)
2542 (condition-case err
2543 (let ((fn (car (car l))))
2544 (dired-delete-file fn dired-recursive-deletes)
2545 ;; if we get here, removing worked
2546 (setq succ (1+ succ))
2547 (message "%s of %s deletions" succ count)
2548 (dired-fun-in-all-buffers
2549 (file-name-directory fn) (file-name-nondirectory fn)
2550 (function dired-delete-entry) fn))
2551 (error;; catch errors from failed deletions
2552 (dired-log "%s\n" err)
2553 (setq failures (cons (car (car l)) failures)))))
2554 (setq l (cdr l)))
2555 (if (not failures)
2556 (message "%d deletion%s done" count (dired-plural-s count))
2557 (dired-log-summary
2558 (format "%d of %d deletion%s failed"
2559 (length failures) count
2560 (dired-plural-s count))
2561 failures))))
2562 (message "(No deletions performed)")))
2563 (dired-move-to-filename))
2564
2565 (defun dired-fun-in-all-buffers (directory file fun &rest args)
2566 ;; In all buffers dired'ing DIRECTORY, run FUN with ARGS.
2567 ;; If the buffer has a wildcard pattern, check that it matches FILE.
2568 ;; (FILE does not include a directory component.)
2569 ;; FILE may be nil, in which case ignore it.
2570 ;; Return list of buffers where FUN succeeded (i.e., returned non-nil).
2571 (let (success-list)
2572 (dolist (buf (dired-buffers-for-dir (expand-file-name directory)
2573 file))
2574 (with-current-buffer buf
2575 (if (apply fun args)
2576 (setq success-list (cons (buffer-name buf) success-list)))))
2577 success-list))
2578
2579 ;; Delete the entry for FILE from
2580 (defun dired-delete-entry (file)
2581 (save-excursion
2582 (and (dired-goto-file file)
2583 (let (buffer-read-only)
2584 (delete-region (progn (beginning-of-line) (point))
2585 (save-excursion (forward-line 1) (point))))))
2586 (dired-clean-up-after-deletion file))
2587
2588 ;; This is a separate function for the sake of dired-x.el.
2589 (defun dired-clean-up-after-deletion (fn)
2590 ;; Clean up after a deleted file or directory FN.
2591 (save-excursion (and (cdr dired-subdir-alist)
2592 (dired-goto-subdir fn)
2593 (dired-kill-subdir))))
2594 \f
2595 ;; Confirmation
2596
2597 (defun dired-marker-regexp ()
2598 (concat "^" (regexp-quote (char-to-string dired-marker-char))))
2599
2600 (defun dired-plural-s (count)
2601 (if (= 1 count) "" "s"))
2602
2603 (defun dired-mark-prompt (arg files)
2604 "Return a string for use in a prompt, either the current file
2605 name, or the marker and a count of marked files."
2606 ;; distinguish-one-marked can cause the first element to be just t.
2607 (if (eq (car files) t) (setq files (cdr files)))
2608 (let ((count (length files)))
2609 (if (= count 1)
2610 (car files)
2611 ;; more than 1 file:
2612 (if (integerp arg)
2613 ;; abs(arg) = count
2614 ;; Perhaps this is nicer, but it also takes more screen space:
2615 ;;(format "[%s %d files]" (if (> arg 0) "next" "previous")
2616 ;; count)
2617 (format "[next %d files]" arg)
2618 (format "%c [%d files]" dired-marker-char count)))))
2619
2620 (defun dired-pop-to-buffer (buf)
2621 ;; Pop up buffer BUF.
2622 ;; If dired-shrink-to-fit is t, make its window fit its contents.
2623 (if (not dired-shrink-to-fit)
2624 (pop-to-buffer (get-buffer-create buf))
2625 ;; let window shrink to fit:
2626 (let ((window (selected-window))
2627 target-lines w2)
2628 (cond ;; if split-height-threshold is enabled, use the largest window
2629 ((and (> (window-height (setq w2 (get-largest-window)))
2630 split-height-threshold)
2631 (window-full-width-p w2))
2632 (setq window w2))
2633 ;; if the least-recently-used window is big enough, use it
2634 ((and (> (window-height (setq w2 (get-lru-window)))
2635 (* 2 window-min-height))
2636 (window-full-width-p w2))
2637 (setq window w2)))
2638 (save-excursion
2639 (set-buffer buf)
2640 (goto-char (point-max))
2641 (skip-chars-backward "\n\r\t ")
2642 (setq target-lines (count-lines (point-min) (point)))
2643 ;; Don't forget to count the last line.
2644 (if (not (bolp))
2645 (setq target-lines (1+ target-lines))))
2646 (if (<= (window-height window) (* 2 window-min-height))
2647 ;; At this point, every window on the frame is too small to split.
2648 (setq w2 (display-buffer buf))
2649 (setq w2 (split-window window
2650 (max window-min-height
2651 (- (window-height window)
2652 (1+ (max window-min-height target-lines)))))))
2653 (set-window-buffer w2 buf)
2654 (if (< (1- (window-height w2)) target-lines)
2655 (progn
2656 (select-window w2)
2657 (enlarge-window (- target-lines (1- (window-height w2))))))
2658 (set-window-start w2 1)
2659 )))
2660
2661 (defcustom dired-no-confirm nil
2662 "A list of symbols for commands Dired should not confirm.
2663 Command symbols are `byte-compile', `chgrp', `chmod', `chown', `compress',
2664 `copy', `delete', `hardlink', `load', `move', `print', `shell', `symlink',
2665 `touch' and `uncompress'."
2666 :group 'dired
2667 :type '(set (const byte-compile) (const chgrp)
2668 (const chmod) (const chown) (const compress)
2669 (const copy) (const delete) (const hardlink)
2670 (const load) (const move) (const print)
2671 (const shell) (const symlink) (const touch)
2672 (const uncompress)))
2673
2674 (defun dired-mark-pop-up (bufname op-symbol files function &rest args)
2675 "Return FUNCTION's result on ARGS after showing which files are marked.
2676 Displays the file names in a buffer named BUFNAME;
2677 nil gives \" *Marked Files*\".
2678 This uses function `dired-pop-to-buffer' to do that.
2679
2680 FUNCTION should not manipulate files, just read input
2681 (an argument or confirmation).
2682 The window is not shown if there is just one file or
2683 OP-SYMBOL is a member of the list in `dired-no-confirm'.
2684 FILES is the list of marked files. It can also be (t FILENAME)
2685 in the case of one marked file, to distinguish that from using
2686 just the current file."
2687 (or bufname (setq bufname " *Marked Files*"))
2688 (if (or (eq dired-no-confirm t)
2689 (memq op-symbol dired-no-confirm)
2690 ;; If FILES defaulted to the current line's file.
2691 (= (length files) 1))
2692 (apply function args)
2693 (with-current-buffer (get-buffer-create bufname)
2694 (erase-buffer)
2695 ;; Handle (t FILE) just like (FILE), here.
2696 ;; That value is used (only in some cases), to mean
2697 ;; just one file that was marked, rather than the current line file.
2698 (dired-format-columns-of-files (if (eq (car files) t) (cdr files) files))
2699 (remove-text-properties (point-min) (point-max)
2700 '(mouse-face nil help-echo nil)))
2701 (save-window-excursion
2702 (dired-pop-to-buffer bufname)
2703 (apply function args))))
2704
2705 (defun dired-format-columns-of-files (files)
2706 ;; Files should be in forward order for this loop.
2707 ;; i.e., (car files) = first file in buffer.
2708 ;; Returns the number of lines used.
2709 (let* ((maxlen (+ 2 (apply 'max (mapcar 'length files))))
2710 (width (- (window-width (selected-window)) 2))
2711 (columns (max 1 (/ width maxlen)))
2712 (nfiles (length files))
2713 (rows (+ (/ nfiles columns)
2714 (if (zerop (% nfiles columns)) 0 1)))
2715 (i 0)
2716 (j 0))
2717 (setq files (nconc (copy-sequence files) ; fill up with empty fns
2718 (make-list (- (* columns rows) nfiles) "")))
2719 (setcdr (nthcdr (1- (length files)) files) files) ; make circular
2720 (while (< j rows)
2721 (while (< i columns)
2722 (indent-to (* i maxlen))
2723 (insert (car files))
2724 (setq files (nthcdr rows files)
2725 i (1+ i)))
2726 (insert "\n")
2727 (setq i 0
2728 j (1+ j)
2729 files (cdr files)))
2730 rows))
2731 \f
2732 ;; Commands to mark or flag file(s) at or near current line.
2733
2734 (defun dired-repeat-over-lines (arg function)
2735 ;; This version skips non-file lines.
2736 (let ((pos (make-marker)))
2737 (beginning-of-line)
2738 (while (and (> arg 0) (not (eobp)))
2739 (setq arg (1- arg))
2740 (beginning-of-line)
2741 (while (and (not (eobp)) (dired-between-files)) (forward-line 1))
2742 (save-excursion
2743 (forward-line 1)
2744 (move-marker pos (1+ (point))))
2745 (save-excursion (funcall function))
2746 ;; Advance to the next line--actually, to the line that *was* next.
2747 ;; (If FUNCTION inserted some new lines in between, skip them.)
2748 (goto-char pos))
2749 (while (and (< arg 0) (not (bobp)))
2750 (setq arg (1+ arg))
2751 (forward-line -1)
2752 (while (and (not (bobp)) (dired-between-files)) (forward-line -1))
2753 (beginning-of-line)
2754 (save-excursion (funcall function)))
2755 (move-marker pos nil)
2756 (dired-move-to-filename)))
2757
2758 (defun dired-between-files ()
2759 ;; This used to be a regexp match of the `total ...' line output by
2760 ;; ls, which is slightly faster, but that is not very robust; notably,
2761 ;; it fails for non-english locales.
2762 (save-excursion (not (dired-move-to-filename))))
2763
2764 (defun dired-next-marked-file (arg &optional wrap opoint)
2765 "Move to the next marked file, wrapping around the end of the buffer."
2766 (interactive "p\np")
2767 (or opoint (setq opoint (point)));; return to where interactively started
2768 (if (if (> arg 0)
2769 (re-search-forward dired-re-mark nil t arg)
2770 (beginning-of-line)
2771 (re-search-backward dired-re-mark nil t (- arg)))
2772 (dired-move-to-filename)
2773 (if (null wrap)
2774 (progn
2775 (goto-char opoint)
2776 (error "No next marked file"))
2777 (message "(Wraparound for next marked file)")
2778 (goto-char (if (> arg 0) (point-min) (point-max)))
2779 (dired-next-marked-file arg nil opoint))))
2780
2781 (defun dired-prev-marked-file (arg &optional wrap)
2782 "Move to the previous marked file, wrapping around the end of the buffer."
2783 (interactive "p\np")
2784 (dired-next-marked-file (- arg) wrap))
2785
2786 (defun dired-file-marker (file)
2787 ;; Return FILE's marker, or nil if unmarked.
2788 (save-excursion
2789 (and (dired-goto-file file)
2790 (progn
2791 (beginning-of-line)
2792 (if (not (equal ?\040 (following-char)))
2793 (following-char))))))
2794
2795 (defun dired-mark-files-in-region (start end)
2796 (let (buffer-read-only)
2797 (if (> start end)
2798 (error "start > end"))
2799 (goto-char start) ; assumed at beginning of line
2800 (while (< (point) end)
2801 ;; Skip subdir line and following garbage like the `total' line:
2802 (while (and (< (point) end) (dired-between-files))
2803 (forward-line 1))
2804 (if (and (not (looking-at dired-re-dot))
2805 (dired-get-filename nil t))
2806 (progn
2807 (delete-char 1)
2808 (insert dired-marker-char)))
2809 (forward-line 1))))
2810
2811 (defun dired-mark (arg)
2812 "Mark the current (or next ARG) files.
2813 If on a subdir headerline, mark all its files except `.' and `..'.
2814
2815 Use \\[dired-unmark-all-files] to remove all marks
2816 and \\[dired-unmark] on a subdir to remove the marks in
2817 this subdir."
2818 (interactive "P")
2819 (if (dired-get-subdir)
2820 (save-excursion (dired-mark-subdir-files))
2821 (let (buffer-read-only)
2822 (dired-repeat-over-lines
2823 (prefix-numeric-value arg)
2824 (function (lambda () (delete-char 1) (insert dired-marker-char)))))))
2825
2826 (defun dired-unmark (arg)
2827 "Unmark the current (or next ARG) files.
2828 If looking at a subdir, unmark all its files except `.' and `..'."
2829 (interactive "P")
2830 (let ((dired-marker-char ?\040))
2831 (dired-mark arg)))
2832
2833 (defun dired-flag-file-deletion (arg)
2834 "In Dired, flag the current line's file for deletion.
2835 With prefix arg, repeat over several lines.
2836
2837 If on a subdir headerline, mark all its files except `.' and `..'."
2838 (interactive "P")
2839 (let ((dired-marker-char dired-del-marker))
2840 (dired-mark arg)))
2841
2842 (defun dired-unmark-backward (arg)
2843 "In Dired, move up lines and remove deletion flag there.
2844 Optional prefix ARG says how many lines to unflag; default is one line."
2845 (interactive "p")
2846 (dired-unmark (- arg)))
2847
2848 (defun dired-toggle-marks ()
2849 "Toggle marks: marked files become unmarked, and vice versa.
2850 Files marked with other flags (such as `D') are not affected.
2851 `.' and `..' are never toggled.
2852 As always, hidden subdirs are not affected."
2853 (interactive)
2854 (save-excursion
2855 (goto-char (point-min))
2856 (let (buffer-read-only)
2857 (while (not (eobp))
2858 (or (dired-between-files)
2859 (looking-at dired-re-dot)
2860 ;; use subst instead of insdel because it does not move
2861 ;; the gap and thus should be faster and because
2862 ;; other characters are left alone automatically
2863 (apply 'subst-char-in-region
2864 (point) (1+ (point))
2865 (if (eq ?\040 (following-char)) ; SPC
2866 (list ?\040 dired-marker-char)
2867 (list dired-marker-char ?\040))))
2868 (forward-line 1)))))
2869 \f
2870 ;;; Commands to mark or flag files based on their characteristics or names.
2871
2872 (defvar dired-regexp-history nil
2873 "History list of regular expressions used in Dired commands.")
2874
2875 (defun dired-read-regexp (prompt)
2876 (read-from-minibuffer prompt nil nil nil 'dired-regexp-history))
2877
2878 (defun dired-mark-files-regexp (regexp &optional marker-char)
2879 "Mark all files matching REGEXP for use in later commands.
2880 A prefix argument means to unmark them instead.
2881 `.' and `..' are never marked.
2882
2883 REGEXP is an Emacs regexp, not a shell wildcard. Thus, use `\\.o$' for
2884 object files--just `.o' will mark more than you might think."
2885 (interactive
2886 (list (dired-read-regexp (concat (if current-prefix-arg "Unmark" "Mark")
2887 " files (regexp): "))
2888 (if current-prefix-arg ?\040)))
2889 (let ((dired-marker-char (or marker-char dired-marker-char)))
2890 (dired-mark-if
2891 (and (not (looking-at dired-re-dot))
2892 (not (eolp)) ; empty line
2893 (let ((fn (dired-get-filename nil t)))
2894 (and fn (string-match regexp (file-name-nondirectory fn)))))
2895 "matching file")))
2896
2897 (defun dired-mark-files-containing-regexp (regexp &optional marker-char)
2898 "Mark all files with contents containing REGEXP for use in later commands.
2899 A prefix argument means to unmark them instead.
2900 `.' and `..' are never marked."
2901 (interactive
2902 (list (dired-read-regexp (concat (if current-prefix-arg "Unmark" "Mark")
2903 " files containing (regexp): "))
2904 (if current-prefix-arg ?\040)))
2905 (let ((dired-marker-char (or marker-char dired-marker-char)))
2906 (dired-mark-if
2907 (and (not (looking-at dired-re-dot))
2908 (not (eolp)) ; empty line
2909 (let ((fn (dired-get-filename nil t)))
2910 (when (and fn (file-readable-p fn)
2911 (not (file-directory-p fn)))
2912 (let ((prebuf (get-file-buffer fn)))
2913 (message "Checking %s" fn)
2914 ;; For now we do it inside emacs
2915 ;; Grep might be better if there are a lot of files
2916 (if prebuf
2917 (with-current-buffer prebuf
2918 (save-excursion
2919 (goto-char (point-min))
2920 (re-search-forward regexp nil t)))
2921 (with-temp-buffer
2922 (insert-file-contents fn)
2923 (goto-char (point-min))
2924 (re-search-forward regexp nil t))))
2925 )))
2926 "matching file")))
2927
2928 (defun dired-flag-files-regexp (regexp)
2929 "In Dired, flag all files containing the specified REGEXP for deletion.
2930 The match is against the non-directory part of the filename. Use `^'
2931 and `$' to anchor matches. Exclude subdirs by hiding them.
2932 `.' and `..' are never flagged."
2933 (interactive (list (dired-read-regexp "Flag for deletion (regexp): ")))
2934 (dired-mark-files-regexp regexp dired-del-marker))
2935
2936 (defun dired-mark-symlinks (unflag-p)
2937 "Mark all symbolic links.
2938 With prefix argument, unflag all those files."
2939 (interactive "P")
2940 (let ((dired-marker-char (if unflag-p ?\040 dired-marker-char)))
2941 (dired-mark-if (looking-at dired-re-sym) "symbolic link")))
2942
2943 (defun dired-mark-directories (unflag-p)
2944 "Mark all directory file lines except `.' and `..'.
2945 With prefix argument, unflag all those files."
2946 (interactive "P")
2947 (let ((dired-marker-char (if unflag-p ?\040 dired-marker-char)))
2948 (dired-mark-if (and (looking-at dired-re-dir)
2949 (not (looking-at dired-re-dot)))
2950 "directory file")))
2951
2952 (defun dired-mark-executables (unflag-p)
2953 "Mark all executable files.
2954 With prefix argument, unflag all those files."
2955 (interactive "P")
2956 (let ((dired-marker-char (if unflag-p ?\040 dired-marker-char)))
2957 (dired-mark-if (looking-at dired-re-exe) "executable file")))
2958
2959 ;; dired-x.el has a dired-mark-sexp interactive command: mark
2960 ;; files for which PREDICATE returns non-nil.
2961
2962 (defun dired-flag-auto-save-files (&optional unflag-p)
2963 "Flag for deletion files whose names suggest they are auto save files.
2964 A prefix argument says to unflag those files instead."
2965 (interactive "P")
2966 (let ((dired-marker-char (if unflag-p ?\040 dired-del-marker)))
2967 (dired-mark-if
2968 ;; It is less than general to check for # here,
2969 ;; but it's the only way this runs fast enough.
2970 (and (save-excursion (end-of-line)
2971 (or
2972 (eq (preceding-char) ?#)
2973 ;; Handle executables in case of -F option.
2974 ;; We need not worry about the other kinds
2975 ;; of markings that -F makes, since they won't
2976 ;; appear on real auto-save files.
2977 (if (eq (preceding-char) ?*)
2978 (progn
2979 (forward-char -1)
2980 (eq (preceding-char) ?#)))))
2981 (not (looking-at dired-re-dir))
2982 (let ((fn (dired-get-filename t t)))
2983 (if fn (auto-save-file-name-p
2984 (file-name-nondirectory fn)))))
2985 "auto save file")))
2986
2987 (defcustom dired-garbage-files-regexp
2988 ;; `log' here is dubious, since it's typically used for useful log
2989 ;; files, not just TeX stuff. -- fx
2990 (concat (regexp-opt
2991 '(".log" ".toc" ".dvi" ".bak" ".orig" ".rej" ".aux"))
2992 "\\'")
2993 "Regular expression to match \"garbage\" files for `dired-flag-garbage-files'."
2994 :type 'regexp
2995 :group 'dired)
2996
2997 (defun dired-flag-garbage-files ()
2998 "Flag for deletion all files that match `dired-garbage-files-regexp'."
2999 (interactive)
3000 (dired-flag-files-regexp dired-garbage-files-regexp))
3001
3002 (defun dired-flag-backup-files (&optional unflag-p)
3003 "Flag all backup files (names ending with `~') for deletion.
3004 With prefix argument, unflag these files."
3005 (interactive "P")
3006 (let ((dired-marker-char (if unflag-p ?\s dired-del-marker)))
3007 (dired-mark-if
3008 ;; Don't call backup-file-name-p unless the last character looks like
3009 ;; it might be the end of a backup file name. This isn't very general,
3010 ;; but it's the only way this runs fast enough.
3011 (and (save-excursion (end-of-line)
3012 ;; Handle executables in case of -F option.
3013 ;; We need not worry about the other kinds
3014 ;; of markings that -F makes, since they won't
3015 ;; appear on real backup files.
3016 (if (eq (preceding-char) ?*)
3017 (forward-char -1))
3018 (eq (preceding-char) ?~))
3019 (not (looking-at dired-re-dir))
3020 (let ((fn (dired-get-filename t t)))
3021 (if fn (backup-file-name-p fn))))
3022 "backup file")))
3023
3024 (defun dired-change-marks (&optional old new)
3025 "Change all OLD marks to NEW marks.
3026 OLD and NEW are both characters used to mark files."
3027 (interactive
3028 (let* ((cursor-in-echo-area t)
3029 (old (progn (message "Change (old mark): ") (read-char)))
3030 (new (progn (message "Change %c marks to (new mark): " old)
3031 (read-char))))
3032 (list old new)))
3033 (if (or (eq old ?\r) (eq new ?\r))
3034 (ding)
3035 (let ((string (format "\n%c" old))
3036 (buffer-read-only))
3037 (save-excursion
3038 (goto-char (point-min))
3039 (while (search-forward string nil t)
3040 (if (if (= old ?\s)
3041 (save-match-data
3042 (dired-get-filename 'no-dir t))
3043 t)
3044 (subst-char-in-region (match-beginning 0)
3045 (match-end 0) old new)))))))
3046
3047 (defun dired-unmark-all-marks ()
3048 "Remove all marks from all files in the dired buffer."
3049 (interactive)
3050 (dired-unmark-all-files ?\r))
3051
3052 (defun dired-unmark-all-files (mark &optional arg)
3053 "Remove a specific mark (or any mark) from every file.
3054 After this command, type the mark character to remove,
3055 or type RET to remove all marks.
3056 With prefix arg, query for each marked file.
3057 Type \\[help-command] at that time for help."
3058 (interactive "cRemove marks (RET means all): \nP")
3059 (save-excursion
3060 (let* ((count 0)
3061 buffer-read-only case-fold-search query
3062 (string (format "\n%c" mark))
3063 (help-form "\
3064 Type SPC or `y' to unmark one file, DEL or `n' to skip to next,
3065 `!' to unmark all remaining files with no more questions."))
3066 (goto-char (point-min))
3067 (while (if (eq mark ?\r)
3068 (re-search-forward dired-re-mark nil t)
3069 (search-forward string nil t))
3070 (if (or (not arg)
3071 (let ((file (dired-get-filename t t)))
3072 (and file
3073 (dired-query 'query "Unmark file `%s'? "
3074 file))))
3075 (progn (subst-char-in-region (1- (point)) (point)
3076 (preceding-char) ?\s)
3077 (setq count (1+ count)))))
3078 (message (if (= count 1) "1 mark removed"
3079 "%d marks removed")
3080 count))))
3081 \f
3082 ;; Logging failures operating on files, and showing the results.
3083
3084 (defvar dired-log-buffer "*Dired log*")
3085
3086 (defun dired-why ()
3087 "Pop up a buffer with error log output from Dired.
3088 A group of errors from a single command ends with a formfeed.
3089 Thus, use \\[backward-page] to find the beginning of a group of errors."
3090 (interactive)
3091 (if (get-buffer dired-log-buffer)
3092 (let ((owindow (selected-window))
3093 (window (display-buffer (get-buffer dired-log-buffer))))
3094 (unwind-protect
3095 (progn
3096 (select-window window)
3097 (goto-char (point-max))
3098 (forward-line -1)
3099 (backward-page 1)
3100 (recenter 0))
3101 (select-window owindow)))))
3102
3103 (defun dired-log (log &rest args)
3104 ;; Log a message or the contents of a buffer.
3105 ;; If LOG is a string and there are more args, it is formatted with
3106 ;; those ARGS. Usually the LOG string ends with a \n.
3107 ;; End each bunch of errors with (dired-log t):
3108 ;; this inserts the current time and buffer at the start of the page,
3109 ;; and \f (formfeed) at the end.
3110 (let ((obuf (current-buffer)))
3111 (with-current-buffer (get-buffer-create dired-log-buffer)
3112 (goto-char (point-max))
3113 (let ((inhibit-read-only t))
3114 (cond ((stringp log)
3115 (insert (if args
3116 (apply (function format) log args)
3117 log)))
3118 ((bufferp log)
3119 (insert-buffer-substring log))
3120 ((eq t log)
3121 (backward-page 1)
3122 (unless (bolp)
3123 (insert "\n"))
3124 (insert (current-time-string)
3125 "\tBuffer `" (buffer-name obuf) "'\n")
3126 (goto-char (point-max))
3127 (insert "\f\n")))))))
3128
3129 (defun dired-log-summary (string failures)
3130 "State a summary of a command's failures, in echo area and log buffer.
3131 STRING is an overall summary of the failures.
3132 FAILURES is a list of file names that we failed to operate on,
3133 or nil if file names are not applicable."
3134 (if (= (length failures) 1)
3135 (message "%s"
3136 (with-current-buffer dired-log-buffer
3137 (goto-char (point-max))
3138 (backward-page 1)
3139 (if (eolp) (forward-line 1))
3140 (buffer-substring (point) (point-max))))
3141 (message (if failures "%s--type ? for details (%s)"
3142 "%s--type ? for details")
3143 string failures))
3144 ;; Log a summary describing a bunch of errors.
3145 (dired-log (concat "\n" string "\n"))
3146 (dired-log t))
3147 \f
3148 ;;; Sorting
3149
3150 ;; Most ls can only sort by name or by date (with -t), nothing else.
3151 ;; GNU ls sorts on size with -S, on extension with -X, and unsorted with -U.
3152 ;; So anything that does not contain these is sort "by name".
3153
3154 (defvar dired-ls-sorting-switches "SXU"
3155 "String of `ls' switches \(single letters\) except \"t\" that influence sorting.
3156
3157 This indicates to Dired which option switches to watch out for because they
3158 will change the sorting order behavior of `ls'.
3159
3160 To change the default sorting order \(e.g. add a `-v' option\), see the
3161 variable `dired-listing-switches'. To temporarily override the listing
3162 format, use `\\[universal-argument] \\[dired]'.")
3163
3164 (defvar dired-sort-by-date-regexp
3165 (concat "^-[^" dired-ls-sorting-switches
3166 "]*t[^" dired-ls-sorting-switches "]*$")
3167 "Regexp recognized by Dired to set `by date' mode.")
3168
3169 (defvar dired-sort-by-name-regexp
3170 (concat "^-[^t" dired-ls-sorting-switches "]+$")
3171 "Regexp recognized by Dired to set `by name' mode.")
3172
3173 (defvar dired-sort-inhibit nil
3174 "Non-nil means the Dired sort command is disabled.
3175 The idea is to set this buffer-locally in special dired buffers.")
3176
3177 (defun dired-sort-set-modeline ()
3178 ;; Set modeline display according to dired-actual-switches.
3179 ;; Modeline display of "by name" or "by date" guarantees the user a
3180 ;; match with the corresponding regexps. Non-matching switches are
3181 ;; shown literally.
3182 (when (eq major-mode 'dired-mode)
3183 (setq mode-name
3184 (let (case-fold-search)
3185 (cond ((string-match
3186 dired-sort-by-name-regexp dired-actual-switches)
3187 "Dired by name")
3188 ((string-match
3189 dired-sort-by-date-regexp dired-actual-switches)
3190 "Dired by date")
3191 (t
3192 (concat "Dired " dired-actual-switches)))))
3193 (force-mode-line-update)))
3194
3195 (defun dired-sort-toggle-or-edit (&optional arg)
3196 "Toggle between sort by date/name and refresh the dired buffer.
3197 With a prefix argument you can edit the current listing switches instead."
3198 (interactive "P")
3199 (when dired-sort-inhibit
3200 (error "Cannot sort this dired buffer"))
3201 (if arg
3202 (dired-sort-other
3203 (read-string "ls switches (must contain -l): " dired-actual-switches))
3204 (dired-sort-toggle)))
3205
3206 (defun dired-sort-toggle ()
3207 ;; Toggle between sort by date/name. Reverts the buffer.
3208 (setq dired-actual-switches
3209 (let (case-fold-search)
3210 (if (string-match " " dired-actual-switches)
3211 ;; New toggle scheme: add/remove a trailing " -t"
3212 (if (string-match " -t\\'" dired-actual-switches)
3213 (substring dired-actual-switches 0 (match-beginning 0))
3214 (concat dired-actual-switches " -t"))
3215 ;; old toggle scheme: look for some 't' switch and add/remove it
3216 (concat
3217 "-l"
3218 (dired-replace-in-string (concat "[-lt"
3219 dired-ls-sorting-switches "]")
3220 ""
3221 dired-actual-switches)
3222 (if (string-match (concat "[t" dired-ls-sorting-switches "]")
3223 dired-actual-switches)
3224 ""
3225 "t")))))
3226 (dired-sort-set-modeline)
3227 (revert-buffer))
3228
3229 ;; Some user code loads dired especially for this.
3230 ;; Don't do that--use replace-regexp-in-string instead.
3231 (defun dired-replace-in-string (regexp newtext string)
3232 ;; Replace REGEXP with NEWTEXT everywhere in STRING and return result.
3233 ;; NEWTEXT is taken literally---no \\DIGIT escapes will be recognized.
3234 (let ((result "") (start 0) mb me)
3235 (while (string-match regexp string start)
3236 (setq mb (match-beginning 0)
3237 me (match-end 0)
3238 result (concat result (substring string start mb) newtext)
3239 start me))
3240 (concat result (substring string start))))
3241
3242 (defun dired-sort-other (switches &optional no-revert)
3243 "Specify new `ls' SWITCHES for current dired buffer.
3244 Values matching `dired-sort-by-date-regexp' or `dired-sort-by-name-regexp'
3245 set the minor mode accordingly, others appear literally in the mode line.
3246 With optional second arg NO-REVERT, don't refresh the listing afterwards."
3247 (dired-sort-R-check switches)
3248 (setq dired-actual-switches switches)
3249 (dired-sort-set-modeline)
3250 (or no-revert (revert-buffer)))
3251
3252 (defvar dired-subdir-alist-pre-R nil
3253 "Value of `dired-subdir-alist' before -R switch added.")
3254 (make-variable-buffer-local 'dired-subdir-alist-pre-R)
3255
3256 (defun dired-sort-R-check (switches)
3257 "Additional processing of -R in ls option string SWITCHES.
3258 Saves `dired-subdir-alist' when R is set and restores saved value
3259 minus any directories explicitly deleted when R is cleared.
3260 To be called first in body of `dired-sort-other', etc."
3261 (cond
3262 ((and (string-match "R" switches)
3263 (not (string-match "R" dired-actual-switches)))
3264 ;; Adding -R to ls switches -- save `dired-subdir-alist':
3265 (setq dired-subdir-alist-pre-R dired-subdir-alist))
3266 ((and (string-match "R" dired-actual-switches)
3267 (not (string-match "R" switches)))
3268 ;; Deleting -R from ls switches -- revert to pre-R subdirs
3269 ;; that are still present:
3270 (setq dired-subdir-alist
3271 (if dired-subdir-alist-pre-R
3272 (let (subdirs)
3273 (while dired-subdir-alist-pre-R
3274 (if (assoc (caar dired-subdir-alist-pre-R)
3275 dired-subdir-alist)
3276 ;; subdir still present...
3277 (setq subdirs
3278 (cons (car dired-subdir-alist-pre-R)
3279 subdirs)))
3280 (setq dired-subdir-alist-pre-R
3281 (cdr dired-subdir-alist-pre-R)))
3282 (reverse subdirs))
3283 ;; No pre-R subdir alist, so revert to main directory
3284 ;; listing:
3285 (list (car (reverse dired-subdir-alist))))))))
3286 \f
3287
3288 ;;;; Drag and drop support
3289
3290 (defcustom dired-recursive-copies 'top
3291 "*Decide whether recursive copies are allowed.
3292 A value of nil means no recursive copies.
3293 `always' means copy recursively without asking.
3294 `top' means ask for each directory at top level.
3295 Anything else means ask for each directory."
3296 :type '(choice :tag "Copy directories"
3297 (const :tag "No recursive copies" nil)
3298 (const :tag "Ask for each directory" t)
3299 (const :tag "Ask for each top directory only" top)
3300 (const :tag "Copy directories without asking" always))
3301 :group 'dired)
3302
3303 (defun dired-dnd-popup-notice ()
3304 (message-box
3305 "Dired recursive copies are currently disabled.\nSee the variable `dired-recursive-copies'."))
3306
3307
3308 (defun dired-dnd-do-ask-action (uri)
3309 ;; No need to get actions and descriptions from the source,
3310 ;; we only have three actions anyway.
3311 (let ((action (x-popup-menu
3312 t
3313 (list "What action?"
3314 (cons ""
3315 '(("Copy here" . copy)
3316 ("Move here" . move)
3317 ("Link here" . link)
3318 "--"
3319 ("Cancel" . nil)))))))
3320 (if action
3321 (dired-dnd-handle-local-file uri action)
3322 nil)))
3323
3324 (declare-function dired-relist-entry "dired-aux" (file))
3325 (declare-function make-symbolic-link "fileio.c")
3326
3327 (defun dired-dnd-handle-local-file (uri action)
3328 "Copy, move or link a file to the dired directory.
3329 URI is the file to handle, ACTION is one of copy, move, link or ask.
3330 Ask means pop up a menu for the user to select one of copy, move or link."
3331 (require 'dired-aux)
3332 (let* ((from (dnd-get-local-file-name uri t))
3333 (to (when from
3334 (concat (dired-current-directory)
3335 (file-name-nondirectory from)))))
3336 (when from
3337 (cond ((eq action 'ask)
3338 (dired-dnd-do-ask-action uri))
3339 ;; If copying a directory and dired-recursive-copies is
3340 ;; nil, dired-copy-file fails. Pop up a notice.
3341 ((and (memq action '(copy private))
3342 (file-directory-p from)
3343 (not dired-recursive-copies))
3344 (dired-dnd-popup-notice))
3345 ((memq action '(copy private move link))
3346 (let ((overwrite (and (file-exists-p to)
3347 (y-or-n-p
3348 (format "Overwrite existing file `%s'? " to))))
3349 ;; Binding dired-overwrite-confirmed to nil makes
3350 ;; dired-handle-overwrite a no-op. We instead use
3351 ;; y-or-n-p, which pops a graphical menu.
3352 dired-overwrite-confirmed backup-file)
3353 (when (and overwrite
3354 ;; d-b-o is defined in dired-aux.
3355 (boundp 'dired-backup-overwrite)
3356 dired-backup-overwrite
3357 (setq backup-file
3358 (car (find-backup-file-name to)))
3359 (or (eq dired-backup-overwrite 'always)
3360 (y-or-n-p
3361 (format
3362 "Make backup for existing file `%s'? " to))))
3363 (rename-file to backup-file 0)
3364 (dired-relist-entry backup-file))
3365 (cond ((memq action '(copy private))
3366 (dired-copy-file from to overwrite))
3367 ((eq action 'move)
3368 (dired-rename-file from to overwrite))
3369 ((eq action 'link)
3370 (make-symbolic-link from to overwrite)))
3371 (dired-relist-entry to)
3372 action))))))
3373
3374 (defun dired-dnd-handle-file (uri action)
3375 "Copy, move or link a file to the dired directory if it is a local file.
3376 URI is the file to handle. If the hostname in the URI isn't local, do nothing.
3377 ACTION is one of copy, move, link or ask.
3378 Ask means pop up a menu for the user to select one of copy, move or link."
3379 (let ((local-file (dnd-get-local-file-uri uri)))
3380 (if local-file (dired-dnd-handle-local-file local-file action)
3381 nil)))
3382 \f
3383
3384 ;;;; Desktop support
3385
3386 (eval-when-compile (require 'desktop))
3387
3388 (defun dired-desktop-buffer-misc-data (desktop-dirname)
3389 "Auxiliary information to be saved in desktop file."
3390 (cons
3391 ;; Value of `dired-directory'.
3392 (if (consp dired-directory)
3393 ;; Directory name followed by list of files.
3394 (cons (desktop-file-name (car dired-directory) desktop-dirname)
3395 (cdr dired-directory))
3396 ;; Directory name, optionally with shell wildcard.
3397 (desktop-file-name dired-directory desktop-dirname))
3398 ;; Subdirectories in `dired-subdir-alist'.
3399 (cdr
3400 (nreverse
3401 (mapcar
3402 (function (lambda (f) (desktop-file-name (car f) desktop-dirname)))
3403 dired-subdir-alist)))))
3404
3405 (defun dired-restore-desktop-buffer (desktop-buffer-file-name
3406 desktop-buffer-name
3407 desktop-buffer-misc)
3408 "Restore a dired buffer specified in a desktop file."
3409 ;; First element of `desktop-buffer-misc' is the value of `dired-directory'.
3410 ;; This value is a directory name, optionally with shell wildcard or
3411 ;; a directory name followed by list of files.
3412 (let* ((dired-dir (car desktop-buffer-misc))
3413 (dir (if (consp dired-dir) (car dired-dir) dired-dir)))
3414 (if (file-directory-p (file-name-directory dir))
3415 (progn
3416 (dired dired-dir)
3417 ;; The following elements of `desktop-buffer-misc' are the keys
3418 ;; from `dired-subdir-alist'.
3419 (mapc 'dired-maybe-insert-subdir (cdr desktop-buffer-misc))
3420 (current-buffer))
3421 (message "Desktop: Directory %s no longer exists." dir)
3422 (when desktop-missing-file-warning (sit-for 1))
3423 nil)))
3424
3425 (add-to-list 'desktop-buffer-mode-handlers
3426 '(dired-mode . dired-restore-desktop-buffer))
3427
3428 \f
3429 (if (eq system-type 'vax-vms)
3430 (load "dired-vms"))
3431
3432 (provide 'dired)
3433
3434 (run-hooks 'dired-load-hook) ; for your customizations
3435
3436 ;; arch-tag: e1af7a8f-691c-41a0-aac1-ddd4d3c87517
3437 ;;; dired.el ends here