Skip to content
This repository was archived by the owner on Dec 7, 2025. It is now read-only.

Commit 579c441

Browse files
committed
increase plugin name length
1 parent 8458ac5 commit 579c441

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lua/strive/init.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,14 +533,14 @@ function ProgressWindow:refresh()
533533
local width = api.nvim_win_get_width(self.winid)
534534
-- Header
535535
table.insert(lines, string.rep('=', width))
536-
table.insert(lines, string.format('%-30s %-10s %s', 'Plugin', 'Status', 'Message'))
536+
table.insert(lines, string.format('%-40s %-10s %s', 'Plugin', 'Status', 'Message'))
537537
table.insert(lines, string.rep('=', width))
538538
-- Plugin entries
539539
for _, name in ipairs(sorted_plugins) do
540540
local entry = self.entries[name]
541541
table.insert(
542542
lines,
543-
string.format('%-30s %-10s %s', name:sub(1, 30), entry.status, entry.message or '')
543+
string.format('%-40s %-10s %s', name:sub(1, 40), entry.status, entry.message or '')
544544
)
545545
end
546546

0 commit comments

Comments
 (0)