Skip to content

Commit

Permalink
fix(ui): only show plugins to clean under clean
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Dec 30, 2022
1 parent a834b30 commit 45d669f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lazy/view/sections.lua
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ return {
},
{
filter = function(plugin)
return plugin._.installed and not plugin.url
return plugin._.kind == "clean" and plugin._.installed
end,
title = "Clean",
},
Expand Down

0 comments on commit 45d669f

Please sign in to comment.