mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 13:45:58 +01:00
lib: avoid filtering null values to be used as nil
This commit is contained in:
parent
fe9bcf224b
commit
64e79a9f4c
1 changed files with 1 additions and 2 deletions
|
@ -77,8 +77,7 @@ in rec {
|
|||
else "[${toLuaObject n}] = " + (toLuaObject v))
|
||||
(filterAttrs
|
||||
(
|
||||
_: v:
|
||||
(v != null) && (toLuaObject v != "{}")
|
||||
_: v: (toLuaObject v != "{}")
|
||||
)
|
||||
args)))
|
||||
+ "}"
|
||||
|
|
Loading…
Reference in a new issue