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