summaryrefslogtreecommitdiff
path: root/lisp/completion.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2023-09-07 09:52:23 +0300
committerEli Zaretskii <eliz@gnu.org>2023-09-07 09:52:23 +0300
commitd3382f947144fbe14941a0883a90242ca6e1c83c (patch)
tree65ae258e988952adb0e02c4d2eb78086457ff2f3 /lisp/completion.el
parent1458daf316475e8c07102e4886664c4fd6790432 (diff)
downloademacs-d3382f947144fbe14941a0883a90242ca6e1c83c.tar.gz
emacs-d3382f947144fbe14941a0883a90242ca6e1c83c.tar.bz2
emacs-d3382f947144fbe14941a0883a90242ca6e1c83c.zip
; * lisp/completion.el (dynamic-completion-mode): Doc fix.
Diffstat (limited to 'lisp/completion.el')
-rw-r--r--lisp/completion.el20
1 files changed, 19 insertions, 1 deletions
diff --git a/lisp/completion.el b/lisp/completion.el
index eed6e77da4c..731b1587950 100644
--- a/lisp/completion.el
+++ b/lisp/completion.el
@@ -2133,7 +2133,25 @@ TYPE is the type of the wrapper to be added. Can be :before or :under."
;;;###autoload
(define-minor-mode dynamic-completion-mode
- "Toggle dynamic word-completion on or off."
+ "Toggle dynamic word-completion on or off.
+
+When this minor mode is turned on, typing `M-RET' or `C-RET'
+invokes the command `complete', which completes the word or
+symbol at point using the record of words/symbols you used
+previously and the previously-inserted completions. Typing
+a word or moving point across it constitutes \"using\" the
+word.
+
+By default, the database of all the dynamic completions that
+were inserted by \\[complete] is saved on the file specified
+by `save-completions-file-name' when you exit Emacs, and will
+be loaded from that file when this mode is enabled in a future
+Emacs session.
+
+The following important options control the various aspects of
+this mode: `enable-completion', `save-completions-flag', and
+`save-completions-retention-time'. Few other less important
+options can be found in the `completion' group."
:global t
;; This is always good, not specific to dynamic-completion-mode.
(define-key function-key-map [C-return] [?\C-\r])