summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.org16
1 files changed, 10 insertions, 6 deletions
diff --git a/README.org b/README.org
index 9376d43..8a94d1b 100644
--- a/README.org
+++ b/README.org
@@ -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.