fix: fix wrap height caculate mistake

This commit is contained in:
JuanZoran 2023-01-21 14:02:38 +08:00
parent 526ca19fbf
commit e058985bf3
5 changed files with 14 additions and 23 deletions

View File

@ -58,8 +58,9 @@ local content = {
self.window:bufset('modifiable', false)
end,
actual_height = function(self)
if self.window:option('wrap') then
actual_height = function(self, wrap)
wrap = wrap or self.window:option('wrap')
if wrap then
local height = 0
local width = self.window.width
local lines = self.lines
@ -67,6 +68,7 @@ local content = {
height = height + math.max(1, (math.ceil(lines[i]:width() / width)))
end
return height
else
return self.size
end

View File

@ -19,9 +19,9 @@ M.conf = {
-- TODO :
pageup = '[[',
pagedown = ']]',
pin = '+',
close = '_',
toggle_entry = '--',
pin = '<leader>[',
close = '<leader>]',
toggle_entry = '<leader>;',
},
animation = {
-- open = 'fold',
@ -77,6 +77,7 @@ M.conf = {
-- yes = '',
-- no = ''
},
db_path = '$HOME/.vim/dict/ultimate.db',
-- TODO :

View File

@ -31,6 +31,7 @@ local function get_word(mode)
end
end
local function translate(mode, view)
vim.validate {
mode = { mode, 's', true },

View File

@ -283,15 +283,16 @@ return function(word)
end
else
process.failed()
m_window:set_width(m_content.lines[1]:width())
end
m_window:draw(true)
m_window:draw()
m_window.height = m_content:actual_height(true)
m_window:open(function()
m_window:set('wrap', true)
end)
-- Auto Close
cmd_id = api.nvim_create_autocmd(
hover.auto_close_events, {

View File

@ -83,24 +83,10 @@ local window = {
---**第一次**绘制窗口的内容
---@param self table 窗口的对象
---@param adjust boolean 是否需要调整窗口的高度和宽度 (只有窗口只有一行时才会调整宽度)
draw = function(self, adjust)
draw = function(self)
-- TODO :
if self.title then
self.title:attach()
end
self.title:attach()
self.content:attach()
if adjust then
local height = self.content:actual_height() + self.title:actual_height()
if self.height > height then
self:set_height(height)
end
if self.content.size == 1 and self.title.size == 0 then
self:set_width(self.content.lines[1]:width())
end
end
end,
open = function(self, callback)