2023-03-14 18:17:07 +08:00
|
|
|
---@class Trans
|
|
|
|
---@field conf TransConf
|
|
|
|
|
|
|
|
|
|
|
|
---@class TransConf
|
2023-03-09 19:42:41 +08:00
|
|
|
return {
|
2023-03-14 18:17:07 +08:00
|
|
|
---@type string the directory for database file and password file
|
2023-03-23 14:56:48 +08:00
|
|
|
dir = require('Trans').relative_path({ 'extra' }, true),
|
|
|
|
debug = true,
|
2023-03-15 19:27:21 +08:00
|
|
|
---@type 'default' | 'dracula' | 'tokyonight' global Trans theme [see lua/Trans/style/theme.lua]
|
2023-03-23 14:56:48 +08:00
|
|
|
theme = 'default', -- default | tokyonight | dracula
|
|
|
|
strategy = {
|
2023-03-15 19:27:21 +08:00
|
|
|
---@type { frontend:string, backend:string | string[] } fallback strategy for mode
|
2023-03-12 20:09:08 +08:00
|
|
|
default = {
|
|
|
|
frontend = 'hover',
|
|
|
|
backend = '*',
|
|
|
|
},
|
2023-03-09 19:42:41 +08:00
|
|
|
},
|
2023-03-14 18:17:07 +08:00
|
|
|
---@type table frontend options
|
2023-03-23 14:56:48 +08:00
|
|
|
frontend = {
|
2023-03-14 18:17:07 +08:00
|
|
|
---@class TransFrontendOpts
|
|
|
|
---@field keymaps table<string, string>
|
2023-03-12 20:09:08 +08:00
|
|
|
default = {
|
2023-03-23 17:31:02 +08:00
|
|
|
query = 'fallback',
|
|
|
|
border = 'rounded',
|
|
|
|
title = vim.fn.has('nvim-0.9') == 1 and {
|
2023-03-22 21:55:08 +08:00
|
|
|
{ '', 'TransTitleRound' },
|
|
|
|
{ ' Trans', 'TransTitle' },
|
|
|
|
{ '', 'TransTitleRound' },
|
|
|
|
} or nil, -- need nvim-0.9+
|
2023-03-19 20:15:36 +08:00
|
|
|
auto_play = true,
|
2023-03-14 18:17:07 +08:00
|
|
|
---@type {open: string | boolean, close: string | boolean, interval: integer} Hover Window Animation
|
2023-03-12 20:09:08 +08:00
|
|
|
animation = {
|
|
|
|
open = 'slid', -- 'fold', 'slid'
|
|
|
|
close = 'slid',
|
|
|
|
interval = 12,
|
|
|
|
},
|
2023-03-23 17:31:02 +08:00
|
|
|
timeout = 2000,
|
2023-03-12 09:56:31 +08:00
|
|
|
},
|
2023-03-14 22:30:25 +08:00
|
|
|
---@class TransHoverOpts : TransFrontendOpts
|
2023-03-11 00:24:48 +08:00
|
|
|
hover = {
|
2023-03-14 18:17:07 +08:00
|
|
|
---@type integer Max Width of Hover Window
|
2023-03-23 17:31:02 +08:00
|
|
|
width = 37,
|
2023-03-14 18:17:07 +08:00
|
|
|
---@type integer Max Height of Hover Window
|
2023-03-23 17:31:02 +08:00
|
|
|
height = 27,
|
2023-03-14 18:17:07 +08:00
|
|
|
---@type string -- see: /lua/Trans/style/spinner
|
2023-03-23 17:31:02 +08:00
|
|
|
spinner = 'dots',
|
|
|
|
---@type string
|
|
|
|
fallback_message = '{{notfound}} 翻译超时或没有找到相关的翻译',
|
|
|
|
auto_resize = true,
|
|
|
|
unlimit_sentence_width = true,
|
|
|
|
padding = 10, -- padding for hover window width
|
|
|
|
keymaps = {
|
2023-03-12 09:56:31 +08:00
|
|
|
pageup = '[[',
|
|
|
|
pagedown = ']]',
|
|
|
|
pin = '<leader>[',
|
|
|
|
close = '<leader>]',
|
2023-03-11 00:24:48 +08:00
|
|
|
toggle_entry = '<leader>;',
|
2023-03-15 19:27:21 +08:00
|
|
|
-- play = '_', -- Deprecated
|
2023-03-11 00:24:48 +08:00
|
|
|
},
|
2023-03-14 18:17:07 +08:00
|
|
|
---@type string[] auto close events
|
2023-03-23 17:31:02 +08:00
|
|
|
auto_close_events = {
|
2023-03-11 00:24:48 +08:00
|
|
|
'InsertEnter',
|
|
|
|
'CursorMoved',
|
|
|
|
'BufLeave',
|
|
|
|
},
|
2023-03-16 11:49:26 +08:00
|
|
|
---@type table<string, string[]> order to display translate result
|
2023-03-23 17:31:02 +08:00
|
|
|
order = {
|
2023-03-16 16:07:44 +08:00
|
|
|
default = {
|
|
|
|
'str',
|
|
|
|
'translation',
|
|
|
|
'definition',
|
|
|
|
},
|
2023-03-16 11:49:26 +08:00
|
|
|
offline = {
|
|
|
|
'title',
|
|
|
|
'tag',
|
|
|
|
'pos',
|
|
|
|
'exchange',
|
|
|
|
'translation',
|
|
|
|
'definition',
|
|
|
|
},
|
2023-03-16 21:15:00 +08:00
|
|
|
youdao = {
|
|
|
|
'title',
|
|
|
|
'translation',
|
|
|
|
'definition',
|
|
|
|
'web',
|
|
|
|
}
|
2023-03-11 00:24:48 +08:00
|
|
|
},
|
2023-03-14 18:17:07 +08:00
|
|
|
---@type table<string, string>
|
2023-03-23 17:31:02 +08:00
|
|
|
icon = {
|
2023-03-13 11:51:46 +08:00
|
|
|
-- or use emoji
|
2023-03-19 20:15:36 +08:00
|
|
|
list = '●', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | 🟢 | 🟡 | 🟣 | 🟤 | 🟠| 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟦
|
2023-03-17 09:26:55 +08:00
|
|
|
star = '', -- ⭐ | ✴ | ✳ | ✲ | ✱ | ✰ | ★ | ☆ | 🌟 | 🌠 | 🌙 | 🌛 | 🌜 | 🌟 | 🌠 | 🌌 | 🌙 |
|
|
|
|
notfound = ' ', --❔ | ❓ | ❗ | ❕|
|
|
|
|
yes = '✔', -- ✅ | ✔️ | ☑
|
|
|
|
no = '', -- ❌ | ❎ | ✖ | ✘ | ✗ |
|
2023-03-19 20:15:36 +08:00
|
|
|
cell = '■', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉
|
2023-03-17 09:26:55 +08:00
|
|
|
web = '', --🌍 | 🌎 | 🌏 | 🌐 |
|
2023-03-17 22:17:17 +08:00
|
|
|
tag = '',
|
2023-03-17 09:26:55 +08:00
|
|
|
pos = '',
|
2023-03-17 22:17:17 +08:00
|
|
|
exchange = '',
|
2023-03-19 20:15:36 +08:00
|
|
|
definition = '',
|
|
|
|
translation = '',
|
2023-03-13 11:51:46 +08:00
|
|
|
},
|
2023-03-11 00:24:48 +08:00
|
|
|
},
|
2023-03-09 19:42:41 +08:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-03-11 00:24:48 +08:00
|
|
|
-- TODO :
|
|
|
|
-- float = {
|
|
|
|
-- width = 0.8,
|
|
|
|
-- height = 0.8,
|
|
|
|
-- border = 'rounded',
|
|
|
|
-- keymap = {
|
|
|
|
-- quit = 'q',
|
|
|
|
-- },
|
|
|
|
-- animation = {
|
|
|
|
-- open = 'fold',
|
|
|
|
-- close = 'fold',
|
|
|
|
-- interval = 10,
|
|
|
|
-- },
|
|
|
|
-- tag = {
|
|
|
|
-- wait = '#519aba',
|
|
|
|
-- fail = '#e46876',
|
|
|
|
-- success = '#10b981',
|
|
|
|
-- },
|
|
|
|
-- },
|
2023-03-09 19:42:41 +08:00
|
|
|
|
2023-03-23 14:56:48 +08:00
|
|
|
|
2023-03-09 19:42:41 +08:00
|
|
|
-- local title = {
|
|
|
|
-- "████████╗██████╗ █████╗ ███╗ ██╗███████╗",
|
|
|
|
-- "╚══██╔══╝██╔══██╗██╔══██╗████╗ ██║██╔════╝",
|
|
|
|
-- " ██║ ██████╔╝███████║██╔██╗ ██║███████╗",
|
|
|
|
-- " ██║ ██╔══██╗██╔══██║██║╚██╗██║╚════██║",
|
|
|
|
-- " ██║ ██║ ██║██║ ██║██║ ╚████║███████║",
|
|
|
|
-- " ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚══════╝",
|
|
|
|
--}
|