From f8afa0807b38482f361eaab228193b53dbebc962 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Fri, 12 Nov 2021 12:14:27 +0100 Subject: util.human.io: Factor out ellipsis function Could be useful elsewhere --- util/human/io.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'util') diff --git a/util/human/io.lua b/util/human/io.lua index f8868cc6..2e59ea85 100644 --- a/util/human/io.lua +++ b/util/human/io.lua @@ -95,6 +95,10 @@ local function padleft(s, width) return string.rep(" ", width-#s)..s; end +local function ellipsis(s, width) + return s:sub(1, width-1) .. "…"; +end + local function new_table(col_specs, max_width) max_width = max_width or tonumber(os.getenv("COLUMNS")) or 80; local separator = " | "; @@ -147,7 +151,7 @@ local function new_table(col_specs, max_width) v = padright(v, width); end elseif #v > width then - v = v:sub(1, width-1) .. "…"; + v = ellipsis(v, width); end table.insert(output, v); end @@ -165,5 +169,6 @@ return { printf = printf; padleft = padleft; padright = padright; + ellipsis = ellipsis; table = new_table; }; -- cgit v1.2.3