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

@@ -1291,7 +1291,7 @@ function M.process_tool_use(tools, tool_use, opts)
-- Set up a timer to periodically check for cancellation
local cancel_timer
if on_complete then
cancel_timer = vim.loop.new_timer()
cancel_timer = vim.uv.new_timer()
if cancel_timer then
cancel_timer:start(
100,