From 9cd33c2dfdc79cb1295b49feeba9830cd16e3cd3 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Wed, 31 Jan 2024 13:43:40 +0000 Subject: [PATCH] Disable corfu-auto in GUD as well as eshell --- README.org | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index 5d6fdba..a4471db 100644 --- a/README.org +++ b/README.org @@ -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 _)