Skip to content

Commit

Permalink
fix: remove vim.print in Grapple.prune
Browse files Browse the repository at this point in the history
  • Loading branch information
cbochs committed Apr 25, 2024
1 parent d6f4003 commit 5cc6023
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lua/grapple.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 5cc6023

Please sign in to comment.