From e0e031ad089526b1109c79c98499832ff385905c Mon Sep 17 00:00:00 2001 From: jwillhite <77293895+jwillhite@users.noreply.github.com> Date: Sun, 17 Oct 2021 16:35:44 -0700 Subject: [PATCH] feat(eshell): add vertico completion for eshell history (#5614) --- modules/term/eshell/autoload/eshell.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/term/eshell/autoload/eshell.el b/modules/term/eshell/autoload/eshell.el index 01d227038..f5788d89c 100644 --- a/modules/term/eshell/autoload/eshell.el +++ b/modules/term/eshell/autoload/eshell.el @@ -165,6 +165,9 @@ Once the eshell process is killed, the previous frame layout is restored." :action #'ivy-completion-in-region-action))) ((featurep! :completion helm) (helm-eshell-history)) + ((featurep! :completion vertico) + (forward-char 1) ;; Move outside of read only prompt text. + (consult-history)) ((eshell-list-history)))) ;;;###autoload