[EShell] Don’t use ‘C-l’ to clear the buffer

This usage conflicts with the usual semantics of ‘C-l’ in Emacs.
This commit is contained in:
Daniel - 2019-07-15 16:01:58 +02:00
parent 76999d9136
commit 27ef9d83d4
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 0 additions and 1 deletions

View File

@ -2254,7 +2254,6 @@ search commands like `db/helm-shortcuts."
(add-hook 'eshell-mode-hook
(lambda ()
(bind-key "C-a" #'eshell-bol eshell-mode-map)
(bind-key "C-l" #'eshell-clear-buffer eshell-mode-map)
(bind-key "M-r" #'eshell-insert-history eshell-mode-map)
(bind-key "M-P" #'eshell-previous-prompt eshell-mode-map)
(bind-key "M-N" #'eshell-next-prompt eshell-mode-map)))