diff --git a/lua/Trans/window.lua b/lua/Trans/window.lua index 2c81bc7..3820d0e 100644 --- a/lua/Trans/window.lua +++ b/lua/Trans/window.lua @@ -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