@@ -12,7 +12,7 @@ function M.track(data, time)
12
12
if data then
13
13
local entry = {
14
14
data = data ,
15
- time = time or vim .loop .hrtime (),
15
+ time = time or vim .uv .hrtime (),
16
16
}
17
17
table.insert (M ._profiles [# M ._profiles ], entry )
18
18
@@ -23,7 +23,7 @@ function M.track(data, time)
23
23
else
24
24
--- @type LazyProfile
25
25
local entry = table.remove (M ._profiles )
26
- entry .time = vim .loop .hrtime () - entry .time
26
+ entry .time = vim .uv .hrtime () - entry .time
27
27
return entry
28
28
end
29
29
end
54
54
--- @return string
55
55
function M .norm (path )
56
56
if path :sub (1 , 1 ) == " ~" then
57
- local home = vim .loop .os_homedir ()
57
+ local home = vim .uv .os_homedir ()
58
58
if home :sub (- 1 ) == " \\ " or home :sub (- 1 ) == " /" then
59
59
home = home :sub (1 , - 2 )
60
60
end
175
175
--- @param path string
176
176
--- @param fn fun ( path : string , name : string , type : FileType ): boolean ?
177
177
function M .ls (path , fn )
178
- local handle = vim .loop .fs_scandir (path )
178
+ local handle = vim .uv .fs_scandir (path )
179
179
while handle do
180
- local name , t = vim .loop .fs_scandir_next (handle )
180
+ local name , t = vim .uv .fs_scandir_next (handle )
181
181
if not name then
182
182
break
183
183
end
@@ -187,7 +187,7 @@ function M.ls(path, fn)
187
187
-- HACK: type is not always returned due to a bug in luv,
188
188
-- so fecth it with fs_stat instead when needed.
189
189
-- see https://github.com/folke/lazy.nvim/issues/306
190
- if fn (fname , name , t or vim .loop .fs_stat (fname ).type ) == false then
190
+ if fn (fname , name , t or vim .uv .fs_stat (fname ).type ) == false then
191
191
break
192
192
end
193
193
end
@@ -263,7 +263,7 @@ function M.lsmod(modname, fn)
263
263
return
264
264
end
265
265
266
- if vim .loop .fs_stat (root .. " .lua" ) then
266
+ if vim .uv .fs_stat (root .. " .lua" ) then
267
267
fn (modname , root .. " .lua" )
268
268
end
269
269
@@ -272,7 +272,7 @@ function M.lsmod(modname, fn)
272
272
fn (modname , path )
273
273
elseif (type == " file" or type == " link" ) and name :sub (- 4 ) == " .lua" then
274
274
fn (modname .. " ." .. name :sub (1 , - 5 ), path )
275
- elseif type == " directory" and vim .loop .fs_stat (path .. " /init.lua" ) then
275
+ elseif type == " directory" and vim .uv .fs_stat (path .. " /init.lua" ) then
276
276
fn (modname .. " ." .. name , path .. " /init.lua" )
277
277
end
278
278
end )
0 commit comments