util.human.io: table: don't read $COLUMNS directly, just use term_width()

...which now reads $COLUMNS for us and does the right thing.
This commit is contained in:
Matthew Wild 2023-04-07 12:51:26 +01:00
parent f842e05e95
commit 7153f4e40a

View file

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