0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-01 13:18:58 +02:00

modules/console: Negate any ANSI colors in conf output.

This commit is contained in:
Jason Volk 2018-12-18 17:48:18 -08:00
parent 00e27b070e
commit a6f5895867

View file

@ -892,7 +892,7 @@ console_cmd__conf__list(opt &out, const string_view &line)
for(const auto &item : conf::items) for(const auto &item : conf::items)
out out
<< std::setw(48) << std::left << std::setfill('_') << item.first << std::setw(48) << std::left << std::setfill('_') << item.first
<< " " << item.second->get(val) << " " << item.second->get(val) << "\033[0m"
<< std::endl; << std::endl;
return true; return true;