2015-08-10 01:45:11 +02:00
|
|
|
# taskwarrior
|
|
|
|
|
2018-08-07 20:42:02 +02:00
|
|
|
This plugin adds smart tab completion for [TaskWarrior](https://taskwarrior.org/).
|
2015-08-10 01:45:11 +02:00
|
|
|
It uses the zsh tab completion script (`_task`) shipped with TaskWarrior for the
|
|
|
|
completion definitions.
|
|
|
|
|
2020-03-11 19:57:46 +01:00
|
|
|
To use it, add `taskwarrior` to the plugins array in your zshrc file:
|
2015-08-10 01:45:11 +02:00
|
|
|
|
2020-03-11 19:57:46 +01:00
|
|
|
```zsh
|
|
|
|
plugins=(... taskwarrior)
|
|
|
|
```
|
2015-08-10 01:45:11 +02:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
Typing `task [TAB]` will give you a list of commands, `task 66[TAB]` shows a
|
|
|
|
list of available modifications for that task, etcetera.
|
2020-03-11 19:57:46 +01:00
|
|
|
|
|
|
|
The latest version pulled in from the official project is of January 1st, 2015.
|