From 73485647b4b56886ccba85269786b41ad8dfb081 Mon Sep 17 00:00:00 2001 From: cspark Date: Tue, 10 Mar 2026 18:12:35 +0000 Subject: [PATCH] Remap eshell history search with consult alternative --- init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 3659763..05c7ff8 100644 --- a/init.el +++ b/init.el @@ -375,7 +375,8 @@ :config (define-key global-map [remap isearch-forward] 'consult-ripgrep) (define-key global-map [remap switch-to-buffer] 'consult-buffer) - (define-key global-map [remap set-fill-column] 'consult-fd)) + (define-key global-map [remap set-fill-column] 'consult-fd) + (define-key global-map [remap eshell-previous-matching-input] 'consult-history)) ;; Persist history over Emacs restarts. Vertico sorts by history position.