diff options
Diffstat (limited to 'config/essentials/zsh/completions/_ws')
-rw-r--r-- | config/essentials/zsh/completions/_ws | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/config/essentials/zsh/completions/_ws b/config/essentials/zsh/completions/_ws new file mode 100644 index 0000000..f25d26b --- /dev/null +++ b/config/essentials/zsh/completions/_ws @@ -0,0 +1,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 |