mirror of
https://github.com/matrix-construct/construct
synced 2024-11-17 23:40:57 +01:00
modules/console: Tweak the state flags characters.
This commit is contained in:
parent
66c73e2a65
commit
342ef74382
1 changed files with 6 additions and 6 deletions
|
@ -1573,14 +1573,14 @@ console_cmd__ctx__list(opt &out, const string_view &line)
|
||||||
const auto &ctx{*ctxp};
|
const auto &ctx{*ctxp};
|
||||||
out << std::setw(5) << std::right << id(ctx);
|
out << std::setw(5) << std::right << id(ctx);
|
||||||
out << " "
|
out << " "
|
||||||
<< (started(ctx)? 'S' : '-')
|
<< (started(ctx)? 'A' : '-')
|
||||||
<< (running(ctx)? 'R' : '-')
|
|
||||||
<< (waiting(ctx)? 'W' : '-')
|
|
||||||
<< (notes(ctx)? 'N' : '-')
|
|
||||||
<< (finished(ctx)? 'F' : '-')
|
<< (finished(ctx)? 'F' : '-')
|
||||||
<< (interruptible(ctx)? '-' : 'N')
|
|
||||||
<< (interruption(ctx)? 'I' : '-')
|
|
||||||
<< (termination(ctx)? 'T' : '-')
|
<< (termination(ctx)? 'T' : '-')
|
||||||
|
<< (interruptible(ctx)? '-' : 'N')
|
||||||
|
<< (waiting(ctx)? 'S' : '-')
|
||||||
|
<< (!running(ctx) && notes(ctx)? 'Q' : '-')
|
||||||
|
<< (interruption(ctx)? 'I' : '-')
|
||||||
|
<< (running(ctx)? 'R' : '-')
|
||||||
;
|
;
|
||||||
|
|
||||||
out << " "
|
out << " "
|
||||||
|
|
Loading…
Reference in a new issue