util.human.io: Fix column width miscalculation

Fixes that the more fixed width columns there are, the narrower the
resulting table becomes. A right-aligned variable-width column at the
last position should always be flush to the right side of the terminal.
This commit is contained in:
Kim Alvefur 2023-04-09 22:31:12 +02:00
parent 7100d58828
commit 06450fb65b

View file

@ -142,9 +142,6 @@ local function new_table(col_specs, max_width)
width = math.max(tonumber(width), title and (#title+1) or 0);
widths[i] = width;
free_width = free_width - width;
if i > 1 then
free_width = free_width - #separator;
end
end
end