mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 08:42:34 +01:00
modules/console: Increase table width for conf list cmd.
This commit is contained in:
parent
5d701601ae
commit
02b471eb95
1 changed files with 1 additions and 1 deletions
|
@ -924,7 +924,7 @@ console_cmd__conf__list(opt &out, const string_view &line)
|
|||
thread_local char val[4_KiB];
|
||||
for(const auto &item : conf::items)
|
||||
out
|
||||
<< std::setw(48) << std::left << std::setfill('_') << item.first
|
||||
<< std::setw(64) << std::left << std::setfill('_') << item.first
|
||||
<< " " << item.second->get(val) << "\033[0m"
|
||||
<< std::endl;
|
||||
|
||||
|
|
Loading…
Reference in a new issue