From aa529815d0098b7fe4abb98ede2fcb7dd65c9526 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Thu, 14 Nov 2019 15:41:28 +0100 Subject: [PATCH] Eshell: Enable helm-fish-completion. --- .emacs.d/lisp/init-eshell.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.emacs.d/lisp/init-eshell.el b/.emacs.d/lisp/init-eshell.el index 00d91a65..18634a85 100644 --- a/.emacs.d/lisp/init-eshell.el +++ b/.emacs.d/lisp/init-eshell.el @@ -297,4 +297,7 @@ This should be faster then `seq-uniq'." (setq epe-path-style 'full) (setq eshell-prompt-function #'epe-theme-multiline-with-status)) +(when (require 'helm-fish-completion nil 'noerror) + (add-hook 'eshell-mode-hook 'helm-fish-completion-set-keys)) + (provide 'init-eshell)