selectrum: document orderless style dispatchers

This commit is contained in:
Itai Y. Efrat 2021-05-08 15:54:27 +03:00
parent 34bc993a3a
commit 1266ac7b24

View file

@ -13,6 +13,7 @@
- [[#project-search--replace][Project search & replace]] - [[#project-search--replace][Project search & replace]]
- [[#in-buffer-searching][In-buffer searching]] - [[#in-buffer-searching][In-buffer searching]]
- [[#selectrum-integration-for-various-completing-commands][Selectrum integration for various completing commands]] - [[#selectrum-integration-for-various-completing-commands][Selectrum integration for various completing commands]]
- [[#orderless-filtering][Orderless filtering]]
* Description * Description
This module provides Selectrum integration for a variety of Emacs commands, as This module provides Selectrum integration for a variety of Emacs commands, as
@ -145,3 +146,14 @@ A wgrep buffer can be opened from swiper with =C-c C-e=.
| =SPC s p= | Search project | | =SPC s p= | Search project |
| =SPC s P= | Search another project | | =SPC s P= | Search another project |
| =SPC s s= | Search the current buffer (incrementally) | | =SPC s s= | Search the current buffer (incrementally) |
** 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
literally. You can further specify each space separated input in the following
ways:
| Input | Description |
|--------+--------------------------------------------|
| =!foo= | match without literal input =foo= |
| =bar== | match only with literal input =foo= |
| =baz~= | match input =foo= with fuzzy/flex matching |