]> code.delx.au - gnu-emacs/blob - lisp/dired.el
(shrink-window-if-larger-than-buffer):
[gnu-emacs] / lisp / dired.el
1 ;;; dired.el --- directory-browsing commands
2
3 ;; Copyright (C) 1985, 1986, 1992, 1993 Free Software Foundation, Inc.
4
5 ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>
6 ;; Maintainer: FSF
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
24 ;;; Commentary:
25
26 ;; This is a major mode for directory browsing and editing. It is
27 ;; documented in the Emacs manual.
28
29 ;; Rewritten in 1990/1991 to add tree features, file marking and
30 ;; sorting by Sebastian Kremer <sk@thp.uni-koeln.de>.
31 ;; Finished up by rms in 1992.
32
33 ;;; Code:
34
35 ;;; Customizable variables
36
37 ;;;###autoload
38 (defvar dired-listing-switches "-al"
39 "*Switches passed to `ls' for dired. MUST contain the `l' option.
40 May contain all other options that don't contradict `-l';
41 may contain even `F', `b', `i' and `s'. See also the variable
42 `dired-ls-F-marks-symlinks' concerning the `F' switch.")
43
44 ; Don't use absolute paths as /bin should be in any PATH and people
45 ; may prefer /usr/local/gnu/bin or whatever. However, chown is
46 ; usually not in PATH.
47
48 ;;;###autoload
49 (defvar dired-chown-program
50 (if (memq system-type '(hpux dgux usg-unix-v irix))
51 "chown" "/etc/chown")
52 "Name of chown command (usually `chown' or `/etc/chown').")
53
54 ;;;###autoload
55 (defvar dired-ls-F-marks-symlinks nil
56 "*Informs dired about how `ls -lF' marks symbolic links.
57 Set this to t if `insert-directory-program' with `-lF' marks the symbolic link
58 itself with a trailing @ (usually the case under Ultrix).
59
60 Example: if `ln -s foo bar; ls -F bar' gives `bar -> foo', set it to
61 nil (the default), if it gives `bar@ -> foo', set it to t.
62
63 Dired checks if there is really a @ appended. Thus, if you have a
64 marking `ls' program on one host and a non-marking on another host, and
65 don't care about symbolic links which really end in a @, you can
66 always set this variable to t.")
67
68 ;;;###autoload
69 (defvar dired-trivial-filenames "^\\.\\.?$\\|^#"
70 "*Regexp of files to skip when finding first file of a directory.
71 A value of nil means move to the subdir line.
72 A value of t means move to first file.")
73
74 ;;;###autoload
75 (defvar dired-keep-marker-rename t
76 ;; Use t as default so that moved files "take their markers with them".
77 "*Controls marking of renamed files.
78 If t, files keep their previous marks when they are renamed.
79 If a character, renamed files (whether previously marked or not)
80 are afterward marked with that character.")
81
82 ;;;###autoload
83 (defvar dired-keep-marker-copy ?C
84 "*Controls marking of copied files.
85 If t, copied files are marked if and as the corresponding original files were.
86 If a character, copied files are unconditionally marked with that character.")
87
88 ;;;###autoload
89 (defvar dired-keep-marker-hardlink ?H
90 "*Controls marking of newly made hard links.
91 If t, they are marked if and as the files linked to were marked.
92 If a character, new links are unconditionally marked with that character.")
93
94 ;;;###autoload
95 (defvar dired-keep-marker-symlink ?Y
96 "*Controls marking of newly made symbolic links.
97 If t, they are marked if and as the files linked to were marked.
98 If a character, new links are unconditionally marked with that character.")
99
100 ;;;###autoload
101 (defvar dired-dwim-target nil
102 "*If non-nil, dired tries to guess a default target directory.
103 This means: if there is a dired buffer displayed in the next window,
104 use its current subdir, instead of the current subdir of this dired buffer.
105
106 The target is used in the prompt for file copy, rename etc.")
107
108 ;;;###autoload
109 (defvar dired-copy-preserve-time t
110 "*If non-nil, Dired preserves the last-modified time in a file copy.
111 \(This works on only some systems.)")
112
113 ;;; Hook variables
114
115 (defvar dired-load-hook nil
116 "Run after loading dired.
117 You can customize key bindings or load extensions with this.")
118
119 (defvar dired-mode-hook nil
120 "Run at the very end of dired-mode.")
121
122 (defvar dired-before-readin-hook nil
123 "This hook is run before a dired buffer is read in (created or reverted).")
124
125 (defvar dired-after-readin-hook nil
126 "Hook run after each time a file or directory is read by Dired.
127 After each listing of a file or directory, this hook is run
128 with the buffer narrowed to the listing.")
129 ;; Note this can't simply be run inside function `dired-ls' as the hook
130 ;; functions probably depend on the dired-subdir-alist to be OK.
131
132 ;;; Internal variables
133
134 (defvar dired-marker-char ?* ; the answer is 42
135 ;; so that you can write things like
136 ;; (let ((dired-marker-char ?X))
137 ;; ;; great code using X markers ...
138 ;; )
139 ;; For example, commands operating on two sets of files, A and B.
140 ;; Or marking files with digits 0-9. This could implicate
141 ;; concentric sets or an order for the marked files.
142 ;; The code depends on dynamic scoping on the marker char.
143 "In Dired, the current mark character.
144 This is what the `do' commands look for and what the `mark' commands store.")
145
146 (defvar dired-del-marker ?D
147 "Character used to flag files for deletion.")
148
149 (defvar dired-shrink-to-fit
150 t
151 ;; I see no reason ever to make this nil -- rms.
152 ;; (> baud-rate search-slow-speed)
153 "Non-nil means Dired shrinks the display buffer to fit the marked files.")
154
155 (defvar dired-flagging-regexp nil);; Last regexp used to flag files.
156
157 (defvar dired-file-version-alist)
158
159 (defvar dired-directory nil
160 "The directory name or shell wildcard that was used as argument to `ls'.
161 Local to each dired buffer. May be a list, in which case the car is the
162 directory name and the cdr is the actual files to list.")
163
164 (defvar dired-actual-switches nil
165 "The value of `dired-listing-switches' used to make this buffer's text.")
166
167 (defvar dired-re-inode-size "[0-9 \t]*"
168 "Regexp for optional initial inode and file size as made by `ls -i -s'.")
169
170 ;; These regexps must be tested at beginning-of-line, but are also
171 ;; used to search for next matches, so neither omitting "^" nor
172 ;; replacing "^" by "\n" (to make it slightly faster) will work.
173
174 (defvar dired-re-mark "^[^ \n]")
175 ;; "Regexp matching a marked line.
176 ;; Important: the match ends just after the marker."
177 (defvar dired-re-maybe-mark "^. ")
178 (defvar dired-re-dir (concat dired-re-maybe-mark dired-re-inode-size "d"))
179 (defvar dired-re-sym (concat dired-re-maybe-mark dired-re-inode-size "l"))
180 (defvar dired-re-exe;; match ls permission string of an executable file
181 (mapconcat (function
182 (lambda (x)
183 (concat dired-re-maybe-mark dired-re-inode-size x)))
184 '("-[-r][-w][xs][-r][-w].[-r][-w]."
185 "-[-r][-w].[-r][-w][xs][-r][-w]."
186 "-[-r][-w].[-r][-w].[-r][-w][xst]")
187 "\\|"))
188 (defvar dired-re-dot "^.* \\.\\.?$")
189
190 (defvar dired-subdir-alist nil
191 "Association list of subdirectories and their buffer positions.
192 Each subdirectory has an element: (DIRNAME . STARTMARKER).
193 The order of elements is the reverse of the order in the buffer.
194 In simple cases, this list contains one element.")
195
196 (defvar dired-subdir-regexp "^. \\([^\n\r]+\\)\\(:\\)[\n\r]"
197 "Regexp matching a maybe hidden subdirectory line in `ls -lR' output.
198 Subexpression 1 is the subdirectory proper, no trailing colon.
199 The match starts at the beginning of the line and ends after the end
200 of the line (\\n or \\r).
201 Subexpression 2 must end right before the \\n or \\r.")
202
203 \f
204 ;;; Macros must be defined before they are used, for the byte compiler.
205
206 ;; Mark all files for which CONDITION evals to non-nil.
207 ;; CONDITION is evaluated on each line, with point at beginning of line.
208 ;; MSG is a noun phrase for the type of files being marked.
209 ;; It should end with a noun that can be pluralized by adding `s'.
210 ;; Return value is the number of files marked, or nil if none were marked.
211 (defmacro dired-mark-if (predicate msg)
212 (` (let (buffer-read-only count)
213 (save-excursion
214 (setq count 0)
215 (if (, msg) (message "Marking %ss..." (, msg)))
216 (goto-char (point-min))
217 (while (not (eobp))
218 (if (, predicate)
219 (progn
220 (delete-char 1)
221 (insert dired-marker-char)
222 (setq count (1+ count))))
223 (forward-line 1))
224 (if (, msg) (message "%s %s%s %s%s."
225 count
226 (, msg)
227 (dired-plural-s count)
228 (if (eq dired-marker-char ?\040) "un" "")
229 (if (eq dired-marker-char dired-del-marker)
230 "flagged" "marked"))))
231 (and (> count 0) count))))
232
233 (defmacro dired-map-over-marks (body arg &optional show-progress)
234 ;; "Macro: Perform BODY with point somewhere on each marked line
235 ;;and return a list of BODY's results.
236 ;;If no marked file could be found, execute BODY on the current line.
237 ;; If ARG is an integer, use the next ARG (or previous -ARG, if ARG<0)
238 ;; files instead of the marked files.
239 ;; In that case point is dragged along. This is so that commands on
240 ;; the next ARG (instead of the marked) files can be chained easily.
241 ;; If ARG is otherwise non-nil, use current file instead.
242 ;;If optional third arg SHOW-PROGRESS evaluates to non-nil,
243 ;; redisplay the dired buffer after each file is processed.
244 ;;No guarantee is made about the position on the marked line.
245 ;; BODY must ensure this itself if it depends on this.
246 ;;Search starts at the beginning of the buffer, thus the car of the list
247 ;; corresponds to the line nearest to the buffer's bottom. This
248 ;; is also true for (positive and negative) integer values of ARG.
249 ;;BODY should not be too long as it is expanded four times."
250 ;;
251 ;;Warning: BODY must not add new lines before point - this may cause an
252 ;;endless loop.
253 ;;This warning should not apply any longer, sk 2-Sep-1991 14:10.
254 (` (prog1
255 (let (buffer-read-only case-fold-search found results)
256 (if (, arg)
257 (if (integerp (, arg))
258 (progn;; no save-excursion, want to move point.
259 (dired-repeat-over-lines
260 (, arg)
261 (function (lambda ()
262 (if (, show-progress) (sit-for 0))
263 (setq results (cons (, body) results)))))
264 (if (< (, arg) 0)
265 (nreverse results)
266 results))
267 ;; non-nil, non-integer ARG means use current file:
268 (list (, body)))
269 (let ((regexp (dired-marker-regexp)) next-position)
270 (save-excursion
271 (goto-char (point-min))
272 ;; remember position of next marked file before BODY
273 ;; can insert lines before the just found file,
274 ;; confusing us by finding the same marked file again
275 ;; and again and...
276 (setq next-position (and (re-search-forward regexp nil t)
277 (point-marker))
278 found (not (null next-position)))
279 (while next-position
280 (goto-char next-position)
281 (if (, show-progress) (sit-for 0))
282 (setq results (cons (, body) results))
283 ;; move after last match
284 (goto-char next-position)
285 (forward-line 1)
286 (set-marker next-position nil)
287 (setq next-position (and (re-search-forward regexp nil t)
288 (point-marker)))))
289 (if found
290 results
291 (list (, body))))))
292 ;; save-excursion loses, again
293 (dired-move-to-filename))))
294
295 (defun dired-get-marked-files (&optional localp arg)
296 "Return the marked files' names as list of strings.
297 The list is in the same order as the buffer, that is, the car is the
298 first marked file.
299 Values returned are normally absolute pathnames.
300 Optional arg LOCALP as in `dired-get-filename'.
301 Optional second argument ARG forces to use other files. If ARG is an
302 integer, use the next ARG files. If ARG is otherwise non-nil, use
303 current file. Usually ARG comes from the current prefix arg."
304 (save-excursion
305 (nreverse (dired-map-over-marks (dired-get-filename localp) arg))))
306
307 \f
308 ;; Function dired-ls is redefinable for VMS, ange-ftp, Prospero or
309 ;; other special applications.
310 \f
311 ;; The dired command
312
313 (defun dired-read-dir-and-switches (str)
314 ;; For use in interactive.
315 (reverse (list
316 (if current-prefix-arg
317 (read-string "Dired listing switches: "
318 dired-listing-switches))
319 (read-file-name (format "Dired %s(directory): " str)
320 nil default-directory nil))))
321
322 ;;;###autoload (define-key ctl-x-map "d" 'dired)
323 ;;;###autoload
324 (defun dired (dirname &optional switches)
325 "\"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it.
326 Optional second argument SWITCHES specifies the `ls' options used.
327 \(Interactively, use a prefix argument to be able to specify SWITCHES.)
328 Dired displays a list of files in DIRNAME (which may also have
329 shell wildcards appended to select certain files). If DIRNAME is a cons,
330 its first element is taken as the directory name and the resr as an explicit
331 list of files to make directory entries for.
332 \\<dired-mode-map>\
333 You can move around in it with the usual commands.
334 You can flag files for deletion with \\[dired-flag-file-deletion] and then
335 delete them by typing \\[dired-do-flagged-delete].
336 Type \\[describe-mode] after entering dired for more info.
337
338 If DIRNAME is already in a dired buffer, that buffer is used without refresh."
339 ;; Cannot use (interactive "D") because of wildcards.
340 (interactive (dired-read-dir-and-switches ""))
341 (switch-to-buffer (dired-noselect dirname switches)))
342
343 ;;;###autoload (define-key ctl-x-4-map "d" 'dired-other-window)
344 ;;;###autoload
345 (defun dired-other-window (dirname &optional switches)
346 "\"Edit\" directory DIRNAME. Like `dired' but selects in another window."
347 (interactive (dired-read-dir-and-switches "in other window "))
348 (switch-to-buffer-other-window (dired-noselect dirname switches)))
349
350 ;;;###autoload (define-key ctl-x-5-map "d" 'dired-other-frame)
351 ;;;###autoload
352 (defun dired-other-frame (dirname &optional switches)
353 "\"Edit\" directory DIRNAME. Like `dired' but makes a new frame."
354 (interactive (dired-read-dir-and-switches "in other frame "))
355 (switch-to-buffer-other-frame (dired-noselect dirname switches)))
356
357 ;;;###autoload
358 (defun dired-noselect (dir-or-list &optional switches)
359 "Like `dired' but returns the dired buffer as value, does not select it."
360 (or dir-or-list (setq dir-or-list default-directory))
361 ;; This loses the distinction between "/foo/*/" and "/foo/*" that
362 ;; some shells make:
363 (let (dirname)
364 (if (consp dir-or-list)
365 (setq dirname (car dir-or-list))
366 (setq dirname dir-or-list))
367 (setq dirname (expand-file-name (directory-file-name dirname)))
368 (if (file-directory-p dirname)
369 (setq dirname (file-name-as-directory dirname)))
370 (if (consp dir-or-list)
371 (setq dir-or-list (cons dirname (cdr dir-or-list)))
372 (setq dir-or-list dirname))
373 (dired-internal-noselect dir-or-list switches)))
374
375 ;; Separate function from dired-noselect for the sake of dired-vms.el.
376 (defun dired-internal-noselect (dir-or-list &optional switches)
377 ;; If there is an existing dired buffer for DIRNAME, just leave
378 ;; buffer as it is (don't even call dired-revert).
379 ;; This saves time especially for deep trees or with ange-ftp.
380 ;; The user can type `g'easily, and it is more consistent with find-file.
381 ;; But if SWITCHES are given they are probably different from the
382 ;; buffer's old value, so call dired-sort-other, which does
383 ;; revert the buffer.
384 ;; A pity we can't possibly do "Directory has changed - refresh? "
385 ;; like find-file does.
386 (let* ((dirname (if (consp dir-or-list) (car dir-or-list) dir-or-list))
387 (buffer (dired-find-buffer-nocreate dir-or-list))
388 ;; note that buffer already is in dired-mode, if found
389 (new-buffer-p (not buffer))
390 (old-buf (current-buffer)))
391 (or buffer
392 (let ((default-major-mode 'fundamental-mode))
393 ;; We don't want default-major-mode to run hooks and set auto-fill
394 ;; or whatever, now that dired-mode does not
395 ;; kill-all-local-variables any longer.
396 (setq buffer (create-file-buffer (directory-file-name dirname)))))
397 (set-buffer buffer)
398 (if (not new-buffer-p) ; existing buffer ...
399 (if switches ; ... but new switches
400 (dired-sort-other switches)) ; this calls dired-revert
401 ;; Else a new buffer
402 (setq default-directory
403 (abbreviate-file-name
404 (if (file-directory-p dirname)
405 dirname
406 (file-name-directory dirname))))
407 (or switches (setq switches dired-listing-switches))
408 (dired-mode dirname switches)
409 ;; default-directory and dired-actual-switches are set now
410 ;; (buffer-local), so we can call dired-readin:
411 (let ((failed t))
412 (unwind-protect
413 (progn (dired-readin dir-or-list buffer)
414 (setq failed nil))
415 ;; dired-readin can fail if parent directories are inaccessible.
416 ;; Don't leave an empty buffer around in that case.
417 (if failed (kill-buffer buffer))))
418 ;; No need to narrow since the whole buffer contains just
419 ;; dired-readin's output, nothing else. The hook can
420 ;; successfully use dired functions (e.g. dired-get-filename)
421 ;; as the subdir-alist has been built in dired-readin.
422 (run-hooks 'dired-after-readin-hook)
423 (goto-char (point-min))
424 (dired-initial-position dirname))
425 (set-buffer old-buf)
426 buffer))
427
428 ;; This differs from dired-buffers-for-dir in that it does not consider
429 ;; subdirs of default-directory and searches for the first match only
430 (defun dired-find-buffer-nocreate (dirname)
431 (let (found (blist (buffer-list)))
432 (while blist
433 (save-excursion
434 (set-buffer (car blist))
435 (if (and (eq major-mode 'dired-mode)
436 (equal dired-directory dirname))
437 (setq found (car blist)
438 blist nil)
439 (setq blist (cdr blist)))))
440 found))
441
442 \f
443 ;; Read in a new dired buffer
444
445 ;; dired-readin differs from dired-insert-subdir in that it accepts
446 ;; wildcards, erases the buffer, and builds the subdir-alist anew
447 ;; (including making it buffer-local and clearing it first).
448 (defun dired-readin (dir-or-list buffer)
449 ;; default-directory and dired-actual-switches must be buffer-local
450 ;; and initialized by now.
451 ;; Thus we can test (equal default-directory dirname) instead of
452 ;; (file-directory-p dirname) and save a filesystem transaction.
453 ;; Also, we can run this hook which may want to modify the switches
454 ;; based on default-directory, e.g. with ange-ftp to a SysV host
455 ;; where ls won't understand -Al switches.
456 (let (dirname)
457 (if (consp dir-or-list)
458 (setq dirname (car dir-or-list))
459 (setq dirname dir-or-list))
460 (setq dirname (expand-file-name dirname))
461 (if (consp dir-or-list)
462 (setq dir-or-list (cons dirname (cdr dir-or-list))))
463 (run-hooks 'dired-before-readin-hook)
464 (save-excursion
465 (message "Reading directory %s..." dirname)
466 (set-buffer buffer)
467 (let (buffer-read-only (failed t))
468 (widen)
469 (erase-buffer)
470 (dired-readin-insert dir-or-list)
471 (indent-rigidly (point-min) (point-max) 2)
472 ;; We need this to make the root dir have a header line as all
473 ;; other subdirs have:
474 (goto-char (point-min))
475 (dired-insert-headerline default-directory)
476 ;; can't run dired-after-readin-hook here, it may depend on the subdir
477 ;; alist to be OK.
478 )
479 (message "Reading directory %s...done" dirname)
480 (set-buffer-modified-p nil)
481 ;; Must first make alist buffer local and set it to nil because
482 ;; dired-build-subdir-alist will call dired-clear-alist first
483 (set (make-local-variable 'dired-subdir-alist) nil)
484 (dired-build-subdir-alist))))
485
486 ;; Subroutines of dired-readin
487
488 (defun dired-readin-insert (dir-or-list)
489 ;; Just insert listing for the passed-in directory or
490 ;; directory-and-file list, assuming a clean buffer.
491 (let (dirname)
492 (if (consp dir-or-list)
493 (setq dirname (car dir-or-list))
494 (setq dirname dir-or-list))
495 ;; Expand before comparing in case one or both have been abbreviated.
496 (if (and (equal (expand-file-name default-directory)
497 (expand-file-name dirname))
498 (not (consp dir-or-list)))
499 ;; If we are reading a whole single directory...
500 (dired-insert-directory dir-or-list dired-actual-switches nil t)
501 (if (not (file-readable-p
502 (directory-file-name (file-name-directory dirname))))
503 (error "Directory %s inaccessible or nonexistent" dirname)
504 ;; Else assume it contains wildcards,
505 ;; unless it is an explicit list of files.
506 (dired-insert-directory dir-or-list dired-actual-switches
507 (not (listp dir-or-list)))
508 (save-excursion ;; insert wildcard instead of total line:
509 (goto-char (point-min))
510 (insert "wildcard " (file-name-nondirectory dirname) "\n"))))))
511
512 (defun dired-insert-directory (dir-or-list switches &optional wildcard full-p)
513 ;; Do the right thing whether dir-or-list is atomic or not. If it is,
514 ;; inset all files listed in the cdr (the car is the passed-in directory
515 ;; list).
516 (let ((opoint (point)))
517 (if (consp dir-or-list)
518 (progn
519 (mapcar
520 (function (lambda (x) (insert-directory x switches wildcard full-p)))
521 (cdr dir-or-list)))
522 (insert-directory dir-or-list switches wildcard full-p))
523 (dired-insert-set-properties opoint (point)))
524 (setq dired-directory dir-or-list))
525
526 (defun dired-insert-set-properties (beg end)
527 (save-excursion
528 (goto-char beg)
529 (while (< (point) end)
530 (if (dired-move-to-filename)
531 (put-text-property (point)
532 (save-excursion
533 (dired-move-to-end-of-filename)
534 (point))
535 'mouse-face 'highlight))
536 (forward-line 1))))
537
538 (defun dired-insert-headerline (dir);; also used by dired-insert-subdir
539 ;; Insert DIR's headerline with no trailing slash, exactly like ls
540 ;; would, and put cursor where dired-build-subdir-alist puts subdir
541 ;; boundaries.
542 (save-excursion (insert " " (directory-file-name dir) ":\n")))
543
544 \f
545 ;; Reverting a dired buffer
546
547 (defun dired-revert (&optional arg noconfirm)
548 ;; Reread the dired buffer. Must also be called after
549 ;; dired-actual-switches have changed.
550 ;; Should not fail even on completely garbaged buffers.
551 ;; Preserves old cursor, marks/flags, hidden-p.
552 (widen) ; just in case user narrowed
553 (let ((opoint (point))
554 (ofile (dired-get-filename nil t))
555 (mark-alist nil) ; save marked files
556 (hidden-subdirs (dired-remember-hidden))
557 (old-subdir-alist (cdr (reverse dired-subdir-alist))) ; except pwd
558 (case-fold-search nil) ; we check for upper case ls flags
559 buffer-read-only)
560 (goto-char (point-min))
561 (setq mark-alist;; only after dired-remember-hidden since this unhides:
562 (dired-remember-marks (point-min) (point-max)))
563 ;; treat top level dir extra (it may contain wildcards)
564 (dired-uncache
565 (if (consp dired-directory) (car dired-directory) dired-directory))
566 (dired-readin dired-directory (current-buffer))
567 (let ((dired-after-readin-hook nil))
568 ;; don't run that hook for each subdir...
569 (dired-insert-old-subdirs old-subdir-alist))
570 (dired-mark-remembered mark-alist) ; mark files that were marked
571 ;; ... run the hook for the whole buffer, and only after markers
572 ;; have been reinserted (else omitting in dired-x would omit marked files)
573 (run-hooks 'dired-after-readin-hook) ; no need to narrow
574 (or (and ofile (dired-goto-file ofile)) ; move cursor to where it
575 (goto-char opoint)) ; was before
576 (dired-move-to-filename)
577 (save-excursion ; hide subdirs that were hidden
578 (mapcar (function (lambda (dir)
579 (if (dired-goto-subdir dir)
580 (dired-hide-subdir 1))))
581 hidden-subdirs)))
582 ;; outside of the let scope
583 ;;; Might as well not override the user if the user changed this.
584 ;;; (setq buffer-read-only t)
585 )
586
587 ;; Subroutines of dired-revert
588 ;; Some of these are also used when inserting subdirs.
589
590 (defun dired-remember-marks (beg end)
591 ;; Return alist of files and their marks, from BEG to END.
592 (if selective-display ; must unhide to make this work.
593 (let (buffer-read-only)
594 (subst-char-in-region beg end ?\r ?\n)))
595 (let (fil chr alist)
596 (save-excursion
597 (goto-char beg)
598 (while (re-search-forward dired-re-mark end t)
599 (if (setq fil (dired-get-filename nil t))
600 (setq chr (preceding-char)
601 alist (cons (cons fil chr) alist)))))
602 alist))
603
604 ;; Mark all files remembered in ALIST.
605 ;; Each element of ALIST looks like (FILE . MARKERCHAR).
606 (defun dired-mark-remembered (alist)
607 (let (elt fil chr)
608 (while alist
609 (setq elt (car alist)
610 alist (cdr alist)
611 fil (car elt)
612 chr (cdr elt))
613 (if (dired-goto-file fil)
614 (save-excursion
615 (beginning-of-line)
616 (delete-char 1)
617 (insert chr))))))
618
619 ;; Return a list of names of subdirs currently hidden.
620 (defun dired-remember-hidden ()
621 (let ((l dired-subdir-alist) dir pos result)
622 (while l
623 (setq dir (car (car l))
624 pos (cdr (car l))
625 l (cdr l))
626 (goto-char pos)
627 (skip-chars-forward "^\r\n")
628 (if (eq (following-char) ?\r)
629 (setq result (cons dir result))))
630 result))
631
632 ;; Try to insert all subdirs that were displayed before,
633 ;; according to the former subdir alist OLD-SUBDIR-ALIST.
634 (defun dired-insert-old-subdirs (old-subdir-alist)
635 (or (string-match "R" dired-actual-switches)
636 (let (elt dir)
637 (while old-subdir-alist
638 (setq elt (car old-subdir-alist)
639 old-subdir-alist (cdr old-subdir-alist)
640 dir (car elt))
641 (condition-case ()
642 (progn
643 (dired-uncache dir)
644 (dired-insert-subdir dir))
645 (error nil))))))
646
647 ;; Remove directory DIR from any directory cache.
648 (defun dired-uncache (dir)
649 (let ((handler (find-file-name-handler dir)))
650 (if handler
651 (funcall handler 'dired-uncache dir))))
652 \f
653 ;; dired mode key bindings and initialization
654
655 (defvar dired-mode-map nil "Local keymap for dired-mode buffers.")
656 (if dired-mode-map
657 nil
658 ;; This looks ugly when substitute-command-keys uses C-d instead d:
659 ;; (define-key dired-mode-map "\C-d" 'dired-flag-file-deletion)
660
661 (setq dired-mode-map (make-keymap))
662 (suppress-keymap dired-mode-map)
663 (define-key dired-mode-map [mouse-2] 'dired-mouse-find-file-other-window)
664 ;; Commands to mark or flag certain categories of files
665 (define-key dired-mode-map "#" 'dired-flag-auto-save-files)
666 (define-key dired-mode-map "*" 'dired-mark-executables)
667 (define-key dired-mode-map "." 'dired-clean-directory)
668 (define-key dired-mode-map "/" 'dired-mark-directories)
669 (define-key dired-mode-map "@" 'dired-mark-symlinks)
670 (define-key dired-mode-map "~" 'dired-flag-backup-files)
671 ;; Upper case keys (except !) for operating on the marked files
672 (define-key dired-mode-map "C" 'dired-do-copy)
673 (define-key dired-mode-map "B" 'dired-do-byte-compile)
674 (define-key dired-mode-map "D" 'dired-do-delete)
675 (define-key dired-mode-map "G" 'dired-do-chgrp)
676 (define-key dired-mode-map "H" 'dired-do-hardlink)
677 (define-key dired-mode-map "L" 'dired-do-load)
678 (define-key dired-mode-map "M" 'dired-do-chmod)
679 (define-key dired-mode-map "O" 'dired-do-chown)
680 (define-key dired-mode-map "P" 'dired-do-print)
681 (define-key dired-mode-map "R" 'dired-do-rename)
682 (define-key dired-mode-map "S" 'dired-do-symlink)
683 (define-key dired-mode-map "X" 'dired-do-shell-command)
684 (define-key dired-mode-map "Z" 'dired-do-compress)
685 (define-key dired-mode-map "!" 'dired-do-shell-command)
686 ;; Comparison commands
687 (define-key dired-mode-map "=" 'dired-diff)
688 (define-key dired-mode-map "\M-=" 'dired-backup-diff)
689 ;; Tree Dired commands
690 (define-key dired-mode-map "\M-\C-?" 'dired-unmark-all-files)
691 (define-key dired-mode-map "\M-\C-d" 'dired-tree-down)
692 (define-key dired-mode-map "\M-\C-u" 'dired-tree-up)
693 (define-key dired-mode-map "\M-\C-n" 'dired-next-subdir)
694 (define-key dired-mode-map "\M-\C-p" 'dired-prev-subdir)
695 ;; move to marked files
696 (define-key dired-mode-map "\M-{" 'dired-prev-marked-file)
697 (define-key dired-mode-map "\M-}" 'dired-next-marked-file)
698 ;; Make all regexp commands share a `%' prefix:
699 (defalias 'dired-regexp-prefix (make-sparse-keymap))
700 (define-key dired-mode-map "%" 'dired-regexp-prefix)
701 (define-key dired-mode-map "%u" 'dired-upcase)
702 (define-key dired-mode-map "%l" 'dired-downcase)
703 (define-key dired-mode-map "%d" 'dired-flag-files-regexp)
704 (define-key dired-mode-map "%m" 'dired-mark-files-regexp)
705 (define-key dired-mode-map "%r" 'dired-do-rename-regexp)
706 (define-key dired-mode-map "%C" 'dired-do-copy-regexp)
707 (define-key dired-mode-map "%H" 'dired-do-hardlink-regexp)
708 (define-key dired-mode-map "%R" 'dired-do-rename-regexp)
709 (define-key dired-mode-map "%S" 'dired-do-symlink-regexp)
710 ;; Lower keys for commands not operating on all the marked files
711 (define-key dired-mode-map "c" 'dired-change-marks)
712 (define-key dired-mode-map "d" 'dired-flag-file-deletion)
713 (define-key dired-mode-map "e" 'dired-find-file)
714 (define-key dired-mode-map "f" 'dired-advertised-find-file)
715 (define-key dired-mode-map "g" 'revert-buffer)
716 (define-key dired-mode-map "h" 'describe-mode)
717 (define-key dired-mode-map "i" 'dired-maybe-insert-subdir)
718 (define-key dired-mode-map "k" 'dired-do-kill-lines)
719 (define-key dired-mode-map "l" 'dired-do-redisplay)
720 (define-key dired-mode-map "m" 'dired-mark)
721 (define-key dired-mode-map "n" 'dired-next-line)
722 (define-key dired-mode-map "o" 'dired-find-file-other-window)
723 (define-key dired-mode-map "\C-o" 'dired-display-file)
724 (define-key dired-mode-map "p" 'dired-previous-line)
725 (define-key dired-mode-map "q" 'dired-quit)
726 (define-key dired-mode-map "s" 'dired-sort-toggle-or-edit)
727 (define-key dired-mode-map "u" 'dired-unmark)
728 (define-key dired-mode-map "v" 'dired-view-file)
729 (define-key dired-mode-map "x" 'dired-do-flagged-delete)
730 (define-key dired-mode-map "+" 'dired-create-directory)
731 ;; moving
732 (define-key dired-mode-map "<" 'dired-prev-dirline)
733 (define-key dired-mode-map ">" 'dired-next-dirline)
734 (define-key dired-mode-map "^" 'dired-up-directory)
735 (define-key dired-mode-map " " 'dired-next-line)
736 (define-key dired-mode-map "\C-n" 'dired-next-line)
737 (define-key dired-mode-map "\C-p" 'dired-previous-line)
738 ;; hiding
739 (define-key dired-mode-map "$" 'dired-hide-subdir)
740 (define-key dired-mode-map "\M-$" 'dired-hide-all)
741 ;; misc
742 (define-key dired-mode-map "?" 'dired-summary)
743 (define-key dired-mode-map "\177" 'dired-unmark-backward)
744 (define-key dired-mode-map "\C-_" 'dired-undo)
745 (define-key dired-mode-map "\C-xu" 'dired-undo)
746 )
747 \f
748 ;; Make menu bar items.
749
750 ;; Get rid of the Edit menu bar item to save space.
751 (define-key dired-mode-map [menu-bar edit] 'undefined)
752
753 (define-key dired-mode-map [menu-bar subdir]
754 (cons "Subdir" (make-sparse-keymap "Subdir")))
755
756 (define-key dired-mode-map [menu-bar subdir hide-all]
757 '("Hide All" . dired-hide-all))
758 (define-key dired-mode-map [menu-bar subdir hide-subdir]
759 '("Hide Subdir" . dired-hide-subdir))
760 (define-key dired-mode-map [menu-bar subdir tree-down]
761 '("Tree Down" . dired-tree-down))
762 (define-key dired-mode-map [menu-bar subdir tree-up]
763 '("Tree Up" . dired-tree-up))
764 (define-key dired-mode-map [menu-bar subdir up]
765 '("Up Directory" . dired-up-directory))
766 (define-key dired-mode-map [menu-bar subdir prev-subdir]
767 '("Prev Subdir" . dired-prev-subdir))
768 (define-key dired-mode-map [menu-bar subdir next-subdir]
769 '("Next Subdir" . dired-next-subdir))
770 (define-key dired-mode-map [menu-bar subdir prev-dirline]
771 '("Prev Dirline" . dired-prev-dirline))
772 (define-key dired-mode-map [menu-bar subdir next-dirline]
773 '("Next Dirline" . dired-next-dirline))
774 (define-key dired-mode-map [menu-bar subdir insert]
775 '("Insert This Subdir" . dired-maybe-insert-subdir))
776
777 (define-key dired-mode-map [menu-bar immediate]
778 (cons "Immediate" (make-sparse-keymap "Immediate")))
779
780 (define-key dired-mode-map [menu-bar immediate backup-diff]
781 '("Compare with Backup" . dired-backup-diff))
782 (define-key dired-mode-map [menu-bar immediate diff]
783 '("Diff" . dired-diff))
784 (define-key dired-mode-map [menu-bar immediate view]
785 '("View This File" . dired-view-file))
786 (define-key dired-mode-map [menu-bar immediate display]
787 '("Display in Other Window" . dired-display-file))
788 (define-key dired-mode-map [menu-bar immediate find-file-other-window]
789 '("Find in Other Window" . dired-find-file-other-window))
790 (define-key dired-mode-map [menu-bar immediate find-file]
791 '("Find This File" . dired-find-file))
792 (define-key dired-mode-map [menu-bar immediate create-directory]
793 '("Create Directory..." . dired-create-directory))
794
795 (define-key dired-mode-map [menu-bar regexp]
796 (cons "Regexp" (make-sparse-keymap "Regexp")))
797
798 (define-key dired-mode-map [menu-bar regexp downcase]
799 '("Downcase" . dired-downcase))
800 (define-key dired-mode-map [menu-bar regexp upcase]
801 '("Upcase" . dired-upcase))
802 (define-key dired-mode-map [menu-bar regexp hardlink]
803 '("Hardlink..." . dired-do-hardlink-regexp))
804 (define-key dired-mode-map [menu-bar regexp symlink]
805 '("Symlink..." . dired-do-symlink-regexp))
806 (define-key dired-mode-map [menu-bar regexp rename]
807 '("Rename..." . dired-do-rename-regexp))
808 (define-key dired-mode-map [menu-bar regexp copy]
809 '("Copy..." . dired-do-copy-regexp))
810 (define-key dired-mode-map [menu-bar regexp flag]
811 '("Flag..." . dired-flag-files-regexp))
812 (define-key dired-mode-map [menu-bar regexp mark]
813 '("Mark..." . dired-mark-files-regexp))
814
815 (define-key dired-mode-map [menu-bar mark]
816 (cons "Mark" (make-sparse-keymap "Mark")))
817
818 (define-key dired-mode-map [menu-bar mark prev]
819 '("Previous Marked" . dired-prev-marked-file))
820 (define-key dired-mode-map [menu-bar mark next]
821 '("Next Marked" . dired-next-marked-file))
822 (define-key dired-mode-map [menu-bar mark marks]
823 '("Change Marks..." . dired-change-marks))
824 (define-key dired-mode-map [menu-bar mark unmark-all]
825 '("Unmark All" . dired-unmark-all-files-no-query))
826 (define-key dired-mode-map [menu-bar mark symlinks]
827 '("Mark Symlinks" . dired-mark-symlinks))
828 (define-key dired-mode-map [menu-bar mark directories]
829 '("Mark Directories" . dired-mark-directories))
830 (define-key dired-mode-map [menu-bar mark directory]
831 '("Mark Old Backups" . dired-clean-directory))
832 (define-key dired-mode-map [menu-bar mark executables]
833 '("Mark Executables" . dired-mark-executables))
834 (define-key dired-mode-map [menu-bar mark backup-files]
835 '("Flag Backup Files" . dired-flag-backup-files))
836 (define-key dired-mode-map [menu-bar mark auto-save-files]
837 '("Flag Auto-save Files" . dired-flag-auto-save-files))
838 (define-key dired-mode-map [menu-bar mark deletion]
839 '("Flag" . dired-flag-file-deletion))
840 (define-key dired-mode-map [menu-bar mark unmark]
841 '("Unmark" . dired-unmark))
842 (define-key dired-mode-map [menu-bar mark mark]
843 '("Mark" . dired-mark))
844
845 (define-key dired-mode-map [menu-bar operate]
846 (cons "Operate" (make-sparse-keymap "Operate")))
847
848 (define-key dired-mode-map [menu-bar operate chown]
849 '("Change Owner..." . dired-do-chown))
850 (define-key dired-mode-map [menu-bar operate chgrp]
851 '("Change Group..." . dired-do-chgrp))
852 (define-key dired-mode-map [menu-bar operate chmod]
853 '("Change Mode..." . dired-do-chmod))
854 (define-key dired-mode-map [menu-bar operate load]
855 '("Load" . dired-do-load))
856 (define-key dired-mode-map [menu-bar operate compile]
857 '("Byte-compile" . dired-do-byte-compile))
858 (define-key dired-mode-map [menu-bar operate compress]
859 '("Compress" . dired-do-compress))
860 (define-key dired-mode-map [menu-bar operate print]
861 '("Print" . dired-do-print))
862 (define-key dired-mode-map [menu-bar operate hardlink]
863 '("Hardlink to..." . dired-do-hardlink))
864 (define-key dired-mode-map [menu-bar operate symlink]
865 '("Symlink to..." . dired-do-symlink))
866 (define-key dired-mode-map [menu-bar operate command]
867 '("Shell Command..." . dired-do-shell-command))
868 (define-key dired-mode-map [menu-bar operate delete]
869 '("Delete" . dired-do-delete))
870 (define-key dired-mode-map [menu-bar operate rename]
871 '("Rename to..." . dired-do-rename))
872 (define-key dired-mode-map [menu-bar operate copy]
873 '("Copy to..." . dired-do-copy))
874 \f
875 ;; Dired mode is suitable only for specially formatted data.
876 (put 'dired-mode 'mode-class 'special)
877
878 (defun dired-mode (&optional dirname switches)
879 "\
880 Mode for \"editing\" directory listings.
881 In dired, you are \"editing\" a list of the files in a directory and
882 \(optionally) its subdirectories, in the format of `ls -lR'.
883 Each directory is a page: use \\[backward-page] and \\[forward-page] to move pagewise.
884 \"Editing\" means that you can run shell commands on files, visit,
885 compress, load or byte-compile them, change their file attributes
886 and insert subdirectories into the same buffer. You can \"mark\"
887 files for later commands or \"flag\" them for deletion, either file
888 by file or all files matching certain criteria.
889 You can move using the usual cursor motion commands.\\<dired-mode-map>
890 Letters no longer insert themselves. Digits are prefix arguments.
891 Instead, type \\[dired-flag-file-deletion] to flag a file for Deletion.
892 Type \\[dired-mark] to Mark a file or subdirectory for later commands.
893 Most commands operate on the marked files and use the current file
894 if no files are marked. Use a numeric prefix argument to operate on
895 the next ARG (or previous -ARG if ARG<0) files, or just `1'
896 to operate on the current file only. Prefix arguments override marks.
897 Mark-using commands display a list of failures afterwards. Type \\[dired-summary]
898 to see why something went wrong.
899 Type \\[dired-unmark] to Unmark a file or all files of a subdirectory.
900 Type \\[dired-unmark-backward] to back up one line and unflag.
901 Type \\[dired-do-flagged-delete] to eXecute the deletions requested.
902 Type \\[dired-advertised-find-file] to Find the current line's file
903 (or dired it in another buffer, if it is a directory).
904 Type \\[dired-find-file-other-window] to find file or dired directory in Other window.
905 Type \\[dired-maybe-insert-subdir] to Insert a subdirectory in this buffer.
906 Type \\[dired-do-rename] to Rename a file or move the marked files to another directory.
907 Type \\[dired-do-copy] to Copy files.
908 Type \\[dired-sort-toggle-or-edit] to toggle sorting by name/date or change the `ls' switches.
909 Type \\[revert-buffer] to read all currently expanded directories again.
910 This retains all marks and hides subdirs again that were hidden before.
911 SPC and DEL can be used to move down and up by lines.
912
913 If dired ever gets confused, you can either type \\[revert-buffer] \
914 to read the
915 directories again, type \\[dired-do-redisplay] \
916 to relist a single or the marked files or a
917 subdirectory, or type \\[dired-build-subdir-alist] to parse the buffer
918 again for the directory tree.
919
920 Customization variables (rename this buffer and type \\[describe-variable] on each line
921 for more info):
922
923 dired-listing-switches
924 dired-trivial-filenames
925 dired-shrink-to-fit
926 dired-marker-char
927 dired-del-marker
928 dired-keep-marker-rename
929 dired-keep-marker-copy
930 dired-keep-marker-hardlink
931 dired-keep-marker-symlink
932
933 Hooks (use \\[describe-variable] to see their documentation):
934
935 dired-before-readin-hook
936 dired-after-readin-hook
937 dired-mode-hook
938 dired-load-hook
939
940 Keybindings:
941 \\{dired-mode-map}"
942 ;; Not to be called interactively (e.g. dired-directory will be set
943 ;; to default-directory, which is wrong with wildcards).
944 (kill-all-local-variables)
945 (use-local-map dired-mode-map)
946 (dired-advertise) ; default-directory is already set
947 (setq major-mode 'dired-mode
948 mode-name "Dired"
949 ;; case-fold-search nil
950 buffer-read-only t
951 selective-display t ; for subdirectory hiding
952 mode-line-buffer-identification '("Dired: %17b"))
953 (set (make-local-variable 'revert-buffer-function)
954 (function dired-revert))
955 (set (make-local-variable 'page-delimiter)
956 "\n\n")
957 (set (make-local-variable 'dired-directory)
958 (or dirname default-directory))
959 ;; list-buffers uses this to display the dir being edited in this buffer.
960 (set (make-local-variable 'list-buffers-directory)
961 dired-directory)
962 (set (make-local-variable 'dired-actual-switches)
963 (or switches dired-listing-switches))
964 (dired-sort-other dired-actual-switches t)
965 (run-hooks 'dired-mode-hook))
966 \f
967 ;; Idiosyncratic dired commands that don't deal with marks.
968
969 (defun dired-quit ()
970 "Bury the current dired buffer."
971 (interactive)
972 (bury-buffer))
973
974 (defun dired-summary ()
975 "Summarize basic Dired commands and show recent Dired errors."
976 (interactive)
977 (dired-why)
978 ;>> this should check the key-bindings and use substitute-command-keys if non-standard
979 (message
980 "d-elete, u-ndelete, x-punge, f-ind, o-ther window, R-ename, C-opy, h-elp"))
981
982 (defun dired-undo ()
983 "Undo in a dired buffer.
984 This doesn't recover lost files, it just undoes changes in the buffer itself.
985 You can use it to recover marks, killed lines or subdirs.
986 In the latter case, you have to do \\[dired-build-subdir-alist] to
987 parse the buffer again."
988 (interactive)
989 (let (buffer-read-only)
990 (undo)))
991
992 (defun dired-next-line (arg)
993 "Move down lines then position at filename.
994 Optional prefix ARG says how many lines to move; default is one line."
995 (interactive "p")
996 (next-line arg)
997 (dired-move-to-filename))
998
999 (defun dired-previous-line (arg)
1000 "Move up lines then position at filename.
1001 Optional prefix ARG says how many lines to move; default is one line."
1002 (interactive "p")
1003 (previous-line arg)
1004 (dired-move-to-filename))
1005
1006 (defun dired-next-dirline (arg &optional opoint)
1007 "Goto ARG'th next directory file line."
1008 (interactive "p")
1009 (or opoint (setq opoint (point)))
1010 (if (if (> arg 0)
1011 (re-search-forward dired-re-dir nil t arg)
1012 (beginning-of-line)
1013 (re-search-backward dired-re-dir nil t (- arg)))
1014 (dired-move-to-filename) ; user may type `i' or `f'
1015 (goto-char opoint)
1016 (error "No more subdirectories")))
1017
1018 (defun dired-prev-dirline (arg)
1019 "Goto ARG'th previous directory file line."
1020 (interactive "p")
1021 (dired-next-dirline (- arg)))
1022
1023 (defun dired-up-directory ()
1024 "Run dired on parent directory of current directory.
1025 Find the parent directory either in this buffer or another buffer.
1026 Creates a buffer if necessary."
1027 (interactive)
1028 (let* ((dir (dired-current-directory))
1029 (up (file-name-directory (directory-file-name dir))))
1030 (or (dired-goto-file (directory-file-name dir))
1031 ;; Only try dired-goto-subdir if buffer has more than one dir.
1032 (and (cdr dired-subdir-alist)
1033 (dired-goto-subdir up))
1034 (progn
1035 (dired
1036 up)
1037 (dired-goto-file dir)))))
1038
1039 ;; Force `f' rather than `e' in the mode doc:
1040 (defalias 'dired-advertised-find-file 'dired-find-file)
1041 (defun dired-find-file ()
1042 "In dired, visit the file or directory named on this line."
1043 (interactive)
1044 (find-file (file-name-sans-versions (dired-get-filename) t)))
1045
1046 (defun dired-mouse-find-file-other-window (event)
1047 "In dired, visit the file or directory name you click on."
1048 (interactive "e")
1049 (let (file)
1050 (save-excursion
1051 (set-buffer (window-buffer (posn-window (event-end event))))
1052 (save-excursion
1053 (goto-char (posn-point (event-end event)))
1054 (setq file (dired-get-filename))))
1055 (select-window (posn-window (event-end event)))
1056 (find-file-other-window (file-name-sans-versions file t))))
1057
1058 (defun dired-view-file ()
1059 "In dired, examine a file in view mode, returning to dired when done.
1060 When file is a directory, show it in this buffer if it is inserted;
1061 otherwise, display it in another buffer."
1062 (interactive)
1063 (if (file-directory-p (dired-get-filename))
1064 (or (and (cdr dired-subdir-alist)
1065 (dired-goto-subdir (dired-get-filename)))
1066 (dired (dired-get-filename)))
1067 (view-file (dired-get-filename))))
1068
1069 (defun dired-find-file-other-window ()
1070 "In dired, visit this file or directory in another window."
1071 (interactive)
1072 (find-file-other-window (file-name-sans-versions (dired-get-filename) t)))
1073
1074 (defun dired-display-file ()
1075 "In dired, display this file or directory in another window."
1076 (interactive)
1077 (let ((file (file-name-sans-versions (dired-get-filename) t)))
1078 (display-buffer (find-file-noselect file))))
1079 \f
1080 ;;; Functions for extracting and manipulating file names in dired buffers.
1081
1082 (defun dired-get-filename (&optional localp no-error-if-not-filep)
1083 "In dired, return name of file mentioned on this line.
1084 Value returned normally includes the directory name.
1085 Optional arg LOCALP with value `no-dir' means don't include directory
1086 name in result. A value of t means construct name relative to
1087 `default-directory', which still may contain slashes if in a subdirectory.
1088 Optional arg NO-ERROR-IF-NOT-FILEP means return nil if no filename on
1089 this line, otherwise an error occurs."
1090 (let (case-fold-search file p1 p2)
1091 (save-excursion
1092 (if (setq p1 (dired-move-to-filename (not no-error-if-not-filep)))
1093 (setq p2 (dired-move-to-end-of-filename no-error-if-not-filep))))
1094 ;; nil if no file on this line, but no-error-if-not-filep is t:
1095 (if (setq file (and p1 p2 (buffer-substring p1 p2)))
1096 ;; Check if ls quoted the names, and unquote them.
1097 ;; Using read to unquote is much faster than substituting
1098 ;; \007 (4 chars) -> ^G (1 char) etc. in a lisp loop.
1099 (cond ((string-match "b" dired-actual-switches) ; System V ls
1100 ;; This case is about 20% slower than without -b.
1101 (setq file
1102 (read
1103 (concat "\""
1104 ;; some ls -b don't escape quotes, argh!
1105 ;; This is not needed for GNU ls, though.
1106 (or (dired-string-replace-match
1107 "\\([^\\]\\)\"" file "\\1\\\\\"")
1108 file)
1109 "\""))))
1110 ;; If you do this, update dired-insert-subdir-validate too
1111 ;; ((string-match "Q" dired-actual-switches) ; GNU ls
1112 ;; (setq file (read file)))
1113 ))
1114 (if (eq localp 'no-dir)
1115 file
1116 (and file (concat (dired-current-directory localp) file)))))
1117
1118 (defun dired-make-absolute (file &optional dir)
1119 ;;"Convert FILE (a pathname relative to DIR) to an absolute pathname."
1120 ;; We can't always use expand-file-name as this would get rid of `.'
1121 ;; or expand in / instead default-directory if DIR=="".
1122 ;; This should be good enough for ange-ftp, but might easily be
1123 ;; redefined (for VMS?).
1124 ;; It should be reasonably fast, though, as it is called in
1125 ;; dired-get-filename.
1126 (concat (or dir default-directory) file))
1127
1128 (defun dired-make-relative (file &optional dir no-error)
1129 ;;"Convert FILE (an absolute pathname) to a pathname relative to DIR.
1130 ;; Else error (unless NO-ERROR is non-nil, then FILE is returned unchanged)
1131 ;;DIR defaults to default-directory."
1132 ;; DIR must be file-name-as-directory, as with all directory args in
1133 ;; Emacs Lisp code.
1134 (or dir (setq dir default-directory))
1135 ;; This case comes into play if default-directory is set to
1136 ;; use ~.
1137 (if (and (> (length dir) 0) (= (aref dir 0) ?~))
1138 (setq dir (expand-file-name dir)))
1139 (if (string-match (concat "^" (regexp-quote dir)) file)
1140 (substring file (match-end 0))
1141 (if no-error
1142 file
1143 (error "%s: not in directory tree growing at %s" file dir))))
1144 \f
1145 ;;; Functions for finding the file name in a dired buffer line.
1146
1147 (defvar dired-move-to-filename-regexp
1148 "\\(Jan\\|Feb\\|Mar\\|Apr\\|May\\|Jun\\|Jul\\|Aug\\|Sep\\|Oct\\|Nov\\|Dec\\)[ ]+[0-9]+ [ 0-9][0-9][:0-9][0-9][ 0-9] "
1149 "Regular expression to match a month abbreviation followed by a number.")
1150
1151 ;; Move to first char of filename on this line.
1152 ;; Returns position (point) or nil if no filename on this line."
1153 (defun dired-move-to-filename (&optional raise-error eol)
1154 ;; This is the UNIX version.
1155 (or eol (setq eol (progn (end-of-line) (point))))
1156 (beginning-of-line)
1157 (if (re-search-forward dired-move-to-filename-regexp eol t)
1158 (goto-char (match-end 0))
1159 (if raise-error
1160 (error "No file on this line"))))
1161
1162 (defun dired-move-to-end-of-filename (&optional no-error)
1163 ;; Assumes point is at beginning of filename,
1164 ;; thus the rwx bit re-search-backward below will succeed in *this*
1165 ;; line if at all. So, it should be called only after
1166 ;; (dired-move-to-filename t).
1167 ;; On failure, signals an error (with non-nil NO-ERROR just returns nil).
1168 ;; This is the UNIX version.
1169 (let (opoint file-type executable symlink hidden case-fold-search used-F eol)
1170 ;; case-fold-search is nil now, so we can test for capital F:
1171 (setq used-F (string-match "F" dired-actual-switches)
1172 opoint (point)
1173 eol (save-excursion (end-of-line) (point))
1174 hidden (and selective-display
1175 (save-excursion (search-forward "\r" eol t))))
1176 (if hidden
1177 nil
1178 (save-excursion;; Find out what kind of file this is:
1179 ;; Restrict perm bits to be non-blank,
1180 ;; otherwise this matches one char to early (looking backward):
1181 ;; "l---------" (some systems make symlinks that way)
1182 ;; "----------" (plain file with zero perms)
1183 (if (re-search-backward
1184 "\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)"
1185 nil t)
1186 (setq file-type (char-after (match-beginning 1))
1187 symlink (eq file-type ?l)
1188 ;; Only with -F we need to know whether it's an executable
1189 executable (and
1190 used-F
1191 (string-match
1192 "[xst]";; execute bit set anywhere?
1193 (concat
1194 (buffer-substring (match-beginning 2)
1195 (match-end 2))
1196 (buffer-substring (match-beginning 3)
1197 (match-end 3))
1198 (buffer-substring (match-beginning 4)
1199 (match-end 4))))))
1200 (or no-error (error "No file on this line"))))
1201 ;; Move point to end of name:
1202 (if symlink
1203 (if (search-forward " ->" eol t)
1204 (progn
1205 (forward-char -3)
1206 (and used-F
1207 dired-ls-F-marks-symlinks
1208 (eq (preceding-char) ?@);; did ls really mark the link?
1209 (forward-char -1))))
1210 (goto-char eol);; else not a symbolic link
1211 ;; ls -lF marks dirs, sockets and executables with exactly one
1212 ;; trailing character. (Executable bits on symlinks ain't mean
1213 ;; a thing, even to ls, but we know it's not a symlink.)
1214 (and used-F
1215 (or (memq file-type '(?d ?s))
1216 executable)
1217 (forward-char -1))))
1218 (or no-error
1219 (not (eq opoint (point)))
1220 (error (if hidden
1221 (substitute-command-keys
1222 "File line is hidden, type \\[dired-hide-subdir] to unhide")
1223 "No file on this line")))
1224 (if (eq opoint (point))
1225 nil
1226 (point))))
1227
1228 \f
1229 ;; Keeping Dired buffers in sync with the filesystem and with each other
1230
1231 (defvar dired-buffers nil
1232 ;; Enlarged by dired-advertise
1233 ;; Queried by function dired-buffers-for-dir. When this detects a
1234 ;; killed buffer, it is removed from this list.
1235 "Alist of directories and their associated dired buffers.")
1236
1237 (defun dired-buffers-for-dir (dir)
1238 ;; Return a list of buffers that dired DIR (top level or in-situ subdir).
1239 ;; The list is in reverse order of buffer creation, most recent last.
1240 ;; As a side effect, killed dired buffers for DIR are removed from
1241 ;; dired-buffers.
1242 (setq dir (file-name-as-directory dir))
1243 (let ((alist dired-buffers) result elt)
1244 (while alist
1245 (setq elt (car alist))
1246 (if (dired-in-this-tree dir (car elt))
1247 (let ((buf (cdr elt)))
1248 (if (buffer-name buf)
1249 (if (assoc dir (save-excursion
1250 (set-buffer buf)
1251 dired-subdir-alist))
1252 (setq result (cons buf result)))
1253 ;; else buffer is killed - clean up:
1254 (setq dired-buffers (delq elt dired-buffers)))))
1255 (setq alist (cdr alist)))
1256 result))
1257
1258 (defun dired-advertise ()
1259 ;;"Advertise in variable `dired-buffers' that we dired `default-directory'."
1260 ;; With wildcards we actually advertise too much.
1261 (if (memq (current-buffer) (dired-buffers-for-dir default-directory))
1262 t ; we have already advertised ourselves
1263 (setq dired-buffers
1264 (cons (cons default-directory (current-buffer))
1265 dired-buffers))))
1266
1267 (defun dired-unadvertise (dir)
1268 ;; Remove DIR from the buffer alist in variable dired-buffers.
1269 ;; This has the effect of removing any buffer whose main directory is DIR.
1270 ;; It does not affect buffers in which DIR is a subdir.
1271 ;; Removing is also done as a side-effect in dired-buffer-for-dir.
1272 (setq dired-buffers
1273 (delq (assoc dir dired-buffers) dired-buffers)))
1274 \f
1275 ;; Tree Dired
1276
1277 ;;; utility functions
1278
1279 (defun dired-in-this-tree (file dir)
1280 ;;"Is FILE part of the directory tree starting at DIR?"
1281 (let (case-fold-search)
1282 (string-match (concat "^" (regexp-quote (expand-file-name dir))) file)))
1283
1284 (defun dired-normalize-subdir (dir)
1285 ;; Prepend default-directory to DIR if relative path name.
1286 ;; dired-get-filename must be able to make a valid filename from a
1287 ;; file and its directory DIR.
1288 (file-name-as-directory
1289 (if (file-name-absolute-p dir)
1290 dir
1291 (expand-file-name dir default-directory))))
1292
1293 (defun dired-get-subdir ()
1294 ;;"Return the subdir name on this line, or nil if not on a headerline."
1295 ;; Look up in the alist whether this is a headerline.
1296 (save-excursion
1297 (let ((cur-dir (dired-current-directory)))
1298 (beginning-of-line) ; alist stores b-o-l positions
1299 (and (zerop (- (point)
1300 (dired-get-subdir-min (assoc cur-dir
1301 dired-subdir-alist))))
1302 cur-dir))))
1303
1304 ;(defun dired-get-subdir-min (elt)
1305 ; (cdr elt))
1306 ;; can't use macro, must be redefinable for other alist format in dired-nstd.
1307 (defalias 'dired-get-subdir-min 'cdr)
1308
1309 (defun dired-get-subdir-max (elt)
1310 (save-excursion
1311 (goto-char (dired-get-subdir-min elt))
1312 (dired-subdir-max)))
1313
1314 (defun dired-clear-alist ()
1315 (while dired-subdir-alist
1316 (set-marker (dired-get-subdir-min (car dired-subdir-alist)) nil)
1317 (setq dired-subdir-alist (cdr dired-subdir-alist))))
1318
1319 (defun dired-subdir-index (dir)
1320 ;; Return an index into alist for use with nth
1321 ;; for the sake of subdir moving commands.
1322 (let (found (index 0) (alist dired-subdir-alist))
1323 (while alist
1324 (if (string= dir (car (car alist)))
1325 (setq alist nil found t)
1326 (setq alist (cdr alist) index (1+ index))))
1327 (if found index nil)))
1328
1329 (defun dired-next-subdir (arg &optional no-error-if-not-found no-skip)
1330 "Go to next subdirectory, regardless of level."
1331 ;; Use 0 arg to go to this directory's header line.
1332 ;; NO-SKIP prevents moving to end of header line, returning whatever
1333 ;; position was found in dired-subdir-alist.
1334 (interactive "p")
1335 (let ((this-dir (dired-current-directory))
1336 pos index)
1337 ;; nth with negative arg does not return nil but the first element
1338 (setq index (- (dired-subdir-index this-dir) arg))
1339 (setq pos (if (>= index 0)
1340 (dired-get-subdir-min (nth index dired-subdir-alist))))
1341 (if pos
1342 (progn
1343 (goto-char pos)
1344 (or no-skip (skip-chars-forward "^\n\r"))
1345 (point))
1346 (if no-error-if-not-found
1347 nil ; return nil if not found
1348 (error "%s directory" (if (> arg 0) "Last" "First"))))))
1349
1350 (defun dired-build-subdir-alist ()
1351 "Build `dired-subdir-alist' by parsing the buffer.
1352 Returns the new value of the alist."
1353 (interactive)
1354 (dired-clear-alist)
1355 (save-excursion
1356 (let ((count 0)
1357 (buffer-read-only nil)
1358 new-dir-name)
1359 (goto-char (point-min))
1360 (setq dired-subdir-alist nil)
1361 (while (re-search-forward dired-subdir-regexp nil t)
1362 (save-excursion
1363 (goto-char (match-beginning 1))
1364 (setq new-dir-name
1365 (expand-file-name (buffer-substring (point) (match-end 1))))
1366 (delete-region (point) (match-end 1))
1367 (insert new-dir-name))
1368 (setq count (1+ count))
1369 (dired-alist-add-1 new-dir-name
1370 ;; Place a sub directory boundary between lines.
1371 (save-excursion
1372 (goto-char (match-beginning 0))
1373 (beginning-of-line)
1374 (point-marker))))
1375 (if (> count 1)
1376 (message "Buffer includes %d directories" count))
1377 ;; We don't need to sort it because it is in buffer order per
1378 ;; constructionem. Return new alist:
1379 dired-subdir-alist)))
1380
1381 (defun dired-alist-add-1 (dir new-marker)
1382 ;; Add new DIR at NEW-MARKER. Don't sort.
1383 (setq dired-subdir-alist
1384 (cons (cons (dired-normalize-subdir dir) new-marker)
1385 dired-subdir-alist)))
1386
1387 (defun dired-goto-next-nontrivial-file ()
1388 ;; Position point on first nontrivial file after point.
1389 (dired-goto-next-file);; so there is a file to compare with
1390 (if (stringp dired-trivial-filenames)
1391 (while (and (not (eobp))
1392 (string-match dired-trivial-filenames
1393 (file-name-nondirectory
1394 (or (dired-get-filename nil t) ""))))
1395 (forward-line 1)
1396 (dired-move-to-filename))))
1397
1398 (defun dired-goto-next-file ()
1399 (let ((max (1- (dired-subdir-max))))
1400 (while (and (not (dired-move-to-filename)) (< (point) max))
1401 (forward-line 1))))
1402
1403 (defun dired-goto-file (file)
1404 "Go to file line of FILE in this dired buffer."
1405 ;; Return value of point on success, else nil.
1406 ;; FILE must be an absolute pathname.
1407 ;; Loses if FILE contains control chars like "\007" for which ls
1408 ;; either inserts "?" or "\\007" into the buffer, so we won't find
1409 ;; it in the buffer.
1410 (interactive
1411 (prog1 ; let push-mark display its message
1412 (list (expand-file-name
1413 (read-file-name "Goto file: "
1414 (dired-current-directory))))
1415 (push-mark)))
1416 (setq file (directory-file-name file)) ; does no harm if no directory
1417 (let (found case-fold-search dir)
1418 (setq dir (or (file-name-directory file)
1419 (error "Need absolute pathname for %s" file)))
1420 (save-excursion
1421 ;; The hair here is to get the result of dired-goto-subdir
1422 ;; without really calling it if we don't have any subdirs.
1423 (if (if (string= dir (expand-file-name default-directory))
1424 (goto-char (point-min))
1425 (and (cdr dired-subdir-alist)
1426 (dired-goto-subdir dir)))
1427 (let ((base (file-name-nondirectory file))
1428 (boundary (dired-subdir-max)))
1429 (while (and (not found)
1430 ;; filenames are preceded by SPC, this makes
1431 ;; the search faster (e.g. for the filename "-"!).
1432 (search-forward (concat " " base) boundary 'move))
1433 ;; Match could have BASE just as initial substring or
1434 ;; or in permission bits or date or
1435 ;; not be a proper filename at all:
1436 (if (equal base (dired-get-filename 'no-dir t))
1437 ;; Must move to filename since an (actually
1438 ;; correct) match could have been elsewhere on the
1439 ;; ;; line (e.g. "-" would match somewhere in the
1440 ;; permission bits).
1441 (setq found (dired-move-to-filename))
1442 ;; If this isn't the right line, move forward to avoid
1443 ;; trying this line again.
1444 (forward-line 1))))))
1445 (and found
1446 ;; return value of point (i.e., FOUND):
1447 (goto-char found))))
1448
1449 (defun dired-initial-position (dirname)
1450 ;; Where point should go in a new listing of DIRNAME.
1451 ;; Point assumed at beginning of new subdir line.
1452 ;; You may redefine this function as you wish, e.g. like in dired-x.el.
1453 (end-of-line)
1454 (if dired-trivial-filenames (dired-goto-next-nontrivial-file)))
1455 \f
1456 ;; These are hooks which make tree dired work.
1457 ;; They are in this file because other parts of dired need to call them.
1458 ;; But they don't call the rest of tree dired unless there are subdirs loaded.
1459
1460 ;; This function is called for each retrieved filename.
1461 ;; It could stand to be faster, though it's mostly function call
1462 ;; overhead. Avoiding the function call seems to save about 10% in
1463 ;; dired-get-filename. Make it a defsubst?
1464 (defun dired-current-directory (&optional localp)
1465 "Return the name of the subdirectory to which this line belongs.
1466 This returns a string with trailing slash, like `default-directory'.
1467 Optional argument means return a file name relative to `default-directory'."
1468 (let ((here (point))
1469 (alist (or dired-subdir-alist
1470 ;; probably because called in a non-dired buffer
1471 (error "No subdir-alist in %s" (current-buffer))))
1472 elt dir)
1473 (while alist
1474 (setq elt (car alist)
1475 dir (car elt)
1476 ;; use `<=' (not `<') as subdir line is part of subdir
1477 alist (if (<= (dired-get-subdir-min elt) here)
1478 nil ; found
1479 (cdr alist))))
1480 (if localp
1481 (dired-make-relative dir default-directory)
1482 dir)))
1483
1484 ;; Subdirs start at the beginning of their header lines and end just
1485 ;; before the beginning of the next header line (or end of buffer).
1486
1487 (defun dired-subdir-max ()
1488 (save-excursion
1489 (if (or (null (cdr dired-subdir-alist)) (not (dired-next-subdir 1 t t)))
1490 (point-max)
1491 (point))))
1492 \f
1493 ;; Deleting files
1494
1495 (defun dired-do-flagged-delete ()
1496 "In dired, delete the files flagged for deletion."
1497 (interactive)
1498 (let* ((dired-marker-char dired-del-marker)
1499 (regexp (dired-marker-regexp))
1500 case-fold-search)
1501 (if (save-excursion (goto-char (point-min))
1502 (re-search-forward regexp nil t))
1503 (dired-internal-do-deletions
1504 ;; this can't move point since ARG is nil
1505 (dired-map-over-marks (cons (dired-get-filename) (point))
1506 nil)
1507 nil)
1508 (message "(No deletions requested)"))))
1509
1510 (defun dired-do-delete (&optional arg)
1511 "Delete all marked (or next ARG) files."
1512 ;; This is more consistent with the file marking feature than
1513 ;; dired-do-flagged-delete.
1514 (interactive "P")
1515 (dired-internal-do-deletions
1516 ;; this may move point if ARG is an integer
1517 (dired-map-over-marks (cons (dired-get-filename) (point))
1518 arg)
1519 arg))
1520
1521 (defvar dired-deletion-confirmer 'yes-or-no-p) ; or y-or-n-p?
1522
1523 (defun dired-internal-do-deletions (l arg)
1524 ;; L is an alist of files to delete, with their buffer positions.
1525 ;; ARG is the prefix arg.
1526 ;; Filenames are absolute (VMS needs this for logical search paths).
1527 ;; (car L) *must* be the *last* (bottommost) file in the dired buffer.
1528 ;; That way as changes are made in the buffer they do not shift the
1529 ;; lines still to be changed, so the (point) values in L stay valid.
1530 ;; Also, for subdirs in natural order, a subdir's files are deleted
1531 ;; before the subdir itself - the other way around would not work.
1532 (let ((files (mapcar (function car) l))
1533 (count (length l))
1534 (succ 0))
1535 ;; canonicalize file list for pop up
1536 (setq files (nreverse (mapcar (function dired-make-relative) files)))
1537 (if (dired-mark-pop-up
1538 " *Deletions*" 'delete files dired-deletion-confirmer
1539 (format "Delete %s " (dired-mark-prompt arg files)))
1540 (save-excursion
1541 (let (failures);; files better be in reverse order for this loop!
1542 (while l
1543 (goto-char (cdr (car l)))
1544 (let (buffer-read-only)
1545 (condition-case err
1546 (let ((fn (car (car l))))
1547 ;; This test is equivalent to
1548 ;; (and (file-directory-p fn) (not (file-symlink-p fn)))
1549 ;; but more efficient
1550 (if (eq t (car (file-attributes fn)))
1551 (delete-directory fn)
1552 (delete-file fn))
1553 ;; if we get here, removing worked
1554 (setq succ (1+ succ))
1555 (message "%s of %s deletions" succ count)
1556 (delete-region (progn (beginning-of-line) (point))
1557 (progn (forward-line 1) (point)))
1558 (dired-clean-up-after-deletion fn))
1559 (error;; catch errors from failed deletions
1560 (dired-log "%s\n" err)
1561 (setq failures (cons (car (car l)) failures)))))
1562 (setq l (cdr l)))
1563 (if (not failures)
1564 (message "%d deletion%s done" count (dired-plural-s count))
1565 (dired-log-summary
1566 (format "%d of %d deletion%s failed"
1567 (length failures) count
1568 (dired-plural-s count))
1569 failures))))
1570 (message "(No deletions performed)")))
1571 (dired-move-to-filename))
1572
1573 ;; This is a separate function for the sake of dired-x.el.
1574 (defun dired-clean-up-after-deletion (fn)
1575 ;; Clean up after a deleted file or directory FN.
1576 (save-excursion (and (cdr dired-subdir-alist)
1577 (dired-goto-subdir fn)
1578 (dired-kill-subdir))))
1579 \f
1580 ;; Confirmation
1581
1582 (defun dired-marker-regexp ()
1583 (concat "^" (regexp-quote (char-to-string dired-marker-char))))
1584
1585 (defun dired-plural-s (count)
1586 (if (= 1 count) "" "s"))
1587
1588 (defun dired-mark-prompt (arg files)
1589 ;; Return a string for use in a prompt, either the current file
1590 ;; name, or the marker and a count of marked files.
1591 (let ((count (length files)))
1592 (if (= count 1)
1593 (car files)
1594 ;; more than 1 file:
1595 (if (integerp arg)
1596 ;; abs(arg) = count
1597 ;; Perhaps this is nicer, but it also takes more screen space:
1598 ;;(format "[%s %d files]" (if (> arg 0) "next" "previous")
1599 ;; count)
1600 (format "[next %d files]" arg)
1601 (format "%c [%d files]" dired-marker-char count)))))
1602
1603 (defun dired-pop-to-buffer (buf)
1604 ;; Pop up buffer BUF.
1605 ;; If dired-shrink-to-fit is t, make its window fit its contents.
1606 (if (not dired-shrink-to-fit)
1607 (pop-to-buffer (get-buffer-create buf))
1608 ;; let window shrink to fit:
1609 (let ((window (selected-window))
1610 target-lines w2)
1611 (cond ;; if split-window-threshold is enabled, use the largest window
1612 ((and (> (window-height (setq w2 (get-largest-window)))
1613 split-height-threshold)
1614 (= (frame-width) (window-width w2)))
1615 (setq window w2))
1616 ;; if the least-recently-used window is big enough, use it
1617 ((and (> (window-height (setq w2 (get-lru-window)))
1618 (* 2 window-min-height))
1619 (= (frame-width) (window-width w2)))
1620 (setq window w2)))
1621 (save-excursion
1622 (set-buffer buf)
1623 (goto-char (point-max))
1624 (skip-chars-backward "\n\r\t ")
1625 (setq target-lines (count-lines (point-min) (point)))
1626 ;; Don't forget to count the last line.
1627 (if (not (bolp))
1628 (setq target-lines (1+ target-lines))))
1629 (if (<= (window-height window) (* 2 window-min-height))
1630 ;; At this point, every window on the frame is too small to split.
1631 (setq w2 (display-buffer buf))
1632 (setq w2 (split-window window
1633 (max window-min-height
1634 (- (window-height window)
1635 (1+ (max window-min-height target-lines)))))))
1636 (set-window-buffer w2 buf)
1637 (if (< (1- (window-height w2)) target-lines)
1638 (progn
1639 (select-window w2)
1640 (enlarge-window (- target-lines (1- (window-height w2))))))
1641 (set-window-start w2 1)
1642 )))
1643
1644 (defvar dired-no-confirm nil
1645 ;; "If non-nil, list of symbols for commands dired should not confirm.
1646 ;;It can be a sublist of
1647 ;;
1648 ;; '(byte-compile chgrp chmod chown compress copy delete hardlink load
1649 ;; move print shell symlink uncompress)"
1650 )
1651
1652 (defun dired-mark-pop-up (bufname op-symbol files function &rest args)
1653 ;;"Args BUFNAME OP-SYMBOL FILES FUNCTION &rest ARGS.
1654 ;;Return FUNCTION's result on ARGS after popping up a window (in a buffer
1655 ;;named BUFNAME, nil gives \" *Marked Files*\") showing the marked
1656 ;;files. Uses function `dired-pop-to-buffer' to do that.
1657 ;; FUNCTION should not manipulate files.
1658 ;; It should only read input (an argument or confirmation).
1659 ;;The window is not shown if there is just one file or
1660 ;; OP-SYMBOL is a member of the list in `dired-no-confirm'.
1661 ;;FILES is the list of marked files."
1662 (or bufname (setq bufname " *Marked Files*"))
1663 (if (or (memq op-symbol dired-no-confirm)
1664 (= (length files) 1))
1665 (apply function args)
1666 (save-excursion
1667 (set-buffer (get-buffer-create bufname))
1668 (erase-buffer)
1669 (dired-format-columns-of-files files))
1670 (save-window-excursion
1671 (dired-pop-to-buffer bufname)
1672 (apply function args))))
1673
1674 (defun dired-format-columns-of-files (files)
1675 ;; Files should be in forward order for this loop.
1676 ;; i.e., (car files) = first file in buffer.
1677 ;; Returns the number of lines used.
1678 (let* ((maxlen (+ 2 (apply 'max (mapcar 'length files))))
1679 (width (- (window-width (selected-window)) 2))
1680 (columns (max 1 (/ width maxlen)))
1681 (nfiles (length files))
1682 (rows (+ (/ nfiles columns)
1683 (if (zerop (% nfiles columns)) 0 1)))
1684 (i 0)
1685 (j 0))
1686 (setq files (nconc (copy-sequence files) ; fill up with empty fns
1687 (make-list (- (* columns rows) nfiles) "")))
1688 (setcdr (nthcdr (1- (length files)) files) files) ; make circular
1689 (while (< j rows)
1690 (while (< i columns)
1691 (indent-to (* i maxlen))
1692 (insert (car files))
1693 (setq files (nthcdr rows files)
1694 i (1+ i)))
1695 (insert "\n")
1696 (setq i 0
1697 j (1+ j)
1698 files (cdr files)))
1699 rows))
1700 \f
1701 ;; Commands to mark or flag file(s) at or near current line.
1702
1703 (defun dired-repeat-over-lines (arg function)
1704 ;; This version skips non-file lines.
1705 (let ((pos (make-marker)))
1706 (beginning-of-line)
1707 (while (and (> arg 0) (not (eobp)))
1708 (setq arg (1- arg))
1709 (beginning-of-line)
1710 (while (and (not (eobp)) (dired-between-files)) (forward-line 1))
1711 (save-excursion
1712 (forward-line 1)
1713 (move-marker pos (1+ (point))))
1714 (save-excursion (funcall function))
1715 ;; Advance to the next line--actually, to the line that *was* next.
1716 ;; (If FUNCTION inserted some new lines in between, skip them.)
1717 (goto-char pos))
1718 (while (and (< arg 0) (not (bobp)))
1719 (setq arg (1+ arg))
1720 (forward-line -1)
1721 (while (and (not (bobp)) (dired-between-files)) (forward-line -1))
1722 (beginning-of-line)
1723 (save-excursion (funcall function)))
1724 (move-marker pos nil)
1725 (dired-move-to-filename)))
1726
1727 (defun dired-between-files ()
1728 ;; Point must be at beginning of line
1729 ;; Should be equivalent to (save-excursion (not (dired-move-to-filename)))
1730 ;; but is about 1.5..2.0 times as fast. (Actually that's not worth it)
1731 (or (looking-at "^$\\|^. *$\\|^. total\\|^. wildcard")
1732 (looking-at dired-subdir-regexp)))
1733
1734 (defun dired-next-marked-file (arg &optional wrap opoint)
1735 "Move to the next marked file, wrapping around the end of the buffer."
1736 (interactive "p\np")
1737 (or opoint (setq opoint (point)));; return to where interactively started
1738 (if (if (> arg 0)
1739 (re-search-forward dired-re-mark nil t arg)
1740 (beginning-of-line)
1741 (re-search-backward dired-re-mark nil t (- arg)))
1742 (dired-move-to-filename)
1743 (if (null wrap)
1744 (progn
1745 (goto-char opoint)
1746 (error "No next marked file"))
1747 (message "(Wraparound for next marked file)")
1748 (goto-char (if (> arg 0) (point-min) (point-max)))
1749 (dired-next-marked-file arg nil opoint))))
1750
1751 (defun dired-prev-marked-file (arg &optional wrap)
1752 "Move to the previous marked file, wrapping around the end of the buffer."
1753 (interactive "p\np")
1754 (dired-next-marked-file (- arg) wrap))
1755
1756 (defun dired-file-marker (file)
1757 ;; Return FILE's marker, or nil if unmarked.
1758 (save-excursion
1759 (and (dired-goto-file file)
1760 (progn
1761 (beginning-of-line)
1762 (if (not (equal ?\040 (following-char)))
1763 (following-char))))))
1764
1765 (defun dired-mark-files-in-region (start end)
1766 (let (buffer-read-only)
1767 (if (> start end)
1768 (error "start > end"))
1769 (goto-char start) ; assumed at beginning of line
1770 (while (< (point) end)
1771 ;; Skip subdir line and following garbage like the `total' line:
1772 (while (and (< (point) end) (dired-between-files))
1773 (forward-line 1))
1774 (if (and (not (looking-at dired-re-dot))
1775 (dired-get-filename nil t))
1776 (progn
1777 (delete-char 1)
1778 (insert dired-marker-char)))
1779 (forward-line 1))))
1780
1781 (defun dired-mark (arg)
1782 "Mark the current (or next ARG) files.
1783 If on a subdir headerline, mark all its files except `.' and `..'.
1784
1785 Use \\[dired-unmark-all-files] to remove all marks
1786 and \\[dired-unmark] on a subdir to remove the marks in
1787 this subdir."
1788 (interactive "P")
1789 (if (and (cdr dired-subdir-alist) (dired-get-subdir))
1790 (save-excursion (dired-mark-subdir-files))
1791 (let (buffer-read-only)
1792 (dired-repeat-over-lines
1793 (prefix-numeric-value arg)
1794 (function (lambda () (delete-char 1) (insert dired-marker-char)))))))
1795
1796 (defun dired-unmark (arg)
1797 "Unmark the current (or next ARG) files.
1798 If looking at a subdir, unmark all its files except `.' and `..'."
1799 (interactive "P")
1800 (let ((dired-marker-char ?\040))
1801 (dired-mark arg)))
1802
1803 (defun dired-flag-file-deletion (arg)
1804 "In dired, flag the current line's file for deletion.
1805 With prefix arg, repeat over several lines.
1806
1807 If on a subdir headerline, mark all its files except `.' and `..'."
1808 (interactive "P")
1809 (let ((dired-marker-char dired-del-marker))
1810 (dired-mark arg)))
1811
1812 (defun dired-unmark-backward (arg)
1813 "In dired, move up lines and remove deletion flag there.
1814 Optional prefix ARG says how many lines to unflag; default is one line."
1815 (interactive "p")
1816 (dired-unmark (- arg)))
1817 \f
1818 ;;; Commands to mark or flag files based on their characteristics or names.
1819
1820 (defvar dired-regexp-history nil
1821 "History list of regular expressions used in Dired commands.")
1822
1823 (defun dired-read-regexp (prompt)
1824 (read-from-minibuffer prompt nil nil nil 'dired-regexp-history))
1825
1826 (defun dired-mark-files-regexp (regexp &optional marker-char)
1827 "Mark all files matching REGEXP for use in later commands.
1828 A prefix argument means to unmark them instead.
1829 `.' and `..' are never marked.
1830
1831 REGEXP is an Emacs regexp, not a shell wildcard. Thus, use `\\.o$' for
1832 object files--just `.o' will mark more than you might think."
1833 (interactive
1834 (list (dired-read-regexp (concat (if current-prefix-arg "Unmark" "Mark")
1835 " files (regexp): "))
1836 (if current-prefix-arg ?\040)))
1837 (let ((dired-marker-char (or marker-char dired-marker-char)))
1838 (dired-mark-if
1839 (and (not (looking-at dired-re-dot))
1840 (not (eolp)) ; empty line
1841 (let ((fn (dired-get-filename nil t)))
1842 (and fn (string-match regexp (file-name-nondirectory fn)))))
1843 "matching file")))
1844
1845 (defun dired-flag-files-regexp (regexp)
1846 "In dired, flag all files containing the specified REGEXP for deletion.
1847 The match is against the non-directory part of the filename. Use `^'
1848 and `$' to anchor matches. Exclude subdirs by hiding them.
1849 `.' and `..' are never flagged."
1850 (interactive (list (dired-read-regexp "Flag for deletion (regexp): ")))
1851 (dired-mark-files-regexp regexp dired-del-marker))
1852
1853 (defun dired-mark-symlinks (unflag-p)
1854 "Mark all symbolic links.
1855 With prefix argument, unflag all those files."
1856 (interactive "P")
1857 (let ((dired-marker-char (if unflag-p ?\040 dired-marker-char)))
1858 (dired-mark-if (looking-at dired-re-sym) "symbolic link")))
1859
1860 (defun dired-mark-directories (unflag-p)
1861 "Mark all directory file lines except `.' and `..'.
1862 With prefix argument, unflag all those files."
1863 (interactive "P")
1864 (let ((dired-marker-char (if unflag-p ?\040 dired-marker-char)))
1865 (dired-mark-if (and (looking-at dired-re-dir)
1866 (not (looking-at dired-re-dot)))
1867 "directory file")))
1868
1869 (defun dired-mark-executables (unflag-p)
1870 "Mark all executable files.
1871 With prefix argument, unflag all those files."
1872 (interactive "P")
1873 (let ((dired-marker-char (if unflag-p ?\040 dired-marker-char)))
1874 (dired-mark-if (looking-at dired-re-exe) "executable file")))
1875
1876 ;; dired-x.el has a dired-mark-sexp interactive command: mark
1877 ;; files for which PREDICATE returns non-nil.
1878
1879 (defun dired-flag-auto-save-files (&optional unflag-p)
1880 "Flag for deletion files whose names suggest they are auto save files.
1881 A prefix argument says to unflag those files instead."
1882 (interactive "P")
1883 (let ((dired-marker-char (if unflag-p ?\040 dired-del-marker)))
1884 (dired-mark-if
1885 ;; It is less than general to check for # here,
1886 ;; but it's the only way this runs fast enough.
1887 (and (save-excursion (end-of-line)
1888 (or
1889 (eq (preceding-char) ?#)
1890 ;; Handle executables in case of -F option.
1891 ;; We need not worry about the other kinds
1892 ;; of markings that -F makes, since they won't
1893 ;; appear on real auto-save files.
1894 (if (eq (preceding-char) ?*)
1895 (progn
1896 (forward-char -1)
1897 (eq (preceding-char) ?#)))))
1898 (not (looking-at dired-re-dir))
1899 (let ((fn (dired-get-filename t t)))
1900 (if fn (auto-save-file-name-p
1901 (file-name-nondirectory fn)))))
1902 "auto save file")))
1903
1904 (defun dired-flag-backup-files (&optional unflag-p)
1905 "Flag all backup files (names ending with `~') for deletion.
1906 With prefix argument, unflag these files."
1907 (interactive "P")
1908 (let ((dired-marker-char (if unflag-p ?\040 dired-del-marker)))
1909 (dired-mark-if
1910 ;; It is less than general to check for ~ here,
1911 ;; but it's the only way this runs fast enough.
1912 (and (save-excursion (end-of-line)
1913 (or
1914 (eq (preceding-char) ?~)
1915 ;; Handle executables in case of -F option.
1916 ;; We need not worry about the other kinds
1917 ;; of markings that -F makes, since they won't
1918 ;; appear on real backup files.
1919 (if (eq (preceding-char) ?*)
1920 (progn
1921 (forward-char -1)
1922 (eq (preceding-char) ?~)))))
1923 (not (looking-at dired-re-dir))
1924 (let ((fn (dired-get-filename t t)))
1925 (if fn (backup-file-name-p fn))))
1926 "backup file")))
1927
1928 (defun dired-change-marks (&optional old new)
1929 "Change all OLD marks to NEW marks.
1930 OLD and NEW are both characters used to mark files."
1931 (interactive
1932 (let* ((cursor-in-echo-area t)
1933 (old (progn (message "Change (old mark): ") (read-char)))
1934 (new (progn (message "Change %c marks to (new mark): " old)
1935 (read-char))))
1936 (list old new)))
1937 (if (or (eq old ?\r) (eq new ?\r))
1938 (ding)
1939 (let ((string (format "\n%c" old))
1940 (buffer-read-only))
1941 (save-excursion
1942 (goto-char (point-min))
1943 (while (search-forward string nil t)
1944 (subst-char-in-region (match-beginning 0)
1945 (match-end 0) old new))))))
1946
1947 (defun dired-unmark-all-files-no-query ()
1948 "Remove all marks from all files in the Dired buffer."
1949 (interactive)
1950 (dired-unmark-all-files ?\r))
1951
1952 (defun dired-unmark-all-files (mark &optional arg)
1953 "Remove a specific mark (or any mark) from every file.
1954 After this command, type the mark character to remove,
1955 or type RET to remove all marks.
1956 With prefix arg, query for each marked file.
1957 Type \\[help-command] at that time for help."
1958 (interactive "cRemove marks (RET means all): \nP")
1959 (save-excursion
1960 (let* ((count 0)
1961 buffer-read-only case-fold-search query
1962 (string (format "\n%c" mark))
1963 (help-form "\
1964 Type SPC or `y' to unmark one file, DEL or `n' to skip to next,
1965 `!' to unmark all remaining files with no more questions."))
1966 (goto-char (point-min))
1967 (while (if (eq mark ?\r)
1968 (re-search-forward dired-re-mark nil t)
1969 (search-forward string nil t))
1970 (if (or (not arg)
1971 (dired-query 'query "Unmark file `%s'? "
1972 (dired-get-filename t)))
1973 (progn (subst-char-in-region (1- (point)) (point)
1974 (preceding-char) ?\ )
1975 (setq count (1+ count)))))
1976 (message (if (= count 1) "1 mark removed"
1977 "%d marks removed")
1978 count))))
1979 \f
1980 ;; Logging failures operating on files, and showing the results.
1981
1982 (defvar dired-log-buffer "*Dired log*")
1983
1984 (defun dired-why ()
1985 "Pop up a buffer with error log output from Dired.
1986 A group of errors from a single command ends with a formfeed.
1987 Thus, use \\[backward-page] to find the beginning of a group of errors."
1988 (interactive)
1989 (if (get-buffer dired-log-buffer)
1990 (let ((owindow (selected-window))
1991 (window (display-buffer (get-buffer dired-log-buffer))))
1992 (unwind-protect
1993 (progn
1994 (select-window window)
1995 (goto-char (point-max))
1996 (recenter -1))
1997 (select-window owindow)))))
1998
1999 (defun dired-log (log &rest args)
2000 ;; Log a message or the contents of a buffer.
2001 ;; If LOG is a string and there are more args, it is formatted with
2002 ;; those ARGS. Usually the LOG string ends with a \n.
2003 ;; End each bunch of errors with (dired-log t): this inserts
2004 ;; current time and buffer, and a \f (formfeed).
2005 (let ((obuf (current-buffer)))
2006 (unwind-protect ; want to move point
2007 (progn
2008 (set-buffer (get-buffer-create dired-log-buffer))
2009 (goto-char (point-max))
2010 (let (buffer-read-only)
2011 (cond ((stringp log)
2012 (insert (if args
2013 (apply (function format) log args)
2014 log)))
2015 ((bufferp log)
2016 (insert-buffer log))
2017 ((eq t log)
2018 (insert "\n\t" (current-time-string)
2019 "\tBuffer `" (buffer-name obuf) "'\n\f\n")))))
2020 (set-buffer obuf))))
2021
2022 (defun dired-log-summary (string failures)
2023 (message (if failures "%s--type ? for details (%s)"
2024 "%s--type ? for details")
2025 string failures)
2026 ;; Log a summary describing a bunch of errors.
2027 (dired-log (concat "\n" string))
2028 (dired-log t))
2029 \f
2030 ;;; Sorting
2031
2032 ;; Most ls can only sort by name or by date (with -t), nothing else.
2033 ;; GNU ls sorts on size with -S, on extension with -X, and unsorted with -U.
2034 ;; So anything that does not contain these is sort "by name".
2035
2036 (defvar dired-ls-sorting-switches "SXU"
2037 "String of `ls' switches (single letters) except `t' that influence sorting.")
2038
2039 (defvar dired-sort-by-date-regexp
2040 (concat "^-[^" dired-ls-sorting-switches
2041 "]*t[^" dired-ls-sorting-switches "]*$")
2042 "Regexp recognized by dired to set `by date' mode.")
2043
2044 (defvar dired-sort-by-name-regexp
2045 (concat "^-[^t" dired-ls-sorting-switches "]+$")
2046 "Regexp recognized by dired to set `by name' mode.")
2047
2048 (defun dired-sort-set-modeline ()
2049 ;; Set modeline display according to dired-actual-switches.
2050 ;; Modeline display of "by name" or "by date" guarantees the user a
2051 ;; match with the corresponding regexps. Non-matching switches are
2052 ;; shown literally.
2053 (setq mode-name
2054 (let (case-fold-search)
2055 (cond ((string-match dired-sort-by-name-regexp dired-actual-switches)
2056 "Dired by name")
2057 ((string-match dired-sort-by-date-regexp dired-actual-switches)
2058 "Dired by date")
2059 (t
2060 (concat "Dired " dired-actual-switches)))))
2061 ;; update mode line:
2062 (set-buffer-modified-p (buffer-modified-p)))
2063
2064 (defun dired-sort-toggle-or-edit (&optional arg)
2065 "Toggle between sort by date/name and refresh the dired buffer.
2066 With a prefix argument you can edit the current listing switches instead."
2067 (interactive "P")
2068 (if arg
2069 (dired-sort-other
2070 (read-string "ls switches (must contain -l): " dired-actual-switches))
2071 (dired-sort-toggle)))
2072
2073 (defun dired-sort-toggle ()
2074 ;; Toggle between sort by date/name. Reverts the buffer.
2075 (setq dired-actual-switches
2076 (let (case-fold-search)
2077 (concat
2078 "-l"
2079 (dired-replace-in-string (concat "[-lt"
2080 dired-ls-sorting-switches "]")
2081 ""
2082 dired-actual-switches)
2083 (if (string-match (concat "[t" dired-ls-sorting-switches "]")
2084 dired-actual-switches)
2085 ""
2086 "t"))))
2087 (dired-sort-set-modeline)
2088 (revert-buffer))
2089
2090 (defun dired-replace-in-string (regexp newtext string)
2091 ;; Replace REGEXP with NEWTEXT everywhere in STRING and return result.
2092 ;; NEWTEXT is taken literally---no \\DIGIT escapes will be recognized.
2093 (let ((result "") (start 0) mb me)
2094 (while (string-match regexp string start)
2095 (setq mb (match-beginning 0)
2096 me (match-end 0)
2097 result (concat result (substring string start mb) newtext)
2098 start me))
2099 (concat result (substring string start))))
2100
2101 (defun dired-sort-other (switches &optional no-revert)
2102 ;; Specify new ls SWITCHES for current dired buffer. Values matching
2103 ;; `dired-sort-by-date-regexp' or `dired-sort-by-name-regexp' set the
2104 ;; minor mode accordingly, others appear literally in the mode line.
2105 ;; With optional second arg NO-REVERT, don't refresh the listing afterwards.
2106 (setq dired-actual-switches switches)
2107 (dired-sort-set-modeline)
2108 (or no-revert (revert-buffer)))
2109 \f
2110 ;; To make this file smaller, the less common commands
2111 ;; go in a separate file. But autoload them here
2112 ;; to make the separation invisible.
2113
2114 (autoload 'dired-diff "dired-aux"
2115 "Compare file at point with file FILE using `diff'.
2116 FILE defaults to the file at the mark.
2117 The prompted-for file is the first file given to `diff'."
2118 t)
2119
2120 (autoload 'dired-backup-diff "dired-aux"
2121 "Diff this file with its backup file or vice versa.
2122 Uses the latest backup, if there are several numerical backups.
2123 If this file is a backup, diff it with its original.
2124 The backup file is the first file given to `diff'."
2125 t)
2126
2127 (autoload 'dired-clean-directory "dired-aux"
2128 "Flag numerical backups for deletion.
2129 Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest.
2130 Positive prefix arg KEEP overrides `dired-kept-versions';
2131 Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive.
2132
2133 To clear the flags on these files, you can use \\[dired-flag-backup-files]
2134 with a prefix argument."
2135 t)
2136
2137 (autoload 'dired-do-chmod "dired-aux"
2138 "Change the mode of the marked (or next ARG) files.
2139 This calls chmod, thus symbolic modes like `g+w' are allowed."
2140 t)
2141
2142 (autoload 'dired-do-chgrp "dired-aux"
2143 "Change the group of the marked (or next ARG) files."
2144 t)
2145
2146 (autoload 'dired-do-chown "dired-aux"
2147 "Change the owner of the marked (or next ARG) files."
2148 t)
2149
2150 (autoload 'dired-do-print "dired-aux"
2151 "Print the marked (or next ARG) files.
2152 Uses the shell command coming from variables `lpr-command' and
2153 `lpr-switches' as default."
2154 t)
2155
2156 (autoload 'dired-do-shell-command "dired-aux"
2157 "Run a shell command COMMAND on the marked files.
2158 If no files are marked or a specific numeric prefix arg is given,
2159 the next ARG files are used. Just \\[universal-argument] means the current file.
2160 The prompt mentions the file(s) or the marker, as appropriate.
2161
2162 If there is output, it goes to a separate buffer.
2163
2164 Normally the command is run on each file individually.
2165 However, if there is a `*' in the command then it is run
2166 just once with the entire file list substituted there.
2167
2168 No automatic redisplay of dired buffers is attempted, as there's no
2169 telling what files the command may have changed. Type
2170 \\[dired-do-redisplay] to redisplay the marked files.
2171
2172 The shell command has the top level directory as working directory, so
2173 output files usually are created there instead of in a subdir."
2174 t)
2175
2176 (autoload 'dired-do-kill-lines "dired-aux"
2177 "Kill all marked lines (not the files).
2178 With a prefix arg, kill all lines not marked or flagged."
2179 t)
2180
2181 (autoload 'dired-do-compress "dired-aux"
2182 "Compress or uncompress marked (or next ARG) files."
2183 t)
2184
2185 (autoload 'dired-do-byte-compile "dired-aux"
2186 "Byte compile marked (or next ARG) Emacs Lisp files."
2187 t)
2188
2189 (autoload 'dired-do-load "dired-aux"
2190 "Load the marked (or next ARG) Emacs Lisp files."
2191 t)
2192
2193 (autoload 'dired-do-redisplay "dired-aux"
2194 "Redisplay all marked (or next ARG) files.
2195 If on a subdir line, redisplay that subdirectory. In that case,
2196 a prefix arg lets you edit the `ls' switches used for the new listing."
2197 t)
2198
2199 (autoload 'dired-string-replace-match "dired-aux"
2200 "Replace first match of REGEXP in STRING with NEWTEXT.
2201 If it does not match, nil is returned instead of the new string.
2202 Optional arg LITERAL means to take NEWTEXT literally.
2203 Optional arg GLOBAL means to replace all matches."
2204 t)
2205
2206 (autoload 'dired-create-directory "dired-aux"
2207 "Create a directory called DIRECTORY."
2208 t)
2209
2210 (autoload 'dired-do-copy "dired-aux"
2211 "Copy all marked (or next ARG) files, or copy the current file.
2212 Thus, a zero prefix argument copies nothing. But it toggles the
2213 variable `dired-copy-preserve-time' (which see)."
2214 t)
2215
2216 (autoload 'dired-do-symlink "dired-aux"
2217 "Make symbolic links to current file or all marked (or next ARG) files.
2218 When operating on just the current file, you specify the new name.
2219 When operating on multiple or marked files, you specify a directory
2220 and new symbolic links are made in that directory
2221 with the same names that the files currently have."
2222 t)
2223
2224 (autoload 'dired-do-hardlink "dired-aux"
2225 "Add names (hard links) current file or all marked (or next ARG) files.
2226 When operating on just the current file, you specify the new name.
2227 When operating on multiple or marked files, you specify a directory
2228 and new hard links are made in that directory
2229 with the same names that the files currently have."
2230 t)
2231
2232 (autoload 'dired-do-rename "dired-aux"
2233 "Rename current file or all marked (or next ARG) files.
2234 When renaming just the current file, you specify the new name.
2235 When renaming multiple or marked files, you specify a directory."
2236 t)
2237
2238 (autoload 'dired-do-rename-regexp "dired-aux"
2239 "Rename marked files containing REGEXP to NEWNAME.
2240 As each match is found, the user must type a character saying
2241 what to do with it. For directions, type \\[help-command] at that time.
2242 NEWNAME may contain \\=\\<n> or \\& as in `query-replace-regexp'.
2243 REGEXP defaults to the last regexp used.
2244 With a zero prefix arg, renaming by regexp affects the complete
2245 pathname - usually only the non-directory part of file names is used
2246 and changed."
2247 t)
2248
2249 (autoload 'dired-do-copy-regexp "dired-aux"
2250 "Copy all marked files containing REGEXP to NEWNAME.
2251 See function `dired-rename-regexp' for more info."
2252 t)
2253
2254 (autoload 'dired-do-hardlink-regexp "dired-aux"
2255 "Hardlink all marked files containing REGEXP to NEWNAME.
2256 See function `dired-rename-regexp' for more info."
2257 t)
2258
2259 (autoload 'dired-do-symlink-regexp "dired-aux"
2260 "Symlink all marked files containing REGEXP to NEWNAME.
2261 See function `dired-rename-regexp' for more info."
2262 t)
2263
2264 (autoload 'dired-upcase "dired-aux"
2265 "Rename all marked (or next ARG) files to upper case."
2266 t)
2267
2268 (autoload 'dired-downcase "dired-aux"
2269 "Rename all marked (or next ARG) files to lower case."
2270 t)
2271
2272 (autoload 'dired-maybe-insert-subdir "dired-aux"
2273 "Insert this subdirectory into the same dired buffer.
2274 If it is already present, just move to it (type \\[dired-do-redisplay] to refresh),
2275 else inserts it at its natural place (as `ls -lR' would have done).
2276 With a prefix arg, you may edit the ls switches used for this listing.
2277 You can add `R' to the switches to expand the whole tree starting at
2278 this subdirectory.
2279 This function takes some pains to conform to `ls -lR' output."
2280 t)
2281
2282 (autoload 'dired-next-subdir "dired-aux"
2283 "Go to next subdirectory, regardless of level."
2284 t)
2285
2286 (autoload 'dired-prev-subdir "dired-aux"
2287 "Go to previous subdirectory, regardless of level.
2288 When called interactively and not on a subdir line, go to this subdir's line."
2289 t)
2290
2291 (autoload 'dired-goto-subdir "dired-aux"
2292 "Go to end of header line of DIR in this dired buffer.
2293 Return value of point on success, otherwise return nil.
2294 The next char is either \\n, or \\r if DIR is hidden."
2295 t)
2296
2297 (autoload 'dired-mark-subdir-files "dired-aux"
2298 "Mark all files except `.' and `..'."
2299 t)
2300
2301 (autoload 'dired-kill-subdir "dired-aux"
2302 "Remove all lines of current subdirectory.
2303 Lower levels are unaffected."
2304 t)
2305
2306 (autoload 'dired-tree-up "dired-aux"
2307 "Go up ARG levels in the dired tree."
2308 t)
2309
2310 (autoload 'dired-tree-down "dired-aux"
2311 "Go down in the dired tree."
2312 t)
2313
2314 (autoload 'dired-hide-subdir "dired-aux"
2315 "Hide or unhide the current subdirectory and move to next directory.
2316 Optional prefix arg is a repeat factor.
2317 Use \\[dired-hide-all] to (un)hide all directories."
2318 t)
2319
2320 (autoload 'dired-hide-all "dired-aux"
2321 "Hide all subdirectories, leaving only their header lines.
2322 If there is already something hidden, make everything visible again.
2323 Use \\[dired-hide-subdir] to (un)hide a particular subdirectory."
2324 t)
2325 \f
2326 (if (eq system-type 'vax-vms)
2327 (load "dired-vms"))
2328
2329 (provide 'dired)
2330
2331 (run-hooks 'dired-load-hook) ; for your customizations
2332
2333 ;;; dired.el ends here