chore: merge branch 'expermental'

This commit is contained in:
JuanZoran 2023-02-07 17:18:52 +08:00
parent e723f4177f
commit c35cfbb0f5
3 changed files with 4 additions and 8 deletions

View File

@ -142,10 +142,8 @@ buffer.__index = function(self, key)
local res = buffer[key] local res = buffer[key]
if res then if res then
return res return res
elseif type(key) == 'number' then elseif type(key) == 'number' then
return fn.getbufoneline(self.bufnr, key) return fn.getbufoneline(self.bufnr, key)
else else
error('invalid key' .. key) error('invalid key' .. key)
end end
@ -161,7 +159,7 @@ end
---@return buf ---@return buf
return function() return function()
return setmetatable({ return setmetatable({
bufnr = -1, bufnr = -1,
size = 0, size = 0,
}, buffer) }, buffer)
end end

View File

@ -166,7 +166,6 @@ M.setup = function(opts)
conf.engines = engines conf.engines = engines
times = times + 1 times = times + 1
if times == 1 then if times == 1 then
---@format disable
local new_command = api.nvim_create_user_command local new_command = api.nvim_create_user_command
new_command('Translate' , function() M.translate() end, { desc = ' 单词翻译',}) new_command('Translate' , function() M.translate() end, { desc = ' 单词翻译',})
new_command('TranslateInput' , function() M.translate('i') end, { desc = ' 搜索翻译',}) new_command('TranslateInput' , function() M.translate('i') end, { desc = ' 搜索翻译',})
@ -183,7 +182,6 @@ M.setup = function(opts)
for hl, opt in pairs(hls) do for hl, opt in pairs(hls) do
set_hl(0, hl, opt) set_hl(0, hl, opt)
end end
---@format enable
end end
end end

View File

@ -49,7 +49,7 @@ function window:set_width(width)
end end
---Expand window [width | height] value ---Expand window [width | height] value
---@param opts table 窗口的配置 ---@param opts table
---|'field'string [width | height] ---|'field'string [width | height]
---|'target'integer ---|'target'integer
---@return function ---@return function