diff options
author | Stefan Kangas <stefan@marxist.se> | 2020-09-11 22:04:24 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2020-09-11 22:04:24 +0200 |
commit | f5d8cfff5a32361e8d561a66973a7de83f1275f6 (patch) | |
tree | f2be9a2c6af889d0ce86ea0d41e36f39e0bd2cc3 | |
parent | 91a221b27980c795cddd019966205c61b66aa194 (diff) | |
download | emacs-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'.
-rw-r--r-- | lisp/eshell/em-cmpl.el | 3 |
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]\\)?\\'") |