2022-12-17 20:51:22 +08:00
|
|
|
|
local M = {}
|
2022-12-17 16:07:27 +08:00
|
|
|
|
|
2023-01-14 01:57:12 +08:00
|
|
|
|
M.conf = {
|
|
|
|
|
view = {
|
|
|
|
|
input = 'hover',
|
|
|
|
|
n = 'hover',
|
|
|
|
|
v = 'hover',
|
|
|
|
|
},
|
|
|
|
|
window = {
|
|
|
|
|
border = 'rounded',
|
|
|
|
|
hover = {
|
|
|
|
|
width = 36,
|
2023-01-14 14:22:25 +08:00
|
|
|
|
height = 30,
|
2023-01-14 01:57:12 +08:00
|
|
|
|
},
|
|
|
|
|
float = {
|
|
|
|
|
width = 0.8,
|
|
|
|
|
height = 0.8,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
order = {
|
|
|
|
|
-- offline = {
|
|
|
|
|
'title',
|
|
|
|
|
'tag',
|
|
|
|
|
'pos',
|
|
|
|
|
'exchange',
|
2023-01-14 10:29:01 +08:00
|
|
|
|
'translation',
|
2023-01-14 01:57:12 +08:00
|
|
|
|
-- NOTE :如果你想限制某个组件的行数,可以设置max_size
|
|
|
|
|
-- { 'Definition', max_size = 4 },
|
2023-01-14 10:29:01 +08:00
|
|
|
|
'definition',
|
2023-01-14 01:57:12 +08:00
|
|
|
|
-- },
|
|
|
|
|
-- online = {
|
|
|
|
|
-- -- TODO
|
|
|
|
|
-- },
|
|
|
|
|
},
|
|
|
|
|
icon = {
|
2023-01-14 10:29:01 +08:00
|
|
|
|
star = '',
|
|
|
|
|
notfound = '',
|
|
|
|
|
yes = '',
|
|
|
|
|
no = ''
|
|
|
|
|
-- star = '⭐',
|
|
|
|
|
-- notfound = '❔',
|
|
|
|
|
-- yes = '✔️',
|
|
|
|
|
-- no = '❌'
|
2023-01-14 01:57:12 +08:00
|
|
|
|
},
|
|
|
|
|
db_path = '$HOME/.vim/dict/ultimate.db',
|
|
|
|
|
-- TODO :
|
|
|
|
|
-- engine = {
|
|
|
|
|
-- -- TODO
|
|
|
|
|
-- 'offline',
|
|
|
|
|
-- }
|
2023-01-14 14:22:25 +08:00
|
|
|
|
keymap = {
|
2023-01-14 10:29:01 +08:00
|
|
|
|
-- TODO
|
|
|
|
|
hover = {
|
2023-01-14 14:22:25 +08:00
|
|
|
|
pageup = ']]',
|
|
|
|
|
-- pagedown = '<C-d>',
|
2023-01-14 10:29:01 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
2023-01-14 01:57:12 +08:00
|
|
|
|
-- history = {
|
|
|
|
|
-- -- TOOD
|
|
|
|
|
-- }
|
|
|
|
|
|
|
|
|
|
-- TODO add online translate engine
|
|
|
|
|
-- online_search = {
|
|
|
|
|
-- enable = false,
|
|
|
|
|
-- engine = {},
|
|
|
|
|
-- }
|
|
|
|
|
|
|
|
|
|
-- TODO register word
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-01-09 23:20:56 +08:00
|
|
|
|
M.setup = function(opts)
|
2023-01-14 01:57:12 +08:00
|
|
|
|
if opts then
|
|
|
|
|
M.conf = vim.tbl_deep_extend('force', M.conf, opts)
|
|
|
|
|
end
|
|
|
|
|
local window = M.conf.window
|
|
|
|
|
assert(window.hover.width > 1 and window.hover.height > 1)
|
|
|
|
|
assert(0 < window.float.width and window.float.width <= 1)
|
|
|
|
|
assert(0 < window.float.height and window.float.height <= 1)
|
|
|
|
|
|
|
|
|
|
window.float.height = math.floor((vim.o.lines - vim.o.cmdheight - 1) * window.float.height)
|
|
|
|
|
window.float.width = math.floor(vim.o.columns * window.float.width)
|
|
|
|
|
|
2023-01-14 14:22:25 +08:00
|
|
|
|
|
2023-01-14 01:57:12 +08:00
|
|
|
|
M.translate = require('Trans.core').translate
|
2023-01-09 23:20:56 +08:00
|
|
|
|
require("Trans.setup")
|
|
|
|
|
end
|
2022-12-17 20:51:22 +08:00
|
|
|
|
|
2023-01-14 01:57:12 +08:00
|
|
|
|
|
|
|
|
|
M.augroup = vim.api.nvim_create_augroup('Trans', { clear = true })
|
2023-01-09 18:57:20 +08:00
|
|
|
|
|
2022-12-17 16:07:27 +08:00
|
|
|
|
return M
|