refactor: remove vim.tbl_map invoke

This commit is contained in:
JuanZoran 2023-01-16 14:17:25 +08:00
parent e245dbfde5
commit 00f394ac99

View File

@ -86,18 +86,18 @@ M.hover = {
if exist(result.tag) then if exist(result.tag) then
expl(content, '标签') expl(content, '标签')
local tags = vim.tbl_map(function(tag) local tags = {}
return tag_map[tag] local size = 0
end, vim.split(result.tag, ' ', { plain = true, trimempry = true })) for tag in vim.gsplit(result.tag, ' ', true) do
size = size + 1
tags[size] = tag_map[tag]
end
local size = #tags for i = 1, size, 3 do
local i = 1
while i <= size do
content:addline( content:addline(
indent .. tags[i] .. ' ' .. (tags[i + 1] or '') .. ' ' .. (tags[i + 2] or ''), indent .. tags[i] .. ' ' .. (tags[i + 1] or '') .. ' ' .. (tags[i + 2] or ''),
'TransTag' 'TransTag'
) )
i = i + 3
end end
content:addline('') content:addline('')
end end
@ -106,9 +106,13 @@ M.hover = {
pos = function(result, content) pos = function(result, content)
if exist(result.pos) then if exist(result.pos) then
expl(content, '词性') expl(content, '词性')
vim.tbl_map(function(pos)
content:addline(indent .. pos_map[pos:sub(1, 1)] .. pos:sub(3) .. '%', 'TransPos') for pos in vim.gsplit(result.pos, '/', true) do
end, vim.split(result.pos, '/', { plain = true, trimempry = true })) content:addline(
indent .. pos_map[pos:sub(1, 1)] .. pos:sub(3) .. '%',
'TransPos'
)
end
content:addline('') content:addline('')
end end
@ -118,9 +122,12 @@ M.hover = {
if exist(result.exchange) then if exist(result.exchange) then
expl(content, '词形变化') expl(content, '词形变化')
vim.tbl_map(function(exc) for exc in vim.gsplit(result.exchange, '/', true) do
content:addline(indent .. exchange_map[exc:sub(1, 1)] .. ' ' .. exc:sub(3), 'TransExchange') content:addline(
end, vim.split(result.exchange, '/', { plain = true, trimempry = true })) indent .. exchange_map[exc:sub(1, 1)] .. ' ' .. exc:sub(3),
'TransExchange'
)
end
content:addline('') content:addline('')
end end
@ -129,12 +136,12 @@ M.hover = {
translation = function(result, content) translation = function(result, content)
expl(content, '中文翻译') expl(content, '中文翻译')
vim.tbl_map(function(trs) for trs in vim.gsplit(result.translation, '\n', true) do
content:addline( content:addline(
indent .. trs, indent .. trs,
'TransTranslation' 'TransTranslation'
) )
end, vim.split(result.translation, '\n', { plain = true, trimempry = true })) end
content:addline('') content:addline('')
end, end,
@ -143,13 +150,13 @@ M.hover = {
if exist(result.definition) then if exist(result.definition) then
expl(content, '英文注释') expl(content, '英文注释')
vim.tbl_map(function(def) for def in vim.gsplit(result.definition, '\n', true) do
def = def:gsub('^%s+', '', 1) -- TODO :判断是否需要分割空格 def = def:gsub('^%s+', '', 1) -- TODO :判断是否需要分割空格
content:addline( content:addline(
indent .. def, indent .. def,
'TransDefinition' 'TransDefinition'
) )
end, vim.split(indent .. result.definition, '\n', { plain = true, trimempry = true })) end
content:addline('') content:addline('')
end end