mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-22 20:23:09 +02:00
add 'wait' to the info output
This commit is contained in:
parent
e977fb294c
commit
cf078e1233
1 changed files with 3 additions and 0 deletions
|
@ -36,6 +36,9 @@ pub(crate) fn execute<W: WriteColor>(
|
|||
tags.sort();
|
||||
t.add_row(row![b->"Tags", tags.join(" ")]);
|
||||
}
|
||||
if task.is_waiting() {
|
||||
t.add_row(row![b->"Wait", task.get_wait().unwrap()]);
|
||||
}
|
||||
}
|
||||
t.print(w)?;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue