Variable: tramp-archive-compression-suffixes
tramp-archive-compression-suffixes is a variable defined in
tramp-archive.el.gz.
Value
("bz2" "gz" "lrz" "lz" "lz4" "lzma" "lzo" "uu" "xz" "Z" "zst")
Documentation
List of suffixes which indicate a compressed file.
It must be supported by libarchive(3).
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp-archive.el.gz
;; <https://unix-memo.readthedocs.io/en/latest/vfs.html>
;; read and write: tar, cpio, pax , gzip , zip, bzip2, xz, lzip,
;; lzma, ar, mtree, iso9660, compress.
;; read only: 7-Zip, mtree, xar, lha/lzh, rar, microsoft cab.
;;;###autoload
(defconst tramp-archive-compression-suffixes
'("bz2" "gz" "lrz" "lz" "lz4" "lzma" "lzo" "uu" "xz" "Z" "zst")
"List of suffixes which indicate a compressed file.
It must be supported by libarchive(3).")