all repos — nixfiles @ 0c6a0388c832b33cefd1e62676a8f14cfe8bbf21

System and user configuration, managed by nix and home-manager

emacs: bind C-r/C-s to history search
Alan Pearce alan@alanpearce.eu
Fri, 24 Mar 2023 07:19:26 +0100
commit

0c6a0388c832b33cefd1e62676a8f14cfe8bbf21

parent

a13dc11cb284f0cb31a908eb639b1194b4697714

1 files changed, 3 insertions(+), 0 deletions(-)

jump to
M user/emacs/init.eluser/emacs/init.el
@@ -686,6 +686,9 @@ (use-package eshell   :defer 5
   :commands (eshell)
   :functions (eshell/pwd)
+  :general (:keymaps 'eshell-command-map
+                     "C-r" #'eshell-history-backwards
+                     "C-s" #'eshell-history-forwards)
   :init (progn
           (with-eval-after-load 'evil-ex
             (evil-ex-define-cmd "esh[ell]" #'eshell)))