We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d0b8ce commit 763936aCopy full SHA for 763936a
command/initialize.go
@@ -215,9 +215,9 @@ func inputDefaultPriority() int {
215
erred("Priority needs to be a number between 0 and 10.")
216
continue
217
} else {
218
+ hr()
219
return defaultPriority
220
}
- hr()
221
222
223
command/watch.go
@@ -49,6 +49,9 @@ func doWatch(ctx *cli.Context) {
49
50
interval := ctx.Float64("interval")
51
priority := ctx.Int("priority")
52
+ if !ctx.IsSet("priority") && conf != nil {
53
+ priority = conf.DefaultPriority
54
+ }
55
title := ctx.String("title")
56
if title == "" {
57
title = cmdStringNotation
0 commit comments