util.human.io: Pass expected width to mapper function

In order to allow it to adjust its output to available space, apply its
own ellipsis method or other compacting method.
This commit is contained in:
Kim Alvefur 2023-04-07 13:00:00 +02:00
parent 44689ccfd4
commit 8b33e79fdb

View file

@ -162,7 +162,7 @@ local function new_table(col_specs, max_width)
local width = widths[i];
local v = row[not titles and column.key or i];
if not titles and column.mapper then
v = column.mapper(v, row);
v = column.mapper(v, row, width);
end
if v == nil then
v = column.default or "";