emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/man/dired-x.texi [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/man/dired-x.texi [emacs-unicode-2]
Date: Mon, 28 Jun 2004 03:58:26 -0400

Index: emacs/man/dired-x.texi
diff -c emacs/man/dired-x.texi:1.12.6.1 emacs/man/dired-x.texi:1.12.6.2
*** emacs/man/dired-x.texi:1.12.6.1     Fri Apr 16 12:50:40 2004
--- emacs/man/dired-x.texi      Mon Jun 28 07:29:01 2004
***************
*** 270,276 ****
  (add-hook 'dired-mode-hook
            (lambda ()
              ;; Set dired-x buffer-local variables here.  For example:
!             ;; (setq dired-omit-files-p t)
              ))
  @end example
  
--- 270,276 ----
  (add-hook 'dired-mode-hook
            (lambda ()
              ;; Set dired-x buffer-local variables here.  For example:
!             ;; (dired-omit-mode 1)
              ))
  @end example
  
***************
*** 394,409 ****
  @table @kbd
  @item M-o
  @kindex M-o
! @findex dired-omit-toggle
! (@code{dired-omit-toggle}) Toggle between displaying and omitting
! ``uninteresting'' files.  With a prefix argument, just mark
! the files, but don't actually omit them.
  @end table
  
  @noindent
  In order to make Dired Omit work you first need to load @file{dired-x.el}
! inside @code{dired-load-hook} (@pxref{Installation}) and then set
! @code{dired-omit-files-p} in some way (@pxref{Omitting Variables}).
  
  @ifinfo
  @menu
--- 394,412 ----
  @table @kbd
  @item M-o
  @kindex M-o
! @findex dired-omit-mode
! (@code{dired-omit-mode}) Toggle between displaying and omitting
! ``uninteresting'' files.
! @item * O
! @kindex * O
! @findex dired-mark-omitted
! (@code{dired-mark-omitted}) Mark ``uninteresting'' files.
  @end table
  
  @noindent
  In order to make Dired Omit work you first need to load @file{dired-x.el}
! inside @code{dired-load-hook} (@pxref{Installation}) and then evaluate
! @code{(dired-omit-mode 1)} in some way (@pxref{Omitting Variables}).
  
  @ifinfo
  @menu
***************
*** 423,430 ****
  
  @table @code
  
! @vindex dired-omit-files-p
! @item dired-omit-files-p
  
  Default: @code{nil}
  
--- 426,433 ----
  
  @table @code
  
! @vindex dired-omit-mode
! @item dired-omit-mode
  
  Default: @code{nil}
  
***************
*** 432,442 ****
  If address@hidden, ``uninteresting'' files are not listed.
  Uninteresting files are those whose files whose names match regexp
  @code{dired-omit-files}, plus those ending with extensions in
! @code{dired-omit-extensions}.  @kbd{M-o} (@code{dired-omit-toggle})
  toggles its value, which is buffer-local.  Put
  
  @example
! (setq dired-omit-files-p t)
  @end example
  
  @noindent
--- 435,445 ----
  If address@hidden, ``uninteresting'' files are not listed.
  Uninteresting files are those whose files whose names match regexp
  @code{dired-omit-files}, plus those ending with extensions in
! @code{dired-omit-extensions}.  @kbd{M-o} (@code{dired-omit-mode})
  toggles its value, which is buffer-local.  Put
  
  @example
! (dired-omit-mode 1)
  @end example
  
  @noindent
***************
*** 449,455 ****
  
  @example
  Local Variables:
! dired-omit-files-p: t
  End:
  @end example
  
--- 452,458 ----
  
  @example
  Local Variables:
! dired-omit-mode: t
  End:
  @end example
  
***************
*** 473,479 ****
  Default: @code{"^#\\|\\.$"}
  
  Files whose names match this buffer-local regexp will not be displayed.
! This only has effect when @code{dired-omit-files-p}'s value is @code{t}.
  
  The default value omits the special directories @file{.} and @file{..}  and
  autosave files (plus other files ending in @file{.}) (@pxref{Omitting 
Examples}).
--- 476,482 ----
  Default: @code{"^#\\|\\.$"}
  
  Files whose names match this buffer-local regexp will not be displayed.
! This only has effect when @code{dired-omit-mode}'s value is @code{t}.
  
  The default value omits the special directories @file{.} and @file{..}  and
  autosave files (plus other files ending in @file{.}) (@pxref{Omitting 
Examples}).
***************
*** 604,610 ****
  @example
  Local Variables:
  dired-actual-switches: "-lat"
! dired-omit-files-p: t
  End:
  @end example
  
--- 607,613 ----
  @example
  Local Variables:
  dired-actual-switches: "-lat"
! dired-omit-mode: t
  End:
  @end example
  
***************
*** 696,702 ****
  @end example
  
  @noindent
! where each @var{command} can either be a string or a lisp expression
  that evaluates to a string.  If several commands are given, all of
  them will temporarily be pushed onto the history.
  
--- 699,705 ----
  @end example
  
  @noindent
! where each @var{command} can either be a string or a Lisp expression
  that evaluates to a string.  If several commands are given, all of
  them will temporarily be pushed onto the history.
  
***************
*** 927,937 ****
  @kindex M-(
  @findex dired-mark-sexp
  @cindex Lisp expression, marking files with in Dired
! @cindex Mark file by lisp expression
  (@code{dired-mark-sexp}) Mark files for which @var{predicate} returns
  address@hidden  With a prefix argument, unflag those files instead.
  
! The @var{predicate} is a lisp expression that can refer to the following
  symbols:
  @table @code
  @item inode
--- 930,940 ----
  @kindex M-(
  @findex dired-mark-sexp
  @cindex Lisp expression, marking files with in Dired
! @cindex Mark file by Lisp expression
  (@code{dired-mark-sexp}) Mark files for which @var{predicate} returns
  address@hidden  With a prefix argument, unflag those files instead.
  
! The @var{predicate} is a Lisp expression that can refer to the following
  symbols:
  @table @code
  @item inode
***************
*** 965,971 ****
  @end example
  to mark all zero length files.
  
! To find out all not yet compiled Emacs lisp files in a directory, Dired
  all @file{.el} files in the lisp directory using the wildcard
  @samp{*.el}.  Then use @kbd{M-(} with
  @example
--- 968,974 ----
  @end example
  to mark all zero length files.
  
! To find out all not yet compiled Emacs Lisp files in a directory, Dired
  all @file{.el} files in the lisp directory using the wildcard
  @samp{*.el}.  Then use @kbd{M-(} with
  @example
***************
*** 998,1004 ****
  Default: @code{((dired-mode . (dired-current-directory)))}
  
  Alist of major modes and their notion of @code{default-directory}, as a
! lisp expression to evaluate.  A resulting value of @code{nil} is ignored
  in favor of @code{default-directory}.
  
  @item default-directory
--- 1001,1007 ----
  Default: @code{((dired-mode . (dired-current-directory)))}
  
  Alist of major modes and their notion of @code{default-directory}, as a
! Lisp expression to evaluate.  A resulting value of @code{nil} is ignored
  in favor of @code{default-directory}.
  
  @item default-directory




reply via email to

[Prev in Thread] Current Thread [Next in Thread]