Fix shell tab completion

This commit is contained in:
Alexander Rosenberg 2024-08-07 00:32:17 -07:00
parent 4b86c50f74
commit 78948cee30
Signed by: Zander671
GPG Key ID: 5FD0394ADBD72730

View File

@ -1146,8 +1146,11 @@ argument."
(eshell-load . eat-eshell-mode) (eshell-load . eat-eshell-mode)
(eshell-mode . my/-eshell-mode-setup)) (eshell-mode . my/-eshell-mode-setup))
:bind (:map eshell-mode-map :bind (:map eshell-mode-map
("TAB" . company-complete)
("<tab>" . company-complete) ("<tab>" . company-complete)
("TAB" . company-complete)) :map eshell-cmpl-mode-map
("TAB" . company-complete)
("<tab>" . company-complete))
:init :init
(defun my/-eshell-mode-setup () (defun my/-eshell-mode-setup ()
"Setup function run from `eshell-mode-hook'" "Setup function run from `eshell-mode-hook'"