Trans.nvim/lua/Trans/init.lua

144 lines
3.3 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 = 37,
height = 27,
border = 'rounded',
title = {
{ '', 'TransTitleRound' },
{ ' Trans', 'TransTitle' },
{ '', 'TransTitleRound' },
2023-01-14 01:57:12 +08:00
},
keymap = {
-- TODO :
pageup = '[[',
pagedown = ']]',
2023-01-21 14:02:38 +08:00
pin = '<leader>[',
close = '<leader>]',
toggle_entry = '<leader>;',
2023-01-21 21:13:51 +08:00
play = '_',
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,
},
auto_close_events = {
'InsertEnter',
'CursorMoved',
'BufLeave',
},
2023-01-21 21:13:51 +08:00
auto_play = true,
},
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-22 22:01:47 +08:00
},
tag = {
wait = '#519aba',
fail = '#e46876',
success = '#10b981',
},
engine = {
'本地',
}
2023-01-14 01:57:12 +08:00
},
2023-01-22 22:01:47 +08:00
order = { -- only work on hover mode
2023-01-14 01:57:12 +08:00
'title',
'tag',
'pos',
'exchange',
2023-01-14 10:29:01 +08:00
'translation',
'definition',
2023-01-14 01:57:12 +08:00
},
icon = {
2023-01-14 10:29:01 +08:00
star = '',
2023-01-21 21:13:51 +08:00
notfound = '',
yes = '',
no = ''
2023-01-22 11:15:48 +08:00
-- star = '⭐',
-- notfound = '❔',
2023-01-21 21:13:51 +08:00
-- yes = '✔️',
-- no = '❌'
2023-01-14 01:57:12 +08:00
},
2023-01-25 11:04:18 +08:00
theme = 'default',
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-25 11:04:18 +08:00
if vim.fn.executable('sqlite3') ~= 1 then
error('Please check out sqlite3')
end
vim.api.nvim_create_user_command('Translate', function()
require("Trans").translate()
end, { desc = ' 单词翻译', })
vim.api.nvim_create_user_command('TranslateInput', function()
require("Trans").translate('i')
end, { desc = ' 搜索翻译' })
local hls = require('Trans.theme')[M.conf.theme]
for hl, opt in pairs(hls) do
vim.api.nvim_set_hl(0, hl, opt)
end
2023-01-09 23:20:56 +08:00
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