diff options
| author | John Wiegley | 2009-01-22 01:11:49 +0000 |
|---|---|---|
| committer | John Wiegley | 2009-01-22 01:11:49 +0000 |
| commit | c2b2a6cabf6dc2f4e4c12f9234f978d2d7993cb6 (patch) | |
| tree | 0ee87da4ea9116f15748a132dc00697ed654924c /lisp/eshell | |
| parent | fd94644feb5107df98ad2eaed868ae0ef021a381 (diff) | |
| download | emacs-c2b2a6cabf6dc2f4e4c12f9234f978d2d7993cb6.tar.gz emacs-c2b2a6cabf6dc2f4e4c12f9234f978d2d7993cb6.zip | |
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.
Diffstat (limited to 'lisp/eshell')
| -rw-r--r-- | lisp/eshell/esh-mode.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/eshell/esh-mode.el b/lisp/eshell/esh-mode.el index 675818539cf..db876d49bf8 100644 --- a/lisp/eshell/esh-mode.el +++ b/lisp/eshell/esh-mode.el | |||
| @@ -316,6 +316,7 @@ This is used by `eshell-watch-for-password-prompt'." | |||
| 316 | (define-key eshell-mode-map [(meta return)] 'eshell-queue-input) | 316 | (define-key eshell-mode-map [(meta return)] 'eshell-queue-input) |
| 317 | (define-key eshell-mode-map [(meta control ?m)] 'eshell-queue-input) | 317 | (define-key eshell-mode-map [(meta control ?m)] 'eshell-queue-input) |
| 318 | (define-key eshell-mode-map [(meta control ?l)] 'eshell-show-output) | 318 | (define-key eshell-mode-map [(meta control ?l)] 'eshell-show-output) |
| 319 | (define-key eshell-mode-map [(control ?a)] 'eshell-bol) | ||
| 319 | 320 | ||
| 320 | (set (make-local-variable 'eshell-command-prefix) | 321 | (set (make-local-variable 'eshell-command-prefix) |
| 321 | (make-symbol "eshell-command-prefix")) | 322 | (make-symbol "eshell-command-prefix")) |