mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-18 20:36:45 +00:00
feat: a gazilion rendering improvements
This commit is contained in:
parent
00ff59f385
commit
a11fc5a0e0
5 changed files with 292 additions and 51 deletions
|
@ -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 })
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue