This commit is contained in:
hrsh7th
2022-01-24 23:46:07 +09:00
parent 7cb14b0c0f
commit 27123b1297
4 changed files with 59 additions and 35 deletions

View File

@@ -198,7 +198,7 @@ end
---On entry change
view.on_entry_change = async.throttle(
vim.schedule_wrap(function(self)
function(self)
if not self:visible() then
return
end
@@ -225,7 +225,7 @@ view.on_entry_change = async.throttle(
else
self.ghost_text_view:hide()
end
end),
end,
20
)