mirror of https://github.com/folke/lazy.nvim.git
fix(cmd): fixed signature of cmd._del. Fixes #229
This commit is contained in:
parent
e2925748df
commit
a2eac68575
|
@ -1,5 +1,6 @@
|
|||
tt.lua
|
||||
tt.*
|
||||
.tests
|
||||
doc/tags
|
||||
debug
|
||||
.repro
|
||||
foo.*
|
||||
|
|
|
@ -36,9 +36,8 @@ function M:_add(cmd)
|
|||
})
|
||||
end
|
||||
|
||||
---@param _plugin LazyPlugin
|
||||
---@param value string
|
||||
function M:_del(_plugin, value)
|
||||
function M:_del(value)
|
||||
pcall(vim.api.nvim_del_user_command, value)
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue