CLI: Colorized keywords

This commit is contained in:
Paul Beckingham 2016-04-03 13:17:48 -04:00
parent 577df9a3af
commit 518389ec58

View file

@ -106,6 +106,7 @@ const std::string A2::dump () const
{
if (tag == "BINARY") tags += "\033[1;37;44m" + tag + "\033[0m ";
else if (tag == "CMD") tags += "\033[1;37;46m" + tag + "\033[0m ";
else if (tag == "KEYWORD") tags += "\033[1;37;43m" + tag + "\033[0m ";
else tags += "\033[32m" + tag + "\033[0m ";
}