diff --git a/lua/Trans/conf.lua b/lua/Trans/conf.lua index 6c81ceb..48b2b35 100644 --- a/lua/Trans/conf.lua +++ b/lua/Trans/conf.lua @@ -5,13 +5,8 @@ return { max_width = 50, -- phnoetic = true, collins_star = true, - pos = true, - tag = true, oxford = true, -- history = false, - exchange = true, - Trans_en = true, - Trans_zh = true, wrap = true, border_style = 'rounded', view = 'cursor', diff --git a/lua/Trans/display.lua b/lua/Trans/display.lua index 97eb3b1..968ef49 100644 --- a/lua/Trans/display.lua +++ b/lua/Trans/display.lua @@ -42,6 +42,7 @@ local function get_tag(text, query_res) gsub('ielts', '雅思'):gsub('toefl', '托福'):gsub('gre', 'GRE') table.insert(text, '标签:') table.insert(text, ' ' .. tag) + table.insert(text, '') end end @@ -92,7 +93,7 @@ end -- NOTE: 英文翻译 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, '英文翻译:') for v in vim.gsplit(query_res.definition, '\n') do table.insert(text, ' ' .. v) @@ -115,7 +116,7 @@ local handler = { -- @return string array local function get_text(query_res) local text = {} - for _, v in pairs(order) do + for _, v in ipairs(order) do handler[v](text, query_res) end return text