# HG changeset patch # User Kim Alvefur # Date 1680865340 -7200 # Node ID 0cbe400ebab453e2f36dc55f3149d3edeb3d128d # Parent 9ddb344b9fab38ea6609048557baf213b682372c 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. diff -r 9ddb344b9fab -r 0cbe400ebab4 util/human/io.lua --- a/util/human/io.lua Fri Apr 07 13:00:58 2023 +0200 +++ b/util/human/io.lua Fri Apr 07 13:02:20 2023 +0200 @@ -162,7 +162,7 @@ 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 "";