From 2be3a79aed9d452c3ceaa877b7a5e702fa42ebdb Mon Sep 17 00:00:00 2001 From: Laurens Miers Date: Mon, 23 Sep 2024 16:22:11 +0200 Subject: [PATCH] CORFU: Enable automatic completion in buffer Also cycle if we reach begin/end of list of candidates. --- config_new.org | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config_new.org b/config_new.org index a070af1..3b57a67 100644 --- a/config_new.org +++ b/config_new.org @@ -346,9 +346,9 @@ Make cursor the width of the character it is under f.e. full width of a tab. #+BEGIN_SRC emacs-lisp (use-package corfu ;; Optional customizations - ;; :custom - ;; (corfu-cycle t) ;; Enable cycling for `corfu-next/previous' - ;; (corfu-auto t) ;; Enable auto completion + :custom + (corfu-cycle t) ;; Enable cycling for `corfu-next/previous' + (corfu-auto t) ;; Enable auto completion ;; (corfu-separator ?\s) ;; Orderless field separator ;; (corfu-quit-at-boundary nil) ;; Never quit at completion boundary ;; (corfu-quit-no-match nil) ;; Never quit, even if there is no match