util.human.io: Pass the whole column definition to mapper function
authorKim Alvefur <zash@zash.se>
Fri, 07 Apr 2023 13:02:20 +0200
changeset 13044 0cbe400ebab4
parent 13043 9ddb344b9fab
child 13045 61b00bd20074
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.
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 "";