util.human.io: Pass the whole column definition to mapper function

I forget why I wanted this, but it may allow doing things like pull
settings from the column, especially when the mapper function is reused
among many columns.
This commit is contained in:
Kim Alvefur 2023-04-07 13:02:20 +02:00
parent 41be222478
commit 08c0557093

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, width);
v = column.mapper(v, row, width, column);
end
if v == nil then
v = column.default or "";