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