1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-03-29 19:14:05 +08:00
This commit is contained in:
Pavel Macík 2026-03-24 12:24:59 +01:00 committed by GitHub
commit 62fdd657c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 0 deletions

9
plugins/s2i/README.md Normal file
View 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)
```

View 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