flake: add diff-plugins command
Some checks are pending
Publish every Git push to main to FlakeHub / flakehub-publish (push) Waiting to run
Publish every git push to Flakestry / publish-flake (push) Waiting to run
Documentation / Version info (push) Waiting to run
Documentation / Build (push) Blocked by required conditions
Documentation / Combine builds (push) Blocked by required conditions
Documentation / Deploy (push) Blocked by required conditions

Prints the plugins added or removed when compared to a particular nixvim
revision.
This commit is contained in:
Matt Sturgeon 2025-06-26 16:32:56 +01:00
parent f0764db721
commit a473ef658a
2 changed files with 113 additions and 0 deletions

View file

@ -115,6 +115,11 @@
command = ''${pkgs.python3.interpreter} ${./new-plugin.py} "$@"'';
help = "Create a new plugin";
}
{
name = "diff-plugins";
command = ''${pkgs.python3.interpreter} ${./diff-plugins.py} "$@"'';
help = "Compare available plugins with another nixvim commit";
}
];
};
};