mirror of https://github.com/ohmyzsh/ohmyzsh.git
feat(plugins): add completion plugin for `invoke` (#7311)
Co-authored-by: Quentin Nerden <quentin.nerden@intel.com>pull/10095/head
parent
ab58594173
commit
bca73e1858
|
@ -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)
|
||||||
|
```
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
# Autocompletion for invoke.
|
||||||
|
#
|
||||||
|
if [ $commands[invoke] ]; then
|
||||||
|
source <(invoke --print-completion-script=zsh)
|
||||||
|
fi
|
Loading…
Reference in New Issue