Disable corfu-auto in GUD as well as eshell

This commit is contained in:
Evie Litherland-Smith 2024-01-31 13:43:40 +00:00
parent be1d1ff58c
commit 9cd33c2dfd

View file

@ -980,8 +980,13 @@ Set treesit to fontify all elements, default was 3 (out of 4)
(add-hook 'eshell-mode-hook
(lambda ()
(setq-local corfu-auto nil
corfu-quit-at-boundary t
corfu-quit-no-match t)
corfu-auto-commands nil)
(corfu-mode)))
(add-hook 'gud-mode-hook
(lambda ()
(setq-local corfu-auto nil
corfu-auto-commands nil)
(corfu-mode)))
(defun corfu-send-shell (&rest _)