Variable: eshell-ls-archive-regexp
eshell-ls-archive-regexp is a customizable variable defined in
em-ls.el.gz.
Value
"\\.\\(t\\(a[rz]\\|gz\\)\\|arj\\|lzh\\|zip\\|[zZ]\\|gz\\|bz2\\|xz\\|deb\\|rpm\\)\\'"
Documentation
A regular expression that matches names of file archives.
This typically includes both traditional archives and compressed files.
This variable was added, or its default value changed, in Emacs 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/em-ls.el.gz
(defcustom eshell-ls-archive-regexp
(concat "\\.\\(t\\(a[rz]\\|gz\\)\\|arj\\|lzh\\|"
"zip\\|[zZ]\\|gz\\|bz2\\|xz\\|deb\\|rpm\\)\\'")
"A regular expression that matches names of file archives.
This typically includes both traditional archives and compressed
files."
:version "24.1" ; added xz
:type 'regexp)