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