This pr adds support for setting two different match strategies individually for buffer and snippet completions. This does not affect path completion as it is only triggered by the / char and the following narrowing of completions is done by the completion engine.
The two supported match strategies is
exact - snippet prefix has to start exactly from the typed word like boundary
fuzzy - snippet prefix has to start from the first character of the word boundary and contain the following characters anywhere in the prefix
This pr adds support for setting two different match strategies individually for buffer and snippet completions. This does not affect path completion as it is only triggered by the
/
char and the following narrowing of completions is done by the completion engine.The two supported match strategies is
exact
- snippet prefix has to start exactly from the typed word like boundaryfuzzy
- snippet prefix has to start from the first character of the word boundary and contain the following characters anywhere in the prefix