* lisp/dired-x.el (dired-guess-shell-alist-default): Add rar and 7z.

This commit is contained in:
Antoine Levitt 2011-02-27 23:24:39 -08:00 committed by Glenn Morris
parent ca3afb79d0
commit 584a277399
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2011-02-28 Antoine Levitt <antoine.levitt@gmail.com> (tiny change)
* dired-x.el (dired-guess-shell-alist-default): Add rar and 7z.
2011-02-28 Juanma Barranquero <lekktu@gmail.com>
* emacs-lisp/pcase.el (pcase, pcase--u1, pcase--q1):

View file

@ -988,6 +988,8 @@ replace it with a dir-locals-file `./%s'"
'("\\.lzh$" "lharc x")
'("\\.arc$" "arc x")
'("\\.shar$" "unshar")
'("\\.rar$" "unrar x")
'("\\.7z$" "7z x")
;; Compression.
(list "\\.g?z$" '(concat "gunzip" (if dired-guess-shell-gzip-quiet " -q")))