diff options
| author | Richard M. Stallman | 2003-09-22 15:50:15 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-09-22 15:50:15 +0000 |
| commit | 9eae419dca10b464d7f9346460c1c7b203aabdb1 (patch) | |
| tree | 00b43108bafc534f1b86cc7ea17d51ce48afddc7 | |
| parent | f0725a6abd0af6fda4d377b84bf1874e67ae07be (diff) | |
| download | emacs-9eae419dca10b464d7f9346460c1c7b203aabdb1.tar.gz emacs-9eae419dca10b464d7f9346460c1c7b203aabdb1.zip | |
(Misc Dired Commands): New node.
(Dired Navigation): Add dired-goto-file.
| -rw-r--r-- | man/dired.texi | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/man/dired.texi b/man/dired.texi index 92d93324dd4..88e994ed027 100644 --- a/man/dired.texi +++ b/man/dired.texi | |||
| @@ -39,6 +39,7 @@ files. | |||
| 39 | * Hiding Subdirectories:: Making subdirectories visible or invisible. | 39 | * Hiding Subdirectories:: Making subdirectories visible or invisible. |
| 40 | * Updating: Dired Updating. Discarding lines for files of no interest. | 40 | * Updating: Dired Updating. Discarding lines for files of no interest. |
| 41 | * Find: Dired and Find. Using `find' to choose the files for Dired. | 41 | * Find: Dired and Find. Using `find' to choose the files for Dired. |
| 42 | * Misc: Misc Dired Commands. Various other features. | ||
| 42 | @end menu | 43 | @end menu |
| 43 | 44 | ||
| 44 | @node Dired Enter | 45 | @node Dired Enter |
| @@ -85,6 +86,11 @@ to @kbd{C-n}. @kbd{p} is equivalent to @kbd{C-p}. (Moving by lines is | |||
| 85 | so common in Dired that it deserves to be easy to type.) @key{DEL} | 86 | so common in Dired that it deserves to be easy to type.) @key{DEL} |
| 86 | (move up and unflag) is often useful simply for moving up. | 87 | (move up and unflag) is often useful simply for moving up. |
| 87 | 88 | ||
| 89 | @findex dired-goto-file | ||
| 90 | @kindex M-g | ||
| 91 | @kbd{M-g} (@code{dired-goto-file}) moves point to the line that | ||
| 92 | describes a specified file or directory. | ||
| 93 | |||
| 88 | Some additional navigation commands are available when the Dired | 94 | Some additional navigation commands are available when the Dired |
| 89 | buffer includes several directories. @xref{Subdirectory Motion}. | 95 | buffer includes several directories. @xref{Subdirectory Motion}. |
| 90 | 96 | ||
| @@ -329,7 +335,7 @@ those files. | |||
| 329 | @item * @@ | 335 | @item * @@ |
| 330 | @kindex * @@ @r{(Dired)} | 336 | @kindex * @@ @r{(Dired)} |
| 331 | @findex dired-mark-symlinks | 337 | @findex dired-mark-symlinks |
| 332 | @cindex marking symlinks (in Dired) | 338 | @cindex marking symbolic links (in Dired) |
| 333 | Mark all symbolic links with @samp{*} (@code{dired-mark-symlinks}). | 339 | Mark all symbolic links with @samp{*} (@code{dired-mark-symlinks}). |
| 334 | With a numeric argument, unmark all those files. | 340 | With a numeric argument, unmark all those files. |
| 335 | 341 | ||
| @@ -549,7 +555,7 @@ just one link) the name to give the link. | |||
| 549 | 555 | ||
| 550 | @findex dired-do-symlink | 556 | @findex dired-do-symlink |
| 551 | @kindex S @r{(Dired)} | 557 | @kindex S @r{(Dired)} |
| 552 | @cindex symlinks (in Dired) | 558 | @cindex symbolic links (creation in Dired) |
| 553 | @item S @var{new} @key{RET} | 559 | @item S @var{new} @key{RET} |
| 554 | Make symbolic links to the specified files (@code{dired-do-symlink}). | 560 | Make symbolic links to the specified files (@code{dired-do-symlink}). |
| 555 | The argument @var{new} is the directory to make the links in, or (if | 561 | The argument @var{new} is the directory to make the links in, or (if |
| @@ -1087,6 +1093,32 @@ variable @code{find-ls-option}, whose default value specifies using | |||
| 1087 | options @samp{-ld} for @code{ls}. If your listings are corrupted, you | 1093 | options @samp{-ld} for @code{ls}. If your listings are corrupted, you |
| 1088 | may need to change the value of this variable. | 1094 | may need to change the value of this variable. |
| 1089 | 1095 | ||
| 1096 | @node Misc Dired Commands | ||
| 1097 | @section Other Dired Commands | ||
| 1098 | |||
| 1099 | @table @kbd | ||
| 1100 | @item w | ||
| 1101 | @cindex Adding to the kill ring in Dired. | ||
| 1102 | @kindex w | ||
| 1103 | @findex dired-copy-filename-as-kill | ||
| 1104 | The @kbd{w} command (@code{dired-copy-filename-as-kill}) puts the | ||
| 1105 | names of the marked (or next @var{n}) files into the kill ring, as if | ||
| 1106 | you had killed them with @kbd{C-w}. With a zero prefix argument | ||
| 1107 | @var{n}=0, use the absolute file name of each marked file. With just | ||
| 1108 | @kbd{C-u} as the prefix argument, use the relative file name of each | ||
| 1109 | marked file. As a special case, if no prefix argument is given and | ||
| 1110 | point is on a directory headerline, @kbd{w} gives you the name of that | ||
| 1111 | directory without looking for marked files. | ||
| 1112 | |||
| 1113 | @vindex dired-marked-files | ||
| 1114 | The main purpose of the @kbd{w} command is so that you can yank the | ||
| 1115 | file names into arguments for other Emacs commands. It also displays | ||
| 1116 | what was pushed onto the kill ring, so you can use it to display the | ||
| 1117 | list of currently marked files in the echo area. It also stores the | ||
| 1118 | list of names in the variable @code{dired-marked-files}, for use in | ||
| 1119 | Lisp expressions. | ||
| 1120 | @end table | ||
| 1121 | |||
| 1090 | @ignore | 1122 | @ignore |
| 1091 | arch-tag: d105f9b9-fc1b-4c5f-a949-9b2cf3ca2fc1 | 1123 | arch-tag: d105f9b9-fc1b-4c5f-a949-9b2cf3ca2fc1 |
| 1092 | @end ignore | 1124 | @end ignore |