Trans.nvim/lua/Trans/init.lua

115 lines
2.4 KiB
Lua
Raw Normal View History

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 = {
i = 'float',
2023-01-14 01:57:12 +08:00
n = 'hover',
v = 'hover',
},
hover = {
width = 36,
height = 26,
border = 'rounded',
title = {
{ '', 'TransTitleRound' },
{ ' Trans', 'TransTitle' },
{ '', 'TransTitleRound' },
2023-01-14 01:57:12 +08:00
},
keymap = {
-- TODO :
pageup = '[[',
pagedown = ']]',
pin = '_',
close = '+',
2023-01-14 01:57:12 +08:00
},
animation = {
2023-01-21 00:24:58 +08:00
-- open = 'fold',
-- close = 'fold',
open = 'slid',
close = 'slid',
interval = 12,
}
},
float = {
width = 0.8,
height = 0.8,
border = 'rounded',
title = {
{ '', 'TransTitleRound' },
{ ' Trans', 'TransTitle' },
{ '', 'TransTitleRound' },
},
keymap = {
quit = 'q',
},
animation = {
2023-01-21 00:24:58 +08:00
open = 'fold',
close = 'fold',
interval = 10,
}
2023-01-14 01:57:12 +08:00
},
order = {
-- offline = {
'title',
'tag',
'pos',
'exchange',
2023-01-14 10:29:01 +08:00
'translation',
'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 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 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)
2023-01-14 01:57:12 +08:00
float.height = math.floor((vim.o.lines - vim.o.cmdheight - 1) * float.height)
float.width = math.floor(vim.o.columns * float.width)
M.translate = require('Trans.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