CORFU: Enable automatic completion in buffer

Also cycle if we reach begin/end of list of candidates.
This commit is contained in:
Laurens Miers 2024-09-23 16:22:11 +02:00
parent f6c14e7caa
commit 2be3a79aed

View file

@ -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 #+BEGIN_SRC emacs-lisp
(use-package corfu (use-package corfu
;; Optional customizations ;; Optional customizations
;; :custom :custom
;; (corfu-cycle t) ;; Enable cycling for `corfu-next/previous' (corfu-cycle t) ;; Enable cycling for `corfu-next/previous'
;; (corfu-auto t) ;; Enable auto completion (corfu-auto t) ;; Enable auto completion
;; (corfu-separator ?\s) ;; Orderless field separator ;; (corfu-separator ?\s) ;; Orderless field separator
;; (corfu-quit-at-boundary nil) ;; Never quit at completion boundary ;; (corfu-quit-at-boundary nil) ;; Never quit at completion boundary
;; (corfu-quit-no-match nil) ;; Never quit, even if there is no match ;; (corfu-quit-no-match nil) ;; Never quit, even if there is no match