โ๏ธ Match strategy
Definitions¶
prefix
(default)partial
Examples¶
prefix¶
Input orange
doesn't suggest appleOrangeGrape
because it doesn't start with orange
or Orange
.
partial¶
Input orange
suggest appleOrangeGrape
because it includes Orange
.
Notes¶
There are two crucial points you should know.
partial
suggests many suggestions, it might be noisy for you depending on the situationpartial
is more than 10 times slower thanprefix
Related issues¶
Since¶
v3.2.0