completion/blink-cmp: sources.cmdline -> cmdline.sources
Some checks are pending
Set up binary cache / cachix (default) (push) Waiting to run
Set up binary cache / cachix (maximal) (push) Waiting to run
Set up binary cache / cachix (nix) (push) Waiting to run
Validate flake & check formatting / Validate Flake (push) Waiting to run
Validate flake & check formatting / Formatting via Alejandra (push) Waiting to run
Build and deploy documentation / Check latest commit (push) Waiting to run
Build and deploy documentation / publish (push) Blocked by required conditions
Check for typos in the source tree / check-typos (push) Waiting to run

This commit is contained in:
raf 2025-02-28 00:29:11 +03:00
parent 7e53fc4724
commit 53d0e79083
No known key found for this signature in database
GPG key ID: 29D95B64378DB4BF

View file

@ -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";