style: format handler code
This commit is contained in:
parent
5a84b95301
commit
e245dbfde5
@ -2,14 +2,6 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
local icon = require('Trans').conf.icon
|
local icon = require('Trans').conf.icon
|
||||||
|
|
||||||
-- local components = {
|
|
||||||
-- 'title',
|
|
||||||
-- 'tag',
|
|
||||||
-- 'pos',
|
|
||||||
-- 'exchange',
|
|
||||||
-- 'translation',
|
|
||||||
-- 'definition'
|
|
||||||
-- }
|
|
||||||
|
|
||||||
local tag_map = {
|
local tag_map = {
|
||||||
zk = '中考',
|
zk = '中考',
|
||||||
@ -37,7 +29,6 @@ local pos_map = {
|
|||||||
d = '限定词determiner',
|
d = '限定词determiner',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
local exchange_map = {
|
local exchange_map = {
|
||||||
['p'] = '过去式 ',
|
['p'] = '过去式 ',
|
||||||
['d'] = '过去分词 ',
|
['d'] = '过去分词 ',
|
||||||
@ -60,8 +51,8 @@ local function expl(c, text)
|
|||||||
-- wrapper('', 'TransTitleRound')
|
-- wrapper('', 'TransTitleRound')
|
||||||
wrapper('', 'TransTitleRound')
|
wrapper('', 'TransTitleRound')
|
||||||
wrapper(text, 'TransTitle')
|
wrapper(text, 'TransTitle')
|
||||||
-- wrapper('', 'TransTitleRound')
|
|
||||||
wrapper('', 'TransTitleRound')
|
wrapper('', 'TransTitleRound')
|
||||||
|
-- wrapper('', 'TransTitleRound')
|
||||||
end
|
end
|
||||||
|
|
||||||
local indent = ' '
|
local indent = ' '
|
||||||
@ -69,12 +60,25 @@ local indent = ' '
|
|||||||
M.hover = {
|
M.hover = {
|
||||||
title = function(result, content)
|
title = function(result, content)
|
||||||
local line = content:alloc_items()
|
local line = content:alloc_items()
|
||||||
line.add_item(result.word, 'TransWord')
|
line.add_item(
|
||||||
local pho = ('[' .. (exist(result.phonetic) and result.phonetic or icon.notfound) .. ']')
|
result.word,
|
||||||
-- line.add_item(pho, 'TransPhonetic', #pho)
|
'TransWord'
|
||||||
line.add_item(pho, 'TransPhonetic')
|
)
|
||||||
line.add_item((exist(result.collins) and icon.star:rep(result.collins) or icon.notfound), 'TransCollins')
|
|
||||||
line.add_item((result.oxford == 1 and icon.yes or icon.no))
|
line.add_item(
|
||||||
|
'[' .. (exist(result.phonetic) and result.phonetic or icon.notfound) .. ']',
|
||||||
|
'TransPhonetic'
|
||||||
|
)
|
||||||
|
|
||||||
|
line.add_item(
|
||||||
|
(exist(result.collins) and icon.star:rep(result.collins) or icon.notfound),
|
||||||
|
'TransCollins'
|
||||||
|
)
|
||||||
|
|
||||||
|
line.add_item(
|
||||||
|
(result.oxford == 1 and icon.yes or icon.no)
|
||||||
|
)
|
||||||
|
|
||||||
line.load()
|
line.load()
|
||||||
end,
|
end,
|
||||||
|
|
||||||
@ -89,8 +93,10 @@ M.hover = {
|
|||||||
local size = #tags
|
local size = #tags
|
||||||
local i = 1
|
local i = 1
|
||||||
while i <= size do
|
while i <= size do
|
||||||
content:addline(indent .. tags[i] .. ' ' .. (tags[i + 1] or '') .. ' ' .. (tags[i + 2] or ''),
|
content:addline(
|
||||||
'TransTag')
|
indent .. tags[i] .. ' ' .. (tags[i + 1] or '') .. ' ' .. (tags[i + 2] or ''),
|
||||||
|
'TransTag'
|
||||||
|
)
|
||||||
i = i + 3
|
i = i + 3
|
||||||
end
|
end
|
||||||
content:addline('')
|
content:addline('')
|
||||||
@ -124,7 +130,10 @@ M.hover = {
|
|||||||
expl(content, '中文翻译')
|
expl(content, '中文翻译')
|
||||||
|
|
||||||
vim.tbl_map(function(trs)
|
vim.tbl_map(function(trs)
|
||||||
content:addline(indent .. trs, 'TransTranslation')
|
content:addline(
|
||||||
|
indent .. trs,
|
||||||
|
'TransTranslation'
|
||||||
|
)
|
||||||
end, vim.split(result.translation, '\n', { plain = true, trimempry = true }))
|
end, vim.split(result.translation, '\n', { plain = true, trimempry = true }))
|
||||||
|
|
||||||
content:addline('')
|
content:addline('')
|
||||||
@ -136,7 +145,10 @@ M.hover = {
|
|||||||
|
|
||||||
vim.tbl_map(function(def)
|
vim.tbl_map(function(def)
|
||||||
def = def:gsub('^%s+', '', 1) -- TODO :判断是否需要分割空格
|
def = def:gsub('^%s+', '', 1) -- TODO :判断是否需要分割空格
|
||||||
content:addline(indent .. def, 'TransDefinition')
|
content:addline(
|
||||||
|
indent .. def,
|
||||||
|
'TransDefinition'
|
||||||
|
)
|
||||||
end, vim.split(indent .. result.definition, '\n', { plain = true, trimempry = true }))
|
end, vim.split(indent .. result.definition, '\n', { plain = true, trimempry = true }))
|
||||||
|
|
||||||
content:addline('')
|
content:addline('')
|
||||||
@ -144,7 +156,10 @@ M.hover = {
|
|||||||
end,
|
end,
|
||||||
|
|
||||||
failed = function(content)
|
failed = function(content)
|
||||||
content:addline(icon.notfound .. indent .. '没有找到相关的翻译', 'TransNotFound')
|
content:addline(
|
||||||
|
icon.notfound .. indent .. '没有找到相关的翻译',
|
||||||
|
'TransFailed'
|
||||||
|
)
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,9 +4,7 @@ end
|
|||||||
|
|
||||||
vim.api.nvim_create_user_command('Translate', function()
|
vim.api.nvim_create_user_command('Translate', function()
|
||||||
require("Trans").translate()
|
require("Trans").translate()
|
||||||
end, {
|
end, { desc = ' 单词翻译', })
|
||||||
desc = ' 单词翻译',
|
|
||||||
})
|
|
||||||
|
|
||||||
vim.api.nvim_create_user_command('TranslateInput', function()
|
vim.api.nvim_create_user_command('TranslateInput', function()
|
||||||
require("Trans").translate('input')
|
require("Trans").translate('input')
|
||||||
@ -58,7 +56,7 @@ local highlights = {
|
|||||||
fg = '#faf743',
|
fg = '#faf743',
|
||||||
bold = true,
|
bold = true,
|
||||||
},
|
},
|
||||||
TransNotFound = {
|
TransFailed = {
|
||||||
fg = '#7aa89f',
|
fg = '#7aa89f',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user