From 1c09989e48371dc2669e7275c046636363b369a9 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 11 Apr 2025 21:45:36 -0400 Subject: [PATCH] fix(eshell): +eshell/search-history sometimes noops Fix: #6867 Co-authored-by: aikrahguzar --- modules/term/eshell/autoload/eshell.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/term/eshell/autoload/eshell.el b/modules/term/eshell/autoload/eshell.el index 198b18269..490283d74 100644 --- a/modules/term/eshell/autoload/eshell.el +++ b/modules/term/eshell/autoload/eshell.el @@ -168,7 +168,7 @@ Once the eshell process is killed, the previous frame layout is restored." ((modulep! :completion helm) (helm-eshell-history)) ((modulep! :completion vertico) - (forward-char 1) ;; Move outside of read only prompt text. + (eshell-bol) (consult-history)) ((eshell-list-history))))