chore(doc): Auto generate docs
This commit is contained in:
parent
af4bb42d59
commit
53f1998261
156
doc/Trans.txt
156
doc/Trans.txt
@ -214,87 +214,91 @@ Festival配置(仅针对linux用户) ~
|
|||||||
配置 *Trans-trans.nvim-配置*
|
配置 *Trans-trans.nvim-配置*
|
||||||
|
|
||||||
>lua
|
>lua
|
||||||
require'Trans'.setup {
|
require'Trans'.setup{
|
||||||
view = {
|
---@type string the directory for database file and password file
|
||||||
i = 'float',
|
dir = os.getenv('HOME') .. '/.vim/dict',
|
||||||
n = 'hover',
|
---@type table modeStrategy default strategy for mode
|
||||||
v = 'hover',
|
strategy = {
|
||||||
},
|
---@type { frontend:string, backend:string } fallback strategy for mode
|
||||||
hover = {
|
default = {
|
||||||
width = 37,
|
frontend = 'hover',
|
||||||
height = 27,
|
backend = '*',
|
||||||
border = 'rounded',
|
|
||||||
title = vim.fn.has('nvim-0.9') == 1 and {
|
|
||||||
{ '', 'TransTitleRound' },
|
|
||||||
{ ' Trans', 'TransTitle' },
|
|
||||||
{ '', 'TransTitleRound' },
|
|
||||||
} or nil,
|
|
||||||
keymap = {
|
|
||||||
pageup = '[[',
|
|
||||||
pagedown = ']]',
|
|
||||||
pin = '<leader>[',
|
|
||||||
close = '<leader>]',
|
|
||||||
toggle_entry = '<leader>;',
|
|
||||||
play = '_',
|
|
||||||
},
|
},
|
||||||
animation = {
|
},
|
||||||
-- open = 'fold',
|
---@type table<string, TransBackendOpts> fallback backend for mode
|
||||||
-- close = 'fold',
|
backend = {
|
||||||
open = 'slid',
|
---@class TransBackendOpts
|
||||||
close = 'slid',
|
default = {
|
||||||
interval = 12,
|
---@type integer timeout for backend send request
|
||||||
|
timeout = 2000,
|
||||||
},
|
},
|
||||||
auto_close_events = {
|
},
|
||||||
'InsertEnter',
|
---@type table frontend options
|
||||||
'CursorMoved',
|
frontend = {
|
||||||
'BufLeave',
|
---@class TransFrontendOpts
|
||||||
|
---@field keymaps table<string, string>
|
||||||
|
default = {
|
||||||
|
---@type boolean Whether to auto play the audio
|
||||||
|
auto_play = true,
|
||||||
|
border = 'rounded',
|
||||||
|
title = title, -- need nvim-0.9
|
||||||
|
---@type {open: string | boolean, close: string | boolean, interval: integer} Hover Window Animation
|
||||||
|
animation = {
|
||||||
|
open = 'slid', -- 'fold', 'slid'
|
||||||
|
close = 'slid',
|
||||||
|
interval = 12,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
---@class TransHoverOpts : TransFrontendOpts
|
||||||
|
hover = {
|
||||||
|
---@type integer Max Width of Hover Window
|
||||||
|
width = 37,
|
||||||
|
---@type integer Max Height of Hover Window
|
||||||
|
height = 27,
|
||||||
|
---@type string -- see: /lua/Trans/style/spinner
|
||||||
|
spinner = 'dots',
|
||||||
|
---@type string -- TODO :support replace with {{special word}}
|
||||||
|
fallback_message = '翻译超时或没有找到相关的翻译',
|
||||||
|
auto_resize = true,
|
||||||
|
padding = 10, -- padding for hover window width
|
||||||
|
keymaps = {
|
||||||
|
-- play = '_', -- Deprecated
|
||||||
|
pageup = '[[',
|
||||||
|
pagedown = ']]',
|
||||||
|
pin = '<leader>[',
|
||||||
|
close = '<leader>]',
|
||||||
|
toggle_entry = '<leader>;',
|
||||||
|
},
|
||||||
|
---@type string[] auto close events
|
||||||
|
auto_close_events = {
|
||||||
|
'InsertEnter',
|
||||||
|
'CursorMoved',
|
||||||
|
'BufLeave',
|
||||||
|
},
|
||||||
|
---@type string[] order to display translate result
|
||||||
|
order = {
|
||||||
|
'title',
|
||||||
|
'tag',
|
||||||
|
'pos',
|
||||||
|
'exchange',
|
||||||
|
'translation',
|
||||||
|
'definition',
|
||||||
|
},
|
||||||
|
---@type table<string, string>
|
||||||
|
icon = {
|
||||||
|
-- or use emoji
|
||||||
|
star = '', -- ⭐
|
||||||
|
notfound = ' ', -- ❔
|
||||||
|
yes = '✔', -- ✔️
|
||||||
|
no = '', -- ❌
|
||||||
|
cell = '■', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉ █
|
||||||
|
},
|
||||||
},
|
},
|
||||||
auto_play = true,
|
|
||||||
timeout = 2000,
|
|
||||||
spinner = 'dots', -- 查看所有样式: /lua/Trans/util/spinner
|
|
||||||
-- spinner = 'moon'
|
|
||||||
},
|
},
|
||||||
order = { -- only work on hover mode
|
style = {
|
||||||
'title',
|
---@type string global Trans theme [see lua/Trans/style/theme.lua]
|
||||||
'tag',
|
theme = 'default', -- default | tokyonight | dracula
|
||||||
'pos',
|
|
||||||
'exchange',
|
|
||||||
'translation',
|
|
||||||
'definition',
|
|
||||||
},
|
},
|
||||||
icon = {
|
|
||||||
star = '',
|
|
||||||
notfound = ' ',
|
|
||||||
yes = '✔',
|
|
||||||
no = '',
|
|
||||||
-- --- char: ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉ █
|
|
||||||
-- --- ◖■■■■■■■◗▫◻ ▆ ▆ ▇⃞ ▉⃞
|
|
||||||
cell = '■',
|
|
||||||
-- star = '⭐',
|
|
||||||
-- notfound = '❔',
|
|
||||||
-- yes = '✔️',
|
|
||||||
-- no = '❌'
|
|
||||||
},
|
|
||||||
theme = 'default',
|
|
||||||
dir = vim.fn.expand('$HOME/.vim/dict'),
|
|
||||||
-- 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',
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
}
|
}
|
||||||
<
|
<
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user