Software /
code /
prosody
Diff
util/human/io.lua @ 10904:d009a79f723a
util.human.io: Remove padding option and use $COLUMNS as default width
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 04 Jun 2020 17:24:30 +0100 |
parent | 10896:c7a0eab27165 |
child | 10907:6af28c756752 |
line wrap: on
line diff
--- a/util/human/io.lua Thu Jun 04 16:56:28 2020 +0200 +++ b/util/human/io.lua Thu Jun 04 17:24:30 2020 +0100 @@ -95,12 +95,11 @@ return string.rep(" ", width-#s)..s; end -local function new_table(col_specs, max_width, padding) - max_width = max_width or 80; - padding = padding or 4; +local function new_table(col_specs, max_width) + max_width = max_width or tonumber(os.getenv("COLUMNS")) or 80; local widths = {}; - local total_width = max_width - padding; + local total_width = max_width; local free_width = total_width; -- Calculate width of fixed-size columns for i = 1, #col_specs do