selectrum: document orderless style dispatchers
This commit is contained in:
parent
34bc993a3a
commit
1266ac7b24
1 changed files with 12 additions and 0 deletions
|
@ -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 |
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue