From fadeaebda016941d961c6772681594b05040544c Mon Sep 17 00:00:00 2001 From: Alexander Bays Date: Fri, 26 Apr 2024 16:15:52 -0500 Subject: [PATCH] fixing backup strings for front/back --- lua/lazy/view/render.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/lazy/view/render.lua b/lua/lazy/view/render.lua index 25eedf8..f0de6d0 100644 --- a/lua/lazy/view/render.lua +++ b/lua/lazy/view/render.lua @@ -427,9 +427,9 @@ function M:plugin(plugin) if plugin.url and self.view.state.urls and self.view.state.mode == "home" and not self.view:is_selected(plugin) then self:append( (plugin._.loaded and " " or "") - .. Config.options.ui.urls.front + .. (Config.options.ui.urls.front or "(") .. (plugin.url:gsub("%.git$", "")) - .. Config.options.ui.urls.back, + .. (Config.options.ui.urls.back or ")"), "LazyComment" ) end