util.human.io: table: use term_width() to discover terminal width

This commit is contained in:
Matthew Wild 2023-04-07 12:35:39 +01:00
parent 403acbb836
commit b5ff6256b6

View file

@ -126,7 +126,7 @@ local function ellipsis(s, width)
end
local function new_table(col_specs, max_width)
max_width = max_width or tonumber(os.getenv("COLUMNS")) or 80;
max_width = max_width or term_width(os.getenv("COLUMNS") or 80);
local separator = " | ";
local widths = {};