1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

Patch to change the default binding of C-a to eshell-bol. I don't think it's

actually bound at all by default in eshell; it just falls back to the default
binding of C-a.
This commit is contained in:
John Wiegley 2009-01-22 01:11:49 +00:00
parent fd94644feb
commit c2b2a6cabf

View file

@ -316,6 +316,7 @@ This is used by `eshell-watch-for-password-prompt'."
(define-key eshell-mode-map [(meta return)] 'eshell-queue-input)
(define-key eshell-mode-map [(meta control ?m)] 'eshell-queue-input)
(define-key eshell-mode-map [(meta control ?l)] 'eshell-show-output)
(define-key eshell-mode-map [(control ?a)] 'eshell-bol)
(set (make-local-variable 'eshell-command-prefix)
(make-symbol "eshell-command-prefix"))