dired-guess: Support zstandard archives
* lisp/dired-aux.el (dired-guess-shell-alist-default): Support zstandard archives.
This commit is contained in:
parent
5b87429d99
commit
cb036a79e2
1 changed files with 4 additions and 0 deletions
|
@ -1169,6 +1169,10 @@ Return the result of `process-file' - zero for success."
|
|||
;; Optional decompression.
|
||||
"unxz")
|
||||
|
||||
;; zstandard archives
|
||||
`(,(rx (or ".tar.zst" ".tzst") eos) "unzstd -c %i | tar -xf -")
|
||||
`(,(rx ".zst" eos) "unzstd --rm")
|
||||
|
||||
'("\\.shar\\.Z\\'" "zcat * | unshar")
|
||||
'("\\.shar\\.g?z\\'" "gunzip -qc * | unshar")
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue