diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2024-03-20 10:19:48 +0100 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2024-03-20 10:19:48 +0100 |
| commit | 46c5ec84e096b852229b32f054462f0a63abfeb5 (patch) | |
| tree | ce924469b3292d0a00932ba3e62c41fe6961c6f6 | |
| parent | c1e7b6190b00158e67347b4db0a8f7964e5d2f8b (diff) | |
README: Update configuration
| -rw-r--r-- | README.org | 16 |
1 files changed, 10 insertions, 6 deletions
@@ -137,14 +137,18 @@ Here is an example configuration: ;; TAB cycle if there are only few candidates (setq completion-cycle-threshold 3) - ;; Emacs 28: Hide commands in M-x which do not apply to the current mode. - ;; Corfu commands are hidden, since they are not supposed to be used via M-x. - ;; (setq read-extended-command-predicate - ;; #'command-completion-default-include-p) - ;; Enable indentation+completion using the TAB key. ;; `completion-at-point' is often bound to M-TAB. - (setq tab-always-indent 'complete)) + (setq tab-always-indent 'complete) + + ;; Emacs 30 and newer: Disable Ispell completion function. As an alternative, + ;; try `cape-dict'. + (setq text-mode-ispell-word-completion nil) + + ;; Emacs 28 and newer: Hide commands in M-x which do not apply to the current + ;; mode. Corfu commands are hidden, since they are not used via M-x. This + ;; setting is useful beyond Corfu. + (setq read-extended-command-predicate #'command-completion-default-include-p)) #+end_src Dabbrev completion is based on =completion-in-region= and can be used with Corfu. |
