From 41710010d5b14fda1c0c71c623a597d61b67386d Mon Sep 17 00:00:00 2001 From: JuanZoran <1430359574@qq.com> Date: Sat, 21 Jan 2023 07:14:50 +0800 Subject: [PATCH] chore: change a function style --- lua/Trans/window.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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