feat: write to multiple files (#720)

This commit is contained in:
yetone
2024-10-14 20:15:11 +08:00
committed by GitHub
parent 347d9be730
commit b19573cb2a
3 changed files with 122 additions and 65 deletions

View File

@@ -33,4 +33,9 @@ function M.read_content(filepath)
return nil
end
function M.exists(filepath)
local stat = vim.loop.fs_stat(filepath)
return stat ~= nil
end
return M