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

@@ -106,7 +106,7 @@ function RepoMap._get_repo_map(file_ext)
build_and_save()
if not repo_map then return end
else
local timer = vim.loop.new_timer()
local timer = vim.uv.new_timer()
if timer then
timer:start(
@@ -147,7 +147,7 @@ function RepoMap._get_repo_map(file_ext)
end
end)
local handle = vim.loop.new_fs_event()
local handle = vim.uv.new_fs_event()
if handle then
handle:start(project_root, { recursive = true }, function(err, rel_filepath)