cleanup: use vim.uv instead of vim.loop everywhere (#2762)

This commit is contained in:
Dmitry Torokhov
2025-10-15 03:44:40 -07:00
committed by GitHub
parent 0716819a0e
commit 4fc83dc308
7 changed files with 16 additions and 16 deletions

View File

@@ -35,7 +35,7 @@ function M.read_content(filepath)
end
function M.exists(filepath)
local stat = vim.loop.fs_stat(filepath)
local stat = vim.uv.fs_stat(filepath)
return stat ~= nil
end