From 5cc6023febab1aebe4c02fde427fe8c4e8ce7133 Mon Sep 17 00:00:00 2001 From: Calvin Bochulak Date: Thu, 25 Apr 2024 12:55:19 -0600 Subject: [PATCH] fix: remove vim.print in Grapple.prune --- lua/grapple.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/lua/grapple.lua b/lua/grapple.lua index 5839647..bd237e2 100644 --- a/lua/grapple.lua +++ b/lua/grapple.lua @@ -276,7 +276,6 @@ function Grapple.prune(opts) elseif #pruned_ids == 1 then vim.notify(string.format("Pruned %d save file: %s", #pruned_ids, pruned_ids[1]), vim.log.levels.INFO) else - vim.print(pruned_ids) local output_tbl = vim.tbl_map(Util.with_prefix(" "), pruned_ids) local output = table.concat(output_tbl, "\n") vim.notify(string.format("Pruned %d save files\n%s", #pruned_ids, output), vim.log.levels.INFO)