1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-29 07:58:28 +00:00

* lisp/eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.

This commit is contained in:
Leo Liu 2012-03-05 18:44:31 +08:00
parent ef959d3a0c
commit 01d972a90b
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2012-03-05 Leo Liu <sdl.web@gmail.com>
* eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
2012-03-05 Chong Yidong <cyd@gnu.org>
* simple.el (count-words): If called from Lisp, return the word

View File

@ -299,8 +299,7 @@ to writing a completion function."
;; jww (1999-10-19): Will this work on anything but X?
(if (featurep 'xemacs)
(define-key eshell-mode-map [iso-left-tab] 'pcomplete-reverse)
(define-key eshell-mode-map [(shift iso-lefttab)] 'pcomplete-reverse)
(define-key eshell-mode-map [(shift control ?i)] 'pcomplete-reverse))
(define-key eshell-mode-map [backtab] 'pcomplete-reverse))
(define-key eshell-mode-map [(meta ??)] 'pcomplete-list))
(defun eshell-completion-command-name ()