diff options
-rw-r--r-- | completion.org | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/completion.org b/completion.org index 85ba314..e4fb949 100644 --- a/completion.org +++ b/completion.org @@ -73,17 +73,15 @@ (setq completion-styles '(orderless) corfu-cycle t) - ;; Optionally use TAB for cycling, default is `corfu-complete'. - ;; :bind (:map corfu-map - ;; ("TAB" . corfu-next) - ;; ("S-TAB" . corfu-previous)) + :bind (:map corfu-map + ("TAB" . corfu-next) + ("S-TAB" . corfu-previous)) :hook ((eshell-mode . corfu-mode) (haskell-interactive-mode . corfu-mode) (message-mode . corfu-mode) (prog-mode . corfu-mode) - (lisp-interaction-mode . corfu-mode)) - ) + (lisp-interaction-mode . corfu-mode))) #+end_src * vertico #+begin_src emacs-lisp |