diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2022-02-03 21:45:28 +0100 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2022-02-03 21:45:28 +0100 |
| commit | 7e352112620ea90d1541d53d10c84d5ce8fc908e (patch) | |
| tree | 09d9afa1b17c4476b4e8b2561e7edc142f7cfb51 /README.org | |
| parent | da272f8a8ea31b8e676861705f7fa2dc939b6b9c (diff) | |
README: Add short section about auto completion (See #109)
Diffstat (limited to 'README.org')
| -rw-r--r-- | README.org | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -134,6 +134,25 @@ want to create your own Capfs, you can find documentation about completion in the [[https://www.gnu.org/software/emacs/manual/html_node/elisp/Completion.html][Elisp manual]]. +** Auto completion + + Auto completion is disabled by default, but can be enabled by setting + ~corfu-auto=t~. Furthermore you may want to configure Corfu to quit completion + eagerly, such that the completion popup stays out of your way when it + appeared unexpectedly. + + #+begin_src emacs-lisp + ;; Enable auto completion and eager quitting + (setq corfu-auto t + corfu-quit-at-boundary t + corfu-quit-no-match t) + #+end_src + + In general, I recommend to experiment a bit with the various settings and key + bindings to find a configuration which works for you. There is no one size + fits all solution. Some people like auto completion, some like manual + completion, some want to cycle with TAB or and some with the arrow keys... + ** Completing with Corfu in the minibuffer Corfu can be used for completion in the minibuffer, since it relies on child |
