util/human/io.lua
changeset 10908 d009a79f723a
parent 10900 c7a0eab27165
child 10911 6af28c756752
--- 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