From 5135f2f6f9dc6fc4cc3d26630f63fb84b83dde65 Mon Sep 17 00:00:00 2001 From: JuanZoran <1430359574@qq.com> Date: Sun, 22 Jan 2023 11:15:48 +0800 Subject: [PATCH] fix: fix offset mistake --- lua/Trans/content.lua | 3 ++- lua/Trans/init.lua | 4 ++-- lua/Trans/view/float.lua | 25 ++++++++++++++++++++----- lua/Trans/view/hover.lua | 27 ++++++++++++++------------- 4 files changed, 38 insertions(+), 21 deletions(-) diff --git a/lua/Trans/content.lua b/lua/Trans/content.lua index 297cddf..5c3a4a9 100644 --- a/lua/Trans/content.lua +++ b/lua/Trans/content.lua @@ -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 diff --git a/lua/Trans/init.lua b/lua/Trans/init.lua index b1ff8dc..fc7ba89 100644 --- a/lua/Trans/init.lua +++ b/lua/Trans/init.lua @@ -71,13 +71,13 @@ M.conf = { }, icon = { star = '', - -- notfound = '❔', notfound = ' ', yes = ' ', no = '' + -- star = '⭐', + -- notfound = '❔', -- yes = '✔️', -- no = '❌' - -- star = '⭐', }, db_path = '$HOME/.vim/dict/ultimate.db', diff --git a/lua/Trans/view/float.lua b/lua/Trans/view/float.lua index b4c582f..d305926 100644 --- a/lua/Trans/view/float.lua +++ b/lua/Trans/view/float.lua @@ -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') diff --git a/lua/Trans/view/hover.lua b/lua/Trans/view/hover.lua index 5f6a692..8def97c 100644 --- a/lua/Trans/view/hover.lua +++ b/lua/Trans/view/hover.lua @@ -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)