mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.human.io: Allow defining per column ellipsis function
As an alternative to doing it in the mapper function. Could be useful in cases where one may want to put the ellipsis in the middle or beginning instead of the start.
This commit is contained in:
parent
8b33e79fdb
commit
41be222478
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ local function new_table(col_specs, max_width)
|
|||
v = padright(v, width);
|
||||
end
|
||||
elseif len(v) > width then
|
||||
v = ellipsis(v, width);
|
||||
v = (column.ellipsis or ellipsis)(v, width);
|
||||
end
|
||||
table.insert(output, v);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue