aboutsummaryrefslogtreecommitdiffstats
path: root/util/human/io.lua
diff options
context:
space:
mode:
Diffstat (limited to 'util/human/io.lua')
-rw-r--r--util/human/io.lua7
1 files changed, 3 insertions, 4 deletions
diff --git a/util/human/io.lua b/util/human/io.lua
index 9e700e89..2cea4f6b 100644
--- a/util/human/io.lua
+++ b/util/human/io.lua
@@ -95,12 +95,11 @@ local function padleft(s, width)
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