mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 02:02:38 +01:00
modules/console: Negate any ANSI colors in conf output.
This commit is contained in:
parent
00e27b070e
commit
a6f5895867
1 changed files with 1 additions and 1 deletions
|
@ -892,7 +892,7 @@ console_cmd__conf__list(opt &out, const string_view &line)
|
|||
for(const auto &item : conf::items)
|
||||
out
|
||||
<< std::setw(48) << std::left << std::setfill('_') << item.first
|
||||
<< " " << item.second->get(val)
|
||||
<< " " << item.second->get(val) << "\033[0m"
|
||||
<< std::endl;
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue