0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-12 04:01:14 +02:00

feat(plugins): add completion plugin for invoke (#7311)

Co-authored-by: Quentin Nerden <quentin.nerden@intel.com>
This commit is contained in:
Quentin Nerden 2021-08-10 20:25:08 +02:00 committed by GitHub
parent ab58594173
commit bca73e1858
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 0 deletions

10
plugins/invoke/README.md Normal file
View file

@ -0,0 +1,10 @@
# Invoke plugin
This plugin adds completion for [invoke](https://github.com/pyinvoke/invoke).
To use it, add `invoke` to the plugins array in your `~/.zshrc` file:
```zsh
plugins=(... invoke)
```

View file

@ -0,0 +1,5 @@
# Autocompletion for invoke.
#
if [ $commands[invoke] ]; then
source <(invoke --print-completion-script=zsh)
fi