1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-01 20:06:00 +00:00

Add some eshell completion patterns

* lisp/eshell/em-cmpl.el (eshell-command-completions-alist):
Add 'gunzip', 'bunzip2' and 'unxz'.
This commit is contained in:
Stefan Kangas 2020-09-11 22:04:24 +02:00
parent 91a221b279
commit f5d8cfff5a

View File

@ -116,6 +116,9 @@ is non-nil."
(defcustom eshell-command-completions-alist (defcustom eshell-command-completions-alist
'(("acroread" . "\\.pdf\\'") '(("acroread" . "\\.pdf\\'")
("xpdf" . "\\.pdf\\'") ("xpdf" . "\\.pdf\\'")
("gunzip" . "\\.t?gz\\'")
("bunzip2" . "\\.t?bz2\\'")
("unxz" . "\\.t?xz\\'")
("ar" . "\\.[ao]\\'") ("ar" . "\\.[ao]\\'")
("gcc" . "\\.[Cc]\\([Cc]\\|[Pp][Pp]\\)?\\'") ("gcc" . "\\.[Cc]\\([Cc]\\|[Pp][Pp]\\)?\\'")
("g++" . "\\.[Cc]\\([Cc]\\|[Pp][Pp]\\)?\\'") ("g++" . "\\.[Cc]\\([Cc]\\|[Pp][Pp]\\)?\\'")