fix: fix offset mistake

This commit is contained in:
JuanZoran 2023-01-22 11:15:48 +08:00
parent 0964a9c3c4
commit 5135f2f6f9
4 changed files with 38 additions and 21 deletions

View File

@ -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

View File

@ -71,13 +71,13 @@ M.conf = {
},
icon = {
star = '',
-- notfound = '❔',
notfound = '',
yes = '',
no = ''
-- star = '⭐',
-- notfound = '❔',
-- yes = '✔️',
-- no = '❌'
-- star = '⭐',
},
db_path = '$HOME/.vim/dict/ultimate.db',

View File

@ -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,6 +17,12 @@ local action = {
}
local handle = {
title = function()
-- TODO :
end,
}
return function(word)
-- TODO :online query
local float = require('Trans').conf.float
@ -27,13 +34,21 @@ return function(word)
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')

View File

@ -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)