selectrum: drop foo! orderless style dispatch

conflicts with `!` final macros.
also elaborate why we should drop the prescient flag
This commit is contained in:
Itai Y. Efrat 2021-05-20 22:09:41 +03:00
parent 747f1e38b3
commit 308c6798d3
3 changed files with 10 additions and 11 deletions

View file

@ -147,13 +147,14 @@ A wgrep buffer can be opened from ~consult-line~ with =C-c C-e= (not yet).
** Orderless filtering
When using orderless to filter through candidates, the default behaviour is for
each space separated inputs to match the candidate as a regular expression or
each space separated input to match the candidate as a regular expression or
literally.
You can further specify each space separated input in the following ways:
Doom has some builtin [[https://github.com/oantolin/orderless#style-dispatchers][style dispatchers]] for more finegrained filtering, which
you can use to further specify each space separated input in the following ways:
| Input | Description |
|------------------+--------------------------------------------|
| =!foo= or =foo!= | match without literal input =foo= |
| =!foo= | match without literal input =foo= |
| =`bar= or =bar`= | match input =bar= as an initialism |
| ==baz= or =baz== | match only with literal input =baz= |
| =~qux= or =qux~= | match input =qux= with fuzzy/flex matching |