util.prosodyctl.shell: Use new term_width() for width

Kicks in if/when readline hasn't set $COLUMNS, e.g. when using the
`prosodyctl shell command like this` form.
This commit is contained in:
Kim Alvefur 2023-04-07 13:38:59 +02:00
parent b5ff6256b6
commit d73eaf9e5e

View file

@ -6,6 +6,7 @@ local parse_args = require "prosody.util.argparse".parse;
local unpack = table.unpack or _G.unpack;
local tc = require "prosody.util.termcolours";
local isatty = require "prosody.util.pposix".isatty;
local term_width = require"prosody.util.human.io".term_width;
local have_readline, readline = pcall(require, "readline");
@ -29,7 +30,7 @@ local function read_line(prompt_string)
end
local function send_line(client, line)
client.send(st.stanza("repl-input", { width = os.getenv "COLUMNS" }):text(line));
client.send(st.stanza("repl-input", { width = os.getenv "COLUMNS" or term_width() }):text(line));
end
local function repl(client)