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