blob: 04a97cd647879131e4887238566b07319dbeb965 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
If you want more granularity than just `wishlist' what about the
`severities':
todo-critical
todo-minor
todo-...
Then get a list of available severities with
$ be list --help | grep -A1 '^severity'
severity
wishlist,minor,serious,critical,fatal,todo-critical,todo-minor
And show all the todos:
$ be list --severity todo-critical,todo-minor
You can configure all the severities you'd like with
$ be set severity wishlist,minor,...
|