chore: change a function style

This commit is contained in:
JuanZoran 2023-01-21 07:14:50 +08:00
parent f5f135f794
commit 41710010d5

View File

@ -1,6 +1,5 @@
local api = vim.api
---@diagnostic disable-next-line: duplicate-set-field
function string:width()
---@diagnostic disable-next-line: param-type-mismatch
@ -112,11 +111,12 @@ local window = {
local handler
local function wrap(name, target)
local count = 0
local action = 'nvim_win_set_' .. target
return function()
if count < self[target] then
busy = true
count = count + 1
api['nvim_win_set_' .. target](self.winid, count)
api[action](self.winid, count)
vim.defer_fn(handler[name], animation.interval)
else
@ -155,11 +155,12 @@ local window = {
local handler
local function wrap(name, target)
local count = self[target]
local action = 'nvim_win_set_' .. target
return function()
if count > 1 then
busy = true
count = count - 1
api['nvim_win_set_' .. target](self.winid, count)
api[action](self.winid, count)
vim.defer_fn(handler[name], animation.interval)
else