summaryrefslogtreecommitdiff
path: root/lisp/eshell/em-cmpl.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2020-09-11 22:04:24 +0200
committerStefan Kangas <stefan@marxist.se>2020-09-11 22:04:24 +0200
commitf5d8cfff5a32361e8d561a66973a7de83f1275f6 (patch)
treef2be9a2c6af889d0ce86ea0d41e36f39e0bd2cc3 /lisp/eshell/em-cmpl.el
parent91a221b27980c795cddd019966205c61b66aa194 (diff)
downloademacs-f5d8cfff5a32361e8d561a66973a7de83f1275f6.tar.gz
emacs-f5d8cfff5a32361e8d561a66973a7de83f1275f6.tar.bz2
emacs-f5d8cfff5a32361e8d561a66973a7de83f1275f6.zip
Add some eshell completion patterns
* lisp/eshell/em-cmpl.el (eshell-command-completions-alist): Add 'gunzip', 'bunzip2' and 'unxz'.
Diffstat (limited to 'lisp/eshell/em-cmpl.el')
-rw-r--r--lisp/eshell/em-cmpl.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/eshell/em-cmpl.el b/lisp/eshell/em-cmpl.el
index dcf56af6051..8a444c91001 100644
--- a/lisp/eshell/em-cmpl.el
+++ b/lisp/eshell/em-cmpl.el
@@ -116,6 +116,9 @@ is non-nil."
(defcustom eshell-command-completions-alist
'(("acroread" . "\\.pdf\\'")
("xpdf" . "\\.pdf\\'")
+ ("gunzip" . "\\.t?gz\\'")
+ ("bunzip2" . "\\.t?bz2\\'")
+ ("unxz" . "\\.t?xz\\'")
("ar" . "\\.[ao]\\'")
("gcc" . "\\.[Cc]\\([Cc]\\|[Pp][Pp]\\)?\\'")
("g++" . "\\.[Cc]\\([Cc]\\|[Pp][Pp]\\)?\\'")