Merge pull request #15 from JuanZoran/experimental
fix: add debug message
This commit is contained in:
commit
285e6ecf03
@ -1,11 +1,11 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
|
|
||||||
local title = vim.fn.has('nvim-0.9') and{
|
local title = vim.fn.has('nvim-0.9') and {
|
||||||
{ '', 'TransTitleRound' },
|
{ '', 'TransTitleRound' },
|
||||||
{ ' Trans', 'TransTitle' },
|
{ ' Trans', 'TransTitle' },
|
||||||
{ '', 'TransTitleRound' },
|
{ '', 'TransTitleRound' },
|
||||||
} or ' Trans'
|
} or ' Trans'
|
||||||
|
|
||||||
M.conf = {
|
M.conf = {
|
||||||
view = {
|
view = {
|
||||||
@ -45,11 +45,7 @@ M.conf = {
|
|||||||
width = 0.8,
|
width = 0.8,
|
||||||
height = 0.8,
|
height = 0.8,
|
||||||
border = 'rounded',
|
border = 'rounded',
|
||||||
title = {
|
title = title,
|
||||||
{ '', 'TransTitleRound' },
|
|
||||||
{ ' Trans', 'TransTitle' },
|
|
||||||
{ '', 'TransTitleRound' },
|
|
||||||
},
|
|
||||||
keymap = {
|
keymap = {
|
||||||
quit = 'q',
|
quit = 'q',
|
||||||
},
|
},
|
||||||
@ -104,15 +100,16 @@ M.setup = function(opts)
|
|||||||
if opts then
|
if opts then
|
||||||
M.conf = vim.tbl_deep_extend('force', M.conf, opts)
|
M.conf = vim.tbl_deep_extend('force', M.conf, opts)
|
||||||
end
|
end
|
||||||
local hover = M.conf.hover
|
|
||||||
local float = M.conf.float
|
local float = M.conf.float
|
||||||
|
|
||||||
assert(hover.width > 1 and hover.height > 1)
|
if float.height < 0 and float.height <= 1 then
|
||||||
assert(0 < float.width and float.width <= 1)
|
float.height = math.floor((vim.o.lines - vim.o.cmdheight - 1) * float.height)
|
||||||
assert(0 < float.height and float.height <= 1)
|
end
|
||||||
|
|
||||||
float.height = math.floor((vim.o.lines - vim.o.cmdheight - 1) * float.height)
|
if float.width < 0 and float.width <= 1 then
|
||||||
float.width = math.floor(vim.o.columns * float.width)
|
float.width = math.floor(vim.o.columns * float.width)
|
||||||
|
end
|
||||||
|
|
||||||
M.translate = require('Trans.translate')
|
M.translate = require('Trans.translate')
|
||||||
|
|
||||||
|
@ -213,8 +213,10 @@ return function(entry, option)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local bufnr = api.nvim_create_buf(false, true)
|
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
|
local win
|
||||||
win = {
|
win = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user