0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-30 04:38:52 +02:00

modules/console: Tweak the state flags characters.

This commit is contained in:
Jason Volk 2019-04-10 23:34:30 -07:00
parent 66c73e2a65
commit 342ef74382

View file

@ -1573,14 +1573,14 @@ console_cmd__ctx__list(opt &out, const string_view &line)
const auto &ctx{*ctxp};
out << std::setw(5) << std::right << id(ctx);
out << " "
<< (started(ctx)? 'S' : '-')
<< (running(ctx)? 'R' : '-')
<< (waiting(ctx)? 'W' : '-')
<< (notes(ctx)? 'N' : '-')
<< (started(ctx)? 'A' : '-')
<< (finished(ctx)? 'F' : '-')
<< (interruptible(ctx)? '-' : 'N')
<< (interruption(ctx)? 'I' : '-')
<< (termination(ctx)? 'T' : '-')
<< (interruptible(ctx)? '-' : 'N')
<< (waiting(ctx)? 'S' : '-')
<< (!running(ctx) && notes(ctx)? 'Q' : '-')
<< (interruption(ctx)? 'I' : '-')
<< (running(ctx)? 'R' : '-')
;
out << " "