diff options
author | Amin Bandali <bandali@gnu.org> | 2019-11-17 20:37:12 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-11-17 20:37:12 -0500 |
commit | 568f899369d2b24f9f43675937cf44c1c58a3e91 (patch) | |
tree | e61a650b93acbdce2732bf63010c74cf662ca751 | |
parent | 46d707edd995226c273f0b39d0201ae8d0b29a93 (diff) | |
download | configs-568f899369d2b24f9f43675937cf44c1c58a3e91.tar.gz configs-568f899369d2b24f9f43675937cf44c1c58a3e91.tar.xz configs-568f899369d2b24f9f43675937cf44c1c58a3e91.zip |
emacs: eshell: bind counsel-esh-history in eshell-hist-mode-map
-rw-r--r-- | .emacs.d/init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index e8e4870..5e3ce80 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1087,7 +1087,8 @@ This function is intended for use with `ivy-ignore-buffers'." ("C-S-l" . b/eshell-clear) ("M-r" . counsel-esh-history) ;; ([tab] . company-complete) - )) + :map eshell-hist-mode-map + ("M-r" . counsel-esh-history))) :hook (eshell-mode . b/eshell-setup) :custom |