summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2018-12-05 23:59:30 -0500
committerAmin Bandali <bandali@gnu.org>2018-12-05 23:59:30 -0500
commitf314414d70fdfddd835457370494895bcc406317 (patch)
tree55ee49d46010d28de271a6a2f738b397619ae5cd
parent7567d16e9527ee1fb492ea74fa7a0140d486cf51 (diff)
downloadconfigs-f314414d70fdfddd835457370494895bcc406317.tar.gz
configs-f314414d70fdfddd835457370494895bcc406317.tar.xz
configs-f314414d70fdfddd835457370494895bcc406317.zip
[emacs/eshell] clear with C-S-l instead of C-l
Diffstat (limited to '')
-rw-r--r--init.org8
1 files changed, 4 insertions, 4 deletions
diff --git a/init.org b/init.org
index 82e3324..daae17a 100644
--- a/init.org
+++ b/init.org
@@ -1093,10 +1093,10 @@ There's no way I could top that, so I won't attempt to.
(make-local-variable 'company-idle-delay)
(setq company-idle-delay nil)
(bind-keys :map eshell-mode-map
- ("C-d" . amin/eshell-quit-or-delete-char)
- ("C-l" . amin/eshell-clear)
- ("M-r" . counsel-esh-history)
- ([tab] . company-complete)))
+ ("C-d" . amin/eshell-quit-or-delete-char)
+ ("C-S-l" . amin/eshell-clear)
+ ("M-r" . counsel-esh-history)
+ ([tab] . company-complete)))
:hook (eshell-mode . amin|eshell-setup)
:custom