Work on delete function

master
Bryan 2024-10-19 10:27:01 -06:00
parent 71b42d28e5
commit 92cd0b6836
1 changed files with 3 additions and 2 deletions

View File

@ -48,8 +48,9 @@ end
---@param n integer
function M.func.file_del(n)
vim.cmd("bd " .. tostring(M.listing.paths[n]))
table.remove(M.listing, n)
vim.print(M.listing.paths[n])
-- vim.cmd("bd " .. tostring(M.listing.paths[n]))
-- table.remove(M.listing, n)
end
return M