From 4452e6ed5dd28859748b72483fa68e4180f0075d Mon Sep 17 00:00:00 2001 From: Yuanwei Wu <11427457+wyw@users.noreply.github.com> Date: Mon, 5 Feb 2024 21:32:17 +0800 Subject: [PATCH] fix(ui): remove a single space character from home title Align home pill title spacing with other pills --- lua/lazy/view/render.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazy/view/render.lua b/lua/lazy/view/render.lua index 7487056e..1d97dd37 100644 --- a/lua/lazy/view/render.lua +++ b/lua/lazy/view/render.lua @@ -124,7 +124,7 @@ function M:title() local title = " " .. mode.name:sub(1, 1):upper() .. mode.name:sub(2) .. " (" .. mode.key .. ") " if mode.name == "home" then if self.view.state.mode == "home" then - title = " lazy.nvim " .. Config.options.ui.icons.lazy + title = " lazy.nvim " .. Config.options.ui.icons.lazy else title = " lazy.nvim (H) " end