mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-11 09:52:31 +00:00
fix(ui): only show plugins to clean under clean
This commit is contained in:
parent
a834b30c70
commit
45d669f61c
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ return {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
filter = function(plugin)
|
filter = function(plugin)
|
||||||
return plugin._.installed and not plugin.url
|
return plugin._.kind == "clean" and plugin._.installed
|
||||||
end,
|
end,
|
||||||
title = "Clean",
|
title = "Clean",
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue