From 6670d752c76cbd6ff497edd854d26b30b4b9a8a8 Mon Sep 17 00:00:00 2001 From: Ching Pei Yang <59727193+horriblename@users.noreply.github.com> Date: Sun, 29 Sep 2024 14:35:11 +0200 Subject: [PATCH] fix: missing function (#388) --- modules/wrapper/rc/config.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wrapper/rc/config.nix b/modules/wrapper/rc/config.nix index 6aa0b61..6c1936e 100644 --- a/modules/wrapper/rc/config.nix +++ b/modules/wrapper/rc/config.nix @@ -74,7 +74,7 @@ in { // mapAttrs (_: legacyMap: legacyMap // {mode = namedModes.lang;}) cfg.maps.lang // mapAttrs (_: legacyMap: legacyMap // {mode = namedModes.command;}) cfg.maps.command; - keymaps = concatLines (map toLuaKeymap (attrsToList (filterNonNull maps))); + keymaps = concatLines (map toLuaKeymap (attrsToList (filterAttrs (_: value: value != null) maps))); in { vim = { luaConfigRC = {