revert to outputting all tasks by default

This commit is contained in:
Kevin Schoon 2018-03-01 17:18:13 +00:00
parent 63ad6b2712
commit f03ef13268
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ func list(path *string) func(*cli.Cmd) {
var (
asJSON = cmd.BoolOpt("json", false, "output task history as JSON")
assend = cmd.BoolOpt("assend", false, "sort tasks assending in age")
all = cmd.BoolOpt("a all", false, "output all tasks")
all = cmd.BoolOpt("a all", true, "output all tasks")
limit = cmd.IntOpt("n limit", 0, "limit the number of results by n")
duration = cmd.StringOpt("d duration", "24h", "show tasks within this duration")
)