diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2010-04-19 14:33:11 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2010-04-19 14:33:11 -0400 |
commit | 56d365a93da3c6b439998c251e9f01c73791f4b2 (patch) | |
tree | ca494121884bcdd2b900e609f05b179294acd119 /lisp/minibuffer.el | |
parent | 87926e02dccd90bb8e01ccc648d69809d7811fe0 (diff) | |
download | emacs-56d365a93da3c6b439998c251e9f01c73791f4b2.tar.gz |
(completion-styles-alist): Fix up last merge and document `substring'.
Diffstat (limited to 'lisp/minibuffer.el')
-rw-r--r-- | lisp/minibuffer.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index c7d0d1c3a0c..2730350c3df 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -402,14 +402,17 @@ pattern \"foo*bar*\".") "Completion of multiple words, each one taken as a prefix. I.e. when completing \"l-co_h\" (where _ is the position of point), it will consider all completions candidates matching the glob - (substring - completion-substring-try-completion completion-substring-all-completions - "Completion of the string taken as a substring.") pattern \"l*-co*h*\". Furthermore, for completions that are done step by step in subfields, the method is applied to all the preceding fields that do not yet match. E.g. C-x C-f /u/mo/s TAB could complete to /usr/monnier/src. Additionally the user can use the char \"*\" as a glob pattern.") + (substring + completion-substring-try-completion completion-substring-all-completions + "Completion of the string taken as a substring. +I.e. when completing \"foo_bar\" (where _ is the position of point), +it will consider all completions candidates matching the glob +pattern \"*foo*bar*\".") (initials completion-initials-try-completion completion-initials-all-completions "Completion of acronyms and initialisms. |