docs/man: include all sections from lib-doc

This commit is contained in:
Matt Sturgeon 2025-05-15 17:38:40 +01:00
parent 0c7e2aa96b
commit 83d3535097
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
2 changed files with 17 additions and 5 deletions

View file

@ -84,6 +84,16 @@ runCommand "nixvim-lib-docs"
inherit lib;
pageSpecs = elaboratedPageSpecs;
};
passthru.pages = builtins.listToAttrs (
builtins.map (
{ name, outFile, ... }:
{
inherit name;
value = outFile;
}
) pagesToRender
);
}
''
function docgen {