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