0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-04 14:48:56 +02:00

modules/console: Increase table width for conf list cmd.

This commit is contained in:
Jason Volk 2019-01-24 13:38:34 -08:00
parent 5d701601ae
commit 02b471eb95

View file

@ -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;