fix: window entry fix
This commit is contained in:
parent
dc531951ff
commit
c58e59edcf
@ -25,12 +25,12 @@ vim.api.nvim_buf_set_option(buf, 'filetype', 'Trans')
|
|||||||
-- }
|
-- }
|
||||||
|
|
||||||
local function show_win(width, height)
|
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',
|
relative = 'cursor',
|
||||||
title = 'Trans',
|
title = 'Trans',
|
||||||
title_pos = 'center',
|
title_pos = 'center',
|
||||||
style = display.style,
|
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,
|
height = height > display.max_height and display.max_height or height,
|
||||||
border = 'rounded',
|
border = 'rounded',
|
||||||
focusable = false,
|
focusable = false,
|
||||||
@ -55,7 +55,6 @@ local function get_text(query_res)
|
|||||||
table.insert(text, '标签:')
|
table.insert(text, '标签:')
|
||||||
table.insert(text, ' ' .. tag)
|
table.insert(text, ' ' .. tag)
|
||||||
end
|
end
|
||||||
table.insert(text, '')
|
|
||||||
|
|
||||||
-- NOTE: pos 词性
|
-- NOTE: pos 词性
|
||||||
if display.pos and query_res.pos:len() > 0 then
|
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
|
-- TODO: figure out pos sense
|
||||||
table.insert(text, ' ' .. query_res.pos)
|
table.insert(text, ' ' .. query_res.pos)
|
||||||
end
|
end
|
||||||
|
table.insert(text, '')
|
||||||
|
|
||||||
-- NOTE: exchange
|
-- NOTE: exchange
|
||||||
if display.exchange and query_res.exchange:len() > 0 then
|
if display.exchange and query_res.exchange:len() > 0 then
|
||||||
@ -126,7 +126,7 @@ function M.query_cursor()
|
|||||||
local word = vim.fn.expand('<cword>')
|
local word = vim.fn.expand('<cword>')
|
||||||
local res = require("Trans.database").query(word)
|
local res = require("Trans.database").query(word)
|
||||||
|
|
||||||
vim.pretty_print(res)
|
-- vim.pretty_print(res)
|
||||||
|
|
||||||
local width, height = set_text(res)
|
local width, height = set_text(res)
|
||||||
show_win(width, height)
|
show_win(width, height)
|
||||||
|
@ -15,3 +15,4 @@ vim.api.nvim_create_autocmd('VimLeave', {
|
|||||||
vim.api.nvim_create_user_command('TranslateCurosorWord', require("Trans").query_cursor, {})
|
vim.api.nvim_create_user_command('TranslateCurosorWord', require("Trans").query_cursor, {})
|
||||||
|
|
||||||
-- TODO: set command to close preview window automatically
|
-- TODO: set command to close preview window automatically
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user