Skip to content

Commit 3695215

Browse files
committed
perf(util): improve impl of throttle
1 parent 64fd346 commit 3695215

File tree

2 files changed

+20
-19
lines changed

2 files changed

+20
-19
lines changed

lua/lazy/util.lua

+16-18
Original file line numberDiff line numberDiff line change
@@ -74,27 +74,25 @@ end
7474
---@return F
7575
function M.throttle(ms, fn)
7676
local timer = vim.uv.new_timer()
77-
local running = false
78-
local first = true
77+
local pending = false
7978

80-
return function(...)
81-
local args = { ... }
82-
local wrapped = function()
83-
fn(unpack(args))
79+
return function()
80+
if timer:is_active() then
81+
pending = true
82+
return
8483
end
85-
if not running then
86-
if first then
87-
wrapped()
88-
first = false
89-
end
90-
91-
timer:start(ms, 0, function()
92-
running = false
93-
vim.schedule(wrapped)
84+
timer:start(
85+
0,
86+
ms,
87+
vim.schedule_wrap(function()
88+
fn()
89+
if pending then
90+
pending = false
91+
else
92+
timer:stop()
93+
end
9494
end)
95-
96-
running = true
97-
end
95+
)
9896
end
9997
end
10098

lua/lazy/view/init.lua

+4-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,10 @@ function M.create()
6767
self.state = vim.deepcopy(default_state)
6868

6969
self.render = Render.new(self)
70-
self.update = Util.throttle(Config.options.ui.throttle, self.update)
70+
local update = self.update
71+
self.update = Util.throttle(Config.options.ui.throttle, function()
72+
update(self)
73+
end)
7174

7275
for _, pattern in ipairs({ "LazyRender", "LazyFloatResized" }) do
7376
self:on({ "User" }, function()

0 commit comments

Comments
 (0)