comparison lisp/efs/auto-autoloads.el @ 163:0132846995bd r20-3b8

Import from CVS: tag r20-3b8
author cvs
date Mon, 13 Aug 2007 09:43:35 +0200
parents
children e121b013d1f0
comparison
equal deleted inserted replaced
162:4de2936b4e77 163:0132846995bd
1 ;;; DO NOT MODIFY THIS FILE
2 (if (not (featurep 'efs-autoloads))
3 (progn
4
5 ;;;### (autoloads nil "default-dir" "efs/default-dir.el")
6
7 (defvar default-directory-function nil "\
8 A function to call to compute the default-directory for the current buffer.
9 If this is nil, the function default-directory will return the value of the
10 variable default-directory.
11 Buffer local.")
12
13 ;;;***
14
15 ;;;### (autoloads (dired-jump-back-other-frame dired-jump-back-other-window dired-jump-back dired-noselect dired-other-frame dired-other-window dired default-directory) "dired" "efs/dired.el")
16
17 (autoload 'default-directory "dired" "\
18 Returns the default-directory for the current buffer.
19 Will use the variable default-directory-function if it non-nil." nil nil)
20
21 (defvar dired-compression-method 'compress "\
22 *Type of compression program to use.
23 Give as a symbol.
24 Currently-recognized methods are: gzip pack compact compress.
25 To change this variable use \\[dired-do-compress] with a zero prefix.")
26
27 (defvar dired-compression-method-alist '((gzip ".gz" ("gzip") ("gzip" "-d") "-f") (compress ".Z" ("compress" "-f") ("compress" "-d") "-f") (pack ".z" ("pack" "-f") ("unpack")) (compact ".C" ("compact") ("uncompact"))) "\
28 *Association list of compression method descriptions.
29 Each element of the table should be a list of the form
30
31 (compress-type extension (compress-args) (decompress-args) force-flag)
32
33 where
34 `compress-type' is a unique symbol in the alist to which
35 `dired-compression-method' can be set;
36 `extension' is the file extension (as a string) used by files compressed
37 by this method;
38 `compress-args' is a list of the path of the compression program and
39 flags to pass as separate arguments;
40 `decompress-args' is a list of the path of the decompression
41 program and flags to pass as separate arguments.
42 `force-flag' is the switch to pass to the command to force overwriting
43 of existing files.
44
45 For example:
46
47 (setq dired-compression-method-alist
48 (cons '(frobnicate \".frob\" (\"frob\") (\"frob\" \"-d\") \"-f\")
49 dired-compression-method-alist))
50 => ((frobnicate \".frob\" (\"frob\") (\"frob\" \"-d\"))
51 (gzip \".gz\" (\"gzip\") (\"gunzip\"))
52 ...)
53
54 See also: dired-compression-method <V>")
55
56 (defvar dired-ls-program "ls" "\
57 *Absolute or relative name of the ls program used by dired.")
58
59 (defvar dired-listing-switches "-al" "\
60 *Switches passed to ls for dired. MUST contain the `l' option.
61 Can contain even `F', `b', `i' and `s'.")
62
63 (defvar dired-chown-program (if (memq system-type '(hpux dgux usg-unix-v linux)) "chown" "/etc/chown") "\
64 *Name of chown command (usually `chown' or `/etc/chown').")
65
66 (defvar dired-gnutar-program nil "\
67 *If non-nil, name of the GNU tar executable (e.g. \"tar\" or \"gnutar\").
68 GNU tar's `z' switch is used for compressed tar files.
69 If you don't have GNU tar, set this to nil: a pipe using `zcat' is then used.")
70
71 (defvar dired-unshar-program nil "\
72 *Set to the name of the unshar program, if you have it.")
73
74 (defvar dired-local-variables-file ".dired" "\
75 *If non-nil, filename for local variables for Dired.
76 If Dired finds a file with that name in the current directory, it will
77 temporarily insert it into the dired buffer and run `hack-local-variables'.
78
79 Type \\[info] and `g' `(emacs)File Variables' `RET' for more info on
80 local variables.")
81
82 (defvar dired-kept-versions 2 "\
83 *When cleaning directory, number of versions to keep.")
84
85 (defvar dired-find-subdir nil "\
86 *Determines whether dired tries to lookup a subdir in existing buffers.
87 If non-nil, dired does not make a new buffer for a directory if it can be
88 found (perhaps as subdir) in some existing dired buffer. If there are several
89 dired buffers for a directory, then the most recently used one is chosen.
90
91 Dired avoids switching to the current buffer, so that if you have
92 a normal and a wildcard buffer for the same directory, C-x d RET will
93 toggle between those two.")
94
95 (defvar dired-use-file-transformers t "\
96 *Determines whether dired uses file transformers.
97 If non-nil `dired-do-shell-command' will apply file transformers to file names.
98 See \\[describe-function] for dired-do-shell-command for more information.")
99
100 (defvar dired-dwim-target nil "\
101 *If non-nil, dired tries to guess a default target directory.
102 This means that if there is a dired buffer displayed in the next window,
103 use its current subdir, instead of the current subdir of this dired buffer.
104 The target is put in the prompt for file copy, rename, etc.")
105
106 (defvar dired-copy-preserve-time nil "\
107 *If non-nil, Dired preserves the last-modified time in a file copy.
108 \(This works on only some systems.)\\<dired-mode-map>
109 Use `\\[dired-do-copy]' with a zero prefix argument to toggle its value.")
110
111 (defvar dired-no-confirm nil "\
112 *If non-nil, a list of symbols for commands dired should not confirm.
113 It can be a sublist of
114
115 '(byte-compile chgrp chmod chown compress copy delete hardlink load
116 move print shell symlink uncompress recursive-delete kill-file-buffer
117 kill-dired-buffer patch create-top-dir revert-subdirs)
118
119 The meanings of most of the symbols are obvious. A few exceptions:
120
121 'compress applies to compression or decompression by any of the
122 compression program in `dired-compression-method-alist'.
123
124 'kill-dired-buffer applies to offering to kill dired buffers for
125 directories which have been deleted.
126
127 'kill-file-buffer applies to offering to kill buffers visiting files
128 which have been deleted.
129
130 'recursive-delete applies to recursively deleting non-empty
131 directories, and all of their contents.
132
133 'create-top-dir applies to `dired-up-directory' creating a new top level
134 directory for the dired buffer.
135
136 'revert-subdirs applies to re-reading subdirectories which have
137 been modified on disk.
138
139 Note that this list also applies to remote files accessed with efs
140 or ange-ftp.")
141
142 (defvar dired-backup-if-overwrite nil "\
143 *Non-nil if Dired should ask about making backups before overwriting files.
144 Special value 'always suppresses confirmation.")
145
146 (defvar dired-omit-files nil "\
147 *If non-nil un-interesting files will be omitted from this dired buffer.
148 Use \\[dired-omit-toggle] to see these files. (buffer local)")
149
150 (defvar dired-mail-reader 'rmail "\
151 *Mail reader used by dired for dired-read-mail (\\[dired-read-mail]).
152 The symbols 'rmail and 'vm are the only two allowed values.")
153
154 (defvar dired-refresh-automatically t "\
155 *If non-nil, refresh dired buffers automatically after file operations.")
156
157 (define-key ctl-x-map "d" 'dired)
158
159 (autoload 'dired "dired" "\
160 \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it.
161 Optional second argument SWITCHES specifies the `ls' options used.
162 \(Interactively, use a prefix argument to be able to specify SWITCHES.)
163 Dired displays a list of files in DIRNAME (which may also have
164 shell wildcards appended to select certain files). If DIRNAME is a cons,
165 its first element is taken as the directory name and the resr as an explicit
166 list of files to make directory entries for.
167 \\<dired-mode-map>You can move around in it with the usual commands.
168 You can flag files for deletion with \\[dired-flag-file-deletion] and then
169 delete them by typing \\[dired-expunge-deletions].
170 Type \\[dired-describe-mode] after entering dired for more info.
171
172 If DIRNAME is already in a dired buffer, that buffer is used without refresh." t nil)
173
174 (define-key ctl-x-4-map "d" 'dired-other-window)
175
176 (autoload 'dired-other-window "dired" "\
177 \"Edit\" directory DIRNAME. Like `dired' but selects in another window." t nil)
178
179 (define-key ctl-x-5-map "d" 'dired-other-frame)
180
181 (autoload 'dired-other-frame "dired" "\
182 \"Edit\" directory DIRNAME. Like `dired' but makes a new frame." t nil)
183
184 (autoload 'dired-noselect "dired" "\
185 Like `dired' but returns the dired buffer as value, does not select it." nil nil)
186
187 (define-key ctl-x-map "\C-j" 'dired-jump-back)
188
189 (autoload 'dired-jump-back "dired" "\
190 Jump back to dired.
191 If in a file, dired the current directory and move to file's line.
192 If in dired already, pop up a level and goto old directory's line.
193 In case the proper dired file line cannot be found, refresh the dired
194 buffer and try again." t nil)
195
196 (define-key ctl-x-4-map "\C-j" 'dired-jump-back-other-window)
197
198 (autoload 'dired-jump-back-other-window "dired" "\
199 Like \\[dired-jump-back], but to other window." t nil)
200
201 (define-key ctl-x-5-map "\C-j" 'dired-jump-back-other-frame)
202
203 (autoload 'dired-jump-back-other-frame "dired" "\
204 Like \\[dired-jump-back], but in another frame." t nil)
205
206 ;;;***
207
208 ;;;### (autoloads (efs-ftp-path) "efs-cu" "efs/efs-cu.el")
209
210 (defvar efs-path-root-regexp "^/[^/:]+:" "\
211 Regexp to match the `/user@host:' root of an efs full path.")
212
213 (autoload 'efs-ftp-path "efs-cu" "\
214 Parse PATH according to efs-path-regexp.
215 Returns a list (HOST USER PATH), or nil if PATH does not match the format." nil nil)
216
217 ;;;***
218
219 ;;;### (autoloads (remote-path-file-handler-function) "efs-dump" "efs/efs-dump.el")
220
221 (or (assoc efs-path-root-regexp file-name-handler-alist) (setq file-name-handler-alist (cons (cons efs-path-root-regexp 'remote-path-file-handler-function) file-name-handler-alist)))
222
223 (autoload 'remote-path-file-handler-function "efs-dump" "\
224 Function to call special file handlers for remote files." nil nil)
225
226 ;;;***
227
228 ;;;### (autoloads nil "efs-fnh" "efs/efs-fnh.el")
229
230 (defvar allow-remote-paths t "\
231 *Set this to nil if you don't want remote paths to access
232 remote files.")
233
234 ;;;***
235
236 ;;;### (autoloads (efs-root-file-name-completion efs-root-file-name-all-completions efs-set-passwd) "efs-netrc" "efs/efs-netrc.el")
237
238 (autoload 'efs-set-passwd "efs-netrc" "\
239 For a given HOST and USER, set or change the associated PASSWORD." t nil)
240
241 (autoload 'efs-root-file-name-all-completions "efs-netrc" nil nil nil)
242
243 (autoload 'efs-root-file-name-completion "efs-netrc" nil nil nil)
244
245 ;;;***
246
247 ;;;### (autoloads (efs-report-bug) "efs-report" "efs/efs-report.el")
248
249 (autoload 'efs-report-bug "efs-report" "\
250 Submit a bug report for efs." t nil)
251
252 ;;;***
253
254 ;;;### (autoloads (efs-file-handler-function efs-nslookup-host efs-display-ftp-activity) "efs" "efs/efs.el")
255
256 (autoload 'efs-display-ftp-activity "efs" "\
257 Displays the number of active background ftp sessions in the modeline.
258 Uses the variable `efs-mode-line-format' to determine how this will be
259 displayed." t nil)
260
261 (autoload 'efs-nslookup-host "efs" "\
262 Attempt to resolve the given HOSTNAME using nslookup if possible." t nil)
263
264 (autoload 'efs-file-handler-function "efs" "\
265 Function to call special file handlers for remote files." nil nil)
266
267 ;;;***
268
269 (provide 'efs-autoloads)
270 ))