mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-11-16 02:15:34 +00:00
completion/blink: don't break when modifying built-in sources.providers (#683)
Some checks failed
Check for typos in the source tree / check-typos (push) Has been cancelled
Some checks failed
Check for typos in the source tree / check-typos (push) Has been cancelled
This commit is contained in:
parent
fc520fa1ab
commit
1d7c27abd9
3 changed files with 24 additions and 7 deletions
|
|
@ -21,8 +21,9 @@
|
|||
freeformType = anything;
|
||||
options = {
|
||||
module = mkOption {
|
||||
type = str;
|
||||
description = "module of the provider";
|
||||
type = nullOr str;
|
||||
default = null;
|
||||
description = "Provider module.";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
@ -40,7 +41,7 @@ in {
|
|||
providers = mkOption {
|
||||
type = attrsOf providerType;
|
||||
default = {};
|
||||
description = "Settings for completion providers";
|
||||
description = "Settings for completion providers.";
|
||||
};
|
||||
|
||||
transform_items = mkOption {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue