fix: 修复了英文空白符号匹配的bug

This commit is contained in:
JuanZoran 2023-01-16 12:10:09 +08:00
parent 0ca9710061
commit 5a84b95301
4 changed files with 24 additions and 25 deletions

View File

@ -66,6 +66,7 @@ use {
keys = { keys = {
{ 'v', 'mm' }, -- 换成其他你想用的key即可 { 'v', 'mm' }, -- 换成其他你想用的key即可
{ 'n', 'mm' }, { 'n', 'mm' },
{ 'n', 'mi' },
}, },
run = 'bash ./install.sh', -- 自动下载使用的本地词库 run = 'bash ./install.sh', -- 自动下载使用的本地词库
requires = 'kharji/sqlite.lua', requires = 'kharji/sqlite.lua',
@ -133,11 +134,11 @@ require'Trans'.setup {
-- }, -- },
}, },
icon = { icon = {
title = ' ', --  title = ' ', -- 
star = '', star = '',
-- notfound = '', -- notfound = ' ',
-- yes = '', -- yes = ' ',
-- no = '' -- no = ' '
-- star = '⭐', -- star = '⭐',
notfound = '❔', notfound = '❔',
yes = '✔️', yes = '✔️',

View File

@ -8,26 +8,23 @@ end
local path = require('Trans').conf.db_path local path = require('Trans').conf.db_path
local dict = db:open(path) local dict = db:open(path)
local query_fields = {
'word',
'phonetic',
'definition',
'translation',
'pos',
'collins',
'oxford',
'tag',
'exchange',
}
local routes = { local routes = {
offline = function(word) offline = function(word)
local res = dict:select('stardict', { local res = dict:select('stardict', {
where = { where = {
word = word, word = word,
}, },
keys = query_fields, keys = {
'word',
'phonetic',
'definition',
'translation',
'pos',
'collins',
'oxford',
'tag',
'exchange',
},
}) })
return res[1] return res[1]
end, end,
@ -49,8 +46,8 @@ vim.api.nvim_create_autocmd('VimLeavePre', {
M.query = function(engine, word) M.query = function(engine, word)
-- TODO : more opts -- TODO : more opts
vim.validate { vim.validate {
word = {word, 's'}, word = { word, 's' },
engine = {word, 's'}, engine = { word, 's' },
} }
return routes[engine](word) return routes[engine](word)

View File

@ -49,6 +49,7 @@ function M:alloc_block(s_row, s_col, height, width)
}) })
end end
function M:alloc_items() function M:alloc_items()
local items = {} local items = {}
local width = 0 -- 所有item的总width local width = 0 -- 所有item的总width
@ -62,20 +63,19 @@ function M:alloc_items()
end, end,
load = function() load = function()
self.len = self.len + 1 local l = self.len + 1
local space = math.floor((self.width - width) / (size - 1)) local space = math.floor((self.width - width) / (size - 1))
assert(space > 0) assert(space > 0)
local interval = (' '):rep(space) local interval = (' '):rep(space)
local value = '' local value = ''
local function load_item(index) local function load_item(index)
if items[index][2] then if items[index][2] then
table.insert(self.highlights[self.len], { table.insert(self.highlights[l], {
name = items[index][2], name = items[index][2],
_start = #value, _start = #value,
_end = #value + #items[index][1], _end = #value + #items[index][1],
}) })
end end
value = value .. items[index][1] value = value .. items[index][1]
end end
@ -85,7 +85,8 @@ function M:alloc_items()
load_item(i) load_item(i)
end end
self.lines[self.len] = value self.lines[l] = value
self.len = l
end end
} }
end end

View File

@ -135,7 +135,7 @@ M.hover = {
expl(content, '英文注释') expl(content, '英文注释')
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 }))