From c58e59edcff9a1f5d065104b1dce806f5b728634 Mon Sep 17 00:00:00 2001 From: JuanZoran <1430359574@qq.com> Date: Mon, 19 Dec 2022 23:19:23 +0800 Subject: [PATCH] fix: window entry fix --- lua/Trans/display.lua | 8 ++++---- lua/Trans/setup.lua | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/lua/Trans/display.lua b/lua/Trans/display.lua index 72f61b0..5a65d5d 100644 --- a/lua/Trans/display.lua +++ b/lua/Trans/display.lua @@ -25,12 +25,12 @@ vim.api.nvim_buf_set_option(buf, 'filetype', 'Trans') -- } local function show_win(width, height) - local win = vim.api.nvim_open_win(buf, true, { + local win = vim.api.nvim_open_win(buf, false, { relative = 'cursor', title = 'Trans', title_pos = 'center', style = display.style, - row = 0, col = 0, width = width > display.max_width and display.max_width or width, + row = 2, col = 2, width = width > display.max_width and display.max_width or width, height = height > display.max_height and display.max_height or height, border = 'rounded', focusable = false, @@ -55,7 +55,6 @@ local function get_text(query_res) table.insert(text, '标签:') table.insert(text, ' ' .. tag) end - table.insert(text, '') -- NOTE: pos 词性 if display.pos and query_res.pos:len() > 0 then @@ -63,6 +62,7 @@ local function get_text(query_res) -- TODO: figure out pos sense table.insert(text, ' ' .. query_res.pos) end + table.insert(text, '') -- NOTE: exchange if display.exchange and query_res.exchange:len() > 0 then @@ -126,7 +126,7 @@ function M.query_cursor() local word = vim.fn.expand('') local res = require("Trans.database").query(word) - vim.pretty_print(res) + -- vim.pretty_print(res) local width, height = set_text(res) show_win(width, height) diff --git a/lua/Trans/setup.lua b/lua/Trans/setup.lua index f1adcdd..1b65e67 100644 --- a/lua/Trans/setup.lua +++ b/lua/Trans/setup.lua @@ -15,3 +15,4 @@ vim.api.nvim_create_autocmd('VimLeave', { vim.api.nvim_create_user_command('TranslateCurosorWord', require("Trans").query_cursor, {}) -- TODO: set command to close preview window automatically +