From 0dca4c2007235c73cb9b7503efd3a7c0f25dcb39 Mon Sep 17 00:00:00 2001 From: JuanZoran <1430359574@qq.com> Date: Wed, 8 Feb 2023 01:14:25 +0800 Subject: [PATCH] fix: fix engine lists remove --- lua/Trans/view/hover.lua | 2 +- lua/Trans/window.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/Trans/view/hover.lua b/lua/Trans/view/hover.lua index ab19611..37ee5b8 100644 --- a/lua/Trans/view/hover.lua +++ b/lua/Trans/view/hover.lua @@ -322,7 +322,7 @@ local function online_query(win, word) local s = '%s %s' local width, height = hover.width, hover.height local function waitting_result(this, times) - for i = 1, size do + for i = size, 1, -1 do local res = lists[i][1] if res then buffer:wipe() diff --git a/lua/Trans/window.lua b/lua/Trans/window.lua index cd85546..621142e 100644 --- a/lua/Trans/window.lua +++ b/lua/Trans/window.lua @@ -49,7 +49,7 @@ function window:set_width(width) end ---Expand window [width | height] value ----@param opts table 窗口的配置 +---@param opts table ---|'field'string [width | height] ---|'target'integer ---@return function