Silence false alarms for symlinks to sources
[emacs.git] / lisp / dired-x.el
blob1425278bdc9923980ec46118f939105bf9aa39cb
1 ;;; dired-x.el --- extra Dired functionality -*- lexical-binding:t -*-
3 ;; Copyright (C) 1993-1994, 1997, 2001-2017 Free Software Foundation,
4 ;; Inc.
6 ;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>
7 ;; Lawrence R. Dodd <dodd@roebling.poly.edu>
8 ;; Maintainer: Romain Francoise <rfrancoise@gnu.org>
9 ;; Keywords: dired extensions files
10 ;; Package: emacs
12 ;; This file is part of GNU Emacs.
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
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
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.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;;; Commentary:
29 ;; This is based on Sebastian Kremer's excellent dired-x.el (Dired Extra),
30 ;; version 1.191, adapted for GNU Emacs. See the `dired-x' info pages.
32 ;; At load time dired-x.el will install itself and bind some dired keys.
33 ;; Some dired.el and dired-aux.el functions have extra features if
34 ;; dired-x is loaded.
36 ;; User customization: M-x customize-group RET dired-x RET.
38 ;; *Please* see the `dired-x' info pages for more details.
41 ;;; Code:
43 ;; This is a no-op if dired-x is being loaded via `dired-load-hook',
44 ;; but maybe not if a dired-x function is being autoloaded.
45 (require 'dired)
47 ;;; User-defined variables.
49 (defgroup dired-x nil
50 "Extended directory editing (dired-x)."
51 :group 'dired)
53 (defgroup dired-keys nil
54 "Dired keys customizations."
55 :prefix "dired-"
56 :group 'dired-x)
58 (defcustom dired-bind-vm nil
59 "Non-nil means \"V\" runs `dired-vm', otherwise \"V\" runs `dired-rmail'.
60 RMAIL files in the old Babyl format (used before before Emacs 23.1)
61 contain \"-*- rmail -*-\" at the top, so `dired-find-file'
62 will run `rmail' on these files. New RMAIL files use the standard
63 mbox format, and so cannot be distinguished in this way."
64 :type 'boolean
65 :group 'dired-keys)
67 (defcustom dired-bind-jump t
68 "Non-nil means bind `dired-jump' to C-x C-j, otherwise do not.
69 Setting this variable directly after dired-x is loaded has no effect -
70 use \\[customize]."
71 :type 'boolean
72 :set (lambda (sym val)
73 (if (set sym val)
74 (progn
75 (define-key ctl-x-map "\C-j" 'dired-jump)
76 (define-key ctl-x-4-map "\C-j" 'dired-jump-other-window))
77 (if (eq 'dired-jump (lookup-key ctl-x-map "\C-j"))
78 (define-key ctl-x-map "\C-j" nil))
79 (if (eq 'dired-jump-other-window (lookup-key ctl-x-4-map "\C-j"))
80 (define-key ctl-x-4-map "\C-j" nil))))
81 :group 'dired-keys)
83 (defcustom dired-bind-man t
84 "Non-nil means bind `dired-man' to \"N\" in Dired, otherwise do not.
85 Setting this variable directly after dired-x is loaded has no effect -
86 use \\[customize]."
87 :type 'boolean
88 :set (lambda (sym val)
89 (if (set sym val)
90 (define-key dired-mode-map "N" 'dired-man)
91 (if (eq 'dired-man (lookup-key dired-mode-map "N"))
92 (define-key dired-mode-map "N" nil))))
93 :group 'dired-keys)
95 (defcustom dired-bind-info t
96 "Non-nil means bind `dired-info' to \"I\" in Dired, otherwise do not.
97 Setting this variable directly after dired-x is loaded has no effect -
98 use \\[customize]."
99 :type 'boolean
100 :set (lambda (sym val)
101 (if (set sym val)
102 (define-key dired-mode-map "I" 'dired-info)
103 (if (eq 'dired-info (lookup-key dired-mode-map "I"))
104 (define-key dired-mode-map "I" nil))))
105 :group 'dired-keys)
107 (defcustom dired-vm-read-only-folders nil
108 "If non-nil, \\[dired-vm] will visit all folders read-only.
109 If neither nil nor t, e.g. the symbol `if-file-read-only', only
110 files not writable by you are visited read-only."
111 :type '(choice (const :tag "off" nil)
112 (const :tag "on" t)
113 (other :tag "non-writable only" if-file-read-only))
114 :group 'dired-x)
116 (defcustom dired-omit-size-limit 30000
117 "Maximum size for the \"omitting\" feature.
118 If nil, there is no maximum size."
119 :type '(choice (const :tag "no maximum" nil) integer)
120 :group 'dired-x)
122 (defcustom dired-omit-case-fold 'filesystem
123 "Determine whether \"omitting\" patterns are case-sensitive.
124 When nil, always be case-sensitive; when t, always be
125 case-insensitive; the default value, `filesystem', causes case
126 folding to be used on case-insensitive filesystems only."
127 :type '(choice (const :tag "Always case-sensitive" nil)
128 (const :tag "Always case-insensitive" t)
129 (const :tag "According to filesystem" filesystem))
130 :group 'dired-x
131 :version "26.1")
133 (declare-function file-name-case-insensitive-p "fileio.c" (filename))
134 (defun dired-omit-case-fold-p (dir)
135 "Non-nil if `dired-omit-mode' should be case-insensitive in DIR."
136 (if (eq dired-omit-case-fold 'filesystem)
137 (file-name-case-insensitive-p dir)
138 dired-omit-case-fold))
140 ;; For backward compatibility
141 (define-obsolete-variable-alias 'dired-omit-files-p 'dired-omit-mode "22.1")
142 (define-minor-mode dired-omit-mode
143 "Toggle omission of uninteresting files in Dired (Dired-Omit mode).
144 With a prefix argument ARG, enable Dired-Omit mode if ARG is
145 positive, and disable it otherwise. If called from Lisp, enable
146 the mode if ARG is omitted or nil.
148 Dired-Omit mode is a buffer-local minor mode. When enabled in a
149 Dired buffer, Dired does not list files whose filenames match
150 regexp `dired-omit-files', nor files ending with extensions in
151 `dired-omit-extensions'.
153 To enable omitting in every Dired buffer, you can put this in
154 your init file:
156 (add-hook \\='dired-mode-hook (lambda () (dired-omit-mode)))
158 See Info node `(dired-x) Omitting Variables' for more information."
159 :group 'dired-x
160 (if dired-omit-mode
161 ;; This will mention how many lines were omitted:
162 (let ((dired-omit-size-limit nil)) (dired-omit-expunge))
163 (revert-buffer)))
165 (put 'dired-omit-mode 'safe-local-variable 'booleanp)
167 (defcustom dired-omit-files "^\\.?#\\|^\\.$\\|^\\.\\.$"
168 "Filenames matching this regexp will not be displayed.
169 This only has effect when `dired-omit-mode' is t. See interactive function
170 `dired-omit-mode' (\\[dired-omit-mode]) and variable
171 `dired-omit-extensions'. The default is to omit `.', `..', auto-save
172 files and lock files."
173 :type 'regexp
174 :group 'dired-x)
176 (defcustom dired-omit-verbose t
177 "When non-nil, show messages when omitting files.
178 When nil, don't show messages."
179 :version "24.1"
180 :type 'boolean
181 :group 'dired-x)
183 (defcustom dired-find-subdir nil ; t is pretty near to DWIM...
184 "If non-nil, Dired always finds a directory in a buffer of its own.
185 If nil, Dired finds the directory as a subdirectory in some other buffer
186 if it is present as one.
188 If there are several Dired buffers for a directory, the most recently
189 used is chosen.
191 Dired avoids switching to the current buffer, so that if you have
192 a normal and a wildcard buffer for the same directory, \\[dired] will
193 toggle between those two."
194 :type 'boolean
195 :group 'dired-x)
197 (defcustom dired-enable-local-variables t
198 "Control use of local-variables lists in Dired.
199 This temporarily overrides the value of `enable-local-variables' when
200 listing a directory. See also `dired-local-variables-file'."
201 :risky t
202 :type '(choice (const :tag "Query Unsafe" t)
203 (const :tag "Safe Only" :safe)
204 (const :tag "Do all" :all)
205 (const :tag "Ignore" nil)
206 (other :tag "Query" other))
207 :group 'dired-x)
209 (make-obsolete-variable 'dired-enable-local-variables
210 "use a standard `dir-locals-file' instead." "24.1")
212 (defcustom dired-guess-shell-gnutar
213 (catch 'found
214 (dolist (exe '("tar" "gtar"))
215 (if (with-temp-buffer
216 (ignore-errors (call-process exe nil t nil "--version"))
217 (and (re-search-backward "GNU tar" nil t) t))
218 (throw 'found exe))))
219 "If non-nil, name of GNU tar executable.
220 \(E.g., \"tar\" or \"gtar\"). The `z' switch will be used with it for
221 compressed or gzip'ed tar files. If you don't have GNU tar, set this
222 to nil: a pipe using `zcat' or `gunzip -c' will be used."
223 ;; Changed from system-type test to testing --version output.
224 ;; Maybe test --help for -z instead?
225 :version "24.1"
226 :type '(choice (const :tag "Not GNU tar" nil)
227 (string :tag "Command name"))
228 :group 'dired-x)
230 (defcustom dired-guess-shell-gzip-quiet t
231 "Non-nil says pass -q to gzip overriding verbose GZIP environment."
232 :type 'boolean
233 :group 'dired-x)
235 (defcustom dired-guess-shell-znew-switches nil
236 "If non-nil, then string of switches passed to `znew', example: \"-K\"."
237 :type '(choice (const :tag "None" nil)
238 (string :tag "Switches"))
239 :group 'dired-x)
241 (defcustom dired-clean-up-buffers-too t
242 "Non-nil means offer to kill buffers visiting files and dirs deleted in Dired."
243 :type 'boolean
244 :group 'dired-x)
246 ;;; KEY BINDINGS.
248 (define-key dired-mode-map "\C-x\M-o" 'dired-omit-mode)
249 (define-key dired-mode-map "*O" 'dired-mark-omitted)
250 (define-key dired-mode-map "\M-(" 'dired-mark-sexp)
251 (define-key dired-mode-map "*(" 'dired-mark-sexp)
252 (define-key dired-mode-map "*." 'dired-mark-extension)
253 (define-key dired-mode-map "\M-!" 'dired-smart-shell-command)
254 (define-key dired-mode-map "\M-G" 'dired-goto-subdir)
255 (define-key dired-mode-map "F" 'dired-do-find-marked-files)
256 (define-key dired-mode-map "Y" 'dired-do-relsymlink)
257 (define-key dired-mode-map "%Y" 'dired-do-relsymlink-regexp)
258 (define-key dired-mode-map "V" 'dired-do-run-mail)
260 ;;; MENU BINDINGS
262 (require 'easymenu)
264 (let ((menu (lookup-key dired-mode-map [menu-bar])))
265 (easy-menu-add-item menu '("Operate")
266 ["Find Files" dired-do-find-marked-files
267 :help "Find current or marked files"]
268 "Shell Command...")
269 (easy-menu-add-item menu '("Operate")
270 ["Relative Symlink to..." dired-do-relsymlink
271 :visible (fboundp 'make-symbolic-link)
272 :help "Make relative symbolic links for current or \
273 marked files"]
274 "Hardlink to...")
275 (easy-menu-add-item menu '("Mark")
276 ["Flag Extension..." dired-flag-extension
277 :help "Flag files with a certain extension for deletion"]
278 "Mark Executables")
279 (easy-menu-add-item menu '("Mark")
280 ["Mark Extension..." dired-mark-extension
281 :help "Mark files with a certain extension"]
282 "Unmark All")
283 (easy-menu-add-item menu '("Mark")
284 ["Mark Omitted" dired-mark-omitted
285 :help "Mark files matching `dired-omit-files' \
286 and `dired-omit-extensions'"]
287 "Unmark All")
288 (easy-menu-add-item menu '("Regexp")
289 ["Relative Symlink..." dired-do-relsymlink-regexp
290 :visible (fboundp 'make-symbolic-link)
291 :help "Make relative symbolic links for files \
292 matching regexp"]
293 "Hardlink...")
294 (easy-menu-add-item menu '("Immediate")
295 ["Omit Mode" dired-omit-mode
296 :style toggle :selected dired-omit-mode
297 :help "Enable or disable omitting \"uninteresting\" \
298 files"]
299 "Refresh"))
302 ;; Install into appropriate hooks.
304 (add-hook 'dired-mode-hook 'dired-extra-startup)
305 (add-hook 'dired-after-readin-hook 'dired-omit-expunge)
307 (defun dired-extra-startup ()
308 "Automatically put on `dired-mode-hook' to get extra Dired features:
309 \\<dired-mode-map>
310 \\[dired-do-run-mail]\t-- run mail on folder (see `dired-bind-vm')
311 \\[dired-info]\t-- run info on file
312 \\[dired-man]\t-- run man on file
313 \\[dired-do-find-marked-files]\t-- visit all marked files simultaneously
314 \\[dired-omit-mode]\t-- toggle omitting of files
315 \\[dired-mark-sexp]\t-- mark by Lisp expression
317 To see the options you can set, use M-x customize-group RET dired-x RET.
318 See also the functions:
319 `dired-flag-extension'
320 `dired-virtual'
321 `dired-jump'
322 `dired-man'
323 `dired-vm'
324 `dired-rmail'
325 `dired-info'
326 `dired-do-find-marked-files'"
327 (interactive)
328 ;; These must be done in each new dired buffer.
329 (dired-hack-local-variables)
330 (dired-omit-startup))
333 ;;; EXTENSION MARKING FUNCTIONS.
335 (defun dired--mark-suffix-interactive-spec ()
336 (let* ((default
337 (let ((file (dired-get-filename nil t)))
338 (when file
339 (file-name-extension file))))
340 (suffix
341 (read-string (format "%s extension%s: "
342 (if (equal current-prefix-arg '(4))
343 "UNmarking"
344 "Marking")
345 (if default
346 (format " (default %s)" default)
347 "")) nil nil default))
348 (marker
349 (pcase current-prefix-arg
350 ('(4) ?\s)
351 ('(16)
352 (let* ((dflt (char-to-string dired-marker-char))
353 (input (read-string
354 (format
355 "Marker character to use (default %s): " dflt)
356 nil nil dflt)))
357 (aref input 0)))
358 (_ dired-marker-char))))
359 (list suffix marker)))
361 ;; Mark files with some extension.
362 (defun dired-mark-extension (extension &optional marker-char)
363 "Mark all files with a certain EXTENSION for use in later commands.
364 A `.' is automatically prepended to EXTENSION when not present.
365 EXTENSION may also be a list of extensions instead of a single one.
366 Optional MARKER-CHAR is marker to use.
367 Interactively, ask for EXTENSION.
368 Prefixed with one C-u, unmark files instead.
369 Prefixed with two C-u's, prompt for MARKER-CHAR and mark files with it."
370 (interactive (dired--mark-suffix-interactive-spec))
371 (unless (listp extension)
372 (setq extension (list extension)))
373 (dired-mark-files-regexp
374 (concat ".";; don't match names with nothing but an extension
375 "\\("
376 (mapconcat
377 (lambda (x)
378 (regexp-quote
379 (if (string-prefix-p "." x) x (concat "." x))))
380 extension "\\|")
381 "\\)$")
382 marker-char))
384 ;; Mark files ending with some suffix.
385 (defun dired-mark-suffix (suffix &optional marker-char)
386 "Mark all files with a certain SUFFIX for use in later commands.
387 A `.' is *not* automatically prepended to the string entered; see
388 also `dired-mark-extension', which is similar but automatically
389 prepends `.' when not present.
390 SUFFIX may also be a list of suffixes instead of a single one.
391 Optional MARKER-CHAR is marker to use.
392 Interactively, ask for SUFFIX.
393 Prefixed with one C-u, unmark files instead.
394 Prefixed with two C-u's, prompt for MARKER-CHAR and mark files with it."
395 (interactive (dired--mark-suffix-interactive-spec))
396 (unless (listp suffix)
397 (setq suffix (list suffix)))
398 (dired-mark-files-regexp
399 (concat ".";; don't match names with nothing but an extension
400 "\\("
401 (mapconcat 'regexp-quote suffix "\\|")
402 "\\)$")
403 marker-char))
405 (defun dired-flag-extension (extension)
406 "In Dired, flag all files with a certain EXTENSION for deletion.
407 A `.' is *not* automatically prepended to the string entered."
408 (interactive "sFlagging extension: ")
409 (dired-mark-extension extension dired-del-marker))
411 ;; Define some unpopular file extensions. Used for cleaning and omitting.
413 (defvar dired-patch-unclean-extensions
414 '(".rej" ".orig")
415 "List of extensions of dispensable files created by the `patch' program.")
417 (defvar dired-tex-unclean-extensions
418 '(".toc" ".log" ".aux");; these are already in completion-ignored-extensions
419 "List of extensions of dispensable files created by TeX.")
421 (defvar dired-latex-unclean-extensions
422 '(".idx" ".lof" ".lot" ".glo")
423 "List of extensions of dispensable files created by LaTeX.")
425 (defvar dired-bibtex-unclean-extensions
426 '(".blg" ".bbl")
427 "List of extensions of dispensable files created by BibTeX.")
429 (defvar dired-texinfo-unclean-extensions
430 '(".cp" ".cps" ".fn" ".fns" ".ky" ".kys" ".pg" ".pgs"
431 ".tp" ".tps" ".vr" ".vrs")
432 "List of extensions of dispensable files created by texinfo.")
434 (defun dired-clean-patch ()
435 "Flag dispensable files created by patch for deletion.
436 See variable `dired-patch-unclean-extensions'."
437 (interactive)
438 (dired-flag-extension dired-patch-unclean-extensions))
440 (defun dired-clean-tex ()
441 "Flag dispensable files created by [La]TeX etc. for deletion.
442 See variables `dired-tex-unclean-extensions',
443 `dired-latex-unclean-extensions', `dired-bibtex-unclean-extensions' and
444 `dired-texinfo-unclean-extensions'."
445 (interactive)
446 (dired-flag-extension (append dired-texinfo-unclean-extensions
447 dired-latex-unclean-extensions
448 dired-bibtex-unclean-extensions
449 dired-tex-unclean-extensions)))
451 (defun dired-very-clean-tex ()
452 "Flag dispensable files created by [La]TeX *and* \".dvi\" for deletion.
453 See variables `dired-texinfo-unclean-extensions',
454 `dired-latex-unclean-extensions', `dired-bibtex-unclean-extensions' and
455 `dired-texinfo-unclean-extensions'."
456 (interactive)
457 (dired-flag-extension (append dired-texinfo-unclean-extensions
458 dired-latex-unclean-extensions
459 dired-bibtex-unclean-extensions
460 dired-tex-unclean-extensions
461 (list ".dvi"))))
463 (defvar tar-superior-buffer)
464 ;;; JUMP.
466 ;;;###autoload
467 (defun dired-jump (&optional other-window file-name)
468 "Jump to Dired buffer corresponding to current buffer.
469 If in a file, Dired the current directory and move to file's line.
470 If in Dired already, pop up a level and goto old directory's line.
471 In case the proper Dired file line cannot be found, refresh the dired
472 buffer and try again.
473 When OTHER-WINDOW is non-nil, jump to Dired buffer in other window.
474 When FILE-NAME is non-nil, jump to its line in Dired.
475 Interactively with prefix argument, read FILE-NAME."
476 (interactive
477 (list nil (and current-prefix-arg
478 (read-file-name "Jump to Dired file: "))))
479 (if (bound-and-true-p tar-subfile-mode)
480 (switch-to-buffer tar-superior-buffer)
481 ;; Expand file-name before `dired-goto-file' call:
482 ;; `dired-goto-file' requires its argument to be an absolute
483 ;; file name; the result of `read-file-name' could be
484 ;; an abbreviated file name (Bug#24409).
485 (let* ((file (or (and file-name (expand-file-name file-name))
486 buffer-file-name))
487 (dir (if file (file-name-directory file) default-directory)))
488 (if (and (eq major-mode 'dired-mode) (null file-name))
489 (progn
490 (setq dir (dired-current-directory))
491 (dired-up-directory other-window)
492 (unless (dired-goto-file dir)
493 ;; refresh and try again
494 (dired-insert-subdir (file-name-directory dir))
495 (dired-goto-file dir)))
496 (if other-window
497 (dired-other-window dir)
498 (dired dir))
499 (if file
500 (or (dired-goto-file file)
501 ;; refresh and try again
502 (progn
503 (dired-insert-subdir (file-name-directory file))
504 (dired-goto-file file))
505 ;; Toggle omitting, if it is on, and try again.
506 (when dired-omit-mode
507 (dired-omit-mode)
508 (dired-goto-file file))))))))
510 ;;;###autoload
511 (defun dired-jump-other-window (&optional file-name)
512 "Like \\[dired-jump] (`dired-jump') but in other window."
513 (interactive
514 (list (and current-prefix-arg
515 (read-file-name "Jump to Dired file: "))))
516 (dired-jump t file-name))
518 ;;; OMITTING.
520 ;; Enhanced omitting of lines from directory listings.
521 ;; Marked files are never omitted.
523 ;; should probably get rid of this and always use 'no-dir.
524 ;; sk 28-Aug-1991 09:37
525 (defvar dired-omit-localp 'no-dir
526 "The LOCALP argument `dired-omit-expunge' passes to `dired-get-filename'.
527 If it is `no-dir', omitting is much faster, but you can only match
528 against the non-directory part of the file name. Set it to nil if you
529 need to match the entire file name.")
531 ;; \017=^O for Omit - other packages can chose other control characters.
532 (defvar dired-omit-marker-char ?\017
533 "Temporary marker used by Dired-Omit.
534 Should never be used as marker by the user or other packages.")
536 (defun dired-omit-startup ()
537 (or (assq 'dired-omit-mode minor-mode-alist)
538 (setq minor-mode-alist
539 (append '((dired-omit-mode
540 (:eval (if (eq major-mode 'dired-mode)
541 " Omit" ""))))
542 minor-mode-alist))))
544 (defun dired-mark-omitted ()
545 "Mark files matching `dired-omit-files' and `dired-omit-extensions'."
546 (interactive)
547 (let ((dired-omit-mode nil)) (revert-buffer)) ;; Show omitted files
548 (dired-mark-unmarked-files (dired-omit-regexp) nil nil dired-omit-localp
549 (dired-omit-case-fold-p (if (stringp dired-directory)
550 dired-directory
551 (car dired-directory)))))
553 (defcustom dired-omit-extensions
554 (append completion-ignored-extensions
555 dired-latex-unclean-extensions
556 dired-bibtex-unclean-extensions
557 dired-texinfo-unclean-extensions)
558 "If non-nil, a list of extensions (strings) to omit from Dired listings.
559 Defaults to elements of `completion-ignored-extensions',
560 `dired-latex-unclean-extensions', `dired-bibtex-unclean-extensions', and
561 `dired-texinfo-unclean-extensions'.
563 See interactive function `dired-omit-mode' (\\[dired-omit-mode]) and
564 variables `dired-omit-mode' and `dired-omit-files'."
565 :type '(repeat string)
566 :group 'dired-x)
568 (defun dired-omit-expunge (&optional regexp)
569 "Erases all unmarked files matching REGEXP.
570 Does nothing if global variable `dired-omit-mode' is nil, or if called
571 non-interactively and buffer is bigger than `dired-omit-size-limit'.
572 If REGEXP is nil or not specified, uses `dired-omit-files', and also omits
573 filenames ending in `dired-omit-extensions'.
574 If REGEXP is the empty string, this function is a no-op.
576 This functions works by temporarily binding `dired-marker-char' to
577 `dired-omit-marker-char' and calling `dired-do-kill-lines'."
578 (interactive "sOmit files (regexp): ")
579 (if (and dired-omit-mode
580 (or (called-interactively-p 'interactive)
581 (not dired-omit-size-limit)
582 (< (buffer-size) dired-omit-size-limit)
583 (progn
584 (when dired-omit-verbose
585 (message "Not omitting: directory larger than %d characters."
586 dired-omit-size-limit))
587 (setq dired-omit-mode nil)
588 nil)))
589 (let ((omit-re (or regexp (dired-omit-regexp)))
590 (old-modified-p (buffer-modified-p))
591 count)
592 (or (string= omit-re "")
593 (let ((dired-marker-char dired-omit-marker-char))
594 (when dired-omit-verbose (message "Omitting..."))
595 (if (dired-mark-unmarked-files omit-re nil nil dired-omit-localp
596 (dired-omit-case-fold-p (if (stringp dired-directory)
597 dired-directory
598 (car dired-directory))))
599 (progn
600 (setq count (dired-do-kill-lines
602 (if dired-omit-verbose "Omitted %d line%s." "")))
603 (force-mode-line-update))
604 (when dired-omit-verbose (message "(Nothing to omit)")))))
605 ;; Try to preserve modified state of buffer. So `%*' doesn't appear
606 ;; in mode-line of omitted buffers.
607 (set-buffer-modified-p (and old-modified-p
608 (save-excursion
609 (goto-char (point-min))
610 (re-search-forward dired-re-mark nil t))))
611 count)))
613 (defun dired-omit-regexp ()
614 (concat (if dired-omit-files (concat "\\(" dired-omit-files "\\)") "")
615 (if (and dired-omit-files dired-omit-extensions) "\\|" "")
616 (if dired-omit-extensions
617 (concat ".";; a non-extension part should exist
618 "\\("
619 (mapconcat 'regexp-quote dired-omit-extensions "\\|")
620 "\\)$")
621 "")))
623 ;; Returns t if any work was done, nil otherwise.
624 (defun dired-mark-unmarked-files (regexp msg &optional unflag-p localp case-fold-p)
625 "Mark unmarked files matching REGEXP, displaying MSG.
626 REGEXP is matched against the entire file name. When called
627 interactively, prompt for REGEXP.
628 With prefix argument, unflag all those files.
629 Optional fourth argument LOCALP is as in `dired-get-filename'.
630 Optional fifth argument CASE-FOLD-P specifies the value of
631 `case-fold-search' used for matching REGEXP."
632 (interactive
633 (list (read-regexp
634 "Mark unmarked files matching regexp (default all): "
635 nil 'dired-regexp-history)
636 nil current-prefix-arg nil))
637 (let ((dired-marker-char (if unflag-p ?\s dired-marker-char)))
638 (dired-mark-if
639 (and
640 ;; not already marked
641 (= (following-char) ?\s)
642 ;; uninteresting
643 (let ((fn (dired-get-filename localp t))
644 ;; Match patterns case-insensitively on case-insensitive
645 ;; systems
646 (case-fold-search case-fold-p))
647 (and fn (string-match-p regexp fn))))
648 msg)))
651 ;;; VIRTUAL DIRED MODE.
653 ;; For browsing `ls -lR' listings in a dired-like fashion.
655 (defalias 'virtual-dired 'dired-virtual)
656 (defun dired-virtual (dirname &optional switches)
657 "Put this buffer into Virtual Dired mode.
659 In Virtual Dired mode, all commands that do not actually consult the
660 filesystem will work.
662 This is useful if you want to peruse and move around in an ls -lR
663 output file, for example one you got from an ftp server. With
664 ange-ftp, you can even Dired a directory containing an ls-lR file,
665 visit that file and turn on Virtual Dired mode. But don't try to save
666 this file, as dired-virtual indents the listing and thus changes the
667 buffer.
669 If you have save a Dired buffer in a file you can use \\[dired-virtual] to
670 resume it in a later session.
672 Type \\<dired-mode-map>\\[revert-buffer] \
673 in the Virtual Dired buffer and answer `y' to convert
674 the virtual to a real Dired buffer again. You don't have to do this, though:
675 you can relist single subdirs using \\[dired-do-redisplay]."
677 ;; DIRNAME is the top level directory of the buffer. It will become
678 ;; its `default-directory'. If nil, the old value of
679 ;; default-directory is used.
681 ;; Optional SWITCHES are the ls switches to use.
683 ;; Shell wildcards will be used if there already is a `wildcard'
684 ;; line in the buffer (thus it is a saved Dired buffer), but there
685 ;; is no other way to get wildcards. Insert a `wildcard' line by
686 ;; hand if you want them.
688 (interactive
689 (list (read-string "Virtual Dired directory: " (dired-virtual-guess-dir))))
690 (goto-char (point-min))
691 (or (looking-at-p " ")
692 ;; if not already indented, do it now:
693 (indent-region (point-min) (point-max) 2))
694 (or dirname (setq dirname default-directory))
695 (setq dirname (expand-file-name (file-name-as-directory dirname)))
696 (setq default-directory dirname) ; contains no wildcards
697 (let ((wildcard (save-excursion
698 (goto-char (point-min))
699 (forward-line 1)
700 (and (looking-at "^ wildcard ")
701 (buffer-substring (match-end 0)
702 (line-end-position))))))
703 (if wildcard
704 (setq dirname (expand-file-name wildcard default-directory))))
705 ;; If raw ls listing (not a saved old dired buffer), give it a
706 ;; decent subdir headerline:
707 (goto-char (point-min))
708 (or (looking-at-p dired-subdir-regexp)
709 (insert " "
710 (directory-file-name (file-name-directory default-directory))
711 ":\n"))
712 (dired-mode dirname (or switches dired-listing-switches))
713 (setq mode-name "Virtual Dired"
714 revert-buffer-function 'dired-virtual-revert)
715 (set (make-local-variable 'dired-subdir-alist) nil)
716 (dired-build-subdir-alist)
717 (goto-char (point-min))
718 (dired-initial-position dirname))
720 (defun dired-virtual-guess-dir ()
721 "Guess and return appropriate working directory of this buffer.
722 The buffer is assumed to be in Dired or ls -lR format. The guess is
723 based upon buffer contents. If nothing could be guessed, returns
724 nil."
726 (let ((regexp "^\\( \\)?\\([^ \n\r]*\\)\\(:\\)[\n\r]")
727 (subexpr 2))
728 (goto-char (point-min))
729 (cond ((looking-at regexp)
730 ;; If a saved dired buffer, look to which dir and
731 ;; perhaps wildcard it belongs:
732 (let ((dir (buffer-substring (match-beginning subexpr)
733 (match-end subexpr))))
734 (file-name-as-directory dir)))
735 ;; Else no match for headerline found. It's a raw ls listing.
736 ;; In raw ls listings the directory does not have a headerline
737 ;; try parent of first subdir, if any
738 ((re-search-forward regexp nil t)
739 (file-name-directory
740 (directory-file-name
741 (file-name-as-directory
742 (buffer-substring (match-beginning subexpr)
743 (match-end subexpr))))))
744 (t ; if all else fails
745 nil))))
748 (defun dired-virtual-revert (&optional _arg _noconfirm)
749 (if (not
750 (y-or-n-p "Cannot revert a Virtual Dired buffer - switch to Real Dired mode? "))
751 (error "Cannot revert a Virtual Dired buffer")
752 (setq mode-name "Dired"
753 revert-buffer-function 'dired-revert)
754 (revert-buffer)))
756 ;; A zero-arg version of dired-virtual.
757 (defun dired-virtual-mode ()
758 "Put current buffer into Virtual Dired mode (see `dired-virtual').
759 Useful on `magic-mode-alist' with the regexp
761 \"^ \\\\(/[^ /]+\\\\)+/?:$\"
763 to put saved Dired buffers automatically into Virtual Dired mode.
765 Also useful for `auto-mode-alist' like this:
767 (add-to-list \\='auto-mode-alist
768 \\='(\"[^/]\\\\.dired\\\\\\='\" . dired-virtual-mode))"
769 (interactive)
770 (dired-virtual (dired-virtual-guess-dir)))
773 ;;; SMART SHELL.
775 ;; An Emacs buffer can have but one working directory, stored in the
776 ;; buffer-local variable `default-directory'. A Dired buffer may have
777 ;; several subdirectories inserted, but still has but one working directory:
778 ;; that of the top level Dired directory in that buffer. For some commands
779 ;; it is appropriate that they use the current Dired directory instead of
780 ;; `default-directory', e.g., `find-file' and `compile'. This is a general
781 ;; mechanism is provided for special handling of the working directory in
782 ;; special major modes.
784 (define-obsolete-variable-alias 'default-directory-alist
785 'dired-default-directory-alist "24.1")
787 ;; It's easier to add to this alist than redefine function
788 ;; default-directory while keeping the old information.
789 (defconst dired-default-directory-alist
790 '((dired-mode . (if (fboundp 'dired-current-directory)
791 (dired-current-directory)
792 default-directory)))
793 "Alist of major modes and their opinion on `default-directory'.
794 Each element has the form (MAJOR . EXPRESSION).
795 The function `dired-default-directory' evaluates EXPRESSION to
796 determine a default directory.")
798 (put 'dired-default-directory-alist 'risky-local-variable t) ; gets eval'd
799 (make-obsolete-variable 'dired-default-directory-alist
800 "this feature is due to be removed." "24.1")
802 (defun dired-default-directory ()
803 "Return the `dired-default-directory-alist' entry for the current major-mode.
804 If none, return `default-directory'."
805 ;; It looks like this was intended to be something of a "general"
806 ;; feature, but it only ever seems to have been used in
807 ;; dired-smart-shell-command, and doesn't seem worth keeping around.
808 (declare (obsolete nil "24.1"))
809 (or (eval (cdr (assq major-mode dired-default-directory-alist)))
810 default-directory))
812 (defun dired-smart-shell-command (command &optional output-buffer error-buffer)
813 "Like function `shell-command', but in the current Virtual Dired directory."
814 (interactive
815 (list
816 (read-shell-command "Shell command: " nil nil
817 (cond
818 (buffer-file-name (file-relative-name buffer-file-name))
819 ((eq major-mode 'dired-mode) (dired-get-filename t t))))
820 current-prefix-arg
821 shell-command-default-error-buffer))
822 (let ((default-directory (or (and (eq major-mode 'dired-mode)
823 (dired-current-directory))
824 default-directory)))
825 (shell-command command output-buffer error-buffer)))
828 ;;; LOCAL VARIABLES FOR DIRED BUFFERS.
830 ;; Brief Description (This feature is obsolete as of Emacs 24.1)
832 ;; * `dired-extra-startup' is part of the `dired-mode-hook'.
834 ;; * `dired-extra-startup' calls `dired-hack-local-variables'
836 ;; * `dired-hack-local-variables' checks the value of
837 ;; `dired-local-variables-file'
839 ;; * Check if `dired-local-variables-file' is a non-nil string and is a
840 ;; filename found in the directory of the Dired Buffer being created.
842 ;; * If `dired-local-variables-file' satisfies the above, then temporarily
843 ;; include it in the Dired Buffer at the bottom.
845 ;; * Set `enable-local-variables' temporarily to the user variable
846 ;; `dired-enable-local-variables' and run `hack-local-variables' on the
847 ;; Dired Buffer.
849 (defcustom dired-local-variables-file (convert-standard-filename ".dired")
850 "Filename, as string, containing local Dired buffer variables to be hacked.
851 If this file found in current directory, then it will be inserted into dired
852 buffer and `hack-local-variables' will be run. See Info node
853 `(emacs)File Variables' for more information on local variables.
854 See also `dired-enable-local-variables'."
855 :type 'file
856 :group 'dired)
858 (make-obsolete-variable 'dired-local-variables-file 'dir-locals-file "24.1")
860 (defun dired-hack-local-variables ()
861 "Evaluate local variables in `dired-local-variables-file' for Dired buffer."
862 (declare (obsolete hack-dir-local-variables-non-file-buffer "24.1"))
863 (and (stringp dired-local-variables-file)
864 (file-exists-p dired-local-variables-file)
865 (let ((opoint (point-max))
866 (inhibit-read-only t)
867 ;; In case user has `enable-local-variables' set to nil we
868 ;; override it locally with dired's variable.
869 (enable-local-variables dired-enable-local-variables))
870 ;; Insert 'em.
871 (save-excursion
872 (goto-char opoint)
873 (insert "\^L\n")
874 (insert-file-contents dired-local-variables-file))
875 ;; Hack 'em.
876 (unwind-protect
877 (let ((buffer-file-name dired-local-variables-file))
878 (hack-local-variables))
879 ;; Delete this stuff: `eobp' is used to find last subdir by dired.el.
880 (delete-region opoint (point-max)))
881 ;; Make sure that the mode line shows the proper information.
882 (dired-sort-set-mode-line))))
884 ;; Does not seem worth a dedicated command.
885 ;; See the more general features in files-x.el.
886 (defun dired-omit-here-always ()
887 "Create `dir-locals-file' setting `dired-omit-mode' to t in `dired-mode'.
888 If in a Dired buffer, reverts it."
889 (declare (obsolete add-dir-local-variable "24.1"))
890 (interactive)
891 (if (file-exists-p dired-local-variables-file)
892 (error "Old-style dired-local-variables-file `./%s' found;
893 replace it with a dir-locals-file `./%s'"
894 dired-local-variables-file
895 dir-locals-file))
896 (if (file-exists-p dir-locals-file)
897 (message "File `./%s' already exists." dir-locals-file)
898 (add-dir-local-variable 'dired-mode 'subdirs nil)
899 (add-dir-local-variable 'dired-mode 'dired-omit-mode t)
900 ;; Run extra-hooks and revert directory.
901 (when (derived-mode-p 'dired-mode)
902 (hack-dir-local-variables-non-file-buffer)
903 (dired-extra-startup)
904 (dired-revert))))
907 ;;; GUESS SHELL COMMAND.
909 ;; Brief Description:
911 ;; * `dired-do-shell-command' is bound to `!' by dired.el.
913 ;; * `dired-guess-shell-command' provides smarter defaults for
914 ;;; dired-aux.el's `dired-read-shell-command'.
916 ;; * `dired-guess-shell-command' calls `dired-guess-default' with list of
917 ;;; marked files.
919 ;; * Parse `dired-guess-shell-alist-user' and
920 ;;; `dired-guess-shell-alist-default' (in that order) for the first REGEXP
921 ;;; that matches the first file in the file list.
923 ;; * If the REGEXP matches all the entries of the file list then evaluate
924 ;;; COMMAND, which is either a string or a Lisp expression returning a
925 ;;; string. COMMAND may be a list of commands.
927 ;; * Return this command to `dired-guess-shell-command' which prompts user
928 ;;; with it. The list of commands is put into the list of default values.
929 ;;; If a command is used successfully then it is stored permanently in
930 ;;; `dired-shell-command-history'.
932 ;; Guess what shell command to apply to a file.
933 (defvar dired-shell-command-history nil
934 "History list for commands that read dired-shell commands.")
936 ;; Default list of shell commands.
938 ;; NOTE: Use `gunzip -c' instead of `zcat' on `.gz' files. Some do not
939 ;; install GNU zip's version of zcat.
941 (autoload 'Man-support-local-filenames "man")
943 (defvar dired-guess-shell-alist-default
944 (list
945 (list "\\.tar\\'"
946 '(if dired-guess-shell-gnutar
947 (concat dired-guess-shell-gnutar " xvf")
948 "tar xvf")
949 ;; Extract files into a separate subdirectory
950 '(if dired-guess-shell-gnutar
951 (concat "mkdir " (file-name-sans-extension file)
952 "; " dired-guess-shell-gnutar " -C "
953 (file-name-sans-extension file) " -xvf")
954 (concat "mkdir " (file-name-sans-extension file)
955 "; tar -C " (file-name-sans-extension file) " -xvf"))
956 ;; List archive contents.
957 '(if dired-guess-shell-gnutar
958 (concat dired-guess-shell-gnutar " tvf")
959 "tar tvf"))
961 ;; REGEXPS for compressed archives must come before the .Z rule to
962 ;; be recognized:
963 (list "\\.tar\\.Z\\'"
964 ;; Untar it.
965 '(if dired-guess-shell-gnutar
966 (concat dired-guess-shell-gnutar " zxvf")
967 (concat "zcat * | tar xvf -"))
968 ;; Optional conversion to gzip format.
969 '(concat "znew" (if dired-guess-shell-gzip-quiet " -q")
970 " " dired-guess-shell-znew-switches))
972 ;; gzip'ed archives
973 (list "\\.t\\(ar\\.\\)?gz\\'"
974 '(if dired-guess-shell-gnutar
975 (concat dired-guess-shell-gnutar " zxvf")
976 (concat "gunzip -qc * | tar xvf -"))
977 ;; Extract files into a separate subdirectory
978 '(if dired-guess-shell-gnutar
979 (concat "mkdir " (file-name-sans-extension file)
980 "; " dired-guess-shell-gnutar " -C "
981 (file-name-sans-extension file) " -zxvf")
982 (concat "mkdir " (file-name-sans-extension file)
983 "; gunzip -qc * | tar -C "
984 (file-name-sans-extension file) " -xvf -"))
985 ;; Optional decompression.
986 '(concat "gunzip" (if dired-guess-shell-gzip-quiet " -q" ""))
987 ;; List archive contents.
988 '(if dired-guess-shell-gnutar
989 (concat dired-guess-shell-gnutar " ztvf")
990 (concat "gunzip -qc * | tar tvf -")))
992 ;; bzip2'ed archives
993 (list "\\.t\\(ar\\.bz2\\|bz\\)\\'"
994 "bunzip2 -c * | tar xvf -"
995 ;; Extract files into a separate subdirectory
996 '(concat "mkdir " (file-name-sans-extension file)
997 "; bunzip2 -c * | tar -C "
998 (file-name-sans-extension file) " -xvf -")
999 ;; Optional decompression.
1000 "bunzip2")
1002 ;; xz'ed archives
1003 (list "\\.t\\(ar\\.\\)?xz\\'"
1004 "unxz -c * | tar xvf -"
1005 ;; Extract files into a separate subdirectory
1006 '(concat "mkdir " (file-name-sans-extension file)
1007 "; unxz -c * | tar -C "
1008 (file-name-sans-extension file) " -xvf -")
1009 ;; Optional decompression.
1010 "unxz")
1012 '("\\.shar\\.Z\\'" "zcat * | unshar")
1013 '("\\.shar\\.g?z\\'" "gunzip -qc * | unshar")
1015 '("\\.e?ps\\'" "ghostview" "xloadimage" "lpr")
1016 (list "\\.e?ps\\.g?z\\'" "gunzip -qc * | ghostview -"
1017 ;; Optional decompression.
1018 '(concat "gunzip" (if dired-guess-shell-gzip-quiet " -q")))
1019 (list "\\.e?ps\\.Z\\'" "zcat * | ghostview -"
1020 ;; Optional conversion to gzip format.
1021 '(concat "znew" (if dired-guess-shell-gzip-quiet " -q")
1022 " " dired-guess-shell-znew-switches))
1024 '("\\.patch\\'" "cat * | patch")
1025 (list "\\.patch\\.g?z\\'" "gunzip -qc * | patch"
1026 ;; Optional decompression.
1027 '(concat "gunzip" (if dired-guess-shell-gzip-quiet " -q")))
1028 (list "\\.patch\\.Z\\'" "zcat * | patch"
1029 ;; Optional conversion to gzip format.
1030 '(concat "znew" (if dired-guess-shell-gzip-quiet " -q")
1031 " " dired-guess-shell-znew-switches))
1033 ;; The following four extensions are useful with dired-man ("N" key)
1034 ;; FIXME "man ./" does not work with dired-do-shell-command,
1035 ;; because there seems to be no way for us to modify the filename,
1036 ;; only the command. Hmph. `dired-man' works though.
1037 (list "\\.\\(?:[0-9]\\|man\\)\\'"
1038 '(let ((loc (Man-support-local-filenames)))
1039 (cond ((eq loc 'man-db) "man -l")
1040 ((eq loc 'man) "man ./")
1042 "cat * | tbl | nroff -man -h | col -b"))))
1043 (list "\\.\\(?:[0-9]\\|man\\)\\.g?z\\'"
1044 '(let ((loc (Man-support-local-filenames)))
1045 (cond ((eq loc 'man-db)
1046 "man -l")
1047 ((eq loc 'man)
1048 "man ./")
1049 (t "gunzip -qc * | tbl | nroff -man -h | col -b")))
1050 ;; Optional decompression.
1051 '(concat "gunzip" (if dired-guess-shell-gzip-quiet " -q")))
1052 (list "\\.[0-9]\\.Z\\'"
1053 '(let ((loc (Man-support-local-filenames)))
1054 (cond ((eq loc 'man-db) "man -l")
1055 ((eq loc 'man) "man ./")
1056 (t "zcat * | tbl | nroff -man -h | col -b")))
1057 ;; Optional conversion to gzip format.
1058 '(concat "znew" (if dired-guess-shell-gzip-quiet " -q")
1059 " " dired-guess-shell-znew-switches))
1060 '("\\.pod\\'" "perldoc" "pod2man * | nroff -man")
1062 '("\\.dvi\\'" "xdvi" "dvips") ; preview and printing
1063 '("\\.au\\'" "play") ; play Sun audiofiles
1064 '("\\.mpe?g\\'\\|\\.avi\\'" "xine -p")
1065 '("\\.ogg\\'" "ogg123")
1066 '("\\.mp3\\'" "mpg123")
1067 '("\\.wav\\'" "play")
1068 '("\\.uu\\'" "uudecode") ; for uudecoded files
1069 '("\\.hqx\\'" "mcvert")
1070 '("\\.sh\\'" "sh") ; execute shell scripts
1071 '("\\.xbm\\'" "bitmap") ; view X11 bitmaps
1072 '("\\.gp\\'" "gnuplot")
1073 '("\\.p[bgpn]m\\'" "xloadimage")
1074 '("\\.gif\\'" "xloadimage") ; view gif pictures
1075 '("\\.tif\\'" "xloadimage")
1076 '("\\.png\\'" "display") ; xloadimage 4.1 doesn't grok PNG
1077 '("\\.jpe?g\\'" "xloadimage")
1078 '("\\.fig\\'" "xfig") ; edit fig pictures
1079 '("\\.out\\'" "xgraph") ; for plotting purposes.
1080 '("\\.tex\\'" "latex" "tex")
1081 '("\\.texi\\(nfo\\)?\\'" "makeinfo" "texi2dvi")
1082 '("\\.pdf\\'" "xpdf")
1083 '("\\.doc\\'" "antiword" "strings")
1084 '("\\.rpm\\'" "rpm -qilp" "rpm -ivh")
1085 '("\\.dia\\'" "dia")
1086 '("\\.mgp\\'" "mgp")
1088 ;; Some other popular archivers.
1089 (list "\\.zip\\'" "unzip" "unzip -l"
1090 ;; Extract files into a separate subdirectory
1091 '(concat "unzip" (if dired-guess-shell-gzip-quiet " -q")
1092 " -d " (file-name-sans-extension file)))
1093 '("\\.zoo\\'" "zoo x//")
1094 '("\\.lzh\\'" "lharc x")
1095 '("\\.arc\\'" "arc x")
1096 '("\\.shar\\'" "unshar")
1097 '("\\.rar\\'" "unrar x")
1098 '("\\.7z\\'" "7z x")
1100 ;; Compression.
1101 (list "\\.g?z\\'" '(concat "gunzip" (if dired-guess-shell-gzip-quiet " -q")))
1102 (list "\\.dz\\'" "dictunzip")
1103 (list "\\.bz2\\'" "bunzip2")
1104 (list "\\.xz\\'" "unxz")
1105 (list "\\.Z\\'" "uncompress"
1106 ;; Optional conversion to gzip format.
1107 '(concat "znew" (if dired-guess-shell-gzip-quiet " -q")
1108 " " dired-guess-shell-znew-switches))
1110 '("\\.sign?\\'" "gpg --verify"))
1112 "Default alist used for shell command guessing.
1113 See `dired-guess-shell-alist-user'.")
1115 (defcustom dired-guess-shell-alist-user nil
1116 "User-defined alist of rules for suggested commands.
1117 These rules take precedence over the predefined rules in the variable
1118 `dired-guess-shell-alist-default' (to which they are prepended).
1120 Each element of this list looks like
1122 (REGEXP COMMAND...)
1124 where each COMMAND can either be a string or a Lisp expression that evaluates
1125 to a string. This expression can access the file name as the variable `file'.
1126 If several COMMANDs are given, the first one will be the default
1127 and the rest will be added temporarily to the history and can be retrieved
1128 with \\[previous-history-element] (M-p) .
1130 The variable `dired-guess-shell-case-fold-search' controls whether
1131 REGEXP is matched case-sensitively."
1132 :group 'dired-x
1133 :type '(alist :key-type regexp :value-type (repeat sexp)))
1135 (defcustom dired-guess-shell-case-fold-search t
1136 "If non-nil, `dired-guess-shell-alist-default' and
1137 `dired-guess-shell-alist-user' are matched case-insensitively."
1138 :group 'dired-x
1139 :type 'boolean)
1141 (defun dired-guess-default (files)
1142 "Return a shell command, or a list of commands, appropriate for FILES.
1143 See `dired-guess-shell-alist-user'."
1145 (let* ((case-fold-search dired-guess-shell-case-fold-search)
1146 ;; Prepend the user's alist to the default alist.
1147 (alist (append dired-guess-shell-alist-user
1148 dired-guess-shell-alist-default))
1149 (file (car files))
1150 (flist (cdr files))
1151 elt regexp cmds)
1153 ;; Find the first match in the alist for first file in FILES.
1154 (while alist
1155 (setq elt (car alist)
1156 regexp (car elt)
1157 alist (cdr alist))
1158 (if (string-match-p regexp file)
1159 (setq cmds (cdr elt)
1160 alist nil)))
1162 ;; If more than one file, see if all of FILES match regular expression.
1163 (while (and flist
1164 (string-match-p regexp (car flist)))
1165 (setq flist (cdr flist)))
1167 ;; If flist is still non-nil, then do not guess since this means that not
1168 ;; all the files in FILES were matched by the regexp.
1169 (setq cmds (and (not flist) cmds))
1171 ;; Return commands or nil if flist is still non-nil.
1172 ;; Evaluate the commands in order that any logical testing will be done.
1173 (if (cdr cmds)
1174 (delete-dups (mapcar (lambda (cmd) (eval cmd `((file . ,file)))) cmds))
1175 (eval (car cmds) `((file . ,file)))))) ; single command
1177 (defun dired-guess-shell-command (prompt files)
1178 "Ask user with PROMPT for a shell command, guessing a default from FILES."
1179 (let ((default (dired-guess-default files))
1180 default-list val)
1181 (if (null default)
1182 ;; Nothing to guess
1183 (read-shell-command prompt nil 'dired-shell-command-history)
1184 (setq prompt (replace-regexp-in-string ": $" " " prompt))
1185 (if (listp default)
1186 ;; More than one guess
1187 (setq default-list default
1188 default (car default)
1189 prompt (concat
1190 prompt
1191 (format "{%d guesses} " (length default-list))))
1192 ;; Just one guess
1193 (setq default-list (list default)))
1194 ;; Put the first guess in the prompt but not in the initial value.
1195 (setq prompt (concat prompt (format "[%s]: " default)))
1196 ;; All guesses can be retrieved with M-n
1197 (setq val (read-shell-command prompt nil
1198 'dired-shell-command-history
1199 default-list))
1200 ;; If we got a return, then return default.
1201 (if (equal val "") default val))))
1204 ;;; RELATIVE SYMBOLIC LINKS.
1206 (declare-function make-symbolic-link "fileio.c")
1208 (defvar dired-keep-marker-relsymlink ?S
1209 "See variable `dired-keep-marker-move'.")
1211 (defun dired-make-relative-symlink (file1 file2 &optional ok-if-already-exists)
1212 "Make a symbolic link (pointing to FILE1) in FILE2.
1213 The link is relative (if possible), for example
1215 \"/vol/tex/bin/foo\" \"/vol/local/bin/foo\"
1217 results in
1219 \"../../tex/bin/foo\" \"/vol/local/bin/foo\""
1220 (interactive "FRelSymLink: \nFRelSymLink %s: \np")
1221 (let (name1 name2 len1 len2 (index 0) sub)
1222 (setq file1 (expand-file-name file1)
1223 file2 (expand-file-name file2)
1224 len1 (length file1)
1225 len2 (length file2))
1226 ;; Find common initial file name components:
1227 (let (next)
1228 (while (and (setq next (string-match "/" file1 index))
1229 (< (setq next (1+ next)) (min len1 len2))
1230 ;; For the comparison, both substrings must end in
1231 ;; `/', so NEXT is *one plus* the result of the
1232 ;; string-match.
1233 ;; E.g., consider the case of linking "/tmp/a/abc"
1234 ;; to "/tmp/abc" erroneously giving "/tmp/a" instead
1235 ;; of "/tmp/" as common initial component
1236 (string-equal (substring file1 0 next)
1237 (substring file2 0 next)))
1238 (setq index next))
1239 (setq name2 file2
1240 sub (substring file1 0 index)
1241 name1 (substring file1 index)))
1242 (if (string-equal sub "/")
1243 ;; No common initial file name found
1244 (setq name1 file1)
1245 ;; Else they have a common parent directory
1246 (let ((tem (substring file2 index))
1247 (start 0)
1248 (count 0))
1249 ;; Count number of slashes we must compensate for ...
1250 (while (setq start (string-match "/" tem start))
1251 (setq count (1+ count)
1252 start (1+ start)))
1253 ;; ... and prepend a "../" for each slash found:
1254 (dotimes (_ count)
1255 (setq name1 (concat "../" name1)))))
1256 (make-symbolic-link
1257 (directory-file-name name1) ; must not link to foo/
1258 ; (trailing slash!)
1259 name2 ok-if-already-exists)))
1261 (autoload 'dired-do-create-files "dired-aux")
1263 ;;;###autoload
1264 (defun dired-do-relsymlink (&optional arg)
1265 "Relative symlink all marked (or next ARG) files into a directory.
1266 Otherwise make a relative symbolic link to the current file.
1267 This creates relative symbolic links like
1269 foo -> ../bar/foo
1271 not absolute ones like
1273 foo -> /ugly/file/name/that/may/change/any/day/bar/foo
1275 For absolute symlinks, use \\[dired-do-symlink]."
1276 (interactive "P")
1277 (dired-do-create-files 'relsymlink #'dired-make-relative-symlink
1278 "RelSymLink" arg dired-keep-marker-relsymlink))
1280 (autoload 'dired-mark-read-regexp "dired-aux")
1281 (autoload 'dired-do-create-files-regexp "dired-aux")
1283 (defun dired-do-relsymlink-regexp (regexp newname &optional arg whole-name)
1284 "RelSymlink all marked files containing REGEXP to NEWNAME.
1285 See functions `dired-do-rename-regexp' and `dired-do-relsymlink'
1286 for more info."
1287 (interactive (dired-mark-read-regexp "RelSymLink"))
1288 (dired-do-create-files-regexp
1289 #'dired-make-relative-symlink
1290 "RelSymLink" arg regexp newname whole-name dired-keep-marker-relsymlink))
1293 ;;; VISIT ALL MARKED FILES SIMULTANEOUSLY.
1295 ;; Brief Description:
1297 ;; `dired-do-find-marked-files' is bound to `F' by dired-x.el.
1299 ;; * Use `dired-get-marked-files' to collect the marked files in the current
1300 ;;; Dired Buffer into a list of filenames `FILE-LIST'.
1302 ;; * Pass FILE-LIST to `dired-simultaneous-find-file' all with
1303 ;;; `dired-do-find-marked-files''s prefix argument NOSELECT.
1305 ;; * `dired-simultaneous-find-file' runs through FILE-LIST decrementing the
1306 ;;; list each time.
1308 ;; * If NOSELECT is non-nil then just run `find-file-noselect' on each
1309 ;;; element of FILE-LIST.
1311 ;; * If NOSELECT is nil then calculate the `size' of the window for each file
1312 ;;; by dividing the `window-height' by length of FILE-LIST. Thus, `size' is
1313 ;;; cognizant of the window-configuration.
1315 ;; * If `size' is too small abort, otherwise run `find-file' on each element
1316 ;;; of FILE-LIST giving each a window of height `size'.
1318 (defun dired-do-find-marked-files (&optional noselect)
1319 "Find all marked files displaying all of them simultaneously.
1320 With optional NOSELECT just find files but do not select them.
1322 The current window is split across all files marked, as evenly as possible.
1323 Remaining lines go to bottom-most window. The number of files that can be
1324 displayed this way is restricted by the height of the current window and
1325 `window-min-height'.
1327 To keep Dired buffer displayed, type \\[split-window-below] first.
1328 To display just marked files, type \\[delete-other-windows] first."
1329 (interactive "P")
1330 (dired-simultaneous-find-file (dired-get-marked-files) noselect))
1332 (defun dired-simultaneous-find-file (file-list noselect)
1333 "Visit all files in FILE-LIST and display them simultaneously.
1334 The current window is split across all files in FILE-LIST, as evenly as
1335 possible. Remaining lines go to the bottom-most window. The number of
1336 files that can be displayed this way is restricted by the height of the
1337 current window and the variable `window-min-height'. With non-nil
1338 NOSELECT the files are merely found but not selected."
1339 ;; We don't make this function interactive because it is usually too clumsy
1340 ;; to specify FILE-LIST interactively unless via dired.
1341 (let (size)
1342 (if noselect
1343 ;; Do not select the buffer.
1344 (find-file-noselect (car file-list))
1345 ;; We will have to select the buffer. Calculate and check window size.
1346 (setq size (/ (window-height) (length file-list)))
1347 (or (<= window-min-height size)
1348 (error "Too many files to visit simultaneously. Try C-u prefix"))
1349 (find-file (car file-list)))
1350 ;; Decrement.
1351 (dolist (file (cdr file-list))
1352 (if noselect
1353 ;; Do not select the buffer.
1354 (find-file-noselect file)
1355 ;; Vertically split off a window of desired size. Upper window will
1356 ;; have SIZE lines. Select lower (larger) window. We split it again.
1357 (select-window (split-window nil size))
1358 (find-file file)))))
1361 ;;; MISCELLANEOUS COMMANDS.
1363 ;; Run man on files.
1365 (declare-function Man-getpage-in-background "man" (topic))
1367 (defvar manual-program) ; from man.el
1369 (defun dired-man ()
1370 "Run `man' on this file."
1371 ;; Used also to say: "Display old buffer if buffer name matches filename."
1372 ;; but I have no idea what that means.
1373 (interactive)
1374 (require 'man)
1375 (let* ((file (dired-get-filename))
1376 (manual-program (replace-regexp-in-string "\\*" "%s"
1377 (dired-guess-shell-command
1378 "Man command: " (list file)))))
1379 (Man-getpage-in-background file)))
1381 ;; Run Info on files.
1383 (defun dired-info ()
1384 "Run `info' on this file."
1385 (interactive)
1386 (info (dired-get-filename)))
1388 ;; Run mail on mail folders.
1390 (declare-function vm-visit-folder "ext:vm" (folder &optional read-only))
1391 (defvar vm-folder-directory)
1393 (defun dired-vm (&optional read-only)
1394 "Run VM on this file.
1395 With optional prefix argument, visits the folder read-only.
1396 Otherwise obeys the value of `dired-vm-read-only-folders'."
1397 (interactive "P")
1398 (let ((dir (dired-current-directory))
1399 (fil (dired-get-filename)))
1400 (vm-visit-folder fil (or read-only
1401 (eq t dired-vm-read-only-folders)
1402 (and dired-vm-read-only-folders
1403 (not (file-writable-p fil)))))
1404 ;; So that pressing `v' inside VM does prompt within current directory:
1405 (set (make-local-variable 'vm-folder-directory) dir)))
1407 (defun dired-rmail ()
1408 "Run RMAIL on this file."
1409 (interactive)
1410 (rmail (dired-get-filename)))
1412 (defun dired-do-run-mail ()
1413 "Visit the current file as a mailbox, using VM or RMAIL.
1414 Prompt for confirmation first; if the user says yes, call
1415 `dired-vm' if `dired-bind-vm' is non-nil, `dired-rmail'
1416 otherwise."
1417 (interactive)
1418 (let ((file (dired-get-filename t)))
1419 (if dired-bind-vm
1420 (if (y-or-n-p (format-message
1421 "Visit `%s' as a mail folder with VM?" file))
1422 (dired-vm))
1423 ;; Read mail folder using rmail.
1424 (if (y-or-n-p (format-message
1425 "Visit `%s' as a mailbox with RMAIL?" file))
1426 (dired-rmail)))))
1429 ;;; MISCELLANEOUS INTERNAL FUNCTIONS.
1431 ;; This should be a builtin
1432 (defun dired-buffer-more-recently-used-p (buffer1 buffer2)
1433 "Return t if BUFFER1 is more recently used than BUFFER2.
1434 Considers buffers closer to the car of `buffer-list' to be more recent."
1435 (and (not (equal buffer1 buffer2))
1436 (memq buffer1 (buffer-list))
1437 (not (memq buffer1 (memq buffer2 (buffer-list))))))
1440 ;; Needed if ls -lh is supported and also for GNU ls -ls.
1441 (defun dired-x--string-to-number (str)
1442 "Like `string-to-number' but recognize a trailing unit prefix.
1443 For example, 2K is expanded to 2048.0. The caller should make
1444 sure that a trailing letter in STR is one of BKkMGTPEZY."
1445 (let* ((val (string-to-number str))
1446 (u (unless (zerop val)
1447 (aref str (1- (length str))))))
1448 (when (and u (> u ?9))
1449 (when (= u ?k)
1450 (setq u ?K))
1451 (let ((units '(?B ?K ?M ?G ?T ?P ?E ?Z ?Y)))
1452 (while (and units (/= (pop units) u))
1453 (setq val (* 1024.0 val)))))
1454 val))
1456 (defun dired-mark-sexp (predicate &optional unflag-p)
1457 "Mark files for which PREDICATE returns non-nil.
1458 With a prefix arg, unmark or unflag those files instead.
1460 PREDICATE is a lisp expression that can refer to the following symbols:
1462 inode [integer] the inode of the file (only for ls -i output)
1463 s [integer] the size of the file for ls -s output
1464 (usually in blocks or, with -k, in KByte)
1465 mode [string] file permission bits, e.g. \"-rw-r--r--\"
1466 nlink [integer] number of links to file
1467 uid [string] owner
1468 gid [string] group (If the gid is not displayed by ls,
1469 this will still be set (to the same as uid))
1470 size [integer] file size in bytes
1471 time [string] the time that ls displays, e.g. \"Feb 12 14:17\"
1472 name [string] the name of the file
1473 sym [string] if file is a symbolic link, the linked-to name, else \"\"
1475 For example, use
1477 (equal 0 size)
1479 to mark all zero length files.
1481 There's an ambiguity when a single integer not followed by a unit
1482 prefix precedes the file mode: It is then parsed as inode number
1483 and not as block size (this always works for GNU coreutils ls).
1485 Another limitation is that the uid field is needed for the
1486 function to work correctly. In particular, the field is not
1487 present for some values of `ls-lisp-emulation'.
1489 This function operates only on the buffer content and does not
1490 refer at all to the underlying file system. Contrast this with
1491 `find-dired', which might be preferable for the task at hand."
1492 ;; Using sym="" instead of nil avoids the trap of
1493 ;; (string-match "foo" sym) into which a user would soon fall.
1494 ;; Give `equal' instead of `=' in the example, as this works on
1495 ;; integers and strings.
1496 (interactive
1497 (list (read--expression
1498 (format "%s if (lisp expr): "
1499 (if current-prefix-arg
1500 "UNmark"
1501 "Mark")))
1502 current-prefix-arg))
1503 (message "%s" predicate)
1504 (let ((dired-marker-char (if unflag-p ?\040 dired-marker-char))
1505 inode s mode nlink uid gid size time name sym)
1506 (dired-mark-if
1507 (save-excursion
1508 (and
1509 ;; Sets vars
1510 ;; inode s mode nlink uid gid size time name sym
1512 ;; according to current file line. Returns t for success, nil if
1513 ;; there is no file line. Upon success, all variables are set, either
1514 ;; to nil or the appropriate value, so they need not be initialized.
1515 ;; Moves point within the current line.
1516 (dired-move-to-filename)
1517 (let ((mode-len 10) ; length of mode string
1518 ;; like in dired.el, but with subexpressions \1=inode, \2=s:
1519 ;; GNU ls -hs suffixes the block count with a unit and
1520 ;; prints it as a float, FreeBSD does neither.
1521 (dired-re-inode-size "\\=\\s *\\([0-9]+\\s +\\)?\
1522 \\(?:\\([0-9]+\\(?:\\.[0-9]*\\)?[BkKMGTPEZY]?\\)? ?\\)"))
1523 (beginning-of-line)
1524 (forward-char 2)
1525 (search-forward-regexp dired-re-inode-size nil t)
1526 ;; XXX Might be a size not followed by a unit prefix.
1527 ;; We could set s to inode if it were otherwise nil,
1528 ;; with a similar reasoning as below for setting gid to uid,
1529 ;; but it would be even more whimsical.
1530 (setq inode (when (match-string 1)
1531 (string-to-number (match-string 1))))
1532 (setq s (when (match-string 2)
1533 (dired-x--string-to-number (match-string 2))))
1534 (setq mode (buffer-substring (point) (+ mode-len (point))))
1535 (forward-char mode-len)
1536 ;; Skip any extended attributes marker ("." or "+").
1537 (or (= (following-char) ?\s)
1538 (forward-char 1))
1539 (setq nlink (read (current-buffer)))
1540 ;; Karsten Wenger <kw@cis.uni-muenchen.de> fixed uid.
1541 ;; Another issue is that GNU ls -n right-justifies numerical
1542 ;; UIDs and GIDs, while FreeBSD left-justifies them, so
1543 ;; don't rely on a specific whitespace layout. Both of them
1544 ;; right-justify all other numbers, though.
1545 ;; XXX Return a number if the uid or gid seems to be
1546 ;; numerical?
1547 (setq uid (buffer-substring (progn
1548 (skip-chars-forward " \t")
1549 (point))
1550 (progn
1551 (skip-chars-forward "^ \t")
1552 (point))))
1553 (dired-move-to-filename)
1554 (save-excursion
1555 (setq time
1556 ;; The regexp below tries to match from the last
1557 ;; digit of the size field through a space after the
1558 ;; date. Also, dates may have different formats
1559 ;; depending on file age, so the date column need
1560 ;; not be aligned to the right.
1561 (buffer-substring (save-excursion
1562 (skip-chars-backward " \t")
1563 (point))
1564 (progn
1565 (re-search-backward
1566 directory-listing-before-filename-regexp)
1567 (skip-chars-forward "^ \t")
1568 (1+ (point))))
1569 size (dired-x--string-to-number
1570 ;; We know that there's some kind of number
1571 ;; before point because the regexp search
1572 ;; above succeeded. I don't think it's worth
1573 ;; doing an extra check for leading garbage.
1574 (buffer-substring (point)
1575 (progn
1576 (skip-chars-backward "^ \t")
1577 (point))))
1578 ;; If no gid is displayed, gid will be set to uid
1579 ;; but the user will then not reference it anyway in
1580 ;; PREDICATE.
1581 gid (buffer-substring (progn
1582 (skip-chars-backward " \t")
1583 (point))
1584 (progn
1585 (skip-chars-backward "^ \t")
1586 (point)))))
1587 (setq name (buffer-substring (point)
1589 (dired-move-to-end-of-filename t)
1590 (point)))
1591 sym (if (looking-at " -> ")
1592 (buffer-substring (progn (forward-char 4) (point))
1593 (line-end-position))
1594 ""))
1596 (eval predicate
1597 `((inode . ,inode)
1598 (s . ,s)
1599 (mode . ,mode)
1600 (nlink . ,nlink)
1601 (uid . ,uid)
1602 (gid . ,gid)
1603 (size . ,size)
1604 (time . ,time)
1605 (name . ,name)
1606 (sym . ,sym)))))
1607 (format "'%s file" predicate))))
1610 ;;; FIND FILE AT POINT.
1612 (defcustom dired-x-hands-off-my-keys t
1613 "Non-nil means don't remap `find-file' to `dired-x-find-file'.
1614 Similarly for `find-file-other-window' and `dired-x-find-file-other-window'.
1615 If you change this variable without using \\[customize] after `dired-x.el'
1616 is loaded then call \\[dired-x-bind-find-file]."
1617 :type 'boolean
1618 :initialize 'custom-initialize-default
1619 :set (lambda (symbol value)
1620 (set symbol value)
1621 (dired-x-bind-find-file))
1622 :group 'dired-x)
1624 (defun dired-x-bind-find-file ()
1625 "Bind `dired-x-find-file' in place of `find-file' (or vice-versa).
1626 Similarly for `dired-x-find-file-other-window' and `find-file-other-window'.
1627 Binding direction based on `dired-x-hands-off-my-keys'."
1628 (interactive)
1629 (if (called-interactively-p 'interactive)
1630 (setq dired-x-hands-off-my-keys
1631 (not (y-or-n-p "Bind dired-x-find-file over find-file? "))))
1632 (unless dired-x-hands-off-my-keys
1633 (define-key (current-global-map) [remap find-file]
1634 'dired-x-find-file)
1635 (define-key (current-global-map) [remap find-file-other-window]
1636 'dired-x-find-file-other-window)))
1638 ;; Now call it so binding is correct. This could go in the :initialize
1639 ;; slot, but then dired-x-bind-find-file has to be defined before the
1640 ;; defcustom, and we get free variable warnings.
1641 (dired-x-bind-find-file)
1643 (defun dired-x-find-file (filename)
1644 "Edit file FILENAME.
1645 Like `find-file', except that when called interactively with a
1646 prefix argument, it offers the filename near point as a default."
1647 (interactive (list (dired-x-read-filename-at-point "Find file: ")))
1648 (find-file filename))
1650 (defun dired-x-find-file-other-window (filename)
1651 "Edit file FILENAME, in another window.
1652 Like `find-file-other-window', except that when called interactively with
1653 a prefix argument, when it offers the filename near point as a default."
1654 (interactive (list (dired-x-read-filename-at-point "Find file: ")))
1655 (find-file-other-window filename))
1657 ;;; Internal functions.
1659 ;; Fixme: This should probably use `thing-at-point'. -- fx
1660 (defun dired-filename-at-point ()
1661 "Return the filename closest to point, expanded.
1662 Point should be in or after a filename."
1663 (save-excursion
1664 ;; First see if just past a filename.
1665 (or (eobp) ; why?
1666 (when (looking-at-p "[] \t\n[{}()]") ; whitespace or some parens
1667 (skip-chars-backward " \n\t\r({[]})")
1668 (or (bobp) (backward-char 1))))
1669 (let ((filename-chars "-.[:alnum:]_/:$+@")
1670 start prefix)
1671 (if (looking-at-p (format "[%s]" filename-chars))
1672 (progn
1673 (skip-chars-backward filename-chars)
1674 (setq start (point)
1675 prefix
1676 ;; This is something to do with ange-ftp filenames.
1677 ;; It convert foo@bar to /foo@bar.
1678 ;; But when does the former occur in dired buffers?
1679 (and (string-match-p
1680 "^\\w+@"
1681 (buffer-substring start (line-end-position)))
1682 "/"))
1683 (if (string-match-p "[/~]" (char-to-string (preceding-char)))
1684 (setq start (1- start)))
1685 (skip-chars-forward filename-chars))
1686 (error "No file found around point!"))
1687 ;; Return string.
1688 (expand-file-name (concat prefix (buffer-substring start (point)))))))
1690 (defun dired-x-read-filename-at-point (prompt)
1691 "Return filename prompting with PROMPT with completion.
1692 If `current-prefix-arg' is non-nil, uses name at point as guess."
1693 (if current-prefix-arg
1694 (let ((guess (dired-filename-at-point)))
1695 (read-file-name prompt
1696 (file-name-directory guess)
1697 guess
1698 nil (file-name-nondirectory guess)))
1699 (read-file-name prompt default-directory)))
1701 (define-obsolete-function-alias 'read-filename-at-point
1702 'dired-x-read-filename-at-point "24.1") ; is this even needed?
1704 ;;; BUG REPORTS
1706 (define-obsolete-function-alias 'dired-x-submit-report 'report-emacs-bug "24.1")
1709 ;; As Barry Warsaw would say: "This might be useful..."
1710 (provide 'dired-x)
1712 ;; Local Variables:
1713 ;; byte-compile-dynamic: t
1714 ;; generated-autoload-file: "dired-loaddefs.el"
1715 ;; End:
1717 ;;; dired-x.el ends here