feat: use vim.uv everywhere instead of vim.loop

This commit is contained in:
Folke Lemaitre 2024-03-22 09:02:34 +01:00
parent 7f333f006f
commit 3a87c08cda
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
11 changed files with 23 additions and 23 deletions

View file

@ -42,7 +42,7 @@ return {
lint.linters_by_ft = opts.linters_by_ft
function M.debounce(ms, fn)
local timer = vim.loop.new_timer()
local timer = vim.uv.new_timer()
return function(...)
local argv = { ... }
timer:start(ms, 0, function()