diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-10-08 14:54:50 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-10-08 14:54:50 +0200 |
commit | e73e19e82a893bacd3c1da87835bc066aa69bb23 (patch) | |
tree | 3118beecdcda549b16b7eea0c628ae9c517f18e2 /config/essentials/zsh/completions/_ws | |
parent | 7a91a55b79f828017b38c9f0af479b25c89bf6a9 (diff) |
checkpoint
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 |