summaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
authorOmar AntolĂ­n Camarena <omar.antolin@gmail.com>2020-04-25 03:10:50 -0500
committerGitHub <noreply@github.com>2020-04-25 03:10:50 -0500
commit3005cf8ee97de4e3cc52f957ea59c65bd0b1470e (patch)
treef2d4bbe60f284f5bfb9db258f4d534649f4202f4 /README.org
parentdc3f8da02270494e57764146836082e0d849cf55 (diff)
parent862eed345c0f521a0b009180dd1ddf0e51b72790 (diff)
Merge pull request #12 from noctuid/feature/strict-initialism
Add orderless-strict-initialism style
Diffstat (limited to 'README.org')
-rw-r--r--README.org16
1 files changed, 16 insertions, 0 deletions
diff --git a/README.org b/README.org
index 5f67c59..67f5257 100644
--- a/README.org
+++ b/README.org
@@ -101,6 +101,22 @@ define new matching styles. The predefined ones are:
This maps =abc= to =\<a.*\<b.*\c=.
+- orderless-strict-initialism :: like initialism but only allow
+ non-letters in between the matched words.
+
+ For example =fb= would match =foo-bar= but not =foo-qux-bar=.
+
+- orderless-strict-leading-initialism :: like strict-initialism but
+ require the first initial to match the candidate's first word.
+
+ For example =bb= would match =bar-baz= but not =foo-bar-baz=.
+
+- orderless-strict-full-initialism :: like strict-initialism but
+ require the first initial to match the candidate's first word and the
+ last initial to be at the final word.
+
+ For example =fbb= would match =foo-bar-baz= but not =foo-bar-baz-qux=.
+
- orderless-flex :: the characters of the component should appear in
that order in the candidate, but not necessarily consecutively.