File tree 2 files changed +20
-19
lines changed
2 files changed +20
-19
lines changed Original file line number Diff line number Diff line change 74
74
--- @return F
75
75
function M .throttle (ms , fn )
76
76
local timer = vim .uv .new_timer ()
77
- local running = false
78
- local first = true
77
+ local pending = false
79
78
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
84
83
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
94
94
end )
95
-
96
- running = true
97
- end
95
+ )
98
96
end
99
97
end
100
98
Original file line number Diff line number Diff line change @@ -67,7 +67,10 @@ function M.create()
67
67
self .state = vim .deepcopy (default_state )
68
68
69
69
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 )
71
74
72
75
for _ , pattern in ipairs ({ " LazyRender" , " LazyFloatResized" }) do
73
76
self :on ({ " User" }, function ()
You can’t perform that action at this time.
0 commit comments