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