From 80489972b2d60c9fa9d68b65534d3d4d8323ba4a Mon Sep 17 00:00:00 2001 From: Joscha Loos Date: Thu, 2 Nov 2023 15:51:25 +0100 Subject: [PATCH] feat: add counter to plugins.md --- bin/update_vim_plugins/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/update_vim_plugins/update.py b/bin/update_vim_plugins/update.py index 5b406f0c6..55944dc50 100644 --- a/bin/update_vim_plugins/update.py +++ b/bin/update_vim_plugins/update.py @@ -92,7 +92,7 @@ def write_plugins_markdown(self, plugins): self.line(f"Updating plugins.md") - header = "| Repo | Last Update | Nix package name | Last checked |\n|:---|:---|:---|:---|\n" + header = f" - Plugin count: {len(plugins)}\n\n| Repo | Last Update | Nix package name | Last checked |\n|:---|:---|:---|:---|\n" with open(PLUGINS_LIST_FILE, "w") as file: file.write(header)