mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-12-20 16:20:06 +01:00
completion/blink-cmp: sources.cmdline -> cmdline.sources
This commit is contained in:
parent
7e53fc4724
commit
53d0e79083
1 changed files with 8 additions and 6 deletions
|
|
@ -37,12 +37,6 @@ in {
|
||||||
description = "Default list of sources to enable for completion.";
|
description = "Default list of sources to enable for completion.";
|
||||||
};
|
};
|
||||||
|
|
||||||
cmdline = mkOption {
|
|
||||||
type = nullOr (listOf str);
|
|
||||||
default = [];
|
|
||||||
description = "List of sources to enable for cmdline. Null means use default source list.";
|
|
||||||
};
|
|
||||||
|
|
||||||
providers = mkOption {
|
providers = mkOption {
|
||||||
type = attrsOf providerType;
|
type = attrsOf providerType;
|
||||||
default = {};
|
default = {};
|
||||||
|
|
@ -63,6 +57,14 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
cmdline = {
|
||||||
|
sources = mkOption {
|
||||||
|
type = nullOr (listOf str);
|
||||||
|
default = [];
|
||||||
|
description = "List of sources to enable for cmdline. Null means use default source list.";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
completion = {
|
completion = {
|
||||||
documentation = {
|
documentation = {
|
||||||
auto_show = mkBool true "Show documentation whenever an item is selected";
|
auto_show = mkBool true "Show documentation whenever an item is selected";
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue