mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-06-28 11:24:14 +00:00
fixing backup strings for front/back
This commit is contained in:
parent
f9d3365c5f
commit
fadeaebda0
1 changed files with 2 additions and 2 deletions
|
@ -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
|
if plugin.url and self.view.state.urls and self.view.state.mode == "home" and not self.view:is_selected(plugin) then
|
||||||
self:append(
|
self:append(
|
||||||
(plugin._.loaded and " " or "")
|
(plugin._.loaded and " " or "")
|
||||||
.. Config.options.ui.urls.front
|
.. (Config.options.ui.urls.front or "(")
|
||||||
.. (plugin.url:gsub("%.git$", ""))
|
.. (plugin.url:gsub("%.git$", ""))
|
||||||
.. Config.options.ui.urls.back,
|
.. (Config.options.ui.urls.back or ")"),
|
||||||
"LazyComment"
|
"LazyComment"
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue