fix: fix miss ',' and better youdao web format style
This commit is contained in:
parent
4f68e4189f
commit
ee7e3b028f
@ -17,6 +17,9 @@
|
|||||||
- [待办 (画大饼)](#待办-画大饼)
|
- [待办 (画大饼)](#待办-画大饼)
|
||||||
<!--toc:end-->
|
<!--toc:end-->
|
||||||
|
|
||||||
|
### 注意: 当前分支目前没有发布, README.md的描述并不准确, 遇到问题请切换到 `main`分支或者联系我
|
||||||
|
|
||||||
|
|
||||||
## 特点
|
## 特点
|
||||||
|
|
||||||
- 使用纯 lua 编写, 速度极快
|
- 使用纯 lua 编写, 速度极快
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
./README.md
|
./README.md
|
||||||
./util/md5.lua
|
./util/md5.lua
|
||||||
./util/base64.lua
|
./util/base64.lua
|
||||||
./util/bak_init.lua
|
|
||||||
./test
|
./test
|
||||||
|
./util/bing_node.lua
|
||||||
|
./style
|
||||||
|
@ -95,6 +95,7 @@ return {
|
|||||||
---@type table<string, string>
|
---@type table<string, string>
|
||||||
icon = {
|
icon = {
|
||||||
-- or use emoji
|
-- or use emoji
|
||||||
|
list = '●', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | ⬛ | ⬜ | ◻ | ◼ | ◾ | ◽ | ▣ | ▤ | ▥ | ▦ | ▧ | ▨ | ▩ | ▪ | ▫ | ▬ | ▭ | ▮ | ▯ | ◌ | ◍ | ◎ | ● | ◐ | ◑ | ◒ | ◓ | ◔ | ◕ | ◖ | ◗ | ◘ | ◙ | ◚ | ◛ | ◜ | ◝ | ◞ | ◟ | ◠ | ◡ | ◢ | ◣ | ◤ | ◥ | ◦ | ◧ | ◨ | ◩ | ◪ | ◫ | ◬ | ◭ | ◮ | ◯ | ◰ | ◱ | ◲ | ◳ | ◴ | ◵ | ◶ | ◷ | ◸ | ◹ | ◺ | ◻ | ◼ | ◽ | ◾ | ◿ | ☀ | ☁ | ☂ | ☃ | ☄ | ★ | ☆ | ☇ | ☈ | ☉ | ☊ | ☋ | ☌ | ☍ | ☎ | ☏ | ☐ | ☑ | ☒ | ☓ | ☔ | ☕ | ☖ | ☗ | ☘ | ☙ | ☚ | ☛ | ☜ | ☝ | ☞ | ☟ | ☠ | ☡ | ☢ | ☣ | ☤ | ☥ | ☦ | ☧ | ☨ | ☩ | ☪ | ☫ | ☬ | ☭ | ☮ | ☯ | ☰ | ☱ | ☲ | ☳ | ☴ | ☵ | ☶ | ☷ | ☸ | ☹ | ☺ | ☻ | ☼ | ☽ | ☾ | ☿ | ♀ | ♂ | ♁ | ♂ | ♃ | ♄ | ♅ | ♆ | ♇ | ♈ | ♉ | ♊ | ♋ | ♌ | ♍ | ♎ | ♏ | ♐ | ♑ | ♒ | ♓ | ♔ | ♕ |
|
||||||
star = '', -- ⭐
|
star = '', -- ⭐
|
||||||
notfound = ' ', -- ❔
|
notfound = ' ', -- ❔
|
||||||
yes = '✔', -- ✔️
|
yes = '✔', -- ✔️
|
||||||
|
@ -5,6 +5,38 @@ local interval = (' '):rep(4)
|
|||||||
---@type TransHoverRenderer
|
---@type TransHoverRenderer
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
|
function M.title(hover, result)
|
||||||
|
local title = result.title
|
||||||
|
if not title then return end
|
||||||
|
if type(title) == 'string' then
|
||||||
|
hover.buffer:setline(it(title, 'TransWord'))
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
local icon = hover.opts.icon
|
||||||
|
|
||||||
|
local word = title.word
|
||||||
|
local oxford = title.oxford
|
||||||
|
local collins = title.collins
|
||||||
|
local phonetic = title.phonetic
|
||||||
|
|
||||||
|
hover.buffer:setline(f {
|
||||||
|
width = hover.opts.width,
|
||||||
|
text = t {
|
||||||
|
it(word, 'TransWord'),
|
||||||
|
t {
|
||||||
|
it('['),
|
||||||
|
it((phonetic and phonetic ~= '') and phonetic or icon.notfound, 'TransPhonetic'),
|
||||||
|
it(']')
|
||||||
|
},
|
||||||
|
|
||||||
|
it(collins and icon.star:rep(collins) or icon.notfound, 'TransCollins'),
|
||||||
|
it(oxford == 1 and icon.yes or icon.no)
|
||||||
|
},
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
function M.tag(hover, result)
|
function M.tag(hover, result)
|
||||||
local tag = result.tag
|
local tag = result.tag
|
||||||
if not tag then return end
|
if not tag then return end
|
||||||
@ -58,36 +90,4 @@ function M.pos(hover, result)
|
|||||||
buffer:setline('')
|
buffer:setline('')
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.title(hover, result)
|
|
||||||
local title = result.title
|
|
||||||
if not title then return end
|
|
||||||
if type(title) == 'string' then
|
|
||||||
hover.buffer:setline(it(title, 'TransWord'))
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
local icon = hover.opts.icon
|
|
||||||
|
|
||||||
local word = title.word
|
|
||||||
local oxford = title.oxford
|
|
||||||
local collins = title.collins
|
|
||||||
local phonetic = title.phonetic
|
|
||||||
|
|
||||||
hover.buffer:setline(f {
|
|
||||||
width = hover.opts.width,
|
|
||||||
text = t {
|
|
||||||
it(word, 'TransWord'),
|
|
||||||
t {
|
|
||||||
it('['),
|
|
||||||
it((phonetic and phonetic ~= '') and phonetic or icon.notfound, 'TransPhonetic'),
|
|
||||||
it(']')
|
|
||||||
},
|
|
||||||
|
|
||||||
it(collins and icon.star:rep(collins) or icon.notfound, 'TransCollins'),
|
|
||||||
it(oxford == 1 and icon.yes or icon.no)
|
|
||||||
},
|
|
||||||
})
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
@ -10,17 +10,23 @@ function M.web(hover, result)
|
|||||||
local buffer = hover.buffer
|
local buffer = hover.buffer
|
||||||
buffer:setline(co('网络释义'))
|
buffer:setline(co('网络释义'))
|
||||||
|
|
||||||
|
local indent = interval .. interval .. hover.opts.icon.list .. ' '
|
||||||
for _, w in ipairs(result.web) do
|
for _, w in ipairs(result.web) do
|
||||||
buffer:setline(it(
|
buffer:setline(it(
|
||||||
--- TODO :Better format style
|
interval .. w.key,
|
||||||
interval .. w.key .. interval .. table.concat(w.value, ' | '),
|
|
||||||
'TransWeb'
|
'TransWeb'
|
||||||
))
|
))
|
||||||
|
|
||||||
|
for _, v in ipairs(w.value) do
|
||||||
|
buffer:setline(it(
|
||||||
|
indent .. v,
|
||||||
|
'TransWeb'
|
||||||
|
))
|
||||||
|
end
|
||||||
end
|
end
|
||||||
buffer:setline('')
|
buffer:setline('')
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
function M.explains(hover, result)
|
function M.explains(hover, result)
|
||||||
local explains = result.explains
|
local explains = result.explains
|
||||||
if not explains then return end
|
if not explains then return end
|
||||||
|
@ -1,48 +0,0 @@
|
|||||||
return function(opts)
|
|
||||||
local target = opts.times
|
|
||||||
opts.run = target ~= 0
|
|
||||||
|
|
||||||
---@type function[]
|
|
||||||
local tasks = {}
|
|
||||||
local function do_task()
|
|
||||||
for _, task in ipairs(tasks) do
|
|
||||||
task()
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
local frame
|
|
||||||
if target then
|
|
||||||
local times = 0
|
|
||||||
frame = function()
|
|
||||||
if opts.run and times < target then
|
|
||||||
times = times + 1
|
|
||||||
opts:frame(times)
|
|
||||||
vim.defer_fn(frame, opts.interval)
|
|
||||||
|
|
||||||
else
|
|
||||||
do_task()
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
else
|
|
||||||
frame = function()
|
|
||||||
if opts.run then
|
|
||||||
opts:frame()
|
|
||||||
vim.defer_fn(frame, opts.interval)
|
|
||||||
else
|
|
||||||
do_task()
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
frame()
|
|
||||||
|
|
||||||
---任务句柄, 如果任务结束了则立即执行, 否则立即执行
|
|
||||||
---@param task function
|
|
||||||
return function(task)
|
|
||||||
if opts.run then
|
|
||||||
tasks[#tasks + 1] = task
|
|
||||||
else
|
|
||||||
task()
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
Loading…
x
Reference in New Issue
Block a user