feat!: removed the LazyUpdate etc commands. sub-commands only from now on

This commit is contained in:
Folke Lemaitre 2022-12-19 10:11:21 +01:00
parent b89e6bffd2
commit d4aee2715f
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
1 changed files with 0 additions and 10 deletions

View File

@ -81,16 +81,6 @@ function M.setup()
end, vim.tbl_keys(M.commands)) end, vim.tbl_keys(M.commands))
end, end,
}) })
for name in pairs(M.commands) do
local cmd = "Lazy" .. name:sub(1, 1):upper() .. name:sub(2)
vim.api.nvim_create_user_command(cmd, function()
M.cmd(name)
end, {
desc = "Lazy " .. name,
})
end
end end
return M return M