feat(eshell): add vertico completion for eshell history (#5614)

This commit is contained in:
jwillhite 2021-10-17 16:35:44 -07:00 committed by GitHub
parent 3bd358dc36
commit e0e031ad08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -165,6 +165,9 @@ Once the eshell process is killed, the previous frame layout is restored."
:action #'ivy-completion-in-region-action))) :action #'ivy-completion-in-region-action)))
((featurep! :completion helm) ((featurep! :completion helm)
(helm-eshell-history)) (helm-eshell-history))
((featurep! :completion vertico)
(forward-char 1) ;; Move outside of read only prompt text.
(consult-history))
((eshell-list-history)))) ((eshell-list-history))))
;;;###autoload ;;;###autoload