/[emacs]/emacs/man/dired-x.texi
ViewVC logotype

Diff of /emacs/man/dired-x.texi

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.11 by karl, Wed Oct 2 23:24:31 2002 UTC revision 1.12 by lektu, Tue Feb 4 14:53:27 2003 UTC
# Line 1  Line 1 
1  \input texinfo  @comment -*-texinfo-*-  \input texinfo  @comment -*-texinfo-*-
2    
3  @c dired-x.texi --- Sebastian Kremer's Extra DIRED hacked up for GNU Emacs19  @c dired-x.texi --- Sebastian Kremer's Extra DIRED hacked up for GNU Emacs19
4  @c  @c
5  @c Author: Sebastian Kremer <sk@thp.uni-koeln.de>  @c Author: Sebastian Kremer <sk@thp.uni-koeln.de>
6  @c      Lawrence R. Dodd <dodd@roebling.poly.edu>  @c      Lawrence R. Dodd <dodd@roebling.poly.edu>
7  @c [Dodd's address no longer valid.]  @c [Dodd's address no longer valid.]
# Line 108  provided by the file @file{dired-x.el}. Line 108  provided by the file @file{dired-x.el}.
108  Based on @file{dired.texi} by Sebastian Kremer <sk@@thp.uni-koeln.de>  Based on @file{dired.texi} by Sebastian Kremer <sk@@thp.uni-koeln.de>
109    
110  @c dired-x.el REVISION NUMBER  @c dired-x.el REVISION NUMBER
111  @item  @item
112  For @file{dired-x.el} revision 2  For @file{dired-x.el} revision 2
113    
114  @c @item  @c @item
115  @c Revision of this manual: 2.53 (2001/02/25 14:05:46)  @c Revision of this manual: 2.53 (2001/02/25 14:05:46)
116    
117  @c @item  @c @item
# Line 137  For @file{dired-x.el} revision 2 Line 137  For @file{dired-x.el} revision 2
137  * Miscellaneous Commands::  * Miscellaneous Commands::
138  * Bugs::  * Bugs::
139    
140  * Concept Index::                * Concept Index::
141  * Command Index::        * Command Index::
142  * Key Index::            * Key Index::
143  * Variable Index::        * Variable Index::
144    
145  @end menu  @end menu
146    
# Line 177  Some features provided by Dired Extra Line 177  Some features provided by Dired Extra
177    
178  @enumerate  @enumerate
179  @item  @item
180  Omitting uninteresting files from Dired listing.  Omitting uninteresting files from Dired listing.
181  @itemize @bullet  @itemize @bullet
182  @xref{Omitting Files in Dired}.  @xref{Omitting Files in Dired}.
183  @end itemize  @end itemize
# Line 298  for these functions.  In your @file{.ema Line 298  for these functions.  In your @file{.ema
298    
299  @example  @example
300  ;;; Autoload `dired-jump' and `dired-jump-other-window'.  ;;; Autoload `dired-jump' and `dired-jump-other-window'.
301  ;;; We autoload from FILE dired.el.  This will then load dired-x.el  ;;; We autoload from FILE dired.el.  This will then load dired-x.el
302  ;;; and hence define `dired-jump' and `dired-jump-other-window'.  ;;; and hence define `dired-jump' and `dired-jump-other-window'.
303  (define-key global-map "\C-x\C-j" 'dired-jump)  (define-key global-map "\C-x\C-j" 'dired-jump)
304  (define-key global-map "\C-x4\C-j" 'dired-jump-other-window)  (define-key global-map "\C-x4\C-j" 'dired-jump-other-window)
# Line 337  If you choose to have @file{dired-x.el} Line 337  If you choose to have @file{dired-x.el}
337  @code{dired-x-bind-find-file} in the @code{dired-load-hook}:  @code{dired-x-bind-find-file} in the @code{dired-load-hook}:
338    
339  @example  @example
340  (add-hook 'dired-load-hook  (add-hook 'dired-load-hook
341            (lambda ()            (lambda ()
342              (load "dired-x")              (load "dired-x")
343              ;; Bind dired-x-find-file.              ;; Bind dired-x-find-file.
# Line 351  Alternatively, you can set the variable Line 351  Alternatively, you can set the variable
351  loaded  loaded
352    
353  @example  @example
354  (add-hook 'dired-load-hook  (add-hook 'dired-load-hook
355            (lambda ()            (lambda ()
356              ;; Bind dired-x-find-file.              ;; Bind dired-x-find-file.
357              (setq dired-x-hands-off-my-keys nil)              (setq dired-x-hands-off-my-keys nil)
# Line 596  in your @code{dired-mode-hook}. Line 596  in your @code{dired-mode-hook}.
596  When Dired visits a directory, it looks for a file whose name is the value of  When Dired visits a directory, it looks for a file whose name is the value of
597  variable @code{dired-local-variables-file} (default: @file{.dired}).  If such  variable @code{dired-local-variables-file} (default: @file{.dired}).  If such
598  a file is found, Dired will temporarily insert it into the Dired buffer and  a file is found, Dired will temporarily insert it into the Dired buffer and
599  run @code{hack-local-variables}.    run @code{hack-local-variables}.
600    
601  @noindent  @noindent
602  For example, if the user puts  For example, if the user puts
# Line 614  viewed it will be Line 614  viewed it will be
614    
615  @enumerate  @enumerate
616  @item  @item
617  sorted by date  sorted by date
618  @item  @item
619  omitted automatically  omitted automatically
620  @end enumerate  @end enumerate
# Line 623  omitted automatically Line 623  omitted automatically
623  You can set @code{dired-local-variables-file} to @code{nil} to suppress this.  You can set @code{dired-local-variables-file} to @code{nil} to suppress this.
624  The value of @code{dired-enable-local-variables} controls if and how these  The value of @code{dired-enable-local-variables} controls if and how these
625  local variables are read.  This variable exists so that if may override the  local variables are read.  This variable exists so that if may override the
626  default value of @code{enable-local-variables}.    default value of @code{enable-local-variables}.
627    
628  @noindent  @noindent
629  Please see the GNU Emacs Manual to learn more about local variables.  Please see the GNU Emacs Manual to learn more about local variables.
# Line 1273  If you encounter a bug in this package, Line 1273  If you encounter a bug in this package,
1273  enhancement, or want to make a smart remark, then type  enhancement, or want to make a smart remark, then type
1274    
1275  @example  @example
1276  @kbd{M-x dired-x-submit-report}  @kbd{M-x dired-x-submit-report}
1277  @end example  @end example
1278    
1279  @noindent  @noindent
# Line 1283  This command also inserts information th Line 1283  This command also inserts information th
1283  recreate your exact setup, making it easier to verify your bug or social  recreate your exact setup, making it easier to verify your bug or social
1284  maladjustment.  maladjustment.
1285    
1286  Lawrence R. Dodd  Lawrence R. Dodd
1287  @c <dodd@@roebling.poly.edu>  @c <dodd@@roebling.poly.edu>
1288    
1289  @node     Concept Index, Command Index, Bugs, Top  @node     Concept Index, Command Index, Bugs, Top

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26