fix some bugs
This commit is contained in:
parent
b3b758f58f
commit
5b3e268068
@ -5,13 +5,8 @@ return {
|
|||||||
max_width = 50,
|
max_width = 50,
|
||||||
-- phnoetic = true,
|
-- phnoetic = true,
|
||||||
collins_star = true,
|
collins_star = true,
|
||||||
pos = true,
|
|
||||||
tag = true,
|
|
||||||
oxford = true,
|
oxford = true,
|
||||||
-- history = false,
|
-- history = false,
|
||||||
exchange = true,
|
|
||||||
Trans_en = true,
|
|
||||||
Trans_zh = true,
|
|
||||||
wrap = true,
|
wrap = true,
|
||||||
border_style = 'rounded',
|
border_style = 'rounded',
|
||||||
view = 'cursor',
|
view = 'cursor',
|
||||||
|
@ -42,6 +42,7 @@ local function get_tag(text, query_res)
|
|||||||
gsub('ielts', '雅思'):gsub('toefl', '托福'):gsub('gre', 'GRE')
|
gsub('ielts', '雅思'):gsub('toefl', '托福'):gsub('gre', 'GRE')
|
||||||
table.insert(text, '标签:')
|
table.insert(text, '标签:')
|
||||||
table.insert(text, ' ' .. tag)
|
table.insert(text, ' ' .. tag)
|
||||||
|
table.insert(text, '')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -92,7 +93,7 @@ end
|
|||||||
|
|
||||||
-- NOTE: 英文翻译
|
-- NOTE: 英文翻译
|
||||||
local function get_en(text, query_res)
|
local function get_en(text, query_res)
|
||||||
if display.Trans_en and query_res.definition:len() > 0 then
|
if #query_res.definition > 0 then
|
||||||
table.insert(text, '英文翻译:')
|
table.insert(text, '英文翻译:')
|
||||||
for v in vim.gsplit(query_res.definition, '\n') do
|
for v in vim.gsplit(query_res.definition, '\n') do
|
||||||
table.insert(text, ' ' .. v)
|
table.insert(text, ' ' .. v)
|
||||||
@ -115,7 +116,7 @@ local handler = {
|
|||||||
-- @return string array
|
-- @return string array
|
||||||
local function get_text(query_res)
|
local function get_text(query_res)
|
||||||
local text = {}
|
local text = {}
|
||||||
for _, v in pairs(order) do
|
for _, v in ipairs(order) do
|
||||||
handler[v](text, query_res)
|
handler[v](text, query_res)
|
||||||
end
|
end
|
||||||
return text
|
return text
|
||||||
|
Loading…
x
Reference in New Issue
Block a user