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};
|
||||
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 << " "
|
||||
|
|
Loading…
Reference in a new issue