Skip to content

Commit 073b5e3

Browse files
committed
perf: fast return for Util.ls when file found
1 parent 28af1e1 commit 073b5e3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lua/lazy/core/util.lua

+4-2
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,17 @@ end
108108

109109
---@alias FileType "file"|"directory"|"link"
110110
---@param path string
111-
---@param fn fun(path: string, name:string, type:FileType)
111+
---@param fn fun(path: string, name:string, type:FileType):boolean?
112112
function M.ls(path, fn)
113113
local handle = vim.loop.fs_scandir(path)
114114
while handle do
115115
local name, t = vim.loop.fs_scandir_next(handle)
116116
if not name then
117117
break
118118
end
119-
fn(path .. "/" .. name, name, t)
119+
if fn(path .. "/" .. name, name, t) == false then
120+
break
121+
end
120122
end
121123
end
122124

0 commit comments

Comments
 (0)