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