fix: show "0/0" instead of "1/0" in empty directories (#1925)

This commit is contained in:
Integral 2024-11-21 13:37:49 +08:00 committed by GitHub
parent e965b865b9
commit 202751b46a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -126,7 +126,7 @@ function Status:position()
local style = self:style()
return ui.Line {
ui.Span(THEME.status.separator_open):fg(style.bg):bg(THEME.status.separator_style.fg),
ui.Span(string.format(" %2d/%-2d ", cursor + 1, length)):style(style),
ui.Span(string.format(" %2d/%-2d ", math.min(cursor + 1, length), length)):style(style),
ui.Span(THEME.status.separator_close):fg(style.bg),
}
end