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
|
.tests
|
||||||
doc/tags
|
doc/tags
|
||||||
debug
|
debug
|
||||||
.repro
|
.repro
|
||||||
|
foo.*
|
||||||
|
|
|
@ -36,9 +36,8 @@ function M:_add(cmd)
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param _plugin LazyPlugin
|
|
||||||
---@param value string
|
---@param value string
|
||||||
function M:_del(_plugin, value)
|
function M:_del(value)
|
||||||
pcall(vim.api.nvim_del_user_command, value)
|
pcall(vim.api.nvim_del_user_command, value)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue