Author: Kevin Schoon [kevinschoon@gmail.com]
Hash: f03ef132688dbe59e91cd4ebb94eb5587bccc6d9
Timestamp: Thu, 01 Mar 2018 17:18:13 +0000 (6 years ago)

+1 -1 +/-1 browse
revert to outputting all tasks by default
1diff --git a/main.go b/main.go
2index c2a07ce..1e5d896 100644
3--- a/main.go
4+++ b/main.go
5 @@ -60,7 +60,7 @@ func list(path *string) func(*cli.Cmd) {
6 var (
7 asJSON = cmd.BoolOpt("json", false, "output task history as JSON")
8 assend = cmd.BoolOpt("assend", false, "sort tasks assending in age")
9- all = cmd.BoolOpt("a all", false, "output all tasks")
10+ all = cmd.BoolOpt("a all", true, "output all tasks")
11 limit = cmd.IntOpt("n limit", 0, "limit the number of results by n")
12 duration = cmd.StringOpt("d duration", "24h", "show tasks within this duration")
13 )