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