mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-13 10:44:34 +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
|
@ -151,12 +151,8 @@ in {
|
|||
;
|
||||
add_dirs = addDirs;
|
||||
auto_depth = autoDepth;
|
||||
browse_files =
|
||||
helpers.ifNonNull' browseFiles
|
||||
(helpers.mkRaw browseFiles);
|
||||
browse_folders =
|
||||
helpers.ifNonNull' browseFolders
|
||||
(helpers.mkRaw browseFolders);
|
||||
browse_files = helpers.mkRaw browseFiles;
|
||||
browse_folders = helpers.mkRaw browseFolders;
|
||||
collapse_dirs = collapseDirs;
|
||||
cwd_to_path = cwdToPath;
|
||||
dir_icon = dirIcon;
|
||||
|
@ -172,7 +168,7 @@ in {
|
|||
else
|
||||
attr
|
||||
// {
|
||||
display = helpers.ifNonNull' attr.display (helpers.mkRaw attr.display);
|
||||
display = helpers.mkRaw attr.display;
|
||||
}
|
||||
)
|
||||
displayStat
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue