comparison man/dired.texi @ 90389:146cd8369025

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-60 Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 259-273) - Update from CVS - lisp/replace.el (occur-engine): Bind `inhibit-field-text-motion' to t - Merge from gnus--rel--5.10 - Rename "field-at-point" to "field-at-pos" - (comint-insert-input): Remove redundant calls to setq and goto-char * gnus--rel--5.10 (patch 99-100) - Merge from emacs--devo--0 - Update from CVS
author Miles Bader <miles@gnu.org>
date Wed, 10 May 2006 20:42:41 +0000
parents 482dfed28bee e41cc24662e3
children a8190f7e546e
comparison
equal deleted inserted replaced
90388:a786f674d33f 90389:146cd8369025
34 either one file or several files. 34 either one file or several files.
35 * Shell Commands in Dired:: Running a shell command on the marked files. 35 * Shell Commands in Dired:: Running a shell command on the marked files.
36 * Transforming File Names:: Using patterns to rename multiple files. 36 * Transforming File Names:: Using patterns to rename multiple files.
37 * Comparison in Dired:: Running `diff' by way of Dired. 37 * Comparison in Dired:: Running `diff' by way of Dired.
38 * Subdirectories in Dired:: Adding subdirectories to the Dired buffer. 38 * Subdirectories in Dired:: Adding subdirectories to the Dired buffer.
39 @ifnottex
40 * Subdir Switches:: Subdirectory switches in Dired.
41 @end ifnottex
39 * Subdirectory Motion:: Moving across subdirectories, and up and down. 42 * Subdirectory Motion:: Moving across subdirectories, and up and down.
40 * Hiding Subdirectories:: Making subdirectories visible or invisible. 43 * Hiding Subdirectories:: Making subdirectories visible or invisible.
41 * Updating: Dired Updating. Discarding lines for files of no interest. 44 * Updating: Dired Updating. Discarding lines for files of no interest.
42 * Find: Dired and Find. Using `find' to choose the files for Dired. 45 * Find: Dired and Find. Using `find' to choose the files for Dired.
43 * Wdired:: Operating on files by editing the Dired buffer. 46 * Wdired:: Operating on files by editing the Dired buffer.
904 907
905 Use the @kbd{l} command (@code{dired-do-redisplay}) to update the 908 Use the @kbd{l} command (@code{dired-do-redisplay}) to update the
906 subdirectory's contents. Use @kbd{C-u k} on the subdirectory header 909 subdirectory's contents. Use @kbd{C-u k} on the subdirectory header
907 line to delete the subdirectory. @xref{Dired Updating}. 910 line to delete the subdirectory. @xref{Dired Updating}.
908 911
912 @ifnottex
913 @include dired-xtra.texi
914 @end ifnottex
915
909 @node Subdirectory Motion 916 @node Subdirectory Motion
910 @section Moving Over Subdirectories 917 @section Moving Over Subdirectories
911 918
912 When a Dired buffer lists subdirectories, you can use the page motion 919 When a Dired buffer lists subdirectories, you can use the page motion
913 commands @kbd{C-x [} and @kbd{C-x ]} to move by entire directories 920 commands @kbd{C-x [} and @kbd{C-x ]} to move by entire directories
1196 prompt) is to compare just the file names---each file name that does 1203 prompt) is to compare just the file names---each file name that does
1197 not appear in the other directory is ``different''. You can specify 1204 not appear in the other directory is ``different''. You can specify
1198 more stringent comparisons by entering a Lisp expression, which can 1205 more stringent comparisons by entering a Lisp expression, which can
1199 refer to the variables @code{size1} and @code{size2}, the respective 1206 refer to the variables @code{size1} and @code{size2}, the respective
1200 file sizes; @code{mtime1} and @code{mtime2}, the last modification 1207 file sizes; @code{mtime1} and @code{mtime2}, the last modification
1201 times in seconds, as floating point numers; and @code{fa1} and 1208 times in seconds, as floating point numbers; and @code{fa1} and
1202 @code{fa2}, the respective file attribute lists (as returned by the 1209 @code{fa2}, the respective file attribute lists (as returned by the
1203 function @code{file-attributes}). This expression is evaluated for 1210 function @code{file-attributes}). This expression is evaluated for
1204 each pair of like-named files, and if the expression's value is 1211 each pair of like-named files, and if the expression's value is
1205 non-@code{nil}, those files are considered ``different''. 1212 non-@code{nil}, those files are considered ``different''.
1206 1213