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