aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2005-04-05 00:11:11 +0000
committerLuc Teirlinck2005-04-05 00:11:11 +0000
commit105fa3fb56020f55aacf7127c3e64fd9267b54fb (patch)
treeb4e435ec6649f115f5e6a533f517d345671b8ca8
parent47b143f301436f3398a4df8e86250805dc5229e8 (diff)
downloademacs-105fa3fb56020f55aacf7127c3e64fd9267b54fb.tar.gz
emacs-105fa3fb56020f55aacf7127c3e64fd9267b54fb.zip
(Dired Visiting): `dired-view-command-alist' has been deleted.
(Marks vs Flags): Add some convenient key bindings. (Hiding Subdirectories): Delete redundant and inaccurate sentence. (Misc Dired Features): Correct and expand description of `w' command.
-rw-r--r--man/dired.texi41
1 files changed, 22 insertions, 19 deletions
diff --git a/man/dired.texi b/man/dired.texi
index b50ac82ab0b..dfd809c7607 100644
--- a/man/dired.texi
+++ b/man/dired.texi
@@ -289,15 +289,11 @@ to display the file, like the @kbd{o} command.
289@item v 289@item v
290@kindex v @r{(Dired)} 290@kindex v @r{(Dired)}
291@findex dired-view-file 291@findex dired-view-file
292View the file described on the current line, using either an external 292View the file described on the current line, using @kbd{M-x view-file}
293viewing program or @kbd{M-x view-file} (@code{dired-view-file}). 293(@code{dired-view-file}). Viewing a file with @code{view-file} is
294 294like visiting it, but is slanted toward moving around in the file
295@vindex dired-view-command-alist
296External viewers are used for certain file types under the control of
297@code{dired-view-command-alist}. Viewing a file with @code{view-file}
298is like visiting it, but is slanted toward moving around in the file
299conveniently and does not allow changing the file. @xref{Misc File 295conveniently and does not allow changing the file. @xref{Misc File
300Ops,View File, Miscellaneous File Operations}. 296Ops, View File, Miscellaneous File Operations}.
301 297
302@item ^ 298@item ^
303@kindex ^ @r{(Dired)} 299@kindex ^ @r{(Dired)}
@@ -376,13 +372,17 @@ Move point to previous line and remove any mark on that line
376(@code{dired-unmark-backward}). 372(@code{dired-unmark-backward}).
377 373
378@item * ! 374@item * !
375@itemx U
379@kindex * ! @r{(Dired)} 376@kindex * ! @r{(Dired)}
377@kindex U @r{(Dired)}
380@findex dired-unmark-all-marks 378@findex dired-unmark-all-marks
381Remove all marks from all the files in this Dired buffer 379Remove all marks from all the files in this Dired buffer
382(@code{dired-unmark-all-marks}). 380(@code{dired-unmark-all-marks}).
383 381
384@item * ? @var{markchar} 382@item * ? @var{markchar}
383@itemx M-@key{DEL}
385@kindex * ? @r{(Dired)} 384@kindex * ? @r{(Dired)}
385@kindex M-DEL @r{(Dired)}
386@findex dired-unmark-all-files 386@findex dired-unmark-all-files
387Remove all marks that use the character @var{markchar} 387Remove all marks that use the character @var{markchar}
388(@code{dired-unmark-all-files}). The argument is a single 388(@code{dired-unmark-all-files}). The argument is a single
@@ -396,17 +396,23 @@ asking whether to remove its mark. You can answer @kbd{y} meaning yes,
396files without asking about them. 396files without asking about them.
397 397
398@item * C-n 398@item * C-n
399@itemx M-@}
399@findex dired-next-marked-file 400@findex dired-next-marked-file
400@kindex * C-n @r{(Dired)} 401@kindex * C-n @r{(Dired)}
402@kindex M-@} @r{(Dired)}
401Move down to the next marked file (@code{dired-next-marked-file}) 403Move down to the next marked file (@code{dired-next-marked-file})
402A file is ``marked'' if it has any kind of mark. 404A file is ``marked'' if it has any kind of mark.
403 405
404@item * C-p 406@item * C-p
407@itemx M-@{
405@findex dired-prev-marked-file 408@findex dired-prev-marked-file
406@kindex * C-p @r{(Dired)} 409@kindex * C-p @r{(Dired)}
410@kindex M-@{ @r{(Dired)}
407Move up to the previous marked file (@code{dired-prev-marked-file}) 411Move up to the previous marked file (@code{dired-prev-marked-file})
408 412
409@item * t 413@item t
414@itemx * t
415@kindex t @r{(Dired)}
410@kindex * t @r{(Dired)} 416@kindex * t @r{(Dired)}
411@findex dired-toggle-marks 417@findex dired-toggle-marks
412@cindex toggling marks (in Dired) 418@cindex toggling marks (in Dired)
@@ -968,9 +974,6 @@ ignore files in hidden directories even if they are marked. Thus you
968can use hiding to temporarily exclude subdirectories from operations 974can use hiding to temporarily exclude subdirectories from operations
969without having to remove the markers. 975without having to remove the markers.
970 976
971 The subdirectory hiding commands toggle; that is, they hide what was
972visible, and show what was hidden.
973
974@node Dired Updating 977@node Dired Updating
975@section Updating the Dired Buffer 978@section Updating the Dired Buffer
976@cindex updating Dired buffer 979@cindex updating Dired buffer
@@ -1145,18 +1148,18 @@ C-c}.
1145@findex dired-copy-filename-as-kill 1148@findex dired-copy-filename-as-kill
1146 The @kbd{w} command (@code{dired-copy-filename-as-kill}) puts the 1149 The @kbd{w} command (@code{dired-copy-filename-as-kill}) puts the
1147names of the marked (or next @var{n}) files into the kill ring, as if 1150names of the marked (or next @var{n}) files into the kill ring, as if
1148you had killed them with @kbd{C-w}. 1151you had killed them with @kbd{C-w}. The names are separated by a space.
1149 1152
1150 The main purpose of this command is so that you can yank the file 1153 The main purpose of this command is so that you can yank the file
1151names into arguments for other Emacs commands. It also displays what 1154names into arguments for other Emacs commands. It also displays what
1152was pushed onto the kill ring, so you can use it to display the list 1155was pushed onto the kill ring, so you can use it to display the list
1153of currently marked files in the echo area. With a zero prefix 1156of currently marked files in the echo area. With a zero prefix
1154argument @var{n}=0, this uses the absolute file name of each marked 1157argument, this uses the absolute file name of each marked file. With
1155file. With just @kbd{C-u} as the prefix argument, it uses the 1158just @kbd{C-u} as the prefix argument, it uses file names relative to
1156relative file name of each marked file. As a special case, if no 1159the Dired buffer's default directory. (This can still contain slashes
1157prefix argument is given and point is on a directory headerline, 1160if in a subdirectory.) As a special case, if point is on a directory
1158@kbd{w} gives you the name of that directory without looking for 1161headerline, @kbd{w} gives you the absolute name of that directory.
1159marked files. 1162Any prefix argument or marked files are ignored in this case.
1160 1163
1161 On the X window system, Emacs supports the ``drag and drop'' 1164 On the X window system, Emacs supports the ``drag and drop''
1162protocol. You can drag a file object from another program, and drop 1165protocol. You can drag a file object from another program, and drop