dired-do-find-marked-files
) Find all marked files at once displaying
simultaneously. If optional NOSELECT is non-nil
then just find the
files but do not select. If you want to keep the dired buffer displayed, type
C-x 2 first. If you want just the marked files displayed and nothing
else, type C-x 1 first.
The current window is split across all files marked, as evenly as possible.
Remaining lines go to the bottom-most window. The number of files that can be
displayed this way is restricted by the height of the current window and the
variable window-min-height
.
dired-mark-extension
dired-flag-extension
dired-clean-patch
dired-patch-unclean-extensions
.
dired-clean-tex
dired-tex-unclean-extensions
dired-texinfo-unclean-extensions
dired-latex-unclean-extensions
dired-bibtex-unclean-extensions
dired-very-clean-tex
Variables used by the above cleaning commands (and in the default value for
variable dired-omit-extensions
, See section Omitting Variables)
dired-patch-unclean-extensions
'(".rej" ".orig")
List of extensions of dispensable files created by the `patch' program.
dired-tex-unclean-extensions
'(".toc" ".log" ".aux")
List of extensions of dispensable files created by TeX.
dired-texinfo-unclean-extensions
'(".cp" ".cps" ".fn" ".fns" ".ky" ".kys"
".pg" ".pgs" ".tp" ".tps" ".vr" ".vrs")
List of extensions of dispensable files created by `texinfo'.
dired-latex-unclean-extensions
'(".idx" ".lof" ".lot" ".glo")
List of extensions of dispensable files created by LaTeX.
dired-bibtex-unclean-extensions
'(".blg" ".bbl")
List of extensions of dispensable files created by BibTeX.
dired-mark-sexp
) Mark files for which predicate returns
non-nil
. With a prefix argument, unflag those files instead.
The predicate is a lisp expression that can refer to the following
symbols:
inode
s
mode
nlink
uid
gid
size
time
name
sym
(equal 0 size)to mark all zero length files. To find out all not yet compiled Emacs lisp files in a directory, dired all `.el' files in the lisp directory using the wildcard `*.el'. Then use M-( with
(not (file-exists-p (concat name "c")))to mark all `.el' files without a corresponding `.elc' file.
Go to the first, previous, next, last section, table of contents.