From 27ef9d83d46d580b8d17da44a989cbf9811ae6b7 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Mon, 15 Jul 2019 16:01:58 +0200 Subject: [PATCH] =?UTF-8?q?[EShell]=20Don=E2=80=99t=20use=20=E2=80=98C-l?= =?UTF-8?q?=E2=80=99=20to=20clear=20the=20buffer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This usage conflicts with the usual semantics of ‘C-l’ in Emacs. --- init.el | 1 - 1 file changed, 1 deletion(-) diff --git a/init.el b/init.el index f785c19..fbba434 100644 --- a/init.el +++ b/init.el @@ -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)))