chore: use conf.theme instead of conf.style.theme
This commit is contained in:
parent
52238cb1e7
commit
21351b3a26
120
README.md
120
README.md
@ -234,46 +234,68 @@ use {
|
|||||||
|
|
||||||
```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
|
||||||
|
default = {
|
||||||
|
frontend = 'hover',
|
||||||
|
backend = '*',
|
||||||
},
|
},
|
||||||
hover = {
|
},
|
||||||
width = 37,
|
---@type table<string, TransBackendOpts> fallback backend for mode
|
||||||
height = 27,
|
backend = {
|
||||||
|
---@class TransBackendOpts
|
||||||
|
default = {
|
||||||
|
---@type integer timeout for backend send request
|
||||||
|
timeout = 2000,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
---@type table frontend options
|
||||||
|
frontend = {
|
||||||
|
---@class TransFrontendOpts
|
||||||
|
---@field keymaps table<string, string>
|
||||||
|
default = {
|
||||||
|
---@type boolean Whether to auto play the audio
|
||||||
|
auto_play = true,
|
||||||
border = 'rounded',
|
border = 'rounded',
|
||||||
title = vim.fn.has('nvim-0.9') == 1 and {
|
title = title, -- need nvim-0.9
|
||||||
{ '', 'TransTitleRound' },
|
---@type {open: string | boolean, close: string | boolean, interval: integer} Hover Window Animation
|
||||||
{ ' Trans', 'TransTitle' },
|
animation = {
|
||||||
{ '', 'TransTitleRound' },
|
open = 'slid', -- 'fold', 'slid'
|
||||||
} or nil,
|
close = 'slid',
|
||||||
keymap = {
|
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 = '[[',
|
pageup = '[[',
|
||||||
pagedown = ']]',
|
pagedown = ']]',
|
||||||
pin = '<leader>[',
|
pin = '<leader>[',
|
||||||
close = '<leader>]',
|
close = '<leader>]',
|
||||||
toggle_entry = '<leader>;',
|
toggle_entry = '<leader>;',
|
||||||
play = '_',
|
|
||||||
},
|
|
||||||
animation = {
|
|
||||||
-- open = 'fold',
|
|
||||||
-- close = 'fold',
|
|
||||||
open = 'slid',
|
|
||||||
close = 'slid',
|
|
||||||
interval = 12,
|
|
||||||
},
|
},
|
||||||
|
---@type string[] auto close events
|
||||||
auto_close_events = {
|
auto_close_events = {
|
||||||
'InsertEnter',
|
'InsertEnter',
|
||||||
'CursorMoved',
|
'CursorMoved',
|
||||||
'BufLeave',
|
'BufLeave',
|
||||||
},
|
},
|
||||||
auto_play = true,
|
---@type string[] order to display translate result
|
||||||
timeout = 2000,
|
order = {
|
||||||
spinner = 'dots', -- 查看所有样式: /lua/Trans/util/spinner
|
|
||||||
-- spinner = 'moon'
|
|
||||||
},
|
|
||||||
order = { -- only work on hover mode
|
|
||||||
'title',
|
'title',
|
||||||
'tag',
|
'tag',
|
||||||
'pos',
|
'pos',
|
||||||
@ -281,39 +303,21 @@ require'Trans'.setup {
|
|||||||
'translation',
|
'translation',
|
||||||
'definition',
|
'definition',
|
||||||
},
|
},
|
||||||
|
---@type table<string, string>
|
||||||
icon = {
|
icon = {
|
||||||
star = '',
|
-- or use emoji
|
||||||
notfound = ' ',
|
star = '', -- ⭐
|
||||||
yes = '✔',
|
notfound = ' ', -- ❔
|
||||||
no = '',
|
yes = '✔', -- ✔️
|
||||||
-- --- char: ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉ █
|
no = '', -- ❌
|
||||||
-- --- ◖■■■■■■■◗▫◻ ▆ ▆ ▇⃞ ▉⃞
|
cell = '■', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉ █
|
||||||
cell = '■',
|
},
|
||||||
-- star = '⭐',
|
},
|
||||||
-- notfound = '❔',
|
},
|
||||||
-- yes = '✔️',
|
style = {
|
||||||
-- no = '❌'
|
---@type string global Trans theme [see lua/Trans/style/theme.lua]
|
||||||
|
theme = 'default', -- default | tokyonight | dracula
|
||||||
},
|
},
|
||||||
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',
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
}
|
}
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -7,7 +7,6 @@ if vim.fn.has('nvim-0.9') == 1 then
|
|||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
---@class Trans
|
---@class Trans
|
||||||
---@field conf TransConf
|
---@field conf TransConf
|
||||||
|
|
||||||
@ -16,9 +15,11 @@ end
|
|||||||
return {
|
return {
|
||||||
---@type string the directory for database file and password file
|
---@type string the directory for database file and password file
|
||||||
dir = os.getenv('HOME') .. '/.vim/dict',
|
dir = os.getenv('HOME') .. '/.vim/dict',
|
||||||
---@type table modeStrategy default strategy for mode
|
query = 'fallback',
|
||||||
|
---@type 'default' | 'dracula' | 'tokyonight' global Trans theme [see lua/Trans/style/theme.lua]
|
||||||
|
theme = 'default', -- default | tokyonight | dracula
|
||||||
strategy = {
|
strategy = {
|
||||||
---@type { frontend:string, backend:string } fallback strategy for mode
|
---@type { frontend:string, backend:string | string[] } fallback strategy for mode
|
||||||
default = {
|
default = {
|
||||||
frontend = 'hover',
|
frontend = 'hover',
|
||||||
backend = '*',
|
backend = '*',
|
||||||
@ -26,9 +27,8 @@ return {
|
|||||||
},
|
},
|
||||||
---@type table<string, TransBackendOpts> fallback backend for mode
|
---@type table<string, TransBackendOpts> fallback backend for mode
|
||||||
backend = {
|
backend = {
|
||||||
---@class TransBackendOpts
|
---@class TransBackendOpts -- TODO :More core options
|
||||||
default = {
|
default = {
|
||||||
---@type integer timeout for backend send request
|
|
||||||
timeout = 2000,
|
timeout = 2000,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -57,16 +57,16 @@ return {
|
|||||||
---@type string -- see: /lua/Trans/style/spinner
|
---@type string -- see: /lua/Trans/style/spinner
|
||||||
spinner = 'dots',
|
spinner = 'dots',
|
||||||
---@type string -- TODO :support replace with {{special word}}
|
---@type string -- TODO :support replace with {{special word}}
|
||||||
fallback_message = '翻译超时或没有找到相关的翻译',
|
fallback_message = '{{notfound}} 翻译超时或没有找到相关的翻译',
|
||||||
auto_resize = true,
|
auto_resize = true,
|
||||||
padding = 10, -- padding for hover window width
|
padding = 10, -- padding for hover window width
|
||||||
keymaps = {
|
keymaps = {
|
||||||
-- play = '_', -- Deprecated
|
|
||||||
pageup = '[[',
|
pageup = '[[',
|
||||||
pagedown = ']]',
|
pagedown = ']]',
|
||||||
pin = '<leader>[',
|
pin = '<leader>[',
|
||||||
close = '<leader>]',
|
close = '<leader>]',
|
||||||
toggle_entry = '<leader>;',
|
toggle_entry = '<leader>;',
|
||||||
|
-- play = '_', -- Deprecated
|
||||||
},
|
},
|
||||||
---@type string[] auto close events
|
---@type string[] auto close events
|
||||||
auto_close_events = {
|
auto_close_events = {
|
||||||
@ -94,10 +94,6 @@ return {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
style = {
|
|
||||||
---@type string global Trans theme [see lua/Trans/style/theme.lua]
|
|
||||||
theme = 'default', -- default | tokyonight | dracula
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ end
|
|||||||
|
|
||||||
local function define_highlights(conf)
|
local function define_highlights(conf)
|
||||||
local set_hl = vim.api.nvim_set_hl
|
local set_hl = vim.api.nvim_set_hl
|
||||||
local highlights = Trans.style.theme[conf.style.theme]
|
local highlights = Trans.style.theme[conf.theme]
|
||||||
for hl, opt in pairs(highlights) do
|
for hl, opt in pairs(highlights) do
|
||||||
set_hl(0, hl, opt)
|
set_hl(0, hl, opt)
|
||||||
end
|
end
|
||||||
|
@ -22,6 +22,8 @@ local function do_query(data)
|
|||||||
---@type TransFrontend
|
---@type TransFrontend
|
||||||
local frontend = data.frontend
|
local frontend = data.frontend
|
||||||
local result = data.result
|
local result = data.result
|
||||||
|
|
||||||
|
|
||||||
for _, backend in ipairs(data.backends) do
|
for _, backend in ipairs(data.backends) do
|
||||||
---@cast backend TransBackend
|
---@cast backend TransBackend
|
||||||
local name = backend.name
|
local name = backend.name
|
||||||
@ -40,7 +42,6 @@ local function do_query(data)
|
|||||||
result[name] = nil
|
result[name] = nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,6 +12,7 @@ local strategy = {
|
|||||||
|
|
||||||
pin = function(hover)
|
pin = function(hover)
|
||||||
if hover.pin then return end
|
if hover.pin then return end
|
||||||
|
hover.pin = true
|
||||||
local window = hover.window
|
local window = hover.window
|
||||||
local width, height = window:width(), window:height()
|
local width, height = window:width(), window:height()
|
||||||
local col = vim.o.columns - width - 3
|
local col = vim.o.columns - width - 3
|
||||||
@ -25,7 +26,6 @@ local strategy = {
|
|||||||
})
|
})
|
||||||
|
|
||||||
window:set('wrap', true)
|
window:set('wrap', true)
|
||||||
hover.pin = true
|
|
||||||
end,
|
end,
|
||||||
|
|
||||||
close = function(hover)
|
close = function(hover)
|
||||||
|
@ -124,7 +124,6 @@ function M:wait(tbl, name, timeout)
|
|||||||
pause(interval)
|
pause(interval)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
-- FIXME :
|
-- FIXME :
|
||||||
-- buffer:wipe()
|
-- buffer:wipe()
|
||||||
-- vim.api.nvim_buf_set_lines(buffer.bufnr, 1, -1, true, {})
|
-- vim.api.nvim_buf_set_lines(buffer.bufnr, 1, -1, true, {})
|
||||||
@ -139,6 +138,7 @@ end
|
|||||||
---@param result TransResult
|
---@param result TransResult
|
||||||
---@overload fun(result:TransResult)
|
---@overload fun(result:TransResult)
|
||||||
function M:process(data, result)
|
function M:process(data, result)
|
||||||
|
if self.pin then return end
|
||||||
-- local node = Trans.util.node
|
-- local node = Trans.util.node
|
||||||
-- local it, t, f = node.item, node.text, node.format
|
-- local it, t, f = node.item, node.text, node.format
|
||||||
-- self.buffer:setline(it('hello', 'MoreMsg'))
|
-- self.buffer:setline(it('hello', 'MoreMsg'))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user