feat: a gazilion rendering improvements

This commit is contained in:
Folke Lemaitre 2022-11-23 16:12:02 +01:00
parent 00ff59f385
commit a11fc5a0e0
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
5 changed files with 292 additions and 51 deletions

View file

@ -1,5 +1,6 @@
local View = require("lazy.view")
local Manager = require("lazy.manager")
local Util = require("lazy.core.util")
local M = {}
@ -18,6 +19,10 @@ M.commands = {
clean = function()
Manager.clean({ clear = true, show = true })
end,
clear = function()
Manager.clear()
View.show()
end,
install = function()
Manager.install({ clear = true, show = true })
end,
@ -27,6 +32,9 @@ M.commands = {
show = function()
View.show()
end,
docs = function()
Manager.docs({ clear = true, show = true })
end,
sync = function()
Manager.update({ clear = true, show = true })
Manager.install({ show = true })