fix: add debug message

This commit is contained in:
JuanZoran 2023-01-26 23:40:18 +08:00
parent 110e49cf1a
commit 6657392a27
2 changed files with 17 additions and 18 deletions

View File

@ -45,11 +45,7 @@ M.conf = {
width = 0.8,
height = 0.8,
border = 'rounded',
title = {
{ '', 'TransTitleRound' },
{ ' Trans', 'TransTitle' },
{ '', 'TransTitleRound' },
},
title = title,
keymap = {
quit = 'q',
},
@ -104,15 +100,16 @@ M.setup = function(opts)
if opts then
M.conf = vim.tbl_deep_extend('force', M.conf, opts)
end
local hover = M.conf.hover
local float = M.conf.float
assert(hover.width > 1 and hover.height > 1)
assert(0 < float.width and float.width <= 1)
assert(0 < float.height and float.height <= 1)
if float.height < 0 and float.height <= 1 then
float.height = math.floor((vim.o.lines - vim.o.cmdheight - 1) * float.height)
end
if float.width < 0 and float.width <= 1 then
float.width = math.floor(vim.o.columns * float.width)
end
M.translate = require('Trans.translate')

View File

@ -213,8 +213,10 @@ return function(entry, option)
end
local bufnr = api.nvim_create_buf(false, true)
local winid = api.nvim_open_win(bufnr, entry, opt)
local ok, winid = pcall(api.nvim_open_win, bufnr, entry, opt)
if not ok then
error('open window faild: ' .. vim.inspect(opt))
end
local win
win = {