mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-27 11:08:53 +02:00
plugins: swith to the new behaviour of mkRaw
This commit is contained in:
parent
8cf2d943d2
commit
19f39c3b1b
32 changed files with 66 additions and 127 deletions
|
@ -212,7 +212,7 @@ in {
|
|||
max_value_lines = maxValueLines;
|
||||
});
|
||||
|
||||
select_window = helpers.ifNonNull' selectWindow (helpers.mkRaw selectWindow);
|
||||
select_window = helpers.mkRaw selectWindow;
|
||||
}
|
||||
// cfg.extraOptions;
|
||||
in
|
||||
|
|
|
@ -72,7 +72,7 @@ in {
|
|||
only_first_definition = onlyFirstDefinition;
|
||||
all_references = allReferences;
|
||||
clear_on_continue = clearOnContinue;
|
||||
display_callback = helpers.ifNonNull' displayCallback (helpers.mkRaw displayCallback);
|
||||
display_callback = helpers.mkRaw displayCallback;
|
||||
virt_text_pos = virtTextPos;
|
||||
all_frames = allFrames;
|
||||
virt_lines = virtLines;
|
||||
|
|
|
@ -129,7 +129,7 @@ in rec {
|
|||
adapter
|
||||
// {
|
||||
inherit type;
|
||||
enrich_config = helpers.ifNonNull' adapter.enrichConfig (helpers.mkRaw adapter.enrichConfig);
|
||||
enrich_config = helpers.mkRaw adapter.enrichConfig;
|
||||
}
|
||||
))
|
||||
adapters;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue