mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
fix: show "0/0" instead of "1/0" in empty directories (#1925)
This commit is contained in:
parent
e965b865b9
commit
202751b46a
1 changed files with 1 additions and 1 deletions
|
|
@ -126,7 +126,7 @@ function Status:position()
|
||||||
local style = self:style()
|
local style = self:style()
|
||||||
return ui.Line {
|
return ui.Line {
|
||||||
ui.Span(THEME.status.separator_open):fg(style.bg):bg(THEME.status.separator_style.fg),
|
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),
|
ui.Span(THEME.status.separator_close):fg(style.bg),
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue