From 4f27fc33c4e0e81802f4afadbe350de93447ac1e Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Thu, 28 Sep 2023 12:26:21 +0200 Subject: [PATCH] fix(ui): sort plugins case insensitive --- lua/lazy/view/render.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/lazy/view/render.lua b/lua/lazy/view/render.lua index fe9f87e..442e769 100644 --- a/lua/lazy/view/render.lua +++ b/lua/lazy/view/render.lua @@ -241,6 +241,9 @@ function M:section(section) end, self.plugins) local count = #section_plugins + table.sort(section_plugins, function(a, b) + return a.name:lower() < b.name:lower() + end) if count > 0 then self:append(section.title, "LazyH2"):append(" (" .. count .. ")", "LazyComment"):nl() for _, plugin in ipairs(section_plugins) do