fix: fix wrap height caculate mistake
This commit is contained in:
parent
526ca19fbf
commit
e058985bf3
@ -58,8 +58,9 @@ local content = {
|
|||||||
self.window:bufset('modifiable', false)
|
self.window:bufset('modifiable', false)
|
||||||
end,
|
end,
|
||||||
|
|
||||||
actual_height = function(self)
|
actual_height = function(self, wrap)
|
||||||
if self.window:option('wrap') then
|
wrap = wrap or self.window:option('wrap')
|
||||||
|
if wrap then
|
||||||
local height = 0
|
local height = 0
|
||||||
local width = self.window.width
|
local width = self.window.width
|
||||||
local lines = self.lines
|
local lines = self.lines
|
||||||
@ -67,6 +68,7 @@ local content = {
|
|||||||
height = height + math.max(1, (math.ceil(lines[i]:width() / width)))
|
height = height + math.max(1, (math.ceil(lines[i]:width() / width)))
|
||||||
end
|
end
|
||||||
return height
|
return height
|
||||||
|
|
||||||
else
|
else
|
||||||
return self.size
|
return self.size
|
||||||
end
|
end
|
||||||
|
@ -19,9 +19,9 @@ M.conf = {
|
|||||||
-- TODO :
|
-- TODO :
|
||||||
pageup = '[[',
|
pageup = '[[',
|
||||||
pagedown = ']]',
|
pagedown = ']]',
|
||||||
pin = '+',
|
pin = '<leader>[',
|
||||||
close = '_',
|
close = '<leader>]',
|
||||||
toggle_entry = '--',
|
toggle_entry = '<leader>;',
|
||||||
},
|
},
|
||||||
animation = {
|
animation = {
|
||||||
-- open = 'fold',
|
-- open = 'fold',
|
||||||
@ -77,6 +77,7 @@ M.conf = {
|
|||||||
-- yes = '',
|
-- yes = '',
|
||||||
-- no = ''
|
-- no = ''
|
||||||
},
|
},
|
||||||
|
|
||||||
db_path = '$HOME/.vim/dict/ultimate.db',
|
db_path = '$HOME/.vim/dict/ultimate.db',
|
||||||
|
|
||||||
-- TODO :
|
-- TODO :
|
||||||
|
@ -31,6 +31,7 @@ local function get_word(mode)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
local function translate(mode, view)
|
local function translate(mode, view)
|
||||||
vim.validate {
|
vim.validate {
|
||||||
mode = { mode, 's', true },
|
mode = { mode, 's', true },
|
||||||
|
@ -283,15 +283,16 @@ return function(word)
|
|||||||
end
|
end
|
||||||
else
|
else
|
||||||
process.failed()
|
process.failed()
|
||||||
|
m_window:set_width(m_content.lines[1]:width())
|
||||||
end
|
end
|
||||||
|
|
||||||
m_window:draw(true)
|
m_window:draw()
|
||||||
|
m_window.height = m_content:actual_height(true)
|
||||||
m_window:open(function()
|
m_window:open(function()
|
||||||
m_window:set('wrap', true)
|
m_window:set('wrap', true)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- Auto Close
|
-- Auto Close
|
||||||
cmd_id = api.nvim_create_autocmd(
|
cmd_id = api.nvim_create_autocmd(
|
||||||
hover.auto_close_events, {
|
hover.auto_close_events, {
|
||||||
|
@ -83,24 +83,10 @@ local window = {
|
|||||||
|
|
||||||
---**第一次**绘制窗口的内容
|
---**第一次**绘制窗口的内容
|
||||||
---@param self table 窗口的对象
|
---@param self table 窗口的对象
|
||||||
---@param adjust boolean 是否需要调整窗口的高度和宽度 (只有窗口只有一行时才会调整宽度)
|
draw = function(self)
|
||||||
draw = function(self, adjust)
|
|
||||||
-- TODO :
|
-- TODO :
|
||||||
if self.title then
|
|
||||||
self.title:attach()
|
self.title:attach()
|
||||||
end
|
|
||||||
self.content: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,
|
end,
|
||||||
|
|
||||||
open = function(self, callback)
|
open = function(self, callback)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user