fix: fix offset mistake
This commit is contained in:
parent
0964a9c3c4
commit
5135f2f6f9
@ -51,7 +51,8 @@ local content = {
|
|||||||
|
|
||||||
self.window:bufset('modifiable', true)
|
self.window:bufset('modifiable', true)
|
||||||
local window = self.window
|
local window = self.window
|
||||||
api.nvim_buf_set_lines(window.bufnr, offset, offset + 1, true, self.lines)
|
--- NOTE : 使用-1 则需要按顺序设置
|
||||||
|
api.nvim_buf_set_lines(window.bufnr, offset, -1, true, self.lines)
|
||||||
|
|
||||||
local hl
|
local hl
|
||||||
for i = 1, self.hl_size do
|
for i = 1, self.hl_size do
|
||||||
|
@ -71,13 +71,13 @@ M.conf = {
|
|||||||
},
|
},
|
||||||
icon = {
|
icon = {
|
||||||
star = '',
|
star = '',
|
||||||
-- notfound = '❔',
|
|
||||||
notfound = ' ',
|
notfound = ' ',
|
||||||
yes = ' ',
|
yes = ' ',
|
||||||
no = ''
|
no = ''
|
||||||
|
-- star = '⭐',
|
||||||
|
-- notfound = '❔',
|
||||||
-- yes = '✔️',
|
-- yes = '✔️',
|
||||||
-- no = '❌'
|
-- no = '❌'
|
||||||
-- star = '⭐',
|
|
||||||
},
|
},
|
||||||
|
|
||||||
db_path = '$HOME/.vim/dict/ultimate.db',
|
db_path = '$HOME/.vim/dict/ultimate.db',
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
local m_window
|
local m_window
|
||||||
local m_result
|
local m_result
|
||||||
|
local m_content
|
||||||
|
|
||||||
|
|
||||||
local function set_title()
|
local function set_title()
|
||||||
local title = m_window.contents[1]
|
local title = m_window.contents[1]
|
||||||
local github = 'https://github.com/JuanZoran/Trans.nvim'
|
local github = ' https://github.com/JuanZoran/Trans.nvim'
|
||||||
|
|
||||||
-- TODO :config this
|
|
||||||
title:center_line(github, '@text.uri')
|
title:center_line(github, '@text.uri')
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -16,24 +17,38 @@ local action = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
local handle = {
|
||||||
|
title = function()
|
||||||
|
-- TODO :
|
||||||
|
end,
|
||||||
|
}
|
||||||
|
|
||||||
return function(word)
|
return function(word)
|
||||||
-- TODO :online query
|
-- TODO :online query
|
||||||
local float = require('Trans').conf.float
|
local float = require('Trans').conf.float
|
||||||
m_result = require('Trans.query.offline')(word)
|
m_result = require('Trans.query.offline')(word)
|
||||||
|
|
||||||
local opt = {
|
local opt = {
|
||||||
relative = 'editor',
|
relative = 'editor',
|
||||||
width = float.width,
|
width = float.width,
|
||||||
height = float.height,
|
height = float.height,
|
||||||
border = float.border,
|
border = float.border,
|
||||||
title = float.title,
|
title = float.title,
|
||||||
row = math.floor((vim.o.lines - float.height) / 2),
|
row = bit.rshift((vim.o.lines - float.height), 1),
|
||||||
col = math.floor((vim.o.columns - float.width) / 2),
|
col = bit.rshift((vim.o.columns - float.width), 1),
|
||||||
|
zindex = 50,
|
||||||
}
|
}
|
||||||
|
|
||||||
m_window = require('Trans.window')(true, opt)
|
m_window = require('Trans.window')(true, opt)
|
||||||
m_window.animation = float.animation
|
m_window.animation = float.animation
|
||||||
|
|
||||||
set_title()
|
set_title()
|
||||||
|
|
||||||
|
m_content = m_window.contents[2]
|
||||||
|
for _, proc in pairs(handle) do
|
||||||
|
proc()
|
||||||
|
end
|
||||||
|
|
||||||
m_window:draw()
|
m_window:draw()
|
||||||
m_window:open()
|
m_window:open()
|
||||||
m_window:bufset('bufhidden', 'wipe')
|
m_window:bufset('bufhidden', 'wipe')
|
||||||
|
@ -28,19 +28,19 @@ local tag_map = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
local pos_map = {
|
local pos_map = {
|
||||||
a = '代词pron ',
|
a = '代词pron ',
|
||||||
c = '连接词conj ',
|
c = '连接词conj ',
|
||||||
i = '介词prep ',
|
i = '介词prep ',
|
||||||
j = '形容词adj ',
|
j = '形容词adj ',
|
||||||
m = '数词num ',
|
m = '数词num ',
|
||||||
n = '名词n ',
|
n = '名词n ',
|
||||||
p = '代词pron ',
|
p = '代词pron ',
|
||||||
r = '副词adv ',
|
r = '副词adv ',
|
||||||
u = '感叹词int ',
|
u = '感叹词int ',
|
||||||
v = '动词v ',
|
v = '动词v ',
|
||||||
x = '否定标记not ',
|
x = '否定标记not ',
|
||||||
t = '不定式标记infm ',
|
t = '不定式标记infm ',
|
||||||
d = '限定词determiner',
|
d = '限定词determiner ',
|
||||||
}
|
}
|
||||||
|
|
||||||
local exchange_map = {
|
local exchange_map = {
|
||||||
@ -306,6 +306,7 @@ return function(word)
|
|||||||
m_window:set_height(height)
|
m_window:set_height(height)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- action.pageup()
|
||||||
m_window:open(function()
|
m_window:open(function()
|
||||||
m_window:set('wrap', true)
|
m_window:set('wrap', true)
|
||||||
end)
|
end)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user