Mercurial > emacs
annotate lisp/dired-x.el @ 8034:6094b85c40d1
Move #undef HAVE_STRERROR before the #includes.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 23 Jun 1994 23:53:35 +0000 |
parents | d3e50535e6da |
children | 1dd92ac02141 |
rev | line source |
---|---|
5426 | 1 ;;; dired-x.el --- Sebastian Kremer's Extra DIRED hacked up for GNU Emacs19 |
2 | |
3 ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de> | |
4 ;; Lawrence R. Dodd <dodd@roebling.poly.edu> | |
5 ;; Maintainer: Lawrence R. Dodd <dodd@roebling.poly.edu> | |
7865
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
6 ;; Version: 2.31 |
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
7 ;; Date: 1994/06/09 21:31:53 |
5426 | 8 ;; Keywords: dired extensions |
9 | |
10 ;; Copyright (C) 1993, 1994 Free Software Foundation | |
11 | |
12 ;; This file is part of GNU Emacs. | |
13 | |
14 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
15 ;; it under the terms of the GNU General Public License as published by | |
7189 | 16 ;; the Free Software Foundation; either version 2, or (at your option) |
5426 | 17 ;; any later version. |
18 | |
19 ;; GNU Emacs is distributed in the hope that it will be useful, | |
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 ;; GNU General Public License for more details. | |
23 | |
24 ;; You should have received a copy of the GNU General Public License | |
25 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
26 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
27 | |
6694 | 28 ;;; Commentary: |
5426 | 29 |
6694 | 30 ;;; This is Sebastian Kremer's excellent dired-x.el (Dired Extra), version |
31 ;;; 1.191, hacked up for GNU Emacs 19. Redundant or conflicting material | |
32 ;;; has been removed or renamed in order to work properly with dired of | |
33 ;;; GNU Emacs 19. All suggestions or comments are most welcomed. | |
34 ;;; | |
35 ;;; *Please* see the info pages. | |
5426 | 36 |
37 ;;; BUGS: Type M-x dired-x-submit-report and a report will be generated. | |
38 | |
6694 | 39 ;;; INSTALLATION: In your ~/.emacs, |
5426 | 40 ;;; |
6694 | 41 ;;; (add-hook 'dired-load-hook |
5426 | 42 ;;; (function (lambda () |
43 ;;; (load "dired-x") | |
44 ;;; ;; Set variables here. For example: | |
45 ;;; ;; (setq dired-guess-shell-gnutar "gtar") | |
6694 | 46 ;;; ;; (setq dired-omit-files-p t) |
5426 | 47 ;;; ))) |
48 ;;; | |
6694 | 49 ;;; At load time dired-x.el will install itself, redefine some functions, and |
50 ;;; bind some dired keys. *Please* see the info pages for more details. | |
5426 | 51 |
52 ;;; User defined variables: | |
6694 | 53 ;;; |
5426 | 54 ;;; dired-bind-vm |
55 ;;; dired-vm-read-only-folders | |
56 ;;; dired-bind-jump | |
57 ;;; dired-bind-info | |
58 ;;; dired-bind-man | |
59 ;;; dired-find-subdir | |
60 ;;; dired-enable-local-variables | |
61 ;;; dired-local-variables-file | |
62 ;;; dired-guess-shell-gnutar | |
63 ;;; dired-guess-shell-gzip-quiet | |
64 ;;; dired-guess-shell-znew-switches | |
65 ;;; dired-guess-shell-alist-user | |
66 ;;; dired-clean-up-buffers-too | |
67 ;;; dired-omit-files-p | |
68 ;;; dired-omit-files | |
69 ;;; dired-omit-extensions | |
6694 | 70 ;;; |
71 ;;; To find out more about these variables, load this file, put your cursor at | |
72 ;;; the end of any of the variable names, and hit C-h v [RET]. *Please* see | |
73 ;;; the info pages for more details. | |
5426 | 74 |
75 ;;; When loaded this code redefines the following functions of GNU Emacs | |
6694 | 76 ;;; |
5426 | 77 ;;; Function Found in this file of GNU Emacs |
78 ;;; -------- ------------------------------- | |
6694 | 79 ;;; dired-clean-up-after-deletion ../lisp/dired.el |
80 ;;; dired-find-buffer-nocreate ../lisp/dired.el | |
81 ;;; dired-initial-position ../lisp/dired.el | |
82 ;;; dired-up-directory ../lisp/dired.el | |
83 ;;; | |
5426 | 84 ;;; dired-add-entry ../lisp/dired-aux.el |
6694 | 85 ;;; dired-read-shell-command ../lisp/dired-aux.el |
86 ;;; | |
5426 | 87 ;;; One drawback is that dired-x.el will load dired-aux.el as soon as dired is |
88 ;;; loaded. Thus, the advantage of separating out non-essential dired stuff | |
89 ;;; into dired-aux.el and only loading when necessary will be lost. Please | |
90 ;;; note also that some of the comments in dired.el and dired-aux.el are | |
6694 | 91 ;;; Kremer's that referred to the old dired-x.el. This now should be referring |
92 ;;; to this program. (This is also a good reason to call this dired-x.el | |
5426 | 93 ;;; instead of dired-x19.el.) |
94 | |
95 | |
96 ;;;; Code: | |
97 | |
98 ;;; LOAD. | |
99 | |
6694 | 100 ;;; This is a no-op if dired-x is being loaded via `dired-load-hook'. It is |
101 ;;; here in case the user has autoloaded dired-x via the dired-jump key binding | |
102 ;;; (instead of autoloading to dired as is suggested in the info-pages). | |
103 | |
7839
eb9d06dba04b
Require dired and dired-aux in the standard way.
Richard M. Stallman <rms@gnu.org>
parents:
7700
diff
changeset
|
104 (require 'dired) |
6694 | 105 |
5426 | 106 ;;; We will redefine some functions and also need some macros so we need to |
7839
eb9d06dba04b
Require dired and dired-aux in the standard way.
Richard M. Stallman <rms@gnu.org>
parents:
7700
diff
changeset
|
107 ;;; load dired stuff of GNU Emacs. |
5426 | 108 |
7839
eb9d06dba04b
Require dired and dired-aux in the standard way.
Richard M. Stallman <rms@gnu.org>
parents:
7700
diff
changeset
|
109 (require 'dired-aux) |
6694 | 110 |
5426 | 111 ;;;; User-defined variables. |
112 | |
113 (defvar dired-bind-vm nil | |
114 "*t says \"V\" in dired-mode will `dired-vm', otherwise \"V\" is `dired-rmail'. | |
115 Also, RMAIL files contain -*- rmail -*- at the top so \"f\", | |
116 `dired-advertised-find-file', will run rmail.") | |
117 | |
118 (defvar dired-bind-jump t | |
119 "*t says bind `dired-jump' to C-x C-j, otherwise do not.") | |
120 | |
121 (defvar dired-bind-man t | |
122 "*t says bind `dired-man' to \"N\" in dired-mode, otherwise do not.") | |
123 | |
124 (defvar dired-bind-info t | |
125 "*t says bind `dired-info' to \"I\" in dired-mode, otherwise do not.") | |
126 | |
127 (defvar dired-vm-read-only-folders nil | |
128 "*If t, \\[dired-vm] will visit all folders read-only. | |
129 If neither nil nor t, e.g. the symbol `if-file-read-only', only | |
130 files not writable by you are visited read-only. | |
131 | |
132 Read-only folders only work in VM 5, not in VM 4.") | |
133 | |
134 (defvar dired-omit-files-p nil | |
135 "*If non-nil, \"uninteresting\" files are not listed (buffer-local). | |
136 Use \\[dired-omit-toggle] to toggle its value. | |
137 Uninteresting files are those whose filenames match regexp `dired-omit-files', | |
138 plus those ending with extensions in `dired-omit-extensions'.") | |
139 | |
7865
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
140 (defvar dired-omit-files "^#\\|^\\.$\\|^\\.\\.$" |
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
141 "*Filenames matching this regexp will not be displayed \(buffer-local\). |
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
142 This only has effect when `dired-omit-files-p' is t. See interactive function |
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
143 `dired-omit-toggle' \(\\[dired-omit-toggle]\) and variable |
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
144 `dired-omit-extensions'. The default is to omit `.', `..', and auto-save |
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
145 files.") |
5426 | 146 |
147 (defvar dired-find-subdir nil ; t is pretty near to DWIM... | |
148 "*If non-nil, Dired does not make a new buffer for a directory if it | |
149 can be found (perhaps as subdir) in some existing Dired buffer. | |
150 | |
151 If there are several Dired buffers for a directory, the most recently | |
152 used is chosen. | |
153 | |
154 Dired avoids switching to the current buffer, so that if you have | |
155 a normal and a wildcard buffer for the same directory, C-x d RET will | |
156 toggle between those two.") | |
157 | |
158 (defvar dired-enable-local-variables t | |
159 "*Control use of local-variables lists in dired. | |
160 The value can be t, nil or something else. | |
161 A value of t means local-variables lists are obeyed; | |
162 nil means they are ignored; anything else means query. | |
163 | |
164 This temporarily overrides the value of `enable-local-variables' when listing | |
165 a directory. See also `dired-local-variables-file'.") | |
166 | |
167 (defvar dired-guess-shell-gnutar nil | |
168 "*If non-nil, name of GNU tar executable (e.g., \"tar\" or \"gtar\") and `z' | |
169 switch will be used for compressed or gzip'ed tar files. If no GNU tar, set | |
170 to nil: a pipe using `zcat' or `gunzip -c' will be used.") | |
171 | |
172 (defvar dired-guess-shell-gzip-quiet t | |
173 "*non-nil says pass -q to gzip overriding verbose GZIP environment.") | |
174 | |
175 (defvar dired-guess-shell-znew-switches nil | |
176 "*If non-nil, then string of switches passed to `znew', example: \"-K\"") | |
177 | |
178 (defvar dired-clean-up-buffers-too t | |
179 "*t says offer to kill buffers visiting files and dirs deleted in dired.") | |
180 | |
181 ;;;; KEY BINDINGS. | |
182 | |
183 (define-key dired-mode-map "\M-o" 'dired-omit-toggle) | |
184 (define-key dired-mode-map "\M-(" 'dired-mark-sexp) | |
185 (define-key dired-mode-map "\M-!" 'dired-smart-shell-command) | |
186 (define-key dired-mode-map "T" 'dired-do-toggle) | |
187 (define-key dired-mode-map "w" 'dired-copy-filename-as-kill) | |
188 (define-key dired-mode-map "\M-g" 'dired-goto-file) | |
189 (define-key dired-mode-map "\M-G" 'dired-goto-subdir) | |
190 (define-key dired-mode-map "F" 'dired-do-find-marked-files) | |
191 (define-key dired-mode-map "Y" 'dired-do-relsymlink) | |
192 (define-key dired-mode-map "%Y" 'dired-do-relsymlink-regexp) | |
193 (define-key dired-mode-map "V" 'dired-do-run-mail) | |
194 | |
195 (if dired-bind-man | |
196 (define-key dired-mode-map "N" 'dired-man)) | |
197 | |
198 (if dired-bind-info | |
199 (define-key dired-mode-map "I" 'dired-info)) | |
200 | |
6694 | 201 ;;; GLOBAL BINDING. |
5426 | 202 (if dired-bind-jump |
203 (progn | |
204 (define-key global-map "\C-x\C-j" 'dired-jump) | |
205 (define-key global-map "\C-x4\C-j" 'dired-jump-other-window))) | |
206 | |
207 | |
208 ;;;; Install into appropriate hooks. | |
209 | |
210 (add-hook 'dired-mode-hook 'dired-extra-startup) | |
211 (add-hook 'dired-after-readin-hook 'dired-omit-expunge) | |
212 | |
213 (defun dired-extra-startup () | |
214 "Automatically put on dired-mode-hook to get extra dired features: | |
215 \\<dired-mode-map> | |
216 | |
217 \\[dired-do-run-mail]\t-- run mail on folder (see `dired-bind-vm') | |
218 \\[dired-info]\t-- run info on file | |
219 \\[dired-man]\t-- run man on file | |
220 \\[dired-do-find-marked-files]\t-- visit all marked files simultaneously | |
221 \\[dired-omit-toggle]\t-- toggle omitting of files | |
222 \\[dired-do-toggle]\t-- toggle marks | |
223 \\[dired-mark-sexp]\t-- mark by lisp expression | |
224 \\[dired-copy-filename-as-kill]\t-- copy the file or subdir names into the kill ring. | |
225 \t You can feed it to other commands using \\[yank]. | |
226 | |
227 For more features, see variables | |
228 | |
229 dired-bind-vm | |
230 dired-bind-jump | |
231 dired-bind-info | |
232 dired-bind-man | |
233 dired-vm-read-only-folders | |
234 dired-omit-files-p | |
235 dired-omit-files | |
236 dired-omit-extensions | |
237 dired-find-subdir | |
238 dired-enable-local-variables | |
239 dired-local-variables-file | |
240 dired-guess-shell-gnutar | |
241 dired-guess-shell-gzip-quiet | |
242 dired-guess-shell-znew-switches | |
243 dired-guess-shell-alist-user | |
6694 | 244 dired-clean-up-buffers-too |
5426 | 245 |
246 See also functions | |
247 | |
248 dired-flag-extension | |
249 dired-virtual | |
250 dired-jump | |
251 dired-man | |
252 dired-vm | |
253 dired-rmail | |
254 dired-info | |
255 dired-do-find-marked-files | |
256 " | |
257 (interactive) | |
258 | |
259 ;; These must be done in each new dired buffer. | |
260 (dired-hack-local-variables) | |
261 (dired-omit-startup)) | |
262 | |
263 | |
264 ;;;; BUFFER CLEANING. | |
265 | |
266 ;;; REDEFINE. | |
267 (defun dired-clean-up-after-deletion (fn) | |
268 | |
269 ;; Clean up after a deleted file or directory FN. | |
270 ;; Remove expanded subdir of deleted dir, if any. | |
271 (save-excursion (and (cdr dired-subdir-alist) | |
272 (dired-goto-subdir fn) | |
273 (dired-kill-subdir))) | |
274 | |
275 ;; Offer to kill buffer of deleted file FN. | |
276 (if dired-clean-up-buffers-too | |
277 (progn | |
278 (let ((buf (get-file-buffer fn))) | |
279 (and buf | |
280 (funcall (function y-or-n-p) | |
281 (format "Kill buffer of %s, too? " | |
282 (file-name-nondirectory fn))) | |
283 (save-excursion ; you never know where kill-buffer leaves you | |
284 (kill-buffer buf)))) | |
285 (let ((buf-list (dired-buffers-for-dir fn)) | |
286 (buf nil)) | |
287 (and buf-list | |
288 (y-or-n-p (format "Kill dired buffer%s of %s, too? " | |
289 (dired-plural-s (length buf-list)) | |
290 (file-name-nondirectory fn))) | |
291 (while buf-list | |
292 (save-excursion (kill-buffer (car buf-list))) | |
293 (setq buf-list (cdr buf-list))))))) | |
6694 | 294 ;; Anything else? |
5426 | 295 ) |
296 | |
297 | |
298 ;;;; EXTENSION MARKING FUNCTIONS. | |
299 | |
6694 | 300 ;;; Mark files with some extension. |
5426 | 301 (defun dired-mark-extension (extension &optional marker-char) |
302 "Mark all files with a certain extension for use in later commands. | |
303 A `.' is not automatically prepended to the string entered." | |
304 ;; EXTENSION may also be a list of extensions instead of a single one. | |
305 ;; Optional MARKER-CHAR is marker to use. | |
306 (interactive "sMarking extension: \nP") | |
307 (or (listp extension) | |
308 (setq extension (list extension))) | |
309 (dired-mark-files-regexp | |
310 (concat ".";; don't match names with nothing but an extension | |
311 "\\(" | |
312 (mapconcat 'regexp-quote extension "\\|") | |
313 "\\)$") | |
314 marker-char)) | |
315 | |
316 (defun dired-flag-extension (extension) | |
317 "In dired, flag all files with a certain extension for deletion. | |
318 A `.' is *not* automatically prepended to the string entered." | |
319 (interactive "sFlagging extension: ") | |
320 (dired-mark-extension extension dired-del-marker)) | |
321 | |
322 ;;; Define some unpopular file extensions. Used for cleaning and omitting. | |
323 | |
324 (defvar dired-patch-unclean-extensions | |
325 '(".rej" ".orig") | |
326 "List of extensions of dispensable files created by the `patch' program.") | |
327 | |
328 (defvar dired-tex-unclean-extensions | |
329 '(".toc" ".log" ".aux");; these are already in completion-ignored-extensions | |
330 "List of extensions of dispensable files created by TeX.") | |
331 | |
332 (defvar dired-latex-unclean-extensions | |
333 '(".idx" ".lof" ".lot" ".glo") | |
334 "List of extensions of dispensable files created by LaTeX.") | |
335 | |
336 (defvar dired-bibtex-unclean-extensions | |
337 '(".blg" ".bbl") | |
338 "List of extensions of dispensable files created by BibTeX.") | |
339 | |
340 (defvar dired-texinfo-unclean-extensions | |
341 '(".cp" ".cps" ".fn" ".fns" ".ky" ".kys" ".pg" ".pgs" | |
342 ".tp" ".tps" ".vr" ".vrs") | |
343 "List of extensions of dispensable files created by texinfo.") | |
344 | |
345 (defun dired-clean-patch () | |
346 "Flag dispensable files created by patch for deletion. | |
347 See variable `dired-patch-unclean-extensions'." | |
348 (interactive) | |
349 (dired-flag-extension dired-patch-unclean-extensions)) | |
350 | |
351 (defun dired-clean-tex () | |
6694 | 352 "Flag dispensable files created by [La]TeX etc. for deletion. |
353 See variables `dired-texinfo-unclean-extensions', | |
354 `dired-latex-unclean-extensions', `dired-bibtex-unclean-extensions' and | |
355 `dired-texinfo-unclean-extensions'." | |
5426 | 356 (interactive) |
357 (dired-flag-extension (append dired-texinfo-unclean-extensions | |
358 dired-latex-unclean-extensions | |
359 dired-bibtex-unclean-extensions | |
360 dired-tex-unclean-extensions))) | |
361 | |
6694 | 362 (defun dired-very-clean-tex () |
363 "Flag dispensable files created by [La]TeX *and* \".dvi\" for deletion. | |
364 See variables `dired-texinfo-unclean-extensions', | |
365 `dired-latex-unclean-extensions', `dired-bibtex-unclean-extensions' and | |
366 `dired-texinfo-unclean-extensions'." | |
5426 | 367 (interactive) |
6694 | 368 (dired-flag-extension (append dired-texinfo-unclean-extensions |
369 dired-latex-unclean-extensions | |
370 dired-bibtex-unclean-extensions | |
371 dired-tex-unclean-extensions | |
372 (list ".dvi")))) | |
5426 | 373 |
374 ;;;; JUMP. | |
375 | |
7700
311f42f91dbd
(dired-jump): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
7189
diff
changeset
|
376 ;;;###autoload |
5426 | 377 (defun dired-jump (&optional other-window) |
378 "Jump to dired buffer corresponding to current buffer. | |
379 If in a file, dired the current directory and move to file's line. | |
380 If in dired already, pop up a level and goto old directory's line. | |
381 In case the proper dired file line cannot be found, refresh the dired | |
382 buffer and try again." | |
383 (interactive "P") | |
384 (let* ((file buffer-file-name) | |
385 (dir (if file (file-name-directory file) default-directory))) | |
386 (if (eq major-mode 'dired-mode) | |
387 (progn | |
388 (setq dir (dired-current-directory)) | |
389 (dired-up-directory other-window) | |
390 (or (dired-goto-file dir) | |
391 ;; refresh and try again | |
6694 | 392 (progn |
5426 | 393 (dired-insert-subdir (file-name-directory dir)) |
394 (dired-goto-file dir)))) | |
395 (if other-window | |
396 (dired-other-window dir) | |
397 (dired dir)) | |
398 (if file | |
399 (or (dired-goto-file file) | |
6694 | 400 ;; Toggle omitting, if necessary, and try again. |
401 (progn | |
402 (dired-omit-toggle t) | |
403 (dired-goto-file file)) | |
5426 | 404 ;; refresh and try again |
6694 | 405 (progn |
5426 | 406 (dired-insert-subdir (file-name-directory file)) |
407 (dired-goto-file file))))))) | |
408 | |
409 (defun dired-jump-other-window () | |
410 "Like \\[dired-jump] (dired-jump) but in other window." | |
411 (interactive) | |
412 (dired-jump t)) | |
413 | |
6694 | 414 ;;; REDEFINE. |
415 ;;; This replaces the version in dired.el | |
5426 | 416 ;;; It simply adds the OTHER-WINDOW option to the one in dired.el. |
417 (defun dired-up-directory (&optional other-window) | |
418 "Run dired on parent directory of current directory. | |
419 Find the parent directory either in this buffer or another buffer. | |
420 Finds in current window or in other window with optional OTHER-WINDOW. | |
421 Creates a buffer if necessary." | |
422 (interactive "P") | |
423 (let* ((dir (dired-current-directory)) | |
424 (up (file-name-directory (directory-file-name dir)))) | |
425 (or (dired-goto-file (directory-file-name dir)) | |
426 ;; Only try dired-goto-subdir if buffer has more than one dir. | |
427 (and (cdr dired-subdir-alist) | |
428 (dired-goto-subdir up)) | |
429 (progn | |
430 (if other-window | |
431 (dired-other-window up) | |
432 (dired up)) | |
433 (dired-goto-file dir))))) | |
434 | |
435 | |
436 ;;;; TOGGLE. | |
437 ;;; Toggle marked files with unmarked files. | |
438 | |
439 (defun dired-do-toggle () | |
440 "Toggle marks. | |
441 That is, currently marked files become unmarked and vice versa. | |
442 Files marked with other flags (such as `D') are not affected. | |
443 `.' and `..' are never toggled. | |
444 As always, hidden subdirs are not affected." | |
445 (interactive) | |
446 (save-excursion | |
447 (goto-char (point-min)) | |
448 (let (buffer-read-only) | |
449 (while (not (eobp)) | |
450 (or (dired-between-files) | |
451 (looking-at dired-re-dot) | |
452 ;; use subst instead of insdel because it does not move | |
453 ;; the gap and thus should be faster and because | |
454 ;; other characters are left alone automatically | |
455 (apply 'subst-char-in-region | |
456 (point) (1+ (point)) | |
457 (if (eq ?\040 (following-char)) ; SPC | |
458 (list ?\040 dired-marker-char) | |
459 (list dired-marker-char ?\040)))) | |
460 (forward-line 1))))) | |
461 | |
462 | |
463 ;;;; COPY NAMES OF MARKED FILES INTO KILL-RING. | |
6694 | 464 |
5426 | 465 (defun dired-copy-filename-as-kill (&optional arg) |
466 "Copy names of marked (or next ARG) files into the kill ring. | |
467 The names are separated by a space. | |
468 With a zero prefix arg, use the complete pathname of each marked file. | |
469 With \\[universal-argument], use the relative pathname of each marked file. | |
470 | |
471 If on a subdir headerline, use subdirname instead; prefix arg is ignored | |
472 in this case. | |
473 | |
474 You can then feed the file name(s) to other commands with \\[yank]." | |
475 (interactive "P") | |
476 (let ((string | |
477 (or (dired-get-subdir) | |
478 (mapconcat (function identity) | |
479 (if arg | |
480 (cond ((zerop (prefix-numeric-value arg)) | |
481 (dired-get-marked-files)) | |
482 ((integerp arg) | |
483 (dired-get-marked-files 'no-dir arg)) | |
484 (t ; else a raw arg | |
485 (dired-get-marked-files t))) | |
486 (dired-get-marked-files 'no-dir)) | |
487 " ")))) | |
488 (kill-new string) | |
489 (message "%s" string))) | |
490 | |
491 | |
492 ;;;; OMITTING. | |
493 | |
494 ;;; Enhanced omitting of lines from directory listings. | |
495 ;;; Marked files are never omitted. | |
496 | |
497 ;; should probably get rid of this and always use 'no-dir. | |
498 ;; sk 28-Aug-1991 09:37 | |
499 (defvar dired-omit-localp 'no-dir | |
500 "The LOCALP argument dired-omit-expunge passes to dired-get-filename. | |
501 If it is 'no-dir, omitting is much faster, but you can only match | |
502 against the basename of the file. Set it to nil if you need to match the | |
503 whole pathname.") | |
504 | |
505 ;; \017=^O for Omit - other packages can chose other control characters. | |
506 (defvar dired-omit-marker-char ?\017 | |
507 "Temporary marker used by by dired-omit. | |
508 Should never be used as marker by the user or other packages.") | |
509 | |
510 (defun dired-omit-startup () | |
511 (make-local-variable 'dired-omit-files-p) | |
512 (or (assq 'dired-omit-files-p minor-mode-alist) | |
513 (setq minor-mode-alist | |
514 (append '((dired-omit-files-p " Omit")) minor-mode-alist)))) | |
515 | |
516 (defun dired-omit-toggle (&optional flag) | |
7865
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
517 "Toggle omitting files matching `dired-omit-files' and `dired-omit-extensions'. |
5426 | 518 With an arg, and if omitting was off, don't toggle and just mark the |
519 files but don't actually omit them. | |
520 With an arg, and if omitting was on, turn it off but don't refresh the buffer." | |
521 (interactive "P") | |
522 (if flag | |
523 (if dired-omit-files-p | |
524 (setq dired-omit-files-p (not dired-omit-files-p)) | |
525 (dired-mark-unmarked-files (dired-omit-regexp) nil nil | |
526 dired-omit-localp)) | |
527 ;; no FLAG | |
528 (setq dired-omit-files-p (not dired-omit-files-p)) | |
529 (if (not dired-omit-files-p) | |
530 (revert-buffer) | |
531 ;; this will mention how many were omitted: | |
532 (dired-omit-expunge)))) | |
533 | |
534 (defvar dired-omit-extensions | |
535 (append completion-ignored-extensions | |
536 dired-latex-unclean-extensions | |
537 dired-bibtex-unclean-extensions | |
538 dired-texinfo-unclean-extensions) | |
7865
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
539 "If non-nil, a list of extensions \(strings\) to omit from Dired listings. |
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
540 Defaults to elements of `completion-ignored-extensions', |
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
541 `dired-latex-unclean-extensions', `dired-bibtex-unclean-extensions', and |
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
542 `dired-texinfo-unclean-extensions'. |
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
543 |
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
544 See interactive function `dired-omit-toggle' \(\\[dired-omit-toggle]\) and |
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
545 variables `dired-omit-files-p' and `dired-omit-files'.") |
5426 | 546 |
547 (defun dired-omit-expunge (&optional regexp) | |
548 "Erases all unmarked files matching REGEXP. | |
549 Does nothing if global variable `dired-omit-files-p' is nil. | |
550 If REGEXP is nil or not specified, uses `dired-omit-files', and also omits | |
551 filenames ending in `dired-omit-extensions'. | |
552 If REGEXP is the empty string, this function is a no-op. | |
553 | |
554 This functions works by temporarily binding `dired-marker-char' to | |
555 `dired-omit-marker-char' and calling `dired-do-kill-lines'." | |
556 (interactive "sOmit files (regexp): ") | |
557 (if dired-omit-files-p | |
558 (let ((omit-re (or regexp (dired-omit-regexp))) | |
559 count) | |
560 (or (string= omit-re "") | |
561 (let ((dired-marker-char dired-omit-marker-char)) | |
562 (message "Omitting...") | |
563 (if (dired-mark-unmarked-files omit-re nil nil dired-omit-localp) | |
564 (progn | |
565 (setq count (dired-do-kill-lines nil "Omitted %d line%s.")) | |
566 ;; Force an update of modeline. | |
567 (set-buffer-modified-p (buffer-modified-p))) | |
568 (message "(Nothing to omit)")))) | |
569 count))) | |
570 | |
571 (defun dired-omit-regexp () | |
572 (concat (if dired-omit-files (concat "\\(" dired-omit-files "\\)") "") | |
573 (if (and dired-omit-files dired-omit-extensions) "\\|" "") | |
574 (if dired-omit-extensions | |
575 (concat ".";; a non-extension part should exist | |
576 "\\(" | |
577 (mapconcat 'regexp-quote dired-omit-extensions "\\|") | |
578 "\\)$") | |
579 ""))) | |
580 | |
581 ;; Returns t if any work was done, nil otherwise. | |
582 (defun dired-mark-unmarked-files (regexp msg &optional unflag-p localp) | |
583 "Marks unmarked files matching REGEXP, displaying MSG. | |
584 REGEXP is matched against the complete pathname. | |
585 Does not re-mark files which already have a mark. | |
586 With prefix argument, unflag all those files. | |
587 Second optional argument LOCALP is as in `dired-get-filename'." | |
588 (interactive "P") | |
589 (let ((dired-marker-char (if unflag-p ?\ dired-marker-char))) | |
590 (dired-mark-if | |
591 (and | |
592 ;; not already marked | |
593 (looking-at " ") | |
594 ;; uninteresting | |
595 (let ((fn (dired-get-filename localp t))) | |
596 (and fn (string-match regexp fn)))) | |
597 msg))) | |
598 | |
6694 | 599 ;;; REDEFINE. |
5426 | 600 (defun dired-omit-new-add-entry (filename &optional marker-char) |
601 ;; This redefines dired-aux.el's dired-add-entry to avoid calling ls for | |
602 ;; files that are going to be omitted anyway. | |
603 (if dired-omit-files-p | |
604 ;; perhaps return t without calling ls | |
605 (let ((omit-re (dired-omit-regexp))) | |
606 (if (or (string= omit-re "") | |
607 (not | |
608 (string-match omit-re | |
609 (cond | |
610 ((eq 'no-dir dired-omit-localp) | |
611 filename) | |
612 ((eq t dired-omit-localp) | |
613 (dired-make-relative filename)) | |
614 (t | |
615 (dired-make-absolute | |
616 filename | |
617 (file-name-directory filename))))))) | |
618 ;; if it didn't match, go ahead and add the entry | |
619 (dired-omit-old-add-entry filename marker-char) | |
620 ;; dired-add-entry returns t for success, perhaps we should | |
621 ;; return file-exists-p | |
622 t)) | |
623 ;; omitting is not turned on at all | |
624 (dired-omit-old-add-entry filename marker-char))) | |
625 | |
6694 | 626 ;;; REDEFINE. |
5426 | 627 ;;; Redefine dired-aux.el's version of `dired-add-entry' |
628 ;;; Save old defun if not already done: | |
629 (or (fboundp 'dired-omit-old-add-entry) | |
630 (fset 'dired-omit-old-add-entry (symbol-function 'dired-add-entry))) | |
631 ;; Redefine it. | |
632 (fset 'dired-add-entry 'dired-omit-new-add-entry) | |
633 | |
634 | |
635 ;;;; VIRTUAL DIRED MODE. | |
636 | |
637 ;;; For browsing `ls -lR' listings in a dired-like fashion. | |
638 | |
639 (fset 'virtual-dired 'dired-virtual) | |
640 (defun dired-virtual (dirname &optional switches) | |
641 "Put this buffer into Virtual Dired mode. | |
642 | |
643 In Virtual Dired mode, all commands that do not actually consult the | |
644 filesystem will work. | |
645 | |
646 This is useful if you want to peruse and move around in an ls -lR | |
647 output file, for example one you got from an ftp server. With | |
648 ange-ftp, you can even dired a directory containing an ls-lR file, | |
649 visit that file and turn on virtual dired mode. But don't try to save | |
650 this file, as dired-virtual indents the listing and thus changes the | |
651 buffer. | |
652 | |
653 If you have save a Dired buffer in a file you can use \\[dired-virtual] to | |
654 resume it in a later session. | |
655 | |
656 Type \\<dired-mode-map>\\[revert-buffer] in the | |
657 Virtual Dired buffer and answer `y' to convert the virtual to a real | |
658 dired buffer again. You don't have to do this, though: you can relist | |
659 single subdirs using \\[dired-do-redisplay]. | |
660 " | |
661 | |
662 ;; DIRNAME is the top level directory of the buffer. It will become | |
663 ;; its `default-directory'. If nil, the old value of | |
664 ;; default-directory is used. | |
665 | |
666 ;; Optional SWITCHES are the ls switches to use. | |
667 | |
668 ;; Shell wildcards will be used if there already is a `wildcard' | |
669 ;; line in the buffer (thus it is a saved Dired buffer), but there | |
670 ;; is no other way to get wildcards. Insert a `wildcard' line by | |
671 ;; hand if you want them. | |
672 | |
673 (interactive | |
674 (list (read-string "Virtual Dired directory: " (dired-virtual-guess-dir)))) | |
675 (goto-char (point-min)) | |
676 (or (looking-at " ") | |
677 ;; if not already indented, do it now: | |
678 (indent-region (point-min) (point-max) 2)) | |
679 (or dirname (setq dirname default-directory)) | |
680 (setq dirname (expand-file-name (file-name-as-directory dirname))) | |
681 (setq default-directory dirname) ; contains no wildcards | |
682 (let ((wildcard (save-excursion | |
683 (goto-char (point-min)) | |
684 (forward-line 1) | |
685 (and (looking-at "^ wildcard ") | |
686 (buffer-substring (match-end 0) | |
687 (progn (end-of-line) (point))))))) | |
688 (if wildcard | |
689 (setq dirname (expand-file-name wildcard default-directory)))) | |
690 ;; If raw ls listing (not a saved old dired buffer), give it a | |
691 ;; decent subdir headerline: | |
692 (goto-char (point-min)) | |
693 (or (looking-at dired-subdir-regexp) | |
694 (dired-insert-headerline default-directory)) | |
695 (dired-mode dirname (or switches dired-listing-switches)) | |
696 (setq mode-name "Virtual Dired" | |
697 revert-buffer-function 'dired-virtual-revert) | |
698 (set (make-local-variable 'dired-subdir-alist) nil) | |
699 (dired-build-subdir-alist) | |
700 (goto-char (point-min)) | |
701 (dired-initial-position dirname)) | |
702 | |
703 (defun dired-virtual-guess-dir () | |
704 | |
705 ;; Guess and return appropriate working directory of this buffer, | |
706 ;; assumed to be in Dired or ls -lR format. | |
707 ;; The guess is based upon buffer contents. | |
708 ;; If nothing could be guessed, returns nil. | |
709 | |
710 (let ((regexp "^\\( \\)?\\([^ \n\r]*\\)\\(:\\)[\n\r]") | |
711 (subexpr 2)) | |
712 (goto-char (point-min)) | |
713 (cond ((looking-at regexp) | |
714 ;; If a saved dired buffer, look to which dir and | |
715 ;; perhaps wildcard it belongs: | |
716 (let ((dir (buffer-substring (match-beginning subexpr) | |
717 (match-end subexpr)))) | |
718 (file-name-as-directory dir))) | |
719 ;; Else no match for headerline found. It's a raw ls listing. | |
720 ;; In raw ls listings the directory does not have a headerline | |
721 ;; try parent of first subdir, if any | |
722 ((re-search-forward regexp nil t) | |
723 (file-name-directory | |
724 (directory-file-name | |
725 (file-name-as-directory | |
726 (buffer-substring (match-beginning subexpr) | |
727 (match-end subexpr)))))) | |
728 (t ; if all else fails | |
729 nil)))) | |
730 | |
731 | |
732 (defun dired-virtual-revert (&optional arg noconfirm) | |
733 (if (not | |
734 (y-or-n-p "Cannot revert a Virtual Dired buffer - switch to Real Dired mode? ")) | |
735 (error "Cannot revert a Virtual Dired buffer.") | |
736 (setq mode-name "Dired" | |
737 revert-buffer-function 'dired-revert) | |
738 (revert-buffer))) | |
739 | |
740 ;; A zero-arg version of dired-virtual. | |
741 ;; You need my modified version of set-auto-mode for the | |
742 ;; `buffer-contents-mode-alist'. | |
743 ;; Or you use infer-mode.el and infer-mode-alist, same syntax. | |
744 (defun dired-virtual-mode () | |
745 "Put current buffer into virtual dired mode (see `dired-virtual'). | |
746 Useful on `buffer-contents-mode-alist' (which see) with the regexp | |
747 | |
748 \"^ \\(/[^ /]+\\)/?+:$\" | |
749 | |
750 to put saved dired buffers automatically into virtual dired mode. | |
751 | |
752 Also useful for `auto-mode-alist' (which see) like this: | |
753 | |
754 \(setq auto-mode-alist (cons '(\"[^/]\\.dired$\" . dired-virtual-mode) | |
755 auto-mode-alist)\)" | |
756 (interactive) | |
757 (dired-virtual (dired-virtual-guess-dir))) | |
758 | |
759 | |
760 ;;;; SMART SHELL. | |
761 | |
762 ;;; An Emacs buffer can have but one working directory, stored in the | |
763 ;;; buffer-local variable `default-directory'. A Dired buffer may have | |
764 ;;; several subdirectories inserted, but still has but one working directory: | |
765 ;;; that of the top level Dired directory in that buffer. For some commands | |
766 ;;; it is appropriate that they use the current Dired directory instead of | |
767 ;;; `default-directory', e.g., `find-file' and `compile'. This is a general | |
768 ;;; mechanism is provided for special handling of the working directory in | |
769 ;;; special major modes. | |
770 | |
771 ;; It's easier to add to this alist than redefine function | |
772 ;; default-directory while keeping the old information. | |
773 (defconst default-directory-alist | |
774 '((dired-mode . (if (fboundp 'dired-current-directory) | |
775 (dired-current-directory) | |
776 default-directory))) | |
777 "Alist of major modes and their opinion on default-directory, as a | |
778 lisp expression to evaluate. A resulting value of nil is ignored in | |
779 favor of default-directory.") | |
780 | |
781 (defun default-directory () | |
782 "Usage like variable `default-directory', but knows about the special | |
783 cases in variable `default-directory-alist' (which see)." | |
784 (or (eval (cdr (assq major-mode default-directory-alist))) | |
785 default-directory)) | |
786 | |
787 (defun dired-smart-shell-command (cmd &optional insert) | |
788 "Like function `shell-command', but in the current Tree Dired directory." | |
789 (interactive "sShell command: \nP") | |
790 (let ((default-directory (default-directory))) | |
791 (shell-command cmd insert))) | |
792 | |
793 | |
794 ;;;; LOCAL VARIABLES FOR DIRED BUFFERS. | |
795 | |
6694 | 796 ;;; Brief Description: |
797 ;;; | |
798 ;;; * `dired-extra-startup' is part of the `dired-mode-hook'. | |
799 ;;; | |
5426 | 800 ;;; * `dired-extra-startup' calls `dired-hack-local-variables' |
6694 | 801 ;;; |
5426 | 802 ;;; * `dired-hack-local-variables' checks the value of |
6694 | 803 ;;; `dired-local-variables-file' |
804 ;;; | |
5426 | 805 ;;; * Check if `dired-local-variables-file' is a non-nil string and is a |
806 ;;; filename found in the directory of the Dired Buffer being created. | |
6694 | 807 ;;; |
5426 | 808 ;;; * If `dired-local-variables-file' satisfies the above, then temporarily |
809 ;;; include it in the Dired Buffer at the bottom. | |
6694 | 810 ;;; |
5426 | 811 ;;; * Set `enable-local-variables' temporarily to the user variable |
812 ;;; `dired-enable-local-variables' and run `hack-local-variables' on the | |
813 ;;; Dired Buffer. | |
814 | |
815 (defvar dired-local-variables-file ".dired" | |
816 "Filename, as string, containing local dired buffer variables to be hacked. | |
817 If this file found in current directory, then it will be inserted into dired | |
818 buffer and `hack-local-variables' will be run. See Emacs Info pages for more | |
819 information on local variables. See also `dired-enable-local-variables'.") | |
820 | |
821 (defun dired-hack-local-variables () | |
822 "Evaluate local variables in `dired-local-variables-file' for dired buffer." | |
823 (if (and dired-local-variables-file | |
824 (stringp dired-local-variables-file) | |
825 (file-exists-p dired-local-variables-file)) | |
826 (let ((opoint (point-max)) | |
827 buffer-read-only | |
828 ;; In case user has `enable-local-variables' set to nil we | |
829 ;; override it locally with dired's variable. | |
830 (enable-local-variables dired-enable-local-variables)) | |
831 ;; Insert 'em. | |
832 (save-excursion | |
833 (goto-char opoint) | |
834 (insert "\^L\n") | |
835 (insert-file-contents dired-local-variables-file)) | |
836 ;; Hack 'em. | |
837 (let ((buffer-file-name dired-local-variables-file)) | |
838 (hack-local-variables)) | |
839 ;; Make sure that the modeline shows the proper information. | |
840 (dired-sort-set-modeline) | |
841 ;; Delete this stuff: `eobp' is used to find last subdir by dired.el. | |
6694 | 842 (delete-region opoint (point-max))))) |
5426 | 843 |
6694 | 844 (defun dired-omit-here-always () |
5426 | 845 "Creates `dired-local-variables-file' for omitting and reverts directory. |
846 Sets dired-omit-file-p to t in a local variables file that is readable by | |
847 dired." | |
6694 | 848 (interactive) |
5426 | 849 (if (file-exists-p dired-local-variables-file) |
850 (message "File `./%s' already exists." dired-local-variables-file) | |
851 | |
852 ;; Create `dired-local-variables-file'. | |
853 (save-excursion | |
854 (set-buffer (get-buffer-create " *dot-dired*")) | |
855 (erase-buffer) | |
856 (insert "Local Variables:\ndired-omit-files-p: t\nEnd:\n") | |
857 (write-file dired-local-variables-file) | |
858 (kill-buffer (current-buffer))) | |
859 | |
860 ;; Run extra-hooks and revert directory. | |
861 (dired-extra-startup) | |
862 (dired-revert))) | |
863 | |
864 | |
865 ;;;; GUESS SHELL COMMAND. | |
866 | |
6694 | 867 ;;; Brief Description: |
868 ;;; | |
869 ;;; `dired-do-shell-command' is bound to `!' by dired.el. | |
870 ;;; | |
5426 | 871 ;;; * Redefine `dired-do-shell-command' so it calls |
872 ;;; `dired-guess-shell-command'. | |
6694 | 873 ;;; |
5426 | 874 ;;; * `dired-guess-shell-command' calls `dired-guess-default' with list of |
875 ;;; marked files. | |
6694 | 876 ;;; |
5426 | 877 ;;; * Parse `dired-guess-shell-alist-user' and |
878 ;;; `dired-guess-shell-alist-default' (in that order) for the first REGEXP | |
879 ;;; that matches the first file in the file list. | |
6694 | 880 ;;; |
5426 | 881 ;;; * If the REGEXP matches all the entries of the file list then evaluate |
882 ;;; COMMAND, which is either a string or an elisp expression returning a | |
883 ;;; string. COMMAND may be a list of commands. | |
6694 | 884 ;;; |
5426 | 885 ;;; * Return this command to `dired-guess-shell-command' which prompts user |
886 ;;; with it. The list of commands are temporaily put into the history list. | |
887 ;;; If a command is used successfully then it is stored permanently in | |
888 ;;; `dired-shell-command-history'. | |
889 | |
890 ;;; Guess what shell command to apply to a file. | |
891 (defvar dired-shell-command-history nil | |
892 "History list for commands that read dired-shell commands.") | |
893 | |
6694 | 894 ;;; Default list of shell commands. |
5426 | 895 |
896 ;;; NOTE: Use `gunzip -c' instead of `zcat' on `.gz' files. Some do not | |
897 ;;; install GNU zip's version of zcat. | |
898 | |
899 (defvar dired-guess-shell-alist-default | |
900 (list | |
901 (list "\\.tar$" '(if dired-guess-shell-gnutar | |
902 (concat dired-guess-shell-gnutar " xvf") | |
903 "tar xvf")) | |
904 | |
905 ;; REGEXPS for compressed archives must come before the .Z rule to | |
906 ;; be recognized: | |
907 (list "\\.tar\\.Z$" | |
908 ;; Untar it. | |
909 '(if dired-guess-shell-gnutar | |
910 (concat dired-guess-shell-gnutar " zxvf") | |
911 (concat "zcat * | tar xvf -")) | |
912 ;; Optional conversion to gzip format. | |
913 '(concat "znew" (if dired-guess-shell-gzip-quiet " -q") | |
914 " " dired-guess-shell-znew-switches)) | |
915 | |
916 ;; gzip'ed archives | |
917 (list "\\.tar\\.g?z$" | |
918 '(if dired-guess-shell-gnutar | |
919 (concat dired-guess-shell-gnutar " zxvf") | |
920 (concat "gunzip -qc * | tar xvf -")) | |
921 ;; Optional decompression. | |
922 '(concat "gunzip" (if dired-guess-shell-gzip-quiet " -q" ""))) | |
923 | |
924 '("\\.shar.Z$" "zcat * | unshar") | |
925 '("\\.shar.g?z$" "gunzip -qc * | unshar") | |
926 | |
927 '("\\.ps$" "ghostview" "xv" "lpr") | |
928 (list "\\.ps.g?z$" "gunzip -qc * | ghostview -" | |
929 ;; Optional decompression. | |
930 '(concat "gunzip" (if dired-guess-shell-gzip-quiet " -q"))) | |
6694 | 931 (list "\\.ps.Z$" "zcat * | ghostview -" |
5426 | 932 ;; Optional conversion to gzip format. |
933 '(concat "znew" (if dired-guess-shell-gzip-quiet " -q") | |
934 " " dired-guess-shell-znew-switches)) | |
935 '("\\.patch$" "cat * | patch") | |
936 '("\\.patch.g?z$" "gunzip -qc * | patch") | |
937 (list "\\.patch.Z$" "zcat * | patch" | |
938 ;; Optional conversion to gzip format. | |
939 '(concat "znew" (if dired-guess-shell-gzip-quiet " -q") | |
940 " " dired-guess-shell-znew-switches)) | |
941 | |
942 '("\\.dvi$" "xdvi" "dvips") ; preview and printing | |
6694 | 943 '("\\.au$" "play") ; play Sun audiofiles |
5426 | 944 '("\\.mpg$" "mpeg_play") |
945 '("\\.uu$" "uudecode") ; for uudecoded files | |
946 '("\\.hqx$" "mcvert") | |
947 '("\\.sh$" "sh") ; execute shell scripts | |
948 '("\\.xbm$" "bitmap") ; view X11 bitmaps | |
949 '("\\.gp$" "gnuplot") | |
950 '("\\.p[bgpn]m$" "xv") | |
951 '("\\.gif$" "xv") ; view gif pictures | |
952 '("\\.tif$" "xv") | |
953 '("\\.jpg$" "xv") | |
954 '("\\.fig$" "xfig") ; edit fig pictures | |
955 '("\\.out$" "xgraph") ; for plotting purposes. | |
956 '("\\.tex$" "latex" "tex") | |
957 '("\\.texi\\(nfo\\)?$" "makeinfo" "texi2dvi") | |
958 | |
959 ;; Some other popular archivers. | |
960 '("\\.zoo$" "zoo x//") | |
961 '("\\.zip$" "unzip") | |
962 '("\\.lzh$" "lharc x") | |
963 '("\\.arc$" "arc x") | |
964 '("\\.shar$" "unshar") | |
965 | |
966 ;; Compression. | |
967 (list "\\.g?z$" '(concat "gunzip" (if dired-guess-shell-gzip-quiet " -q"))) | |
968 (list "\\.Z$" "uncompress" | |
969 ;; Optional conversion to gzip format. | |
970 '(concat "znew" (if dired-guess-shell-gzip-quiet " -q") | |
971 " " dired-guess-shell-znew-switches)) | |
972 ) | |
6694 | 973 |
5426 | 974 "Default alist used for shell command guessing. |
975 See `dired-guess-shell-alist-user'") | |
976 | |
977 (defvar dired-guess-shell-alist-user nil | |
978 "User-defined alist of rules for suggested commands. These rules take | |
979 precedence over the predefined rules in the variable | |
980 `dired-guess-shell-alist-default' (to which they are prepended). | |
981 | |
982 Each element of this list looks like | |
983 | |
984 \(REGEXP COMMAND...\) | |
985 | |
986 where each COMMAND can either be a string or a lisp expression that evaluates | |
987 to a string. If several COMMANDs are given, the first one will be the default | |
988 and the rest will be added temporarily to the history and can be retrieved | |
989 with \\[previous-history-element] (M-p) . | |
990 | |
991 You can set this variable in your ~/.emacs. For example, to add rules for | |
992 `.foo' and `.bar' files, write | |
993 | |
994 \(setq dired-guess-shell-alist-user | |
995 (list (list \"\\\\.foo$\" \"FOO-COMMAND\");; fixed rule | |
996 ;; possibly more rules ... | |
997 (list \"\\\\.bar$\";; rule with condition test | |
998 '(if condition | |
999 \"BAR-COMMAND-1\" | |
1000 \"BAR-COMMAND-2\")))\) | |
1001 ") | |
1002 | |
1003 (defun dired-guess-default (files) | |
1004 | |
6694 | 1005 ;; Guess a shell commands for FILES. Return command or list of commands. |
1006 ;; See `dired-guess-shell-alist-user'. | |
5426 | 1007 |
1008 (let* ((case-fold-search nil) ; case-sensitive matching | |
1009 ;; Prepend the user's alist to the default alist. | |
1010 (alist (append dired-guess-shell-alist-user | |
1011 dired-guess-shell-alist-default)) | |
1012 (file (car files)) | |
1013 (flist (cdr files)) | |
1014 elt regexp cmds) | |
1015 | |
1016 ;; Find the first match in the alist for first file in FILES. | |
1017 (while alist | |
1018 (setq elt (car alist) | |
1019 regexp (car elt) | |
1020 alist (cdr alist)) | |
1021 (if (string-match regexp file) | |
1022 (setq cmds (cdr elt) | |
1023 alist nil))) | |
1024 | |
1025 ;; If more than one file, see if all of FILES match regular expression. | |
1026 (while (and flist | |
1027 (string-match regexp (car flist))) | |
1028 (setq flist (cdr flist))) | |
6694 | 1029 |
5426 | 1030 ;; If flist is still non-nil, then do not guess since this means that not |
1031 ;; all the files in FILES were matched by the regexp. | |
1032 (setq cmds (and (not flist) cmds)) | |
1033 | |
6694 | 1034 ;; Return commands or nil if flist is still non-nil. |
1035 ;; Evaluate the commands in order that any logical testing will be done. | |
5426 | 1036 (cond ((not (cdr cmds)) |
1037 (eval (car cmds))) ; single command | |
1038 (t | |
1039 (mapcar (function eval) cmds))))) | |
1040 | |
1041 (defun dired-guess-shell-command (prompt files) | |
1042 | |
1043 ;; Ask user with PROMPT for a shell command, guessing a default from FILES. | |
1044 | |
1045 (let ((default (dired-guess-default files)) | |
1046 default-list old-history val (failed t)) | |
1047 | |
1048 (if (null default) | |
1049 ;; Nothing to guess | |
1050 (read-from-minibuffer prompt nil nil nil 'dired-shell-command-history) | |
1051 | |
1052 ;; Save current history list | |
1053 (setq old-history dired-shell-command-history) | |
1054 | |
1055 (if (listp default) | |
1056 | |
1057 ;; More than one guess | |
1058 (setq default-list default | |
1059 default (car default) | |
1060 prompt (concat | |
1061 prompt | |
1062 (format "{%d guesses} " (length default-list)))) | |
1063 | |
1064 ;; Just one guess | |
1065 (setq default-list (list default))) | |
1066 | |
1067 ;; Push all guesses onto history so that they can be retrieved with M-p | |
1068 ;; and put the first guess in the prompt but not in the initial value. | |
1069 (setq dired-shell-command-history | |
1070 (append default-list dired-shell-command-history) | |
1071 prompt (concat prompt (format "[%s] " default))) | |
1072 | |
1073 ;; The unwind-protect returns VAL, and we too. | |
1074 (unwind-protect | |
1075 ;; BODYFORM | |
1076 (progn | |
1077 (setq val (read-from-minibuffer prompt nil nil nil | |
1078 'dired-shell-command-history) | |
1079 failed nil) | |
1080 ;; If we got a return, then use default. | |
1081 (if (equal val "") | |
1082 (setq val default)) | |
1083 val) | |
1084 | |
1085 ;; UNWINDFORMS | |
1086 ;; Undo pushing onto the history list so that an aborted | |
1087 ;; command doesn't get the default in the next command. | |
1088 (setq dired-shell-command-history old-history) | |
1089 (if (not failed) | |
1090 (or (equal val (car-safe dired-shell-command-history)) | |
1091 (setq dired-shell-command-history | |
1092 (cons val dired-shell-command-history)))))))) | |
1093 | |
1094 | |
6694 | 1095 ;;; REDEFINE. |
5426 | 1096 ;;; Redefine dired-aux.el's version: |
1097 (defun dired-read-shell-command (prompt arg files) | |
1098 ;; "Read a dired shell command prompting with PROMPT (using read-string). | |
1099 ;;ARG is the prefix arg and may be used to indicate in the prompt which | |
1100 ;; files are affected. | |
1101 ;;This is an extra function so that you can redefine it, e.g., to use gmhist." | |
1102 (dired-mark-pop-up | |
1103 nil 'shell files | |
1104 'dired-guess-shell-command | |
1105 (format prompt (dired-mark-prompt arg files)) ; PROMPT | |
1106 files)) ; FILES | |
1107 | |
1108 | |
1109 ;;;; RELATIVE SYMBOLIC LINKS. | |
1110 | |
1111 (defvar dired-keep-marker-relsymlink ?S | |
1112 "See variable `dired-keep-marker-move'.") | |
1113 | |
1114 (defun dired-make-relative-symlink (file1 file2 &optional ok-if-already-exists) | |
1115 "Three arguments: FILE1 FILE2 &optional OK-IF-ALREADY-EXISTS | |
1116 Make a symbolic link (pointing to FILE1) in FILE2. | |
1117 The link is relative (if possible), for example | |
1118 | |
1119 \"/vol/tex/bin/foo\" \"/vol/local/bin/foo\" | |
1120 | |
1121 results in | |
1122 | |
1123 \"../../tex/bin/foo\" \"/vol/local/bin/foo\" | |
1124 " | |
1125 (interactive "FRelSymLink: \nFRelSymLink %s: \np") | |
1126 (let (name1 name2 len1 len2 (index 0) sub) | |
1127 (setq file1 (expand-file-name file1) | |
1128 file2 (expand-file-name file2) | |
1129 len1 (length file1) | |
1130 len2 (length file2)) | |
1131 ;; Find common initial pathname components: | |
1132 (let (next) | |
1133 (while (and (setq next (string-match "/" file1 index)) | |
1134 (setq next (1+ next)) | |
1135 (< next (min len1 len2)) | |
1136 ;; For the comparison, both substrings must end in | |
1137 ;; `/', so NEXT is *one plus* the result of the | |
1138 ;; string-match. | |
1139 ;; E.g., consider the case of linking "/tmp/a/abc" | |
1140 ;; to "/tmp/abc" erronously giving "/tmp/a" instead | |
1141 ;; of "/tmp/" as common initial component | |
1142 (string-equal (substring file1 0 next) | |
1143 (substring file2 0 next))) | |
1144 (setq index next)) | |
1145 (setq name2 file2 | |
1146 sub (substring file1 0 index) | |
1147 name1 (substring file1 index))) | |
1148 (if (string-equal sub "/") | |
1149 ;; No common initial pathname found | |
1150 (setq name1 file1) | |
1151 ;; Else they have a common parent directory | |
1152 (let ((tem (substring file2 index)) | |
1153 (start 0) | |
1154 (count 0)) | |
1155 ;; Count number of slashes we must compensate for ... | |
1156 (while (setq start (string-match "/" tem start)) | |
1157 (setq count (1+ count) | |
1158 start (1+ start))) | |
1159 ;; ... and prepend a "../" for each slash found: | |
1160 (while (> count 0) | |
1161 (setq count (1- count) | |
1162 name1 (concat "../" name1))))) | |
1163 (make-symbolic-link | |
1164 (directory-file-name name1) ; must not link to foo/ | |
1165 ; (trailing slash!) | |
1166 name2 ok-if-already-exists))) | |
1167 | |
1168 (defun dired-do-relsymlink (&optional arg) | |
1169 "Relative symlink all marked (or next ARG) files into a directory, | |
1170 or make a relative symbolic link to the current file. | |
1171 This creates relative symbolic links like | |
1172 | |
1173 foo -> ../bar/foo | |
1174 | |
1175 not absolute ones like | |
1176 | |
1177 foo -> /ugly/path/that/may/change/any/day/bar/foo" | |
1178 (interactive "P") | |
1179 (dired-do-create-files 'relsymlink (function dired-make-relative-symlink) | |
1180 "RelSymLink" arg dired-keep-marker-relsymlink)) | |
1181 | |
1182 (defun dired-do-relsymlink-regexp (regexp newname &optional whole-path) | |
1183 "RelSymlink all marked files containing REGEXP to NEWNAME. | |
1184 See functions `dired-do-rename-regexp' and `dired-do-relsymlink' | |
1185 for more info." | |
1186 (interactive (dired-mark-read-regexp "RelSymLink")) | |
1187 (dired-do-create-files-regexp | |
1188 (function dired-make-relative-symlink) | |
1189 "RelSymLink" nil regexp newname whole-path dired-keep-marker-relsymlink)) | |
1190 | |
1191 | |
1192 ;;;; VISIT ALL MARKED FILES SIMULTANEOUSLY. | |
1193 | |
6694 | 1194 ;;; Brief Description: |
1195 ;;; | |
1196 ;;; `dired-do-find-marked-files' is bound to `F' by dired-x.el. | |
1197 ;;; | |
5426 | 1198 ;;; * Use `dired-get-marked-files' to collect the marked files in the current |
6694 | 1199 ;;; Dired Buffer into a list of filenames `FILE-LIST'. |
1200 ;;; | |
5426 | 1201 ;;; * Pass FILE-LIST to `dired-simultaneous-find-file' all with |
1202 ;;; `dired-do-find-marked-files''s prefix argument NOSELECT. | |
6694 | 1203 ;;; |
5426 | 1204 ;;; * `dired-simultaneous-find-file' runs through FILE-LIST decrementing the |
1205 ;;; list each time. | |
6694 | 1206 ;;; |
5426 | 1207 ;;; * If NOSELECT is non-nil then just run `find-file-noselect' on each |
1208 ;;; element of FILE-LIST. | |
6694 | 1209 ;;; |
5426 | 1210 ;;; * If NOSELECT is nil then calculate the `size' of the window for each file |
1211 ;;; by dividing the `window-height' by length of FILE-LIST. Thus, `size' is | |
1212 ;;; cognizant of the window-configuration. | |
6694 | 1213 ;;; |
5426 | 1214 ;;; * If `size' is too small abort, otherwise run `find-file' on each element |
1215 ;;; of FILE-LIST giving each a window of height `size'. | |
1216 | |
1217 (defun dired-do-find-marked-files (&optional noselect) | |
1218 "Find all marked files displaying all of them simultaneously. | |
1219 With optional NOSELECT just find files but do not select them. | |
1220 | |
1221 The current window is split across all files marked, as evenly as possible. | |
1222 Remaining lines go to bottom-most window. The number of files that can be | |
1223 displayed this way is restricted by the height of the current window and | |
1224 `window-min-height'. | |
1225 | |
6694 | 1226 To keep dired buffer displayed, type \\[split-window-vertically] first. |
5426 | 1227 To display just marked files, type \\[delete-other-windows] first." |
1228 | |
1229 (interactive "P") | |
1230 (dired-simultaneous-find-file (dired-get-marked-files) noselect)) | |
1231 | |
1232 (defun dired-simultaneous-find-file (file-list noselect) | |
1233 | |
1234 ;; Visit all files in FILE-LIST and display them simultaneously. The | |
1235 ;; current window is split across all files in FILE-LIST, as evenly as | |
1236 ;; possible. Remaining lines go to the bottom-most window. The number of | |
1237 ;; files that can be displayed this way is restricted by the height of the | |
1238 ;; current window and the variable `window-min-height'. With non-nil | |
1239 ;; NOSELECT the files are merely found but not selected. | |
6694 | 1240 |
5426 | 1241 ;; We don't make this function interactive because it is usually too clumsy |
1242 ;; to specify FILE-LIST interactively unless via dired. | |
1243 | |
1244 (let (size) | |
1245 | |
1246 (if noselect | |
1247 ;; Do not select the buffer. | |
1248 (find-file-noselect (car file-list)) | |
1249 | |
1250 ;; We will have to select the buffer. Calculate and check window size. | |
1251 (setq size (/ (window-height) (length file-list))) | |
1252 (or (<= window-min-height size) | |
1253 (error "Too many files to visit simultaneously. Try C-u prefix.")) | |
1254 (find-file (car file-list))) | |
1255 | |
1256 ;; Decrement. | |
1257 (setq file-list (cdr file-list)) | |
1258 | |
1259 (while file-list | |
1260 | |
1261 (if noselect | |
1262 ;; Do not select the buffer. | |
1263 (find-file-noselect (car file-list)) | |
1264 | |
1265 ;; Vertically split off a window of desired size. Upper window will | |
1266 ;; have SIZE lines. Select lower (larger) window. We split it again. | |
1267 (select-window (split-window nil size)) | |
1268 (find-file (car file-list))) | |
1269 | |
1270 ;; Decrement. | |
1271 (setq file-list (cdr file-list))))) | |
1272 | |
1273 | |
1274 ;;;; MISCELLANEOUS COMMANDS. | |
1275 | |
6694 | 1276 ;;; Run man on files. |
1277 | |
5426 | 1278 (defun dired-man () |
6694 | 1279 "Run man on this file. Display old buffer if buffer name matches filename. |
7865
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
1280 Uses ../lisp/man.el of \\[manual-entry] fame." |
5426 | 1281 (interactive) |
7865
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
1282 (require 'man) |
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
1283 (let ((file (dired-get-filename)) |
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
1284 (manual-program "nroff -man -h")) |
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
1285 (Man-getpage-in-background file))) |
5426 | 1286 |
1287 ;;; Run Info on files. | |
1288 | |
1289 (defun dired-info () | |
1290 "Run info on this file." | |
1291 (interactive) | |
1292 (info (dired-get-filename))) | |
1293 | |
1294 ;;; Run mail on mail folders. | |
1295 | |
6694 | 1296 ;;; (and (not (fboundp 'vm-visit-folder)) |
1297 ;;; (defun vm-visit-folder (file &optional arg) | |
1298 ;;; nil)) | |
1299 | |
5426 | 1300 (defun dired-vm (&optional read-only) |
1301 "Run VM on this file. | |
1302 With prefix arg, visit folder read-only (this requires at least VM 5). | |
1303 See also variable `dired-vm-read-only-folders'." | |
1304 (interactive "P") | |
1305 (let ((dir (dired-current-directory)) | |
1306 (fil (dired-get-filename))) | |
1307 ;; take care to supply 2nd arg only if requested - may still run VM 4! | |
1308 (cond (read-only (vm-visit-folder fil t)) | |
1309 ((eq t dired-vm-read-only-folders) (vm-visit-folder fil t)) | |
1310 ((null dired-vm-read-only-folders) (vm-visit-folder fil)) | |
1311 (t (vm-visit-folder fil (not (file-writable-p fil))))) | |
1312 ;; so that pressing `v' inside VM does prompt within current directory: | |
1313 (set (make-local-variable 'vm-folder-directory) dir))) | |
1314 | |
1315 (defun dired-rmail () | |
1316 "Run RMAIL on this file." | |
1317 (interactive) | |
1318 (rmail (dired-get-filename))) | |
1319 | |
1320 (defun dired-do-run-mail () | |
1321 "If `dired-bind-vm' is t, then function `dired-vm', otherwise `dired-rmail'." | |
1322 (interactive) | |
1323 (if dired-bind-vm | |
1324 ;; Read mail folder using vm. | |
1325 (dired-vm) | |
1326 ;; Read mail folder using rmail. | |
1327 (dired-rmail))) | |
1328 | |
1329 | |
1330 ;;;; MISCELLANEOUS INTERNAL FUNCTIONS. | |
1331 | |
1332 (or (fboundp 'dired-old-find-buffer-nocreate) | |
1333 (fset 'dired-old-find-buffer-nocreate | |
1334 (symbol-function 'dired-find-buffer-nocreate))) | |
1335 | |
6694 | 1336 ;;; REDEFINE. |
5426 | 1337 ;;; Redefines dired.el's version of `dired-find-buffer-nocreate' |
1338 (defun dired-find-buffer-nocreate (dirname) | |
1339 (if dired-find-subdir | |
1340 (let* ((cur-buf (current-buffer)) | |
1341 (buffers (nreverse (dired-buffers-for-dir dirname))) | |
1342 (cur-buf-matches (and (memq cur-buf buffers) | |
1343 ;; wildcards must match, too: | |
1344 (equal dired-directory dirname)))) | |
1345 ;; We don't want to switch to the same buffer--- | |
1346 (setq buffers (delq cur-buf buffers));;need setq with delq | |
1347 (or (car (sort buffers (function dired-buffer-more-recently-used-p))) | |
1348 ;; ---unless it's the only possibility: | |
1349 (and cur-buf-matches cur-buf))) | |
1350 (dired-old-find-buffer-nocreate dirname))) | |
1351 | |
1352 ;; This should be a builtin | |
1353 (defun dired-buffer-more-recently-used-p (buffer1 buffer2) | |
1354 "Return t if BUFFER1 is more recently used than BUFFER2." | |
1355 (if (equal buffer1 buffer2) | |
1356 nil | |
1357 (let ((more-recent nil) | |
1358 (list (buffer-list))) | |
1359 (while (and list | |
1360 (not (setq more-recent (equal buffer1 (car list)))) | |
1361 (not (equal buffer2 (car list)))) | |
1362 (setq list (cdr list))) | |
1363 more-recent))) | |
1364 | |
1365 ;;; Same thing as `dired-buffers-for-dir' of dired.el? - lrd 11/23/93 | |
1366 ;;; (defun dired-buffers-for-dir-exact (dir) | |
1367 ;;; ;; Return a list of buffers that dired DIR (a directory or wildcard) | |
1368 ;;; ;; at top level, or as subdirectory. | |
1369 ;;; ;; Top level matches must match the wildcard part too, if any. | |
1370 ;;; ;; The list is in reverse order of buffer creation, most recent last. | |
1371 ;;; ;; As a side effect, killed dired buffers for DIR are removed from | |
1372 ;;; ;; dired-buffers. | |
1373 ;;; (let ((alist dired-buffers) result elt) | |
1374 ;;; (while alist | |
1375 ;;; (setq elt (car alist) | |
1376 ;;; alist (cdr alist)) | |
1377 ;;; (let ((buf (cdr elt))) | |
1378 ;;; (if (buffer-name buf) | |
1379 ;;; ;; Top level must match exactly against dired-directory in | |
1380 ;;; ;; case one of them is a wildcard. | |
1381 ;;; (if (or (equal dir (save-excursion (set-buffer buf) | |
1382 ;;; dired-directory)) | |
1383 ;;; (assoc dir (save-excursion (set-buffer buf) | |
1384 ;;; dired-subdir-alist))) | |
1385 ;;; (setq result (cons buf result))) | |
1386 ;;; ;; else buffer is killed - clean up: | |
1387 ;;; (setq dired-buffers (delq elt dired-buffers))))) | |
1388 ;;; result)) | |
1389 | |
6694 | 1390 ;;; REDEFINE. |
5426 | 1391 ;;; Redefines dired.el's version of `dired-initial-position' |
1392 (defun dired-initial-position (dirname) | |
1393 (end-of-line) | |
1394 (if dired-find-subdir (dired-goto-subdir dirname)) ; new | |
1395 (if dired-trivial-filenames (dired-goto-next-nontrivial-file))) | |
1396 | |
1397 | |
1398 ;; Does anyone use this? - lrd 6/29/93. | |
1399 (defun dired-mark-sexp (predicate &optional unflag-p) | |
1400 "Mark files for which PREDICATE returns non-nil. | |
1401 With a prefix arg, unflag those files instead. | |
1402 | |
1403 PREDICATE is a lisp expression that can refer to the following symbols: | |
1404 | |
1405 inode [integer] the inode of the file (only for ls -i output) | |
1406 s [integer] the size of the file for ls -s output | |
1407 (ususally in blocks or, with -k, in KByte) | |
1408 mode [string] file permission bits, e.g. \"-rw-r--r--\" | |
1409 nlink [integer] number of links to file | |
1410 uid [string] owner | |
1411 gid [string] group (If the gid is not displayed by ls, | |
1412 this will still be set (to the same as uid)) | |
1413 size [integer] file size in bytes | |
1414 time [string] the time that ls displays, e.g. \"Feb 12 14:17\" | |
1415 name [string] the name of the file | |
1416 sym [string] if file is a symbolic link, the linked-to name, else \"\" | |
1417 | |
1418 For example, use | |
1419 | |
1420 (equal 0 size) | |
1421 | |
1422 to mark all zero length files." | |
1423 ;; Using sym="" instead of nil avoids the trap of | |
1424 ;; (string-match "foo" sym) into which a user would soon fall. | |
1425 ;; Give `equal' instead of `=' in the example, as this works on | |
1426 ;; integers and strings. | |
1427 (interactive "xMark if (lisp expr): \nP") | |
1428 (message "%s" predicate) | |
1429 (let ((dired-marker-char (if unflag-p ?\040 dired-marker-char)) | |
1430 inode s mode nlink uid gid size time name sym) | |
1431 (dired-mark-if | |
1432 (save-excursion | |
1433 (and | |
1434 ;; Sets vars | |
1435 ;; inode s mode nlink uid gid size time name sym | |
1436 | |
1437 ;; according to current file line. Returns t for success, nil if | |
1438 ;; there is no file line. Upon success, all variables are set, either | |
1439 ;; to nil or the appropriate value, so they need not be initialized. | |
1440 ;; Moves point within the current line. | |
1441 (if (dired-move-to-filename) | |
1442 (let (pos | |
1443 (mode-len 10) ; length of mode string | |
1444 ;; like in dired.el, but with subexpressions \1=inode, \2=s: | |
1445 (dired-re-inode-size "\\s *\\([0-9]*\\)\\s *\\([0-9]*\\) ?")) | |
1446 (beginning-of-line) | |
1447 (forward-char 2) | |
1448 (if (looking-at dired-re-inode-size) | |
1449 (progn | |
1450 (goto-char (match-end 0)) | |
1451 (setq inode (string-to-int (buffer-substring (match-beginning 1) | |
1452 (match-end 1))) | |
1453 s (string-to-int (buffer-substring (match-beginning 2) | |
1454 (match-end 2))))) | |
1455 (setq inode nil | |
1456 s nil)) | |
1457 (setq mode (buffer-substring (point) (+ mode-len (point)))) | |
1458 (forward-char mode-len) | |
1459 (setq nlink (read (current-buffer))) | |
1460 (setq uid (buffer-substring (point) (progn (forward-word 1) (point)))) | |
1461 (re-search-forward "\\(Jan\\|Feb\\|Mar\\|Apr\\|May\\|Jun\\|Jul\\|Aug\\|Sep\\|Oct\\|Nov\\|Dec\\)") | |
1462 (goto-char (match-beginning 1)) | |
1463 (forward-char -1) | |
1464 (setq size (string-to-int (buffer-substring (save-excursion | |
1465 (backward-word 1) | |
1466 (setq pos (point))) | |
1467 (point)))) | |
1468 (goto-char pos) | |
1469 (backward-word 1) | |
1470 ;; if no gid is displayed, gid will be set to uid | |
1471 ;; but user will then not reference it anyway in PREDICATE. | |
1472 (setq gid (buffer-substring (save-excursion (forward-word 1) (point)) | |
1473 (point)) | |
1474 time (buffer-substring (match-beginning 1) | |
1475 (1- (dired-move-to-filename))) | |
1476 name (buffer-substring (point) | |
1477 (or (dired-move-to-end-of-filename t) | |
1478 (point))) | |
1479 sym (progn | |
1480 (if (looking-at " -> ") | |
1481 (buffer-substring (progn (forward-char 4) (point)) | |
1482 (progn (end-of-line) (point))) | |
1483 ""))) | |
1484 t) | |
1485 nil) | |
1486 (eval predicate))) | |
1487 (format "'%s file" predicate)))) | |
1488 | |
1489 | |
1490 ;;;; FIND FILE AT POINT. | |
1491 (defun dired-find-this-file (&optional other-window) | |
1492 "Edit filename or directory at point. | |
1493 Switch to a buffer visiting filename, creating one if none already exists. | |
1494 With non-nil prefix argument OTHER-WINDOW do so in the other window. | |
1495 | |
1496 Useful for editing the file mentioned in the buffer you are viewing, or to | |
1497 test if that file exists. Use minibuffer after snatching the filename." | |
1498 | |
1499 (interactive "P") | |
1500 (let* ((guess (dired-filename-at-point)) | |
1501 (file (read-file-name "Find file: " guess guess nil nil))) | |
1502 (if other-window | |
1503 (find-file-other-window (expand-file-name file)) | |
1504 (find-file (expand-file-name file))))) | |
1505 | |
1506 (fset 'find-this-file 'dired-find-this-file) | |
1507 | |
1508 ;;; Internal function. | |
1509 (defun dired-filename-at-point () | |
1510 | |
1511 ;; Get the filename closest to point, but do not change position. Has a | |
1512 ;; preference for looking backward when not directly on a symbol. Not | |
1513 ;; perfect - point must be in middle of or end of filename. | |
1514 | |
6694 | 1515 (let ((filename-chars ".a-zA-Z0-9---_/:$+") |
5426 | 1516 (bol (save-excursion (beginning-of-line) (point))) |
1517 (eol (save-excursion (end-of-line) (point))) | |
1518 start end filename) | |
1519 | |
1520 (save-excursion | |
1521 ;; First see if just past a filename. | |
1522 (if (not (eobp)) | |
1523 (if (looking-at "[] \t\n[{}()]") ; whitespace or some parens | |
1524 (progn | |
1525 (skip-chars-backward " \n\t\r({[]})") | |
1526 (if (not (bobp)) | |
1527 (backward-char 1))))) | |
6694 | 1528 |
5426 | 1529 (if (string-match (concat "[" filename-chars "]") |
1530 (char-to-string (following-char))) | |
1531 (progn | |
1532 (skip-chars-backward filename-chars) | |
1533 (setq start (point)) | |
1534 (if (string-match "[/~]" (char-to-string (preceding-char))) | |
1535 (setq start (1- start))) | |
1536 (skip-chars-forward filename-chars)) | |
1537 | |
1538 (error "No file found around point!")) | |
1539 | |
6694 | 1540 ;; Return string. |
5426 | 1541 (expand-file-name (buffer-substring start (point)))))) |
1542 | |
1543 | |
1544 ;;;; BUG REPORTS | |
1545 | |
1546 ;;; This section is provided for reports. It uses Barry A. Warsaw's | |
1547 ;;; reporter.el which is bundled with GNU Emacs v19. | |
1548 | |
7865
d3e50535e6da
(dired-man): Use internal function from man.el.
Richard M. Stallman <rms@gnu.org>
parents:
7839
diff
changeset
|
1549 (defconst dired-x-version "2.31" |
5426 | 1550 "Revision number of dired-x.el -- dired extra for GNU Emacs v19. |
6694 | 1551 Type \\[dired-x-submit-report] to send a bug report. Available via anonymous |
5426 | 1552 ftp in |
1553 | |
1554 /roebling.poly.edu:/pub/packages/dired-x.tar.gz") | |
1555 | |
1556 (defconst dired-x-help-address "dodd@roebling.poly.edu" | |
1557 "Address(es) accepting submission of reports on dired-x.el.") | |
1558 | |
1559 (defconst dired-x-maintainer "Larry" | |
1560 "First name(s) of people accepting submission of reports on dired-x.el.") | |
1561 | |
1562 (defconst dired-x-file "dired-x.el" | |
1563 "Name of file containing emacs lisp code.") | |
1564 | |
1565 (defconst dired-x-variable-list | |
6694 | 1566 (list |
5426 | 1567 'dired-bind-vm |
1568 'dired-vm-read-only-folders | |
1569 'dired-bind-jump | |
1570 'dired-bind-info | |
1571 'dired-bind-man | |
1572 'dired-find-subdir | |
1573 'dired-enable-local-variables | |
1574 'dired-local-variables-file | |
1575 'dired-guess-shell-gnutar | |
1576 'dired-guess-shell-gzip-quiet | |
1577 'dired-guess-shell-znew-switches | |
1578 'dired-guess-shell-alist-user | |
1579 'dired-clean-up-buffers-too | |
1580 'dired-omit-files-p | |
1581 'dired-omit-files | |
1582 'dired-omit-extensions | |
1583 ) | |
1584 "List of variables to be appended to reports sent by `dired-x-submit-report.'") | |
1585 | |
1586 (defun dired-x-submit-report () | |
1587 "Submit via reporter.el a bug report on program. Send report on `dired-x-file' | |
1588 version `dired-x-version,' to `dired-x-maintainer' at address `dired-x-help-address' | |
1589 listing variables `dired-x-variable-list' in the message." | |
1590 (interactive) | |
1591 | |
1592 ;; In case we can't find reporter... | |
1593 (condition-case err | |
1594 (progn | |
1595 ;; Get it if we can. | |
1596 (require 'reporter) | |
1597 | |
1598 (reporter-submit-bug-report | |
1599 dired-x-help-address ; address | |
1600 (concat dired-x-file " (" dired-x-version ")") ; pkgname | |
1601 dired-x-variable-list ; varlist | |
1602 nil nil ; pre-/post-hooks | |
1603 (concat dired-x-maintainer ","))) ; salutation | |
1604 | |
1605 ;; ...fail gracefully. | |
6694 | 1606 (error |
5426 | 1607 (beep) |
1608 (message "Sorry, reporter.el not found.")))) | |
1609 | |
1610 | |
1611 ;; As Barry Warsaw would say: "This might be useful..." | |
1612 (provide 'dired-x) | |
1613 | |
1614 ;;; dired-x.el ends here |