mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-02 08:22:22 +00:00
Make dired recognize .lz files
* lisp/dired-aux.el (dired-compress-file-suffixes): Recognize .lz (lzip) compressed files (bug#37136).
This commit is contained in:
parent
228ca5aa4b
commit
6aab45bffc
@ -992,6 +992,7 @@ command with a prefix argument (the value does not matter)."
|
||||
("\\.tar\\.gz\\'" "" "gzip -dc %i | tar -xf -")
|
||||
("\\.tgz\\'" "" "gzip -dc %i | tar -xf -")
|
||||
("\\.gz\\'" "" "gunzip")
|
||||
("\\.lz\\'" "" "lzip -d")
|
||||
("\\.Z\\'" "" "uncompress")
|
||||
;; For .z, try gunzip. It might be an old gzip file,
|
||||
;; or it might be from compact? pack? (which?) but gunzip handles both.
|
||||
|
Loading…
Reference in New Issue
Block a user