refactor: try to add unit test
This commit is contained in:
parent
8be4fb7303
commit
f63574026a
@ -6,7 +6,9 @@
|
|||||||
],
|
],
|
||||||
"Lua.diagnostics.globals": [
|
"Lua.diagnostics.globals": [
|
||||||
"vim",
|
"vim",
|
||||||
"user_conf"
|
"user_conf",
|
||||||
|
"describe",
|
||||||
|
"it"
|
||||||
],
|
],
|
||||||
"Lua.workspace.checkThirdParty": false
|
"Lua.workspace.checkThirdParty": false
|
||||||
}
|
}
|
||||||
|
@ -55,7 +55,6 @@ return {
|
|||||||
fallback_message = '{{notfound}} 翻译超时或没有找到相关的翻译',
|
fallback_message = '{{notfound}} 翻译超时或没有找到相关的翻译',
|
||||||
auto_resize = true,
|
auto_resize = true,
|
||||||
-- strict_sentence_width = false,
|
-- strict_sentence_width = false,
|
||||||
-- strict = false, -- TODO :No Width limit when str is a sentence
|
|
||||||
padding = 10, -- padding for hover window width
|
padding = 10, -- padding for hover window width
|
||||||
keymaps = {
|
keymaps = {
|
||||||
pageup = '[[',
|
pageup = '[[',
|
||||||
|
@ -10,6 +10,7 @@ local function set_frontend_keymap(frontend)
|
|||||||
local keymap_opts = {
|
local keymap_opts = {
|
||||||
silent = true,
|
silent = true,
|
||||||
-- expr = true,
|
-- expr = true,
|
||||||
|
-- nowait = true,
|
||||||
}
|
}
|
||||||
|
|
||||||
for action, key in pairs(frontend.opts.keymaps) do
|
for action, key in pairs(frontend.opts.keymaps) do
|
||||||
|
@ -111,7 +111,6 @@ function window:resize(opts)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
---Try to close window with animation?
|
---Try to close window with animation?
|
||||||
function window:try_close()
|
function window:try_close()
|
||||||
local close_animation = self.animation.close
|
local close_animation = self.animation.close
|
||||||
@ -133,8 +132,9 @@ end
|
|||||||
---Set window local highlight group
|
---Set window local highlight group
|
||||||
---@param name string
|
---@param name string
|
||||||
---@param opts table highlight config
|
---@param opts table highlight config
|
||||||
function window:set_hl(name, opts)
|
---@param ns integer namespace
|
||||||
api.nvim_set_hl(self.ns, name, opts)
|
function window:set_hl(name, opts, ns)
|
||||||
|
api.nvim_set_hl(ns, name, opts)
|
||||||
end
|
end
|
||||||
|
|
||||||
---Open window with animation?
|
---Open window with animation?
|
||||||
@ -184,11 +184,20 @@ local default_opts = {
|
|||||||
---@field buffer TransBuffer attached buffer object
|
---@field buffer TransBuffer attached buffer object
|
||||||
---@field win_opts table window config [**When open**]
|
---@field win_opts table window config [**When open**]
|
||||||
---@field winid integer window handle
|
---@field winid integer window handle
|
||||||
---@field ns integer namespace for highlight
|
|
||||||
---@field enter boolean cursor should [enter] window when open
|
---@field enter boolean cursor should [enter] window when open
|
||||||
---@field animation
|
---@field animation
|
||||||
---|{open: string | boolean, close: string | boolean, interval: integer} Hover Window Animation
|
---|{open: string | boolean, close: string | boolean, interval: integer} Hover Window Animation
|
||||||
|
|
||||||
|
-- local win_opt = {
|
||||||
|
-- zindex = zindex,
|
||||||
|
-- width = width,
|
||||||
|
-- height = height,
|
||||||
|
-- col = col,
|
||||||
|
-- row = row,
|
||||||
|
-- border = border,
|
||||||
|
-- title = title,
|
||||||
|
-- relative = relative,
|
||||||
|
-- }
|
||||||
|
|
||||||
---Create new window
|
---Create new window
|
||||||
---@param opts TransWindowOpts window config
|
---@param opts TransWindowOpts window config
|
||||||
@ -206,13 +215,3 @@ end
|
|||||||
---@class Trans
|
---@class Trans
|
||||||
---@field window TransWindow
|
---@field window TransWindow
|
||||||
return window
|
return window
|
||||||
-- local win_opt = {
|
|
||||||
-- zindex = zindex,
|
|
||||||
-- width = width,
|
|
||||||
-- height = height,
|
|
||||||
-- col = col,
|
|
||||||
-- row = row,
|
|
||||||
-- border = border,
|
|
||||||
-- title = title,
|
|
||||||
-- relative = relative,
|
|
||||||
-- }
|
|
||||||
|
@ -74,7 +74,6 @@ function M:init_window(opts)
|
|||||||
opts = opts or {}
|
opts = opts or {}
|
||||||
local m_opts = self.opts
|
local m_opts = self.opts
|
||||||
local option = {
|
local option = {
|
||||||
ns = self.ns,
|
|
||||||
buffer = self.buffer,
|
buffer = self.buffer,
|
||||||
animation = m_opts.animation,
|
animation = m_opts.animation,
|
||||||
}
|
}
|
||||||
@ -179,9 +178,7 @@ end
|
|||||||
---@param data TransData
|
---@param data TransData
|
||||||
---@overload fun(result:TransResult)
|
---@overload fun(result:TransResult)
|
||||||
function M:process(data)
|
function M:process(data)
|
||||||
if self.pin then
|
if self.pin then return end
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local result, name = data:get_available_result()
|
local result, name = data:get_available_result()
|
||||||
if not result then
|
if not result then
|
||||||
|
5
lua/test/demo_spec.lua
Normal file
5
lua/test/demo_spec.lua
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
describe('Test Demo', function()
|
||||||
|
it('should work', function()
|
||||||
|
print('hello')
|
||||||
|
end)
|
||||||
|
end)
|
Loading…
x
Reference in New Issue
Block a user