summaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
authorOmar AntolĂ­n Camarena <omar.antolin@gmail.com>2024-02-21 10:01:16 -0600
committerGitHub <noreply@github.com>2024-02-21 10:01:16 -0600
commit91df48c8e1331e434ce6ce3bab709de2035e3ec4 (patch)
tree7655b785d82995bcec0ececce906637925c2913e /README.org
parent61aed3e622f90ee8ace44a84a05abc1074567b74 (diff)
parentadd8d5af3af8cadbba60e68c1b3c78cf9b8b3475 (diff)
Merge pull request #162 from minad/annotation-matching
Annotation matching
Diffstat (limited to 'README.org')
-rw-r--r--README.org13
1 files changed, 6 insertions, 7 deletions
diff --git a/README.org b/README.org
index 661b2d2..e4f02f7 100644
--- a/README.org
+++ b/README.org
@@ -197,7 +197,7 @@ regexp styles.
A style dispatcher can either decline to handle the input string or
component, or it can return which matching styles to use. It can
also, if desired, additionally return a new string to use in place of
- the given one. Consult the documentation of =orderless-dispatch= for
+ the given one. Consult the documentation of =orderless--dispatch= for
full details.
As an example of writing your own dispatchers, say you wanted the
@@ -307,12 +307,11 @@ completion is the one that ends up being used, of course.
** Pattern compiler
-The default mechanism for turning an input string into a list of regexps to
-match against, configured using =orderless-matching-styles=, is probably
-flexible enough for the vast majority of users. The patterns are compiled by the
-=orderless-pattern-compiler=. Under special circumstances it may be useful to
-implement a custom pattern compiler by advising the
-=orderless-pattern-compiler=.
+The default mechanism for turning an input string into a predicate and a list of
+regexps to match against, configured using =orderless-matching-styles=, is
+probably flexible enough for the vast majority of users. The patterns are
+compiled by =orderless-compile=. Under special circumstances it may be useful to
+implement a custom pattern compiler by advising =orderless-compile=.
** Interactively changing the configuration