mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-29 19:14:05 +08:00
Merge b8a8a4170a into 9151236d1e
This commit is contained in:
commit
62fdd657c3
9
plugins/s2i/README.md
Normal file
9
plugins/s2i/README.md
Normal file
@ -0,0 +1,9 @@
|
||||
# s2i
|
||||
|
||||
This plugin provides completion for [s2i](https://github.com/openshift/source-to-image).
|
||||
|
||||
To use it, add `s2i` to the plugins array in your .zshrc file.
|
||||
|
||||
```
|
||||
plugins=(... s2i)
|
||||
```
|
||||
5
plugins/s2i/s2i.plugin.zsh
Normal file
5
plugins/s2i/s2i.plugin.zsh
Normal file
@ -0,0 +1,5 @@
|
||||
# Autocompletion plugin for [s2i](https://github.com/openshift/source-to-image).
|
||||
|
||||
if [ $commands[s2i] ]; then
|
||||
source <(s2i completion zsh)
|
||||
fi
|
||||
Loading…
Reference in New Issue
Block a user