Skip to content

Commit

Permalink
s/mapAttrsFlatten/mapAttrsToList
Browse files Browse the repository at this point in the history
  • Loading branch information
gvolpe committed Oct 4, 2024
1 parent 69a19b5 commit 0fe0ce0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/core/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ in
let
filterNonNull = filterAttrs (name: value: value != null);
globalsScript =
mapAttrsFlatten (name: value: "let g:${name}=${toJSON value}")
mapAttrsToList (name: value: "let g:${name}=${toJSON value}")
(filterNonNull cfg.globals);

matchCtrl = match "Ctrl-(.)(.*)";
Expand Down

0 comments on commit 0fe0ce0

Please sign in to comment.