fix: fix buffer line index error and online process need to be fixed
This commit is contained in:
parent
693dd0c7aa
commit
02fe6c510a
@ -121,20 +121,23 @@ end
|
||||
|
||||
---Set line content
|
||||
---@param nodes string|table|table[] string -> as line content | table -> as a node | table[] -> as node[]
|
||||
---@param linenr number? line number should be set[one index] or let it be nil to append
|
||||
function buffer:setline(nodes, linenr)
|
||||
---@param one_index number? line number should be set[one index] or let it be nil to append
|
||||
function buffer:setline(nodes, one_index)
|
||||
self:set('modifiable', true)
|
||||
linenr = linenr and linenr - 1 or self:line_count()
|
||||
if not one_index then
|
||||
local line_count = self:line_count()
|
||||
one_index = (line_count == 1 and self[1] == '') and 1 or line_count + 1
|
||||
end
|
||||
|
||||
local zero_index = one_index - 1
|
||||
if type(nodes) == 'string' then
|
||||
api.nvim_buf_set_lines(self.bufnr, linenr, linenr, false, { nodes })
|
||||
|
||||
api.nvim_buf_set_lines(self.bufnr, zero_index, zero_index, false, { nodes })
|
||||
else
|
||||
if type(nodes[1]) == 'string' then
|
||||
-- FIXME :set [nodes] type as node
|
||||
---@diagnostic disable-next-line: assign-type-mismatch
|
||||
api.nvim_buf_set_lines(self.bufnr, linenr, linenr, false, { nodes[1] })
|
||||
nodes:render(self, linenr, 0)
|
||||
api.nvim_buf_set_lines(self.bufnr, zero_index, zero_index, false, { nodes[1] })
|
||||
nodes:render(self, one_index, 0)
|
||||
else
|
||||
local strs = {}
|
||||
local num = #nodes
|
||||
@ -142,11 +145,11 @@ function buffer:setline(nodes, linenr)
|
||||
strs[i] = nodes[i][1]
|
||||
end
|
||||
|
||||
api.nvim_buf_set_lines(self.bufnr, linenr, linenr, false, { table.concat(strs) })
|
||||
api.nvim_buf_set_lines(self.bufnr, zero_index, zero_index, false, { table.concat(strs) })
|
||||
local col = 0
|
||||
for i = 1, num do
|
||||
local node = nodes[i]
|
||||
node:render(self, linenr, col)
|
||||
node:render(self, one_index, col)
|
||||
col = col + #node[1]
|
||||
end
|
||||
end
|
||||
@ -186,7 +189,6 @@ function buffer.new()
|
||||
extmarks = {},
|
||||
}, buffer)
|
||||
|
||||
|
||||
new_buf:set('modifiable', false)
|
||||
new_buf:set('filetype', 'Trans')
|
||||
new_buf:set('buftype', 'nofile')
|
||||
|
@ -90,7 +90,6 @@ function M:init_window(opts)
|
||||
opts.animation = m_opts.animation
|
||||
|
||||
|
||||
|
||||
self.window = Trans.window.new(opts)
|
||||
return self.window
|
||||
end
|
||||
@ -120,27 +119,47 @@ function M:wait(tbl, name, timeout)
|
||||
|
||||
local interval = math.floor(timeout / width)
|
||||
local pause = Trans.util.pause
|
||||
local buffer = self.buffer
|
||||
for i = 1, width do
|
||||
if tbl[name] ~= nil then break end
|
||||
self.buffer[1] = update_text(i)
|
||||
self.buffer:add_highlight(1, 'MoreMsg')
|
||||
buffer[1] = update_text(i)
|
||||
buffer:add_highlight(1, 'MoreMsg')
|
||||
pause(interval)
|
||||
end
|
||||
|
||||
buffer[1] = ''
|
||||
|
||||
-- TODO : End waitting animation
|
||||
end
|
||||
|
||||
|
||||
function M:process(_, result)
|
||||
if not self.window then self:init_window() end
|
||||
-- local node = Trans.util.node
|
||||
-- local it, t, f = node.item, node.text, node.format
|
||||
-- self.buffer:setline(it('hello', 'MoreMsg'))
|
||||
local opts = self.opts
|
||||
|
||||
local node = Trans.util.node
|
||||
local it, t, f = node.item, node.text, node.format
|
||||
self.buffer:setline(it('hello', 'MoreMsg'))
|
||||
for _, field in ipairs(opts.order) do
|
||||
if result[field] then
|
||||
self:load(result, field)
|
||||
end
|
||||
end
|
||||
|
||||
-- for _, field in ipairs(self.opts.order) do
|
||||
-- self:load(result, field)
|
||||
-- end
|
||||
local win = self.window
|
||||
if not win then
|
||||
win = self:init_window()
|
||||
elseif win:width() ~= opts.width then
|
||||
win:expand {
|
||||
field = 'width',
|
||||
to = opts.width
|
||||
}
|
||||
elseif win:height() ~= opts.height then
|
||||
win:expand {
|
||||
field = 'height',
|
||||
to = opts.height
|
||||
}
|
||||
end
|
||||
|
||||
win:set('wrap', true)
|
||||
end
|
||||
|
||||
---Check if hover window and buffer are valid
|
||||
@ -149,7 +168,6 @@ function M:is_available()
|
||||
return self.buffer:is_valid() and self.window:is_valid()
|
||||
end
|
||||
|
||||
|
||||
return M
|
||||
-- local function handle_keymap(win, word)
|
||||
-- local keymap = hover.keymap
|
||||
|
@ -32,7 +32,7 @@ local strategy = {
|
||||
hover.buffer:setline(it(word, 'TransWord'))
|
||||
else
|
||||
hover.buffer:setline(f {
|
||||
width = hover.width,
|
||||
width = hover.opts.width,
|
||||
text = t {
|
||||
it(word, 'TransWord'),
|
||||
t {
|
||||
|
Loading…
x
Reference in New Issue
Block a user