Trans.nvim/lua/Trans/init.lua

160 lines
3.7 KiB
Lua
Raw Normal View History

2022-12-17 20:51:22 +08:00
local M = {}
2022-12-17 16:07:27 +08:00
local title = vim.fn.has('nvim-0.9') == 1 and {
2023-01-26 23:40:18 +08:00
{ '', 'TransTitleRound' },
{ ' Trans', 'TransTitle' },
{ '', 'TransTitleRound' },
} or nil
2023-01-26 22:40:23 +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',
2023-01-26 22:40:23 +08:00
title = title,
keymap = {
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,
2023-01-31 22:29:40 +08:00
timeout = 2000,
2023-01-31 11:45:45 +08:00
spinner = 'dots', -- 查看所有样式: /lua/Trans/util/spinner
-- spinner = 'moon'
},
float = {
width = 0.8,
height = 0.8,
border = 'rounded',
2023-01-26 23:40:18 +08:00
title = title,
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',
},
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 = '',
2023-01-31 11:45:45 +08:00
yes = '',
no = '',
2023-01-31 23:17:03 +08:00
-- --- char: ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉ █
-- --- ◖■■■■■■■◗▫◻ ▆ ▆ ▇⃞ ▉⃞
2023-01-31 11:45:45 +08:00
cell = '',
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-25 11:18:30 +08:00
-- theme = 'dracula',
-- theme = 'tokyonight',
2023-01-14 01:57:12 +08:00
db_path = '$HOME/.vim/dict/ultimate.db',
engine = {
2023-01-30 20:09:57 +08:00
-- baidu = {
-- appid = '',
-- appPasswd = '',
-- },
-- -- youdao = {
-- appkey = '',
-- appPasswd = '',
-- },
},
-- TODO :
2023-01-25 11:18:30 +08:00
-- register word
2023-01-14 01:57:12 +08:00
-- history = {
-- -- TOOD
-- }
2023-01-25 11:18:30 +08:00
-- TODO :add online translate engine
2023-01-14 01:57:12 +08:00
}
2023-01-31 11:45:45 +08:00
local times = 0
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
2023-01-31 23:17:03 +08:00
local conf = M.conf
2023-01-26 23:40:18 +08:00
2023-01-31 23:17:03 +08:00
local float = conf.float
if 0 < float.height and float.height <= 1 then
2023-01-26 23:40:18 +08:00
float.height = math.floor((vim.o.lines - vim.o.cmdheight - 1) * float.height)
end
if 0 < float.width and float.width <= 1 then
2023-01-26 23:40:18 +08:00
float.width = math.floor(vim.o.columns * float.width)
end
2023-01-31 23:17:03 +08:00
local engines = {}
for k, _ in pairs(conf.engine) do
table.insert(engines, k)
end
conf.engines = engines
2023-01-31 11:45:45 +08:00
times = times + 1
if times == 1 then
M.translate = require('Trans.translate')
2023-01-25 11:04:18 +08:00
2023-01-31 11:45:45 +08:00
if vim.fn.executable('sqlite3') ~= 1 then
error('Please check out sqlite3')
end
2023-01-25 11:04:18 +08:00
2023-01-31 23:17:03 +08:00
vim.api.nvim_create_user_command('Translate', function()
2023-01-31 11:45:45 +08:00
M.translate()
end, { desc = ' 单词翻译', })
2023-01-25 11:04:18 +08:00
2023-01-31 11:45:45 +08:00
vim.api.nvim_create_user_command('TranslateInput', function()
M.translate('i')
end, { desc = ' 搜索翻译' })
2023-01-25 11:04:18 +08:00
2023-01-31 23:17:03 +08:00
local hls = require('Trans.ui.theme')[conf.theme]
2023-01-31 11:45:45 +08:00
for hl, opt in pairs(hls) do
vim.api.nvim_set_hl(0, hl, opt)
end
2023-01-25 11:04:18 +08:00
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