1 \input texinfo @comment -*-texinfo-*-
3 @c dired-x.texi --- Sebastian Kremer's Extra DIRED hacked up for GNU Emacs
5 @c Author: Sebastian Kremer <sk@thp.uni-koeln.de>
6 @c Lawrence R. Dodd <dodd@roebling.poly.edu>
7 @c [Dodd's address no longer valid.]
9 @comment %**start of header (This is for running Texinfo on a region.)
10 @setfilename ../../info/dired-x
11 @settitle Dired Extra User's Manual
12 @documentencoding UTF-8
14 @include emacsver.texi
19 @c @setchapternewpage odd % For book style double sided manual.
20 @comment %**end of header (This is for running Texinfo on a region.)
23 Copyright @copyright{} 1994--1995, 1999, 2001--2014
24 Free Software Foundation, Inc.
27 Permission is granted to copy, distribute and/or modify this document
28 under the terms of the GNU Free Documentation License, Version 1.3 or
29 any later version published by the Free Software Foundation; with no
30 Invariant Sections, with the Front-Cover Texts being ``A GNU Manual'',
31 and with the Back-Cover Texts as in (a) below. A copy of the license
32 is included in the section entitled ``GNU Free Documentation License''.
34 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
35 modify this GNU manual.''
39 @dircategory Emacs misc features
41 * Dired-X: (dired-x). Dired Extra Features.
47 %\global\baselineskip 30pt % For printing in double spaces
52 @center @titlefont{Dired Extra}
54 @center @titlefont{For The GNU Emacs}
56 @center @titlefont{Directory Editor}
58 @center Lawrence R@. Dodd
59 @c @center @t{dodd@@roebling.poly.edu}
61 @center (Based on @file{dired.texi} by Sebastian Kremer <sk@@thp.uni-koeln.de>)
63 @vskip 0pt plus 1filll
76 This documents the ``extra'' features for GNU Emacs's Dired Mode that are
77 provided by the file @file{dired-x.el}.
82 Based on @file{dired.texi} by Sebastian Kremer <sk@@thp.uni-koeln.de>
85 For @file{dired-x.el} as distributed with GNU Emacs @value{EMACSVER}.
94 * Omitting Files in Dired::
96 * Shell Command Guessing::
98 * Advanced Mark Commands::
99 * Multiple Dired Directories::
100 * Find File At Point::
101 * Miscellaneous Commands::
104 * GNU Free Documentation License::
115 @chapter Introduction
117 This documents some @emph{extra} features for GNU Emacs's Dired Mode
118 that are provided by @file{dired-x.el} (derived from Sebastian Kremer's
119 original @file{dired-x.el}).
124 * Technical Details::
132 Some features provided by Dired Extra:
136 Omitting uninteresting files from Dired listing
137 (@pxref{Omitting Files in Dired}).
139 Guessing shell commands in Dired buffers
140 (@pxref{Shell Command Guessing}).
142 Running Dired command in non-Dired buffers
143 (@pxref{Virtual Dired}).
145 Finding a file mentioned in a buffer
146 (@pxref{Find File At Point}).
148 Commands using file marking
149 (@pxref{Advanced Mark Commands}).
153 @file{dired-x.el} binds some functions to keys in Dired Mode (@pxref{Key
154 Index}) and also binds @kbd{C-x C-j} and @kbd{C-x 4 C-j} @emph{globally} to
155 @code{dired-jump} (@pxref{Miscellaneous Commands}). Optionally, it
156 also binds @kbd{C-x C-f} and @kbd{C-x 4 C-f} to
157 @code{dired-x-find-file} and @code{dired-x-find-file-other-window},
158 respectively (@pxref{Find File At Point}).
160 @node Technical Details
161 @section Technical Details
162 @cindex Modified functions
163 @cindex @file{dired-aux.el}
165 When @file{dired-x.el} is loaded, some standard Dired functions from
166 @file{dired.el} and @file{dired-aux.el} offer additional features.
167 @code{dired-add-entry} obeys Dired Omit mode (@pxref{Omitting Files in
168 Dired}), if it is active. @code{dired-find-buffer-nocreate} and
169 @code{dired-initial-position} respect the value of
170 @code{dired-find-subdir} (@pxref{Miscellaneous Commands}).
171 @code{dired-clean-up-after-deletion} respects the value of
172 @code{dired-clean-up-buffers-too}. @code{dired-read-shell-command} uses
173 @code{dired-guess-shell-command} (@pxref{Shell Command Guessing}) to
174 offer a smarter default command.
177 @chapter Installation
180 This manual describes the Dired features provided by the file
181 @file{dired-x.el}. To take advantage of these features, you must load the
182 file and (optionally) set some variables.
185 In your @file{~/.emacs} file, or in the system-wide initialization file
186 @file{default.el} in the @file{site-lisp} directory, put
189 (add-hook 'dired-load-hook
192 ;; Set dired-x global variables here. For example:
193 ;; (setq dired-guess-shell-gnutar "gtar")
194 ;; (setq dired-x-hands-off-my-keys nil)
196 (add-hook 'dired-mode-hook
198 ;; Set dired-x buffer-local variables here. For example:
199 ;; (dired-omit-mode 1)
204 This will load @file{dired-x.el} when Dired is first invoked (for example,
205 when you first type @kbd{C-x d}).
209 * Optional Installation Dired Jump::
210 * Optional Installation File At Point::
214 @node Optional Installation Dired Jump
215 @section Optional Installation Dired Jump
217 @cindex Autoloading @code{dired-jump} and @code{dired-jump-other-window}
219 In order to have @code{dired-jump} and @code{dired-jump-other-window}
220 (@pxref{Miscellaneous Commands}) work @emph{before} @code{dired} and
221 @code{dired-x} have been properly loaded you should set-up an autoload
222 for these functions. In your @file{.emacs} file put
225 (autoload 'dired-jump "dired-x"
226 "Jump to Dired buffer corresponding to current buffer." t)
228 (autoload 'dired-jump-other-window "dired-x"
229 "Like \\[dired-jump] (dired-jump) but in other window." t)
231 (define-key global-map "\C-x\C-j" 'dired-jump)
232 (define-key global-map "\C-x4\C-j" 'dired-jump-other-window)
235 @node Optional Installation File At Point
236 @section Optional Installation File At Point
238 @cindex Binding @code{dired-x-find-file}
239 If you choose to have @file{dired-x.el} bind @code{dired-x-find-file} over
240 @code{find-file} (@pxref{Find File At Point}), then you will need to set
241 @code{dired-x-hands-off-my-keys}. To do this, either set it
242 @emph{before} @file{dired-x.el} is loaded, or use @kbd{M-x customize-variable},
243 or call @code{dired-x-bind-find-file} after changing the value.
246 (add-hook 'dired-load-hook
248 ;; Bind dired-x-find-file.
249 (setq dired-x-hands-off-my-keys nil)
254 @node Omitting Files in Dired
255 @chapter Omitting Files in Dired
257 @cindex Omitting Files in Dired
258 @cindex Uninteresting files
259 @dfn{Omitting} a file means removing it from the directory listing. Omitting
260 is useful for keeping Dired buffers free of ``uninteresting'' files (for
261 instance, auto-save, auxiliary, backup, and revision control files) so that
262 the user can concentrate on the interesting files. Like hidden files, omitted
263 files are never seen by Dired. Omitting differs from hiding in several
269 Omitting works on individual files, not on directories; an entire directory
270 cannot be omitted (though each of its files could be).
273 Omitting is wholesale; if omitting is turned on for a Dired buffer, then all
274 uninteresting files listed in that buffer are omitted. The user does not omit
275 (or unomit) files one at a time.
278 Omitting can be automatic; uninteresting file lines in the buffer can be
279 removed before the user ever sees them.
282 Marked files are never omitted.
288 @findex dired-omit-mode
289 (@code{dired-omit-mode}) Toggle between displaying and omitting
290 ``uninteresting'' files.
293 @findex dired-mark-omitted
294 (@code{dired-mark-omitted}) Mark ``uninteresting'' files.
298 In order to make Dired Omit work you first need to load @file{dired-x.el}
299 inside @code{dired-load-hook} (@pxref{Installation}) and then evaluate
300 @code{(dired-omit-mode 1)} in some way (@pxref{Omitting Variables}).
304 * Omitting Variables::
305 * Omitting Examples::
306 * Omitting Technical::
310 @node Omitting Variables
311 @section Omitting Variables
313 @cindex Customizing file omitting
314 The following variables can be used to customize omitting.
318 @vindex dired-omit-mode
319 @item dired-omit-mode
323 @cindex How to make omitting the default in Dired
324 If non-@code{nil}, ``uninteresting'' files are not listed.
325 Uninteresting files are those whose files whose names match regexp
326 @code{dired-omit-files}, plus those ending with extensions in
327 @code{dired-omit-extensions}. @kbd{M-o} (@code{dired-omit-mode})
328 toggles its value, which is buffer-local. Put
335 inside your @code{dired-mode-hook} to have omitting initially turned on in
336 @emph{every} Dired buffer (@pxref{Installation}). You can then use @kbd{M-o} to
337 unomit in that buffer.
339 To enable omitting automatically only in certain directories you can add
340 a directory local setting
341 (@pxref{Directory Variables,,,emacs,The Gnu Emacs manual}) for Dired mode
344 ((dired-mode . ((dired-omit-mode . t))))
348 to a @file{.dir-locals.el} file in that directory. You can use the
349 command @code{add-dir-local-variable} to do this.
351 @vindex dired-omit-files
352 @item dired-omit-files
354 Default: @code{"^#\\|\\.$"}
356 Files whose names match this buffer-local regexp will not be displayed.
357 This only has effect when @code{dired-omit-mode}'s value is @code{t}.
359 The default value omits the special directories @file{.} and @file{..} and
360 autosave files (plus other files ending in @file{.}) (@pxref{Omitting Examples}).
362 @vindex dired-omit-extensions
363 @item dired-omit-extensions
365 Default: The elements of @code{completion-ignored-extensions},
366 @code{dired-latex-unclean-extensions}, @code{dired-bibtex-unclean-extensions}
367 and @code{dired-texinfo-unclean-extensions}.
369 If non-@code{nil}, a list of extensions (strings) to omit from Dired listings.
370 Its format is the same as that of @code{completion-ignored-extensions}.
372 @vindex dired-omit-localp
373 @item dired-omit-localp
375 Default: @code{no-dir}
377 The @var{localp} argument @code{dired-omit-expunge} passes to
378 @code{dired-get-filename}. If it is @code{no-dir}, omitting is much faster,
379 but you can only match against the non-directory part of the file name. Set it
380 to @code{nil} if you need to match the whole file name or @code{t} to match the
381 file name relative to the buffer's top-level directory.
383 @item dired-omit-marker-char
384 @vindex dired-omit-marker-char
385 @cindex Omitting additional files
388 Temporary marker used by Dired to implement omitting. Should never be used
389 as marker by the user or other packages. There is one exception to this rule:
393 (setq dired-mark-keys "\C-o")
394 ;; i.e., the value of dired-omit-marker-char
395 ;; (which is not defined yet)
399 to your @file{~/.emacs}, you can bind the @kbd{C-o} key to insert a
400 @kbd{C-o} marker, thus causing these files to be omitted in addition to the
401 usually omitted files. Unfortunately the files you omitted manually this way
402 will show up again after reverting the buffer, unlike the others.
406 @node Omitting Examples
407 @section Examples of Omitting Various File Types
412 @cindex RCS files, how to omit them in Dired
413 @cindex Omitting RCS files in Dired
414 If you wish to avoid seeing RCS files and the @file{RCS} directory, then put
417 (setq dired-omit-files
418 (concat dired-omit-files "\\|^RCS$\\|,v$"))
422 in the @code{dired-load-hook} (@pxref{Installation}). This assumes
423 @code{dired-omit-localp} has its default value of @code{no-dir} to make the
424 @code{^}-anchored matches work. As a slower alternative, with
425 @code{dired-omit-localp} set to @code{nil}, you can use @code{/} instead of
426 @code{^} in the regexp.
429 @cindex Tib files, how to omit them in Dired
430 @cindex Omitting tib files in Dired
431 If you use @code{tib}, the bibliography program for use with @TeX{} and
433 want to omit the @file{INDEX} and the @file{*-t.tex} files, then put
436 (setq dired-omit-files
437 (concat dired-omit-files "\\|^INDEX$\\|-t\\.tex$"))
441 in the @code{dired-load-hook} (@pxref{Installation}).
444 @cindex Dot files, how to omit them in Dired
445 @cindex Omitting dot files in Dired
446 If you do not wish to see @samp{dot} files (files starting with a @file{.}),
450 (setq dired-omit-files
451 (concat dired-omit-files "\\|^\\..+$"))
455 in the @code{dired-load-hook} (@pxref{Installation}). (Of course, a
456 better way to achieve this particular goal is simply to omit @samp{-a} from
457 @code{dired-listing-switches}.)
461 @node Omitting Technical
462 @section Some Technical Details of Omitting
464 Loading @file{dired-x.el} will install Dired Omit by putting
465 @code{dired-omit-expunge} on your @code{dired-after-readin-hook}, and will
466 call @code{dired-extra-startup}, which in turn calls @code{dired-omit-startup}
467 in your @code{dired-mode-hook}.
469 @node Local Variables
470 @chapter Local Variables for Dired Directories
472 @cindex Local Variables for Dired Directories
473 @vindex dired-local-variables-file
474 @vindex dired-enable-local-variables
476 This Dired-X feature is obsolete as of Emacs 24.1. The standard Emacs
477 directory local variables mechanism (@pxref{Directory
478 Variables,,,emacs,The Gnu Emacs manual}) replaces it. For an example of
479 the new mechanisms, @pxref{Omitting Variables}.
481 When Dired visits a directory, it looks for a file whose name is the
482 value of variable @code{dired-local-variables-file} (default: @file{.dired}).
483 If such a file is found, Dired will temporarily insert it into the Dired
484 buffer and run @code{hack-local-variables}.
487 For example, if the user puts
491 dired-actual-switches: "-lat"
497 into a file called @file{.dired} in a directory then when that directory is
504 omitted automatically
508 You can set @code{dired-local-variables-file} to @code{nil} to suppress this.
509 The value of @code{dired-enable-local-variables} controls if and how these
510 local variables are read. This variable exists so that it may override the
511 default value of @code{enable-local-variables}.
514 Please see the GNU Emacs Manual to learn more about local variables.
515 @xref{File Variables,Local Variables in Files,Local Variables in
516 Files,emacs,The GNU Emacs Manual}.
519 The following variables affect Dired Local Variables
522 @vindex dired-local-variables-file
523 @item dired-local-variables-file
524 Default: @code{".dired"}
526 If non-@code{nil}, file name for local variables for Dired. If Dired finds a
527 file with that name in the current directory, it will temporarily insert it
528 into the Dired buffer and run @code{hack-local-variables}.
530 @vindex dired-enable-local-variables
531 @item dired-enable-local-variables
534 Controls the use of local-variables lists in Dired. This variable
535 temporarily overrides the value of @code{enable-local-variables} when
536 the Dired Local Variables are hacked. It takes the same values as that
537 variable. A value of @code{nil} means to ignore any Dired Local Variables.
540 @node Shell Command Guessing
541 @chapter Shell Command Guessing
542 @cindex Guessing shell commands for files.
544 Based upon the name of a file, Dired tries to guess what shell
545 command you might want to apply to it. For example, if you have point
546 on a file named @file{foo.tar} and you press @kbd{!}, Dired will guess
547 you want to @samp{tar xvf} it and suggest that as the default shell
550 The default is mentioned in brackets and you can type @kbd{M-n} to get
551 the default into the minibuffer and then edit it, e.g., to change
552 @samp{tar xvf} to @samp{tar tvf}. If there are several commands for a given
553 file, e.g., @samp{xtex} and @samp{dvips} for a @file{.dvi} file, you can type
554 @kbd{M-n} several times to see each of the matching commands.
556 Dired only tries to guess a command for a single file, never for a list
560 @item dired-guess-shell-alist-default
561 @vindex dired-guess-shell-alist-default
562 Predefined rules for shell commands. Set this to @code{nil} to turn guessing off.
563 The elements of @code{dired-guess-shell-alist-user} (defined by the
564 user) will override these rules.
566 @item dired-guess-shell-alist-user
567 @vindex dired-guess-shell-alist-user
568 If non-@code{nil}, a user-defined alist of file regexps and their suggested
569 commands. These rules take precedence over the predefined rules in the
570 variable @code{dired-guess-shell-alist-default} (to which they are prepended)
571 when @code{dired-do-shell-command} is run).
573 Each element of the alist looks like
576 (@var{regexp} @var{command}@dots{})
580 where each @var{command} can either be a string or a Lisp expression
581 that evaluates to a string. If several commands are given, all of
582 them will temporarily be pushed onto the history.
584 If @samp{*} in the shell command, that means to substitute the file
587 You can set this variable in your @file{~/.emacs}. For example,
588 to add rules for @samp{.foo} and @samp{.bar} file extensions, write
591 (setq dired-guess-shell-alist-user
593 (list "\\.foo$" "@var{foo-command}");; fixed rule
594 ;; possibly more rules...
595 (list "\\.bar$";; rule with condition test
597 "@var{bar-command-1}"
598 "@var{bar-command-2}"))))
602 This will override any predefined rules for the same extensions.
604 @item dired-guess-shell-case-fold-search
605 @vindex dired-guess-shell-case-fold-search
608 Non-@code{nil} means @code{dired-guess-shell-alist-default} and
609 @code{dired-guess-shell-alist-user} are matched case-insensitively.
611 @item dired-guess-shell-gnutar
612 @vindex dired-guess-shell-gnutar
613 @cindex Passing GNU Tar its @samp{z} switch.
616 If non-@code{nil}, this is the name of the GNU Tar executable (e.g.,
617 @samp{tar} or @samp{gnutar}). GNU Tar's @samp{z} switch is used for
618 compressed tar files.
619 If you don't have GNU tar, set this to @code{nil}: a pipe using @samp{zcat} is
622 @item dired-guess-shell-gzip-quiet
623 @vindex dired-guess-shell-gzip-quiet
627 A non-@code{nil} value means that @samp{-q} is passed to @code{gzip}
628 overriding a verbose option in the @env{GZIP} environment variable.
630 @item dired-guess-shell-znew-switches nil
631 @vindex dired-guess-shell-znew-switches nil
635 A string of switches passed to @code{znew}. An example is
636 @samp{-K} which will make @code{znew} keep a @file{.Z} file when it is
637 smaller than the @file{.gz} file.
639 @item dired-shell-command-history nil
640 @vindex dired-shell-command-history nil
642 History list for commands that read dired-shell commands.
646 @chapter Virtual Dired
648 @cindex Virtual Dired
649 @cindex Perusing @code{ls} listings
650 @cindex @code{ls} listings, how to peruse them in Dired
651 Using @dfn{Virtual Dired} means putting a buffer with Dired-like
652 contents in Dired mode. The files described by the buffer contents need
653 not actually exist. This is useful if you want to peruse an @samp{ls -lR}
654 output file, for example one you got from an FTP server. You can use
655 all motion commands usually available in Dired. You can also use
656 it to save a Dired buffer in a file and resume it in a later session.
658 @findex dired-virtual
660 @findex dired-virtual-revert
661 Type @kbd{M-x dired-virtual} to put the current buffer into virtual
662 Dired mode. You will be prompted for the top level directory of this
663 buffer, with a default value guessed from the buffer contents. To
664 convert the virtual to a real Dired buffer again, type @kbd{g} (which
665 calls @code{dired-virtual-revert}) in the virtual Dired buffer and
666 answer @samp{y}. You don't have to do this, though: you can relist
667 single subdirectories using @kbd{l} (@code{dired-do-redisplay}) on the subdirectory
668 headerline, leaving the buffer in virtual Dired mode all the time.
670 @findex dired-virtual-mode
671 @vindex auto-mode-alist
672 The function @samp{dired-virtual-mode} is specially designed to turn on
673 virtual Dired mode from the @code{auto-mode-alist}. To edit all
674 @file{*.dired} files automatically in virtual Dired mode, put this into your
678 (setq auto-mode-alist (cons '("[^/]\\.dired$" . dired-virtual-mode)
683 The regexp is a bit more complicated than usual to exclude @file{.dired}
684 local-variable files.
686 @node Advanced Mark Commands
687 @chapter Advanced Mark Commands
692 @cindex Visiting several files at once
693 @cindex Simultaneous visiting of several files
694 @findex dired-do-find-marked-files
695 (@code{dired-do-find-marked-files}) Find all marked files at once displaying
696 them simultaneously. If optional @var{noselect} is non-@code{nil} then just
698 files but do not select. If you want to keep the Dired buffer displayed, type
699 @kbd{C-x 2} first. If you want just the marked files displayed and nothing
700 else, type @kbd{C-x 1} first.
702 The current window is split across all files marked, as evenly as possible.
703 Remaining lines go to the bottom-most window. The number of files that can be
704 displayed this way is restricted by the height of the current window and the
705 variable @code{window-min-height}.
709 @item dired-mark-extension
710 @findex dired-mark-extension
711 Mark all files with a certain extension for use in later commands. A @samp{.}
712 is not automatically prepended to the string entered, you must type it
715 When called from Lisp, @var{extension} may also be a list of extensions
716 and an optional argument @var{marker-char} specifies the marker used.
718 @item dired-flag-extension
719 @findex dired-flag-extension
720 Flag all files with a certain extension for deletion. A @samp{.} is
721 @emph{not} automatically prepended to the string entered.
726 * Advanced Cleaning Functions::
727 * Advanced Cleaning Variables::
728 * Special Marking Function::
732 @node Advanced Cleaning Functions
733 @section Advanced Cleaning Functions
736 @item dired-clean-patch
737 @findex dired-clean-patch
738 Flag dispensable files created by the @samp{patch} program for deletion. See
739 variable @code{dired-patch-unclean-extensions}.
741 @item dired-clean-tex
742 @findex dired-clean-tex
743 Flag dispensable files created by @TeX{}, @LaTeX{}, and @samp{texinfo} for
744 deletion. See the following variables (@pxref{Advanced Cleaning Variables}):
748 @code{dired-tex-unclean-extensions}
750 @code{dired-texinfo-unclean-extensions}
752 @code{dired-latex-unclean-extensions}
754 @code{dired-bibtex-unclean-extensions}
757 @item dired-very-clean-tex
758 @findex dired-very-clean-tex
759 Flag dispensable files created by @TeX{}, @LaTeX{}, @samp{texinfo},
760 and @file{*.dvi} files for deletion.
763 @node Advanced Cleaning Variables
764 @section Advanced Cleaning Variables
766 @noindent Variables used by the above cleaning commands (and in the default value for
767 variable @code{dired-omit-extensions}, @pxref{Omitting Variables})
770 @item dired-patch-unclean-extensions
771 @vindex dired-patch-unclean-extensions
772 Default: @code{(".rej" ".orig")}
774 List of extensions of dispensable files created by the @samp{patch} program.
776 @item dired-tex-unclean-extensions
777 @vindex dired-tex-unclean-extensions
778 Default: @code{(".toc" ".log" ".aux")}
780 List of extensions of dispensable files created by @TeX{}.
782 @item dired-texinfo-unclean-extensions
783 @vindex dired-texinfo-unclean-extensions
784 Default: @code{(".cp" ".cps" ".fn" ".fns" ".ky" ".kys"}
785 @code{".pg" ".pgs" ".tp" ".tps" ".vr" ".vrs")}
787 List of extensions of dispensable files created by @samp{texinfo}.
789 @item dired-latex-unclean-extensions
790 @vindex dired-latex-unclean-extensions
791 Default: @code{(".idx" ".lof" ".lot" ".glo")}
793 List of extensions of dispensable files created by @LaTeX{}.
795 @item dired-bibtex-unclean-extensions
796 @vindex dired-bibtex-unclean-extensions
797 Default: @code{(".blg" ".bbl")}
799 List of extensions of dispensable files created by Bib@TeX{}.
802 @node Special Marking Function
803 @section Special Marking Function
808 @findex dired-mark-sexp
809 @cindex Lisp expression, marking files with in Dired
810 @cindex Mark file by Lisp expression
811 (@code{dired-mark-sexp}) Mark files for which @var{predicate} returns
812 non-@code{nil}. With a prefix argument, unflag those files instead.
814 The @var{predicate} is a Lisp expression that can refer to the following
818 [@i{integer}] the inode of the file (only for @samp{ls -i} output)
820 [@i{integer}] the size of the file for @samp{ls -s} output (usually in blocks or,
821 with @samp{-k}, in KBytes)
823 [@i{string}] file permission bits, e.g., @samp{-rw-r--r--}
825 [@i{integer}] number of links to file
829 [@i{string}] group (If the gid is not displayed by @samp{ls}, this
830 will still be set (to the same as uid))
832 [@i{integer}] file size in bytes
834 [@i{string}] the time that @samp{ls} displays, e.g., @samp{Feb 12 14:17}
836 [@i{string}] the name of the file
838 [@i{string}] if file is a symbolic link, the linked-to name, else @code{""}
846 to mark all zero length files.
848 To find out all not yet compiled Emacs Lisp files in a directory, Dired
849 all @file{.el} files in the lisp directory using the wildcard
850 @samp{*.el}. Then use @kbd{M-(} with
852 (not (file-exists-p (concat name "c")))
854 to mark all @file{.el} files without a corresponding @file{.elc} file.
858 @node Multiple Dired Directories
859 @chapter Multiple Dired Directories and Non-Dired Commands
861 @cindex Multiple Dired directories
862 @cindex Working directory
863 An Emacs buffer can have but one working directory, stored in the
864 buffer-local variable @code{default-directory}. A Dired buffer may have
865 several subdirectories inserted, but it still has only one working
866 directory: that of the top-level Dired directory in that buffer. For
867 some commands it is appropriate that they use the current Dired
868 directory instead of @code{default-directory}, e.g., @code{find-file} and
871 @findex dired-smart-shell-command
872 @findex shell-command
874 The command @code{dired-smart-shell-command}, bound to @kbd{M-!} in
875 Dired buffers, is like @code{shell-command}, but it runs with
876 @code{default-directory} bound to the current Dired directory.
878 @node Find File At Point
879 @chapter Find File At Point
880 @cindex Visiting a file mentioned in a buffer
881 @cindex Finding a file at point
883 @file{dired-x} provides a method of visiting or editing a file mentioned in
884 the buffer you are viewing (e.g., a mail buffer, a news article, a
885 @file{README} file, etc.)@: or to test if that file exists. You can then modify
886 this in the minibuffer after snatching the file name.
888 When installed @file{dired-x} will substitute @code{dired-x-find-file} for
889 @code{find-file} (normally bound to @kbd{C-x C-f}) and
890 @code{dired-x-find-file-other-window} for @code{find-file-other-window}
891 (normally bound to @kbd{C-x 4 C-f}).
893 In order to use this feature, you will need to set
894 @code{dired-x-hands-off-my-keys} to @code{nil} inside @code{dired-load-hook}
895 (@pxref{Optional Installation File At Point}).
898 @item dired-x-find-file
899 @findex dired-x-find-file
902 @code{dired-x-find-file} behaves exactly like @code{find-file} (normally bound
903 to @kbd{C-x C-f}) unless a prefix argument is passed to the function in which
904 case it will use the file name at point as a guess for the file to visit.
906 For example, if the buffer you were reading contained the words
909 Available via anonymous ftp in
911 /roebling.poly.edu:/pub/lisp/crypt++.el.gz
915 then you could move your cursor to the line containing the ftp address and
916 type @kbd{C-u C-x C-f} (the @kbd{C-u} is a universal argument). The
917 minibuffer would read
920 Find file: /roebling.poly.edu:/pub/lisp/crypt++.el.gz
924 with the point after the last @code{/}. If you hit @key{RET}, emacs will visit
925 the file at that address. This also works with files on your own computer.
927 @item dired-x-find-file-other-window
928 @findex dired-x-find-file-other-window
931 @code{dired-x-find-file-other-window} behaves exactly like
932 @code{find-file-other-window} (normally bound to @kbd{C-x 4 C-f}) unless a
933 prefix argument is used. See @code{dired-x-find-file} for more information.
935 @item dired-x-hands-off-my-keys
936 @vindex dired-x-hands-off-my-keys
937 If set to @code{t}, then it means that @file{dired-x} should @emph{not} bind
938 @code{dired-x-find-file} over @code{find-file} on keyboard. Similarly, it
939 should not bind @code{dired-x-find-file-other-window} over
940 @code{find-file-other-window}. If you change this variable after
941 @file{dired-x.el} is loaded then do @kbd{M-x dired-x-bind-find-file}. The
942 default value of this variable is @code{t}; by default, the binding is not
943 done. See @xref{Optional Installation File At Point}.
945 @item dired-x-bind-find-file
946 @findex dired-x-bind-find-file
947 A function, which can be called interactively or in your @file{~/.emacs} file,
948 that uses the value of @code{dired-x-hands-off-my-keys} to determine if
949 @code{dired-x-find-file} should be bound over @code{find-file} and
950 @code{dired-x-find-file-other-window} bound over
951 @code{find-file-other-window}. See @xref{Optional Installation File At Point}.
954 @node Miscellaneous Commands
955 @chapter Miscellaneous Commands
957 Miscellaneous features not fitting anywhere else:
960 @item dired-find-subdir
961 @vindex dired-find-subdir
964 If non-@code{nil}, Dired does not make a new buffer for a directory if it can
965 be found (perhaps as subdirectory) in some existing Dired buffer.
967 If there are several Dired buffers for a directory, the most recently
970 Dired avoids switching to the current buffer, so that if you have a
971 normal and a wildcard buffer for the same directory, @kbd{C-x d RET}
972 will toggle between those two.
976 @findex dired-goto-subdir
979 (@code{dired-goto-subdir}) Go to the header line of an inserted directory.
980 This command reads its argument, with completion derived from the names of the
981 inserted subdirectories.
989 @cindex Jumping to Dired listing containing file.
990 Bound to @kbd{C-x C-j}. Jump back to Dired: If in a file, edit the current
991 directory and move to file's line. If in Dired already, pop up a level and
992 go to old directory's line. In case the proper Dired file line cannot be
993 found, refresh the Dired buffer and try again.
995 @item dired-jump-other-window
996 @findex dired-jump-other-window
998 Bound to @kbd{C-x 4 C-j}. Like @code{dired-jump}, but to other window.
1000 These functions can be autoloaded so they work even though @file{dired-x.el}
1001 has not been loaded yet (@pxref{Optional Installation Dired Jump}).
1003 @vindex dired-bind-jump
1004 If the variable @code{dired-bind-jump} is @code{nil}, @code{dired-jump} will not be
1005 bound to @kbd{C-x C-j} and @code{dired-jump-other-window} will not be bound to
1009 @cindex Reading mail.
1012 Bound to @kbd{V} if @code{dired-bind-vm} is @code{t}. Run VM on this
1013 file (assumed to be a UNIX mail folder).
1015 @vindex dired-vm-read-only-folders
1016 If you give this command a prefix argument, it will visit the folder
1019 If the variable @code{dired-vm-read-only-folders} is @code{t},
1020 @code{dired-vm} will visit all folders read-only. If it is neither
1021 @code{nil} nor @code{t}, e.g., the symbol @code{if-file-read-only}, only
1022 files not writable by you are visited read-only.
1024 @vindex dired-bind-vm
1025 If the variable @code{dired-bind-vm} is @code{t}, @code{dired-vm} will be bound
1026 to @kbd{V}. Otherwise, @code{dired-bind-rmail} will be bound.
1029 @cindex Reading mail.
1031 Bound to @kbd{V} if @code{dired-bind-vm} is @code{nil}. Run Rmail on this
1032 file (assumed to be mail folder in Rmail format).
1036 @cindex Running info.
1038 Bound to @kbd{I}. Run Info on this file (assumed to be a file in Info
1041 @vindex dired-bind-info
1042 If the variable @code{dired-bind-info} is @code{nil}, @code{dired-info} will
1043 not be bound to @kbd{I}.
1046 @cindex Running man.
1049 Bound to @kbd{N}. Run man on this file (assumed to be a file in @code{nroff}
1052 @vindex dired-bind-man
1053 If the variable @code{dired-bind-man} is @code{nil}, @code{dired-man} will not
1054 be bound to @kbd{N}.
1056 @item dired-do-relsymlink
1057 @cindex Relative symbolic links.
1059 @findex dired-do-relsymlink
1060 Bound to @kbd{Y}. Relative symlink all marked (or next ARG) files into a
1061 directory, or make a relative symbolic link to the current file. This creates
1062 relative symbolic links like
1069 not absolute ones like
1072 foo -> /ugly/path/that/may/change/any/day/bar/foo
1075 @item dired-do-relsymlink-regexp
1077 @findex dired-do-relsymlink-regexp
1078 Bound to @kbd{%Y}. Relative symlink all marked files containing
1079 @var{regexp} to @var{newname}. See functions
1080 @code{dired-do-rename-regexp} and @code{dired-do-relsymlink} for more
1089 If you encounter a bug in this package, or wish to suggest an
1090 enhancement, then please use @kbd{M-x report-emacs-bug} to report it.
1092 @node GNU Free Documentation License
1093 @appendix GNU Free Documentation License
1094 @include doclicense.texi
1097 @unnumbered Concept Index
1101 @unnumbered Function Index
1105 @unnumbered Key Index
1108 @node Variable Index
1109 @unnumbered Variable Index