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