fix: show "0/0" instead of "1/0" in empty directories

This commit is contained in:
Integral 2024-11-21 13:30:53 +08:00
parent e965b865b9
commit 03fceeecf2
No known key found for this signature in database
GPG Key ID: 06313911057DD5A8

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