feat: add auto_resize config for hover window

This commit is contained in:
JuanZoran 2023-03-15 11:44:01 +08:00
parent e5f0f2bf34
commit da8b037523
3 changed files with 8 additions and 11 deletions

View File

@ -58,6 +58,8 @@ return {
spinner = 'dots', spinner = 'dots',
---@type string -- TODO :support replace with {{special word}} ---@type string -- TODO :support replace with {{special word}}
fallback_message = '翻译超时或没有找到相关的翻译', fallback_message = '翻译超时或没有找到相关的翻译',
auto_resize = true,
padding = 10, -- only work when auto_resize is true
keymaps = { keymaps = {
play = '_', play = '_',
pageup = '[[', pageup = '[[',

View File

@ -95,21 +95,17 @@ end
---@param opts ---@param opts
---|{ width: integer, height: integer } ---|{ width: integer, height: integer }
function window:resize(opts) function window:resize(opts)
local width = opts.width if opts.height and self:height() ~= opts.height then
local height = opts.height
if self:height() ~= height then
self:smooth_expand { self:smooth_expand {
field = 'height', field = 'height',
to = height to = opts.height
} }
end end
if self:width() ~= width then if opts.width and self:width() ~= opts.width then
self:smooth_expand { self:smooth_expand {
field = 'width', field = 'width',
to = width to = opts.width
} }
end end
end end

View File

@ -128,7 +128,6 @@ function M:wait(tbl, name, timeout)
buffer[1] = '' buffer[1] = ''
end end
---Display Result in hover window ---Display Result in hover window
---@param _ TransData ---@param _ TransData
---@param result TransResult ---@param result TransResult
@ -148,8 +147,8 @@ function M:process(_, result)
local window = self.window local window = self.window
local display_size = Trans.util.display_size(self.buffer:lines(), opts.width) local display_size = Trans.util.display_size(self.buffer:lines(), opts.width)
if window and window:is_valid() then if window and window:is_valid() then
-- win:adjust_height(opts.height) ---@diagnostic disable-next-line: assign-type-mismatch
display_size.width = math.min(opts.width, display_size.width + 6) display_size.width = opts.auto_resize and math.min(opts.width, display_size.width + opts.padding) or nil
window:resize(display_size) window:resize(display_size)
else else
window = self:init_window { window = self:init_window {