mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-12-20 07:00:09 +01:00
Added enum options for completion matcher option
This commit is contained in:
parent
d7de68f37e
commit
06fbacb3d0
1 changed files with 1 additions and 1 deletions
|
|
@ -135,7 +135,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
completion.matcher = mkOption {
|
completion.matcher = mkOption {
|
||||||
type = str;
|
type = enum ["fuzzy" "fuzzy-ignore-case" "prefix" "prefix-ignore-case"];
|
||||||
default = "fuzzy-ignore-case";
|
default = "fuzzy-ignore-case";
|
||||||
description = ''
|
description = ''
|
||||||
Modifies the algorithm used to filter the completion items returned to the client. Possibles values are:
|
Modifies the algorithm used to filter the completion items returned to the client. Possibles values are:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue