1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-24 03:09:39 +01:00

flake: add diff-plugins command

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";
}
];
};
};