mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
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:
parent
b5ff6256b6
commit
d73eaf9e5e
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue