fix: fix setline mistake
This commit is contained in:
parent
f47abd1691
commit
baf30a3db1
@ -72,7 +72,7 @@ function M.query(data)
|
|||||||
result = result[1]
|
result = result[1]
|
||||||
data.result.baidu = {
|
data.result.baidu = {
|
||||||
['title'] = result.src,
|
['title'] = result.src,
|
||||||
[data.from == 'en' and 'translation' or 'definition'] = result.dst,
|
[data.from == 'en' and 'translation' or 'definition'] = { result.dst },
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -11,15 +11,14 @@ function buffer:wipe()
|
|||||||
end
|
end
|
||||||
|
|
||||||
---Delete buffer [_start, _end] line content [one index]
|
---Delete buffer [_start, _end] line content [one index]
|
||||||
---@param _start integer start line index
|
---@param _start? integer start line index
|
||||||
---@param _end integer end line index
|
---@param _end? integer end line index
|
||||||
function buffer:del(_start, _end)
|
function buffer:del(_start, _end)
|
||||||
if not _start then
|
-- FIXME :
|
||||||
fn.deletebufline(self.bufnr, '$')
|
|
||||||
else
|
---@diagnostic disable-next-line: cast-local-type
|
||||||
_end = _end or _start
|
_start = _start or '$'
|
||||||
fn.deletebufline(self.bufnr, _start, _end)
|
fn.deletebufline(self.bufnr, _start, _end)
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
---Set buffer option
|
---Set buffer option
|
||||||
@ -97,6 +96,7 @@ end
|
|||||||
---@param col_end? number column end
|
---@param col_end? number column end
|
||||||
---@param ns number? highlight namespace
|
---@param ns number? highlight namespace
|
||||||
function buffer:add_highlight(linenr, hl_group, col_start, col_end, ns)
|
function buffer:add_highlight(linenr, hl_group, col_start, col_end, ns)
|
||||||
|
-- vim.print(linenr, hl_group, col_start, col_end, ns)
|
||||||
linenr = linenr - 1 or -1
|
linenr = linenr - 1 or -1
|
||||||
col_start = col_start or 0
|
col_start = col_start or 0
|
||||||
api.nvim_buf_add_highlight(self.bufnr, ns or -1, hl_group, linenr, col_start, col_end or -1)
|
api.nvim_buf_add_highlight(self.bufnr, ns or -1, hl_group, linenr, col_start, col_end or -1)
|
||||||
@ -125,19 +125,20 @@ end
|
|||||||
---@param one_index number? line number should be set[one index] or let it be nil to append
|
---@param one_index number? line number should be set[one index] or let it be nil to append
|
||||||
function buffer:setline(nodes, one_index)
|
function buffer:setline(nodes, one_index)
|
||||||
self:set('modifiable', true)
|
self:set('modifiable', true)
|
||||||
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
|
|
||||||
|
---@diagnostic disable-next-line: cast-local-type, param-type-mismatch
|
||||||
|
one_index = one_index or self:line_count() + 1
|
||||||
|
if one_index == 2 and self[1] == '' then one_index = 1 end
|
||||||
|
---@cast one_index integer
|
||||||
|
|
||||||
if type(nodes) == 'string' then
|
if type(nodes) == 'string' then
|
||||||
api.nvim_buf_set_lines(self.bufnr, zero_index, zero_index, false, { nodes })
|
fn.setbufline(self.bufnr, one_index, nodes)
|
||||||
else
|
else
|
||||||
if type(nodes[1]) == 'string' then
|
|
||||||
-- FIXME :set [nodes] type as node
|
-- FIXME :set [nodes] type as node
|
||||||
---@diagnostic disable-next-line: assign-type-mismatch
|
if type(nodes[1]) == 'string' then
|
||||||
api.nvim_buf_set_lines(self.bufnr, zero_index, zero_index, false, { nodes[1] })
|
---@diagnostic disable-next-line: assign-type-mismatch, param-type-mismatch
|
||||||
|
fn.setbufline(self.bufnr, one_index, nodes[1])
|
||||||
nodes:render(self, one_index, 0)
|
nodes:render(self, one_index, 0)
|
||||||
else
|
else
|
||||||
local strs = {}
|
local strs = {}
|
||||||
@ -146,7 +147,7 @@ function buffer:setline(nodes, one_index)
|
|||||||
strs[i] = nodes[i][1]
|
strs[i] = nodes[i][1]
|
||||||
end
|
end
|
||||||
|
|
||||||
api.nvim_buf_set_lines(self.bufnr, zero_index, zero_index, false, { table.concat(strs) })
|
fn.setbufline(self.bufnr, one_index, table.concat(strs))
|
||||||
local col = 0
|
local col = 0
|
||||||
for i = 1, num do
|
for i = 1, num do
|
||||||
local node = nodes[i]
|
local node = nodes[i]
|
||||||
@ -164,8 +165,8 @@ buffer.__index = function(self, key)
|
|||||||
if res then
|
if res then
|
||||||
return res
|
return res
|
||||||
elseif type(key) == 'number' then
|
elseif type(key) == 'number' then
|
||||||
-- return fn.getbufoneline(self.bufnr, key) -- Vimscript Function Or Lua API ??
|
return fn.getbufoneline(self.bufnr, key) -- Vimscript Function Or Lua API ??
|
||||||
return api.nvim_buf_get_lines(self.bufnr, key - 1, key, true)[1]
|
-- return api.nvim_buf_get_lines(self.bufnr, key - 1, key, true)[1]
|
||||||
else
|
else
|
||||||
error('invalid key: ' .. key)
|
error('invalid key: ' .. key)
|
||||||
end
|
end
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
local Trans = require('Trans')
|
local Trans = require('Trans')
|
||||||
|
|
||||||
|
-- FIXME :Adjust Window Size
|
||||||
|
|
||||||
---@class TransHover: TransFrontend
|
---@class TransHover: TransFrontend
|
||||||
---@field ns integer @namespace for hover window
|
---@field ns integer @namespace for hover window
|
||||||
@ -117,7 +118,6 @@ function M:wait(tbl, name, timeout)
|
|||||||
pause(interval)
|
pause(interval)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- TODO : End waitting animation
|
|
||||||
buffer[1] = ''
|
buffer[1] = ''
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ local interval = (' '):rep(4)
|
|||||||
local strategy = {
|
local strategy = {
|
||||||
title = function(hover, title)
|
title = function(hover, title)
|
||||||
if type(title) == 'string' then
|
if type(title) == 'string' then
|
||||||
hover.buffer:setline(it(title, 'TransTitle'))
|
hover.buffer:setline(it(title, 'TransWord'))
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user