blob: f25d26b958d3a9659404fe0d2c59b90af2496a58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#compdef ws
local -a subcmds
subcmds=('add: Adds a task to the end of the stack'
'done: Mark a task as done'
'undone: Mask a task as undone'
'pc: Procrastinate task a task to end of stack'
'del: Delete an active task'
'ls: List active tasks'
'list: List all tasks'
'reset: Recreate the tasks.gob file'
'help: Show this help')
_describe 'ws commands' subcmds
|