Skip to content

Commit d5c58bb

Browse files
authored
fix(ui): remove a single space character from home title (#1309)
Align home pill title spacing with other pills
1 parent e1e8d2f commit d5c58bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/lazy/view/render.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ function M:title()
124124
local title = " " .. mode.name:sub(1, 1):upper() .. mode.name:sub(2) .. " (" .. mode.key .. ") "
125125
if mode.name == "home" then
126126
if self.view.state.mode == "home" then
127-
title = " lazy.nvim " .. Config.options.ui.icons.lazy
127+
title = " lazy.nvim " .. Config.options.ui.icons.lazy
128128
else
129129
title = " lazy.nvim (H) "
130130
end

0 commit comments

Comments
 (0)