diff options
author | Amin Bandali <bandali@gnu.org> | 2018-12-05 23:59:30 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2018-12-05 23:59:30 -0500 |
commit | f314414d70fdfddd835457370494895bcc406317 (patch) | |
tree | 55ee49d46010d28de271a6a2f738b397619ae5cd | |
parent | 7567d16e9527ee1fb492ea74fa7a0140d486cf51 (diff) | |
download | configs-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.org | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |